/*
 Theme Name:   Twenty Twenty-Three Child
 Template:     twentytwentythree
 Version:      1.0
*/

/* --------- Quantity Box (Shortcode) --------- */
.mytheme-quantity-box {
    display: flex;
    align-items: flex-end;
    gap: 25px;
    flex-wrap: wrap;
}

.mytheme-qty-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mytheme-qty-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
}

.mytheme-qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.mytheme-qty-controls input.qty {
    width: 70px;
    height: 40px;
    text-align: center;
    border: none;
    font-size: 1.1rem;
}

.qty-minus,
.qty-plus {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f7f7f7;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.qty-minus:hover,
.qty-plus:hover {
    background: #e0e0e0;
}

/* Add to Cart button inside quantity box */
.mytheme-add-to-cart {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    background: #ff3385;
    color: #fff;
    transition: all 0.2s ease;
}

.mytheme-add-to-cart:hover {
    background: #ff66b2;
    transform: translateY(-2px);
}

/* --------- Custom Product Button --------- */
a.custom-product-btn {
    display: inline-block !important;
    background-color: #ff3385 !important;
    color: #ffffff !important;
    padding: 14px 28px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    transition: background-color 0.3s ease, transform 0.2s ease !important;
    cursor: pointer;
}

a.custom-product-btn:hover {
    background-color: #ff66b2 !important;
    transform: translateY(-2px);
}

/* --------- Smooth Scroll --------- */
html {
    scroll-behavior: smooth;
}

/* --------- Body Background --------- */
body {
    background-image: url('https://tvojweb.sk/wp-content/uploads/obrazok.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/* --------- Header Shortcodes --------- */
.header-icons-shortcode,
.header-button-shortcode {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.header-icons-shortcode {
    gap: 8px;
    margin-right: 10px;
}

.header-button-shortcode {
    /* padding alebo zarovnanie tlacidla */
}

/* ---------------- Desktop Header ---------------- */
@media (min-width: 769px) {
  .wp-container-10 {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: space-between !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .wp-block-site-title {
    flex: 0 0 auto;
    margin: 0 10px 0 0;
    text-align: left;
  }

  .wp-block-column.custom-product-btn-column {
    flex: 0 0 auto !important;
    width: auto !important;
  }

  .custom-product-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 12px 28px !important;
    box-sizing: border-box;
    margin-left: 5px;
  }

  .wp-container-9 {
    display: flex !important;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-end !important;
    gap: 15px;
  }

  .wp-block-navigation {
    display: inline-flex !important;
    align-items: center;
    justify-content: center !important;
    margin: 0;
  }

  .wp-block-navigation img {
    max-width: 40px !important;
    height: auto;
  }
}

/* ---------------- Mobile / Tablet Header ---------------- */
@media (max-width: 768px) {

  .wp-container-10 {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: space-between !important; /* logo vlavo, ikony vpravo */
    gap: 5px;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  /* Logo */
  .wp-block-site-title {
    flex: 0 0 auto;
    margin: 0;
  }

  /* Stlpec tlacidla */
  .wp-block-column.custom-product-btn-column {
    flex: 0 0 auto !important;
    width: auto !important;
    margin-left: 5px; /* medzera medzi logom a tlacidlom */
  }

  /* Tlacidlo “Kúpit” */
  .custom-product-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 20px !important;
    box-sizing: border-box;
  }

  /* Ikony košík a úcet */
  .wp-container-9 {
    display: flex !important;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-end !important; /* úplne doprava */
    margin-left: auto; 
    gap: 10px;
  }

  .wp-block-navigation {
    display: inline-flex !important;
    align-items: center;
    justify-content: center !important;
    margin: 0 !important;
  }

  .wp-block-navigation img {
    max-width: 35px !important;
    height: auto;
  }

  /* Kotva objednávky */
  #objednavka {
    scroll-margin-top: 120px;
  }

  /* --------- Quantity Box pre mobil --------- */
  .mytheme-quantity-box {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .mytheme-add-to-cart {
    width: 100% !important;
    justify-content: center;
  }

  .mytheme-qty-wrapper {
    width: 100%;
  }
}