/* =========================================
   JAY'S TIGERNUT JUICE — WORLD CLASS DESIGN
   Aesthetic: Luxury Natural / Editorial Dark
   ========================================= */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black:       #0e0c09;
    --dark:        #131009;
    --dark-card:   #1a1610;
    --dark-border: #2e2820;
    --yellow:      #c8941a;
    --yellow-soft: #e0aa35;
    --yellow-pale: #f5e6c0;
    --cream:       #fdf5e8;
    --gray-light:  #c4b49a;
    --gray:        #8a7d6a;
    --white:       #f5ede0;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    --radius-sm:   8px;
    --radius:      16px;
    --radius-lg:   24px;

    --shadow-gold: 0 0 40px rgba(232, 184, 0, 0.18);
    --shadow-card: 0 8px 32px rgba(0,0,0,0.45);
    --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }

/* ─── SELECTION ─── */
::selection { background: var(--yellow); color: var(--black); }

/* ─── NAV ─── */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 8, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    padding: 0 5%;
    transition: var(--transition);
}

nav.scrolled {
    border-bottom-color: rgba(232, 184, 0, 0.3);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    height: 72px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--yellow);
    box-shadow: 0 0 16px rgba(232, 184, 0, 0.25);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: -0.02em;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--black);
    border: none;
    padding: 0.55rem 1.2rem;
    border-radius: 100px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.cart-btn:hover {
    background: var(--yellow-soft);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(232, 184, 0, 0.4);
}

.cart-count {
    background: var(--black);
    color: var(--yellow);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 6rem 5% 4rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.hero-bg-noise {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

.hero-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(80px);
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 184, 0, 0.12), transparent 70%);
    top: -100px;
    right: -100px;
    animation: float1 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 184, 0, 0.07), transparent 70%);
    bottom: 10%;
    left: -80px;
    animation: float2 10s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 30px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -25px); }
}

/* Hero Video Column */
.hero-video-col {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInLeft 0.8s ease both;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

.video-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(232, 184, 0, 0.25);
    box-shadow: var(--shadow-gold), var(--shadow-card);
}

.video-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(to bottom, transparent 60%, rgba(10,10,8,0.6));
    z-index: 1;
    pointer-events: none;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.video-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: var(--yellow);
    color: var(--black);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
}

/* Hero Text Column */
.hero-text-col {
    animation: fadeInRight 0.8s ease 0.15s both;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--yellow);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: italic;
    color: var(--yellow);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 2rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2.5rem;
}

.hero-tags span {
    background: rgba(232, 184, 0, 0.1);
    border: 1px solid rgba(232, 184, 0, 0.3);
    color: var(--yellow-soft);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 5px 14px;
    border-radius: 100px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.hero-cta:hover {
    background: var(--yellow-soft);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 184, 0, 0.4);
    gap: 14px;
}

/* ─── MARQUEE STRIP ─── */
.marquee-strip {
    background: var(--yellow);
    color: var(--black);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: marquee 20s linear infinite;
    gap: 2rem;
    padding-left: 2rem;
}

.marquee-track span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.03em;
}

.marquee-track .dot {
    color: rgba(0,0,0,0.4);
    font-size: 0.7rem;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─── SECTION COMMONS ─── */
section {
    padding: 6rem 5%;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background: var(--yellow);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 3rem;
}

.section-title em {
    font-style: italic;
    color: var(--yellow);
}

/* ─── BENEFITS ─── */
.benefits {
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 2rem;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 184, 0, 0.04), transparent);
    opacity: 0;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: rgba(232, 184, 0, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(232, 184, 0, 0.08);
    border: 1px solid rgba(232, 184, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--yellow);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon-wrap {
    background: rgba(232, 184, 0, 0.14);
    border-color: rgba(232, 184, 0, 0.4);
}

.benefit-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.65;
}

/* ─── INGREDIENTS ─── */
.ingredients {
    background: var(--dark);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.ingredient-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-left: 3px solid var(--yellow);
    padding: 2rem 2rem 2rem 2.2rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.ingredient-card:hover {
    background: #1f1f1b;
    transform: translateX(4px);
}

.ingredient-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(232, 184, 0, 0.1);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 20px;
    letter-spacing: -0.04em;
}

.ingredient-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--yellow-soft);
    margin-bottom: 0.6rem;
}

.ingredient-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.65;
    max-width: 340px;
}

/* ─── ORDER ─── */
.order {
    background: var(--black);
    border-top: 1px solid var(--dark-border);
}

.order-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.order-desc {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 400px;
}

.order-promise {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.delivery-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(232, 184, 0, 0.06);
    border: 1px solid rgba(232, 184, 0, 0.2);
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.6;
}

.delivery-note svg {
    color: var(--yellow);
    flex-shrink: 0;
    margin-top: 2px;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.promise-item svg {
    color: var(--yellow);
    flex-shrink: 0;
}

/* Product Card */
.product-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.product-card:hover {
    border-color: rgba(232, 184, 0, 0.3);
    box-shadow: var(--shadow-gold), var(--shadow-card);
}

.product-image-wrap {
    position: relative;
    width: 100%;
    background: #f7f5f0;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.03);
}

.product-tag {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: var(--yellow);
    color: var(--black);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 100px;
}

.product-details {
    padding: 1.8rem;
}

.product-details h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.product-desc-small {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 1.2rem;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--yellow);
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.qty-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-btn {
    background: transparent;
    color: var(--yellow);
    border: none;
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: rgba(232, 184, 0, 0.12);
}

.quantity {
    font-size: 1rem;
    font-weight: 700;
    min-width: 42px;
    text-align: center;
    color: var(--white);
    border-left: 1px solid var(--dark-border);
    border-right: 1px solid var(--dark-border);
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart-btn {
    background: var(--yellow);
    color: var(--black);
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.01em;
}

.add-to-cart-btn:hover {
    background: var(--yellow-soft);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232, 184, 0, 0.4);
}

/* ─── VARIANT SELECTOR ─── */
.variant-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.4rem;
}

.variant-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.variant-btn {
    flex: 1;
    min-width: 90px;
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--dark-border);
    background: var(--dark);
    color: var(--gray-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
    letter-spacing: 0.01em;
}

.variant-btn:hover {
    border-color: rgba(200, 148, 26, 0.5);
    color: var(--yellow-soft);
    background: rgba(200, 148, 26, 0.07);
    transform: translateY(-1px);
}

.variant-btn.active {
    border-color: var(--yellow);
    border-width: 2px;
    background: rgba(200, 148, 26, 0.14);
    color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(200, 148, 26, 0.12), 0 4px 14px rgba(200, 148, 26, 0.18);
    transform: translateY(-1px);
}

/* ─── CART MODAL ─── */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.modal-content {
    position: relative;
    z-index: 1;
    background: var(--dark);
    border-left: 1px solid var(--dark-border);
    width: 100%;
    max-width: 480px;
    height: 100vh;
    overflow-y: auto;
    padding: 2rem;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from { transform: translateX(40px); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--dark-border);
}

.modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.close-btn {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--gray-light);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-btn:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    transform: scale(1.1);
}

/* ─── CART ITEMS ─── */
.cart-items { margin-bottom: 1.5rem; }

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--dark-border);
    color: var(--white);
    gap: 1rem;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.cart-item-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--white);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}

.cart-qty-btn {
    background: transparent;
    color: var(--yellow);
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-qty-btn:hover {
    background: rgba(200, 148, 26, 0.12);
}

.cart-qty-num {
    font-weight: 700;
    min-width: 32px;
    text-align: center;
    border-left: 1px solid var(--dark-border);
    border-right: 1px solid var(--dark-border);
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.cart-remove-btn {
    background: transparent;
    border: none;
    color: var(--gray);
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-left: 1px solid var(--dark-border);
}

.cart-remove-btn:hover {
    color: #e05555;
    background: rgba(224, 85, 85, 0.08);
}

.cart-item-price {
    font-weight: 700;
    font-size: 1rem;
    color: var(--yellow-soft);
    white-space: nowrap;
    align-self: flex-start;
    padding-top: 2px;
}

.cart-summary {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--gray-light);
    font-size: 0.9rem;
}

.summary-row.total {
    font-size: 1.1rem;
    font-weight: 700;
    border-top: 1px solid var(--dark-border);
    padding-top: 0.8rem;
    margin-top: 0.5rem;
    color: var(--yellow);
}

/* Checkout Form */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--dark-border);
    background: var(--dark-card);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(232, 184, 0, 0.12);
}

.form-group select option { background: var(--dark-card); }
.form-group textarea { resize: vertical; min-height: 80px; }

/* Payment Options */
.payment-label {
    text-align: center;
    font-size: 0.82rem;
    color: var(--gray);
    margin: 0.5rem 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.payment-btn {
    padding: 0.9rem 0.75rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.payment-btn.flutterwave {
    background: var(--yellow);
    color: var(--black);
}

.payment-btn.flutterwave:hover {
    background: var(--yellow-soft);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(232, 184, 0, 0.35);
}

.payment-btn.whatsapp {
    background: #128C7E;
    color: var(--white);
}

.payment-btn.whatsapp:hover {
    background: #0f7a6d;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(18, 140, 126, 0.4);
}

.payment-btn:disabled {
    background: #333;
    color: var(--gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.payment-btn-text { font-size: 0.82rem; }

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray);
}

.empty-cart p:first-child {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

/* Cart Delivery Info */
.cart-delivery-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(232, 184, 0, 0.05);
    border: 1px solid rgba(232, 184, 0, 0.15);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1rem;
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

/* Bulk Alert */
.bulk-alert {
    background: linear-gradient(135deg, var(--yellow), var(--yellow-soft));
    color: var(--black);
    padding: 0.9rem 1.2rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.85; }
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25D366;
    color: var(--white);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    z-index: 1500;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65);
}

/* ─── TOAST ─── */
.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 100px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 9999;
    white-space: nowrap;
    box-shadow: var(--shadow-card);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ─── FOOTER ─── */
footer {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    padding: 3rem 5%;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(232, 184, 0, 0.4);
}

.footer-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
}

.footer-tagline {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.08em;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
}

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

.footer-contact {
    text-align: right;
}

.footer-contact p {
    font-size: 0.88rem;
    color: var(--gray);
    margin-bottom: 0.3rem;
}

.footer-contact a {
    color: var(--yellow);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-copy {
    font-size: 0.78rem !important;
    color: var(--gray) !important;
    opacity: 0.7;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 5rem 5% 3rem;
        min-height: auto;
    }

    .hero-text-col { order: -1; }

    .hero-title {
        font-size: clamp(2.4rem, 9vw, 4rem);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
    }

    .order-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .order-desc { max-width: 100%; }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-contact { text-align: left; }

    .modal-content {
        max-width: 100%;
        border-left: none;
        border-top: 1px solid var(--dark-border);
        height: 95vh;
        margin-top: 5vh;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .modal.active {
        align-items: flex-end;
    }

    @keyframes slideIn {
        from { transform: translateY(40px); opacity: 0; }
        to   { transform: translateY(0); opacity: 1; }
    }
}

@media (max-width: 480px) {
    nav { padding: 0 4%; }

    .logo-sub { display: none; }

    .hero { padding: 4.5rem 4% 2.5rem; }

    .hero-tags { gap: 6px; }
    .hero-tags span { font-size: 0.72rem; padding: 4px 10px; }

    section { padding: 4rem 4%; }

    .variant-btn { font-size: 0.82rem; padding: 9px 12px; }

    .payment-options { grid-template-columns: 1fr; }

    .footer-links { gap: 1rem; flex-wrap: wrap; }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }
}

/* ─────────────────────────────────────────────────────────────
   PATCH — append these rules to the bottom of style.css
   They replace inline styles and add the notification modal.
   ───────────────────────────────────────────────────────────── */

/* FIX #13: Class replacing inline style on delivery summary span */
.summary-delivery-note {
    color: var(--yellow-soft);
    font-size: 0.85rem;
}

/* FIX #14: Clear cart button row */
.cart-actions-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0.75rem;
}

.cart-clear-btn {
    background: transparent;
    border: 1px solid rgba(224, 85, 85, 0.35);
    color: #e05555;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.04em;
}

.cart-clear-btn:hover {
    background: rgba(224, 85, 85, 0.1);
    border-color: #e05555;
}

/* FIX #2 / #13: payment-btn-subtext as a class (was inline style) */
.payment-btn-subtext {
    font-size: 0.72rem;
    opacity: 0.85;
}

/* ─── SITE NOTIFICATION MODAL ──────────────────────────────────
   FIX #11: Replaces all alert() calls in the payment flow with a
   branded, non-blocking notification panel.
   ──────────────────────────────────────────────────────────── */
.site-notification {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.2s ease;
}

.site-notification__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.site-notification__box {
    position: relative;
    z-index: 1;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-card);
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.site-notification--success .site-notification__icon {
    color: var(--yellow);
}

.site-notification--error .site-notification__icon {
    color: #e05555;
}

.site-notification__icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.site-notification--success .site-notification__box {
    border-color: rgba(232, 184, 0, 0.3);
}

.site-notification--error .site-notification__box {
    border-color: rgba(224, 85, 85, 0.3);
}

.site-notification__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.site-notification__body {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1.8rem;
    white-space: pre-line; /* Respects \n line breaks in order details */
}

.site-notification__close {
    background: var(--yellow);
    color: var(--black);
    border: none;
    padding: 0.7rem 2.2rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.site-notification__close:hover {
    background: var(--yellow-soft);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(232, 184, 0, 0.35);
}

.site-notification--error .site-notification__close {
    background: #e05555;
    color: #fff;
}

.site-notification--error .site-notification__close:hover {
    background: #c94444;
    box-shadow: 0 4px 16px rgba(224, 85, 85, 0.35);
}

/* ═══════════════════════════════════════════════
   REVIEWS SECTION — append to bottom of style.css
   ═══════════════════════════════════════════════ */

.reviews {
    background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    overflow: hidden;
}

/* ─── RATING SUMMARY ─── */
.reviews-summary {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.reviews-score {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    letter-spacing: -0.04em;
}

.reviews-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.reviews-stars {
    display: flex;
    gap: 3px;
}

.reviews-stars svg {
    width: 22px;
    height: 22px;
    color: var(--yellow);
}

.reviews-stars .star-half {
    opacity: 0.5;
}

.reviews-count {
    font-size: 0.82rem;
    color: var(--gray);
    letter-spacing: 0.04em;
}

.reviews-google-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    transition: var(--transition);
    margin-left: auto;
}

.reviews-google-badge:hover {
    border-color: rgba(232, 184, 0, 0.4);
    color: var(--white);
    transform: translateY(-1px);
}

/* ─── CAROUSEL WRAPPER ─── */
.reviews-carousel-wrap {
    position: relative;
    margin-bottom: 1.5rem;
}

.reviews-carousel {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

/* ─── REVIEW CARD ─── */
.review-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 184, 0, 0.03), transparent);
    opacity: 0;
    transition: var(--transition);
}

.review-card:hover {
    border-color: rgba(232, 184, 0, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,184,0,0.1);
}

.review-card:hover::before {
    opacity: 1;
}

/* Featured card — slightly wider and golden border */
.review-card.featured {
    flex: 0 0 380px;
    border-color: rgba(232, 184, 0, 0.3);
    background: linear-gradient(135deg, #1e1a0f 0%, var(--dark-card) 100%);
}

.review-card.featured::after {
    content: '⭐ Top Review';
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(232, 184, 0, 0.12);
    border: 1px solid rgba(232, 184, 0, 0.3);
    color: var(--yellow-soft);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
}

/* Quote icon */
.review-quote-icon {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--yellow);
    opacity: 0.4;
    font-family: var(--font-display);
    margin-bottom: -0.5rem;
}

/* Review text */
.review-text {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.75;
    flex: 1;
    font-style: italic;
}

/* Review footer */
.review-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 1rem;
    border-top: 1px solid var(--dark-border);
}

/* Avatar initials circle */
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(232,184,0,0.2), rgba(232,184,0,0.05));
    border: 1.5px solid rgba(232, 184, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--yellow-soft);
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.review-author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.review-author {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
}

.review-stars-small {
    font-size: 0.72rem;
    color: var(--yellow);
    letter-spacing: 2px;
}

/* ─── CAROUSEL NAV BUTTONS ─── */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--yellow);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.carousel-btn:hover {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
    transform: translateY(-50%) scale(1.08);
}

.carousel-btn--prev { left: -22px; }
.carousel-btn--next { right: -22px; }

/* ─── DOTS ─── */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2.5rem;
}

.reviews-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dark-border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.reviews-dot.active {
    background: var(--yellow);
    width: 22px;
    border-radius: 3px;
}

/* ─── CTA ─── */
.reviews-cta {
    display: flex;
    justify-content: center;
}

.reviews-leave-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1.5px solid rgba(232, 184, 0, 0.4);
    color: var(--yellow-soft);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    border-radius: 100px;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.reviews-leave-btn:hover {
    background: rgba(232, 184, 0, 0.08);
    border-color: var(--yellow);
    color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(232, 184, 0, 0.15);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .reviews-summary {
        gap: 1.2rem;
    }

    .reviews-score {
        font-size: 3.5rem;
    }

    .reviews-google-badge {
        margin-left: 0;
    }

    .review-card {
        flex: 0 0 280px;
    }

    .review-card.featured {
        flex: 0 0 300px;
    }

    .carousel-btn--prev { left: -10px; }
    .carousel-btn--next { right: -10px; }
}

@media (max-width: 480px) {
    .review-card,
    .review-card.featured {
        flex: 0 0 85vw;
    }

    .carousel-btn {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PATCH — Append these rules to the BOTTOM of style.css
   Covers: (1) Sticky mobile Order Now CTA bar
           (2) Health Benefits FAQ accordion section
   ═══════════════════════════════════════════════════════════════ */


/* ─── 1. STICKY MOBILE ORDER NOW CTA ────────────────────────── */

.sticky-order-bar {
    display: none; /* hidden on desktop — shown only at ≤768px */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: linear-gradient(to top, rgba(14,12,9,0.98) 0%, rgba(14,12,9,0.92) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(200, 148, 26, 0.25);
    padding: 0.85rem 1.2rem calc(0.85rem + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 32px rgba(0,0,0,0.5);
    transform: translateY(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.38s ease;
    opacity: 0;
}

.sticky-order-bar.visible {
    transform: translateY(0);
    opacity: 1;
}

/* Hide the bar when user is already at / near the order section */
.sticky-order-bar.at-order {
    transform: translateY(100%);
    opacity: 0;
}

.sticky-order-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 480px;
    margin: 0 auto;
}

.sticky-order-bar-copy {
    flex: 1;
    min-width: 0;
}

.sticky-order-bar-copy strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-order-bar-copy span {
    font-size: 0.72rem;
    color: var(--gray);
    letter-spacing: 0.03em;
}

.sticky-order-bar-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--yellow);
    color: var(--black);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.65rem 1.3rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}

.sticky-order-bar-btn:hover,
.sticky-order-bar-btn:focus-visible {
    background: var(--yellow-soft);
    box-shadow: 0 4px 20px rgba(200, 148, 26, 0.4);
}

/* Only render on mobile */
@media (max-width: 768px) {
    .sticky-order-bar {
        display: block;
    }

    /* Push WhatsApp float up so it doesn't overlap the bar */
    .whatsapp-float {
        bottom: calc(74px + env(safe-area-inset-bottom)) !important;
    }

    /* Push social floats up too */
    .social-floats {
        bottom: calc(150px + env(safe-area-inset-bottom)) !important;
    }
}


/* ─── 2. HEALTH BENEFITS FAQ ACCORDION ──────────────────────── */

.faq {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    overflow: hidden;
}

/* Individual accordion item */
.faq-item {
    border-bottom: 1px solid var(--dark-border);
    background: var(--dark-card);
    transition: background 0.25s ease;
}

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

.faq-item.open {
    background: #1e1a10;
}

/* The clickable trigger */
.faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.3rem 1.6rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    color: var(--white);
    transition: var(--transition);
}

.faq-trigger:hover {
    background: rgba(200, 148, 26, 0.04);
}

.faq-trigger:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: -2px;
}

.faq-question {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.45;
    flex: 1;
    transition: color 0.25s ease;
}

.faq-item.open .faq-question {
    color: var(--yellow-soft);
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(200, 148, 26, 0.08);
    border: 1px solid rgba(200, 148, 26, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.open .faq-icon {
    background: rgba(200, 148, 26, 0.16);
    border-color: rgba(200, 148, 26, 0.5);
    transform: rotate(45deg);
}

/* Answer panel */
.faq-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    opacity: 0;
}

.faq-item.open .faq-body {
    opacity: 1;
    /* max-height set by JS */
}

.faq-answer {
    padding: 0 1.6rem 1.4rem;
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.75;
    border-top: 1px solid var(--dark-border);
    padding-top: 1rem;
}

.faq-answer a {
    color: var(--yellow-soft);
    text-decoration: underline;
    text-decoration-color: rgba(200, 148, 26, 0.4);
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.faq-answer a:hover { color: var(--yellow); }

.faq-answer strong {
    color: var(--white);
    font-weight: 600;
}

/* Tag chips inside answers */
.faq-tag {
    display: inline-block;
    background: rgba(200, 148, 26, 0.1);
    border: 1px solid rgba(200, 148, 26, 0.25);
    color: var(--yellow-soft);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 100px;
    margin: 0 3px;
    vertical-align: middle;
    white-space: nowrap;
}

/* CTA nudge at the bottom of FAQ */
.faq-cta-nudge {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(200, 148, 26, 0.05);
    border: 1px solid rgba(200, 148, 26, 0.18);
    border-radius: var(--radius);
    padding: 1.1rem 1.4rem;
}

.faq-cta-nudge svg {
    color: var(--yellow);
    flex-shrink: 0;
}

.faq-cta-nudge-text {
    font-size: 0.88rem;
    color: var(--gray-light);
    line-height: 1.55;
    flex: 1;
}

.faq-cta-nudge-text a {
    color: var(--yellow-soft);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(200, 148, 26, 0.35);
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
}

.faq-cta-nudge-text a:hover {
    color: var(--yellow);
    border-color: var(--yellow);
}

@media (max-width: 768px) {
    .faq-trigger { padding: 1.1rem 1.2rem; }
    .faq-answer  { padding: 0 1.2rem 1.2rem; padding-top: 0.9rem; }
}

.variant-btn {
    flex: 0 0 auto;
    min-width: unset;
}