/* ============================================
   Good O'Grub — Custom Luxury Styles
   Primary Gold: #fcb123
   ============================================ */

/* --- ABCRepro Font --- */
@font-face {
    font-family: "ABCRepro";
    src: url("../fonts/ABCRepro-Thin.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ABCRepro";
    src: url("../fonts/ABCRepro-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ABCRepro";.secondary-button
    src: url("../fonts/ABCRepro-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ABCRepro";
    src: url("../fonts/ABCRepro-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --- Color Variables --- */
:root {
    --gold: #fcb123;
    --gold-light: #fdd676;
    --gold-dark: #e5a500;
    --cream: #f5f0e8;
    --cream-light: #fdf9f0;
    --navy-blue: #1a365d;
    --charcoal: #1a1a1a;
    --font-family: "ABCRepro", "Poppins", sans-serif;
}

*,
*::before,
*::after {
    font-family: "ABCRepro", "Poppins", sans-serif !important;
}

[class^="icon-"],
[class*=" icon-"],
[class^="icon-"]::before,
[class*=" icon-"]::before {
    font-family: "bagisto-shop" !important;
}

body {
    font-family: "ABCRepro", "Poppins", sans-serif !important;
}

/* ============================================
   HEADER TOP BAR — WHITE + GOLD
   ============================================ */
.header-top {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    color: var(--charcoal);
    padding: 0 64px;
    font-size: 12px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f0f0f0;
}

.header-top a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
}

.header-top a:hover {
    color: var(--gold);
}

.header-top .shimmer {
    background: rgba(0, 0, 0, 0.05);
}

/* ============================================
   HEADER BOTTOM BAR (Main Nav) — GOLD + WHITE TEXT
   ============================================ */
.header-main {
    display: flex;
    min-height: 78px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    background: #faeab1;
    box-shadow: 0 4px 20px rgba(252, 183, 35, 0.3);
}

/* Hide desktop header on mobile, mobile header on desktop — CSS fallback for compiled Tailwind */
@media (max-width: 1023px) {
    .header-main,
    .header-main-left,
    .header-main-right {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .mobile-header-bar {
        display: none !important;
    }
}

.header-main-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-main-right {
    display: flex;
    align-items: center;
    gap: 36px;
}

/* Nav links — white on gold */
.header-main-left a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}

.header-main-left a:hover {
    border-bottom-color: var(--gold);
}

/* Nav links */
.header-nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}

.header-nav-link:hover {
    color: var(--gold);
    border-bottom-color: #fff;
}

/* ============================================
   CATEGORY NAV
   ============================================ */
.category-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 77px;
    border-bottom: 4px solid transparent;
    transition: border-color 0.2s;
}

.category-nav-item:hover {
    border-bottom-color: #ffffff;
}

.category-nav-item > span > a {
    display: inline-block;
    padding: 0 20px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

.category-nav-item:hover > span > a {
    color: #fff;
}

/* Category Dropdown */
.category-dropdown {
    position: absolute;
    top: 78px;
    z-index: 50;
    max-height: 580px;
    width: max-content;
    max-width: 1260px;
    transform: translateY(4px);
    overflow: auto;
    overflow-x: auto;
    border: 1px solid #e5e5e5;
    border-bottom: 0;
    background: #fff;
    padding: 36px;
    opacity: 0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease-out;
    pointer-events: none;
    border-radius: 0 0 8px 8px;
}

.category-nav-item:hover .category-dropdown {
    pointer-events: auto;
    transform: translateY(0);
    opacity: 1;
    transition-duration: 200ms;
    transition-timing-function: ease-in;
}

.category-dropdown-inner {
    display: flex;
    justify-content: space-between;
    gap: 70px;
}

.category-dropdown-col {
    display: grid;
    width: 100%;
    min-width: max-content;
    max-width: 150px;
    flex: auto;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 20px;
}

.category-dropdown-col .sub-cat-title {
    font-weight: 600;
    color: var(--navy-blue);
}

.category-dropdown-col .sub-cat-title a {
    text-decoration: none;
    color: inherit;
}

.category-dropdown-col ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-dropdown-col ul li {
    font-size: 14px;
    font-weight: 500;
    color: #71717a;
}

.category-dropdown-col ul li a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.category-dropdown-col ul li a:hover {
    color: var(--gold);
}

/* Category Drawer (Sidebar) */
.category-drawer-item {
    display: flex;
    align-items: center;
    height: 77px;
    cursor: pointer;
    border-bottom: 4px solid transparent;
    transition: border-color 0.2s;
}

.category-drawer-item:hover {
    border-bottom-color: var(--charcoal);
}

/* ============================================
   FOOTER — GOLD ACCENTS
   ============================================ */
.site-footer {
    background: var(--charcoal);
    color: #d4d4d8;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 60px;
}

.footer-about-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 280px;
}

.footer-about-col h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.footer-about-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #a1a1aa;
}

/* Footer Social Icons */
.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(252, 183, 35, 0.15);
    color: var(--gold);
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social-icon:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.footer-social-icon svg {
    width: 16px;
    height: 16px;
}

/* Footer Links */
.footer-links-col {
    display: grid;
    gap: 16px;
    font-size: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-col a {
    font-weight: 500;
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links-col a:hover {
    color: var(--gold);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    background: rgba(252, 183, 35, 0.08);
    border-top: 1px solid rgba(252, 183, 35, 0.15);
    padding: 16px 60px;
}

.footer-bottom-bar p {
    color: #71717a;
    font-size: 14px;
}

/* Footer Newsletter */
.footer-newsletter {
    display: grid;
    gap: 10px;
}

.footer-newsletter h3,
.footer-newsletter [role="heading"] {
    color: #fff !important;
    font-size: 20px;
}

.footer-newsletter p {
    color: #a1a1aa;
    font-size: 12px;
}

.footer-newsletter-input-wrapper {
    position: relative;
    width: 420px;
    max-width: 100%;
}

.footer-newsletter-input {
    display: block;
    width: 100%;
    border-radius: 12px;
    border: 2px solid rgba(252, 183, 35, 0.3);
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 140px 16px 20px;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s;
}

.footer-newsletter-input::placeholder {
    color: #71717a;
}

.footer-newsletter-input:focus {
    border-color: var(--gold);
}

.footer-newsletter-submit {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    background: var(--gold);
    padding: 8px 24px;
    font-weight: 600;
    font-size: 14px;
    color: var(--charcoal);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.footer-newsletter-submit:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* Footer Mobile Accordion */
.footer-accordion {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(252, 183, 35, 0.2) !important;
    background: rgba(255, 255, 255, 0.03);
}

.footer-accordion-header {
    border-radius: 8px 8px 0 0;
    background: rgba(252, 183, 35, 0.1);
    font-weight: 600;
    padding: 12px 16px;
    color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1180px) {
    .header-main {
        padding: 0 32px;
    }

    .header-main-left {
        gap: 20px;
    }
}

@media (max-width: 1100px) {
    .header-main-right {
        gap: 24px;
    }

    .footer-content {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .footer-about-col {
        max-width: 100%;
    }

    .footer-newsletter-input-wrapper {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-main {
        padding: 0 24px;
        min-height: 64px;
    }

    .header-top {
        padding: 0 24px;
    }

    .footer-content {
        padding: 32px 24px;
        gap: 24px;
    }

    .footer-bottom-bar {
        justify-content: center;
        padding: 14px 20px;
    }

    .footer-newsletter-input {
        padding: 14px 120px 14px 16px;
        font-size: 13px;
    }

    .footer-newsletter-submit {
        padding: 6px 16px;
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .header-main {
        padding: 0 16px;
    }

    .header-top {
        padding: 0 16px;
    }

    .footer-content {
        padding: 24px 16px;
    }

    .footer-bottom-bar {
        padding: 12px 16px;
    }

    .footer-accordion {
        border-radius: 8px !important;
    }

    .footer-accordion-header {
        padding: 10px 12px;
        font-size: 14px;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.service-icon-box {
    width: 60px;
    height: 60px;
}

.service-desc {
    max-width: 217px;
}

/* ============================================
   PRODUCT CARDS — LUXURY
   ============================================ */
.product-card-luxury {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 2px solid var(--gold);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-luxury .content-start {
    align-content: inherit ;
}

.product-card-luxury:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: rgba(252, 183, 35, 0.2);
}

/* Full card clickable overlay — buttons stay clickable */
.product-card-luxury > a.absolute {
    pointer-events: none;
}

.product-card-luxury .action-items,
.product-card-luxury .action-items * {
    position: relative;
    z-index: 9;
}

/* Card image area */
.product-card-luxury > .relative.overflow-hidden {
    max-height: 360px;
    border-radius: 16px 16px 0 0;
}

.product-card-luxury > .relative.overflow-hidden img {
    display: block;
    margin: 0 auto;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Card info section */
.product-card-info {
    padding: 16px !important;
    gap: 12px;
}

/* Product name */
.product-card-name {
    font-size: 17px;
    line-height: 1.4;
    color: #1a1a1a;
}

/* Product price */
.product-card-luxury .final-price {
    font-size: 18px;
}

/* Gold-themed secondary button (Add to Cart) */
.secondary-button, .byob-add-btn {
    background: var(--charcoal) !important;
    color: #fff !important;
    border-color: var(--charcoal) !important;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 24px;
}

.secondary-button:hover, .byob-add-btn:hover {
    background: var(--gold) !important;
    color: var(--charcoal) !important;
    border-color: var(--gold) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(252, 183, 35, 0.35);
}


/* For tablets and smaller desktops (e.g. ≤ 1024px) */
@media (max-width: 1024px) {
  .secondary-button,
  .byob-add-btn {
    padding: 10px 20px;   /* slightly smaller */
    font-size: 0.95rem;   /* optional */
    border-radius: 10px;  /* optional */
  }
}

/* For mobile phones (e.g. ≤ 768px) */
@media (max-width: 768px) {
  .secondary-button,
  .byob-add-btn {
    padding: 5px;   /* keep vertical height for tapping */
    font-size: 14px;
    border-radius: 8px;
    width: 100%;          /* if you want full‑width buttons on small screens */
    /* or keep inline if that fits your layout */
  }
  
  .product-carousel-scroll .product-card-name{
      font-size: 14px;
  }
  
  .container .video-row{
      padding:5px;
  }
  
  .video-section .container{
    padding-right: 10px;
    padding-left: 10px;
  }
  
}

/* Extra small screens (≤ 480px) – fine‑tune */
@media (max-width: 480px) {
  .secondary-button,
  .byob-add-btn {
    padding: 5px;
    font-size: 12px;
    letter-spacing: 0.1px;
  }
}



.secondary-button:active {
    transform: translateY(0);
}

/* ============================================
   PRODUCT CAROUSEL — 3 cards visible
   ============================================ */
.product-carousel-scroll {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
}

.product-carousel-scroll::-webkit-scrollbar {
    display: none;
}

.product-carousel-scroll > * {
    flex: 0 0 calc((100% - 30px) / 4);
    scroll-snap-align: start;
}

.product-carousel-card .product-card-luxury {
    width: 100%;
}

/* ponytail: 2-col mobile, 3-col tablet, 4-col desktop */
@media (max-width: 1024px) {
    .product-carousel-scroll > * {
        flex: 0 0 calc((100% - 32px) / 3);
    }
}

@media (max-width: 640px) {
    .product-carousel-scroll > * {
        flex: 0 0 calc((100% - 16px) / 2);
    }
}

/* ============================================
   SECTION BACKGROUNDS — LUXURY FEEL
   ============================================ */
.section-cream {
    background: var(--cream);
}

.section-white {
    background: #fff;
}

.section-dark {
    background: var(--charcoal);
    color: #d4d4d8;
}

/* Video Section — cream background, bigger heading */
.video-section {
    background: var(--cream);
    padding: 80px 0;
}

.video-section .heading {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--charcoal);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Categories Section — white with generous padding */
.categories-section {
    padding: 48px 0;
    background: #fff;
}

/* Product Section — white with top separator */
.product-section {
    background: #fff;
    padding: 10px 0 60px;
    border-top: 1px solid #f0f0f0;
}

/* Services Dark Section */
.services-section {
    background: var(--charcoal);
    color: #d4d4d8;
    padding: 60px 0 80px;
}

.services-section .service-title {
    color: #fff;
}

.services-section .service-icon-box {
    background: rgba(252, 183, 35, 0.15);
    color: var(--gold);
    border: 2px solid rgba(252, 183, 35, 0.3);
}

/* Category Circle Hover Shadow */
.category-circle-link {
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.category-circle-link:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Section Title Enhancement */
.section-title-luxury {
    font-size: 32px;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -0.3px;
    line-height: 1.2;
}

/* Luxury Separator */
.luxury-separator {
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 0 auto 24px;
}

/* ============================================
   GENERAL
   ============================================ */
.site-main-bg {
    background: #fafaf7;
}

/* ============================================
   HERO CAROUSEL — 100vh
   ============================================ */
.hero-carousel-slide {
    height: 100vh;
    height: 100svh;
}

.hero-carousel-slide img {
    height: 100%;
    object-fit: cover;
    
    clip-path: shape(
  from 0 0,
  hline to 100%,
  vline to 97%,
  curve to 90% 99% with 95% 98% / 93% 99%,
  curve to 80% 97% with 87% 99% / 83% 97%,
  curve to 70% 99% with 77% 97% / 73% 99%,
  curve to 60% 97% with 67% 99% / 63% 97%,
  curve to 50% 99% with 57% 97% / 53% 99%,
  curve to 40% 97% with 47% 99% / 43% 97%,
  curve to 30% 99% with 37% 97% / 33% 99%,
  curve to 20% 97% with 27% 99% / 23% 97%,
  curve to 10% 99% with 17% 97% / 13% 99%,
  curve to 0 97% with 7% 99% / 3% 97%,
  close
);

}

@media (max-width: 1024px) {
    .hero-carousel-slide {
        height: 70vh;
        height: 70svh;
    }
}

@media (max-width: 768px) {
    .hero-carousel-slide {
        height: 50vh;
        height: 50svh;
    }
}

/* ============================================
   RTL SUPPORT
   ============================================ */
[dir="rtl"] .footer-content {
    direction: rtl;
}

/* ============================================
   OFFERS POPUP
   ============================================ */
.offers-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.offers-popup-modal {
    position: relative;
    background: linear-gradient(135deg, #fff8e1 0%, #fff 50%, #fff8e1 100%);
    border: 3px solid var(--gold);
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow:
        0 20px 60px rgba(252, 183, 35, 0.3),
        0 8px 24px rgba(0, 0, 0, 0.15);
    animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.offers-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.offers-popup-close:hover {
    color: var(--gold);
}

.offers-popup-badge {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.offers-popup-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 4px;
    line-height: 1.1;
}

.offers-popup-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0 0 28px;
}

.offers-popup-code {
    display: inline-block;
    border: 2px dashed var(--gold);
    border-radius: 10px;
    padding: 12px 28px;
    margin-bottom: 28px;
    font-size: 15px;
    color: #555;
    background: rgba(252, 183, 35, 0.08);
}

.offers-popup-code span {
    margin-right: 8px;
}

.offers-popup-code strong {
    color: var(--gold);
    font-size: 20px;
    letter-spacing: 3px;
}

.offers-popup-cta {
    display: block;
    width: 100%;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offers-popup-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 183, 35, 0.4);
}

@media (max-width: 640px) {
    .offers-popup-modal {
        padding: 36px 24px;
    }

    .offers-popup-title {
        font-size: 36px;
    }
}

/* ============================================
   PRODUCT FAQ ACCORDION
   ============================================ */
.product-faq-item.open .product-faq-answer {
    display: block;
}

.product-faq-item.open .product-faq-arrow {
    transform: rotate(180deg);
}

.product-faq-item:last-child {
    border-bottom: none;
}

.product-faq-question:hover h4 {
    color: var(--gold);
}

/* ============================================
   SPICE LEVEL INDICATOR
   ============================================ */
.spice-level-section {
    padding: 12px 16px;
    background: linear-gradient(135deg, #fff8e1 0%, #fff 100%);
    border: 1px solid rgba(252, 183, 35, 0.2);
    border-radius: 12px;
}

.spice-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.spice-label {
    color: var(--charcoal);
    white-space: nowrap;
}

.spice-flames {
    display: flex;
    align-items: center;
    gap: 2px;
}

.spice-flame {
    font-size: 18px;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.spice-flame.active {
    opacity: 1;
}

.spice-flame.active.spice-mild {
    filter: hue-rotate(60deg);
}

.spice-flame.active.spice-medium {
    filter: hue-rotate(30deg);
}

.spice-flame.active.spice-spicy {
    filter: none;
}

.spice-flame.active.spice-very-spicy {
    filter: saturate(1.5) brightness(0.9);
}

.spice-text {
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

/* ============================================
   FLAVOUR SELECTOR CARDS
   ============================================ */
.flavour-options-container {
    margin-top: 16px;
}

.flavour-options-container label {
    font-weight: 600;
    font-size: 14px;
    color: var(--charcoal);
    margin-bottom: 8px;
    display: block;
}

.flavour-option-cards {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.flavour-option-card {
    position: relative;
    cursor: pointer;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 20px;
    text-align: center;
    transition: all 0.3s ease;
    background: #fff;
    min-width: 100px;
}

.flavour-option-card:hover {
    border-color: var(--gold);
    background: rgba(252, 183, 35, 0.05);
}

.flavour-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.flavour-option-card input[type="radio"]:checked + .flavour-option-label {
    color: var(--gold-dark);
    font-weight: 700;
}

.flavour-option-card:has(input[type="radio"]:checked) {
    border-color: var(--gold);
    background: rgba(252, 183, 35, 0.08);
    box-shadow: 0 2px 8px rgba(252, 183, 35, 0.2);
}

.flavour-option-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    display: block;
}

.flavour-option-price {
    font-size: 12px;
    color: var(--gold-dark);
    margin-top: 2px;
    display: block;
}

@media (max-width: 640px) {
    .flavour-option-cards {
        gap: 8px;
    }

    .flavour-option-card {
        padding: 10px 14px;
        min-width: 80px;
    }
}

/* ============================================
   HOW TO PREPARE SECTION
   ============================================ */
.how-to-prepare-section {
    padding: 80px 150px;
    background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
}

.htp-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.htp-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--charcoal);
    position: relative;
    display: table;
    margin: 0 auto 56px;
    padding-bottom: 12px;
}

.htp-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    border-radius: 3px;
    background: var(--gold);
}

.htp-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 40px 24px;
}

.htp-step {
    position: relative;
    background: #fff;
    border: 2px solid rgba(252, 183, 35, 0.35);
    border-radius: 16px;
    padding: 36px 20px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.htp-step:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 28px rgba(252, 183, 35, 0.18);
    transform: translateY(-4px);
}

.htp-step-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(252, 183, 35, 0.4);
}

.htp-step p {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.65;
    color: #444;
}

@media (max-width: 768px) {
    .how-to-prepare-section {
        padding: 48px 16px;
    }

    .htp-title {
        font-size: 26px;
        margin-bottom: 44px;
    }

    .htp-steps {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .htp-step {
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }
}

/* ============================================
   BUILD YOUR OWN BOX PAGE
   ============================================ */
.byob-page {
    background: var(--cream);
    min-height: 60vh;
    padding-bottom: 100px;
}

.byob-hero {
    text-align: center;
    padding: 48px 20px 32px;
}

.byob-hero h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 8px;
}

.byob-hero-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 0 auto 16px;
}

.byob-hero p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Product grid cards */
.byob-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 640px) {
    .byob-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .byob-product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.byob-grid-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.byob-grid-card:hover {
    border-color: rgba(252, 183, 35, 0.5);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.byob-grid-card.is-selected {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(252, 183, 35, 0.25);
}

.byob-grid-card.is-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.byob-grid-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: #f5f5f5;
    display: block;
}

.byob-grid-info {
    padding: 14px 16px 16px;
}

.byob-grid-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
    margin: 0 0 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.byob-grid-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-dark);
    margin: 0 0 12px;
}

/* + Add / Added toggle button */
.byob-add-btn {
    display: block;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--gold);
    background: #fff;
    color: var(--gold-dark);
    cursor: pointer;
    transition: all 0.25s ease;
}

.byob-add-btn:hover {
    background: var(--gold);
    color: #fff;
}

.byob-add-btn.is-added {
    background: var(--gold);
    color: #fff;
    pointer-events: none;
}

/* Selected items section */
.byob-selected-section {
    background: #fff;
    border: 2px solid var(--gold);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(252, 183, 35, 0.12);
}

.byob-selected-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, #fff8e1 0%, #fff 100%);
    border-bottom: 1px solid rgba(252, 183, 35, 0.2);
}

.byob-selected-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0;
}

.byob-selected-title span {
    color: var(--gold-dark);
}

/* Selected item row */
.byob-selected-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.byob-selected-item:last-child {
    border-bottom: none;
}

.byob-selected-item:hover {
    background: #fafafa;
}

.byob-selected-img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    background: #f5f5f5;
    flex-shrink: 0;
}

.byob-selected-details {
    flex: 1;
    min-width: 0;
}

.byob-selected-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
    margin: 0 0 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.byob-selected-price {
    font-size: 13px;
    color: var(--gold-dark);
    font-weight: 600;
    margin: 0;
}

/* Qty controls in selected section */
.byob-qty-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.byob-qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #f9fafb;
    color: var(--charcoal);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.byob-qty-btn:hover {
    background: var(--gold);
    color: #fff;
}

.byob-qty-val {
    width: 36px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    background: #fff;
}

/* Remove button */
.byob-remove-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    color: #999;
    font-size: 20px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.byob-remove-btn:hover {
    background: #fef2f2;
    color: #dc2626;
}

/* Empty selected state */
.byob-empty-selected {
    padding: 32px 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.byob-empty-selected .byob-empty-icon {
    font-size: 32px;
    margin-bottom: 8px;
    opacity: 0.4;
}

/* Sticky action bar */
.byob-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(252, 183, 35, 0.3);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
    padding: 16px 24px;
}

.byob-action-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.byob-action-count {
    font-size: 14px;
    color: #666;
}

.byob-action-count strong {
    color: var(--charcoal);
}

.byob-action-total {
    font-size: 20px;
    font-weight: 700;
    color: var(--charcoal);
}

.byob-action-btn {
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.byob-action-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(252, 183, 35, 0.4);
}

.byob-action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Empty cart placeholder */
.byob-empty-cart {
    padding: 60px 20px;
    text-align: center;
}

.byob-empty-cart-icon {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.3;
}

.byob-empty-cart p {
    color: #999;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .byob-hero h1 {
        font-size: 24px;
    }

    .byob-selected-item {
        padding: 12px 16px;
        gap: 10px;
    }

    .byob-selected-img {
        width: 44px;
        height: 44px;
    }

    .byob-action-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .byob-action-total {
        font-size: 17px;
    }
}

.break-all {
    word-break: unset;
}
