/* =====================================
   OAKSCROFT – LUXURY COOKWARE UI
   Presentation only. All class/IDs preserved.
===================================== */

:root {
    --bg: #0F1115;
    --bg-2: #12151B;
    --bg-3: #151920;
    --bg-4: #0C0E12;
    --card: #171A21;
    --card-hover: #1C2029;
    --border: #2A2F38;
    --border-soft: rgba(42, 47, 56, 0.85);
    --gold: #F5C542;
    --gold-deep: #D4A72A;
    --gold-soft: #F7D56A;
    --gold-glow: rgba(245, 197, 66, 0.16);
    --text: #ffffff;
    --muted: #D1D5DB;
    --muted-dim: #9CA3AF;
    --black: #0F1115;
    --dark: #12151B;
    --shadow-soft: 0 16px 48px rgba(0, 0, 0, 0.45);
    --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.35);
    --shadow-gold: 0 12px 32px rgba(245, 197, 66, 0.18);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-pill: 999px;
    --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    --font-body: 'Poppins', system-ui, -apple-system, sans-serif;
    --font-display: 'Anton', 'Poppins', sans-serif;

    /* Legacy aliases used across older rules */
    --gold-dark: var(--gold-deep);
    --bg-1: var(--bg);
    --charcoal: var(--card);
    --card-elevated: var(--card-hover);
    --warm-grey: var(--muted-dim);
    --border-strong: rgba(245, 197, 66, 0.35);
}

/* =====================================
   BASE
===================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

button {
    font-family: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.container {
    width: min(92%, 1400px);
    margin: 0 auto;
}

/* =====================================
   HEADER — cart + checkout only (no logo)
===================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(15, 17, 21, 0.94);
    backdrop-filter: blur(18px) saturate(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    padding: 12px 0;
    min-height: 64px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-left: 0;
    width: 100%;
}

.header-checkout-btn {
    background: var(--gold);
    color: #111;
    padding: 11px 22px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(245, 197, 66, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.header-checkout-btn:hover {
    transform: translateY(-2px);
    background: var(--gold-soft);
    box-shadow: 0 10px 28px rgba(245, 197, 66, 0.32);
    color: #111;
}

.cart-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.cart-icon:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 197, 66, 0.45);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.cart-icon i {
    color: var(--gold);
    font-size: 17px;
}

.cart-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

#cartCount {
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #111;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    padding: 0 6px;
}

/* =====================================
   HERO — full-width flagship banner
   Desktop: hero-desktop.webp | Mobile: hero-mobile.webp
   Artwork unchanged — no crop
===================================== */

.hero {
    /* Nearly full viewport width — not a small centered card */
    box-sizing: border-box;
    width: calc(100% - 64px);
    max-width: none;
    margin: 28px auto 0;
    padding: 0;
    overflow: hidden;
    background: #0F1115;
    line-height: 0;
    border-radius: 24px;
    border: 1px solid rgba(245, 197, 66, 0.14);
    box-shadow:
        0 28px 64px rgba(0, 0, 0, 0.45),
        0 0 48px rgba(245, 197, 66, 0.05);
    animation: heroFadeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero .hero-banner,
.hero img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: top;
    object-fit: contain;
    object-position: center;
}

/* Desktop: flagship scale ~700–800px natural height at wide viewports */
@media (min-width: 992px) {
    .hero {
        width: calc(100% - 72px);
        margin: 32px auto 0;
        border-radius: 24px;
    }
}

@media (min-width: 1400px) {
    .hero {
        width: calc(100% - 80px);
        margin-top: 36px;
    }
}

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

/* =====================================
   TRUST STRIP — 3 horizontal cards (desktop)
   HTML: section.trust-strip > div.trust-card x3
===================================== */

section.trust-strip {
    box-sizing: border-box;
    width: min(92%, 1400px);
    max-width: 1400px;
    margin: 0 auto;
    /* Hero → Trust: ~70px | Trust → Products: ~80px via padding */
    padding: 72px 0 80px;
    background: transparent;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center;
    align-items: stretch;
    gap: 36px;
}

section.trust-strip > .trust-card {
    box-sizing: border-box;
    flex: 1 1 0 !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    margin: 0;
    padding: 48px 36px 44px;
    background: #171A21 !important;
    /* Softer — less “boxy”, more depth */
    border: 1px solid rgba(245, 197, 66, 0.1) !important;
    border-radius: 20px !important;
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset;
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

section.trust-strip > .trust-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 197, 66, 0.28) !important;
    box-shadow:
        0 26px 52px rgba(0, 0, 0, 0.42),
        0 0 36px rgba(245, 197, 66, 0.14);
}

section.trust-strip .trust-card-icon {
    display: block;
    font-size: 2.85rem;
    line-height: 1;
    color: #F5C542;
    margin: 0 0 20px;
    filter: drop-shadow(0 0 14px rgba(245, 197, 66, 0.28));
    transition: transform 0.4s ease, filter 0.4s ease;
}

section.trust-strip > .trust-card:hover .trust-card-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(245, 197, 66, 0.4));
}

section.trust-strip .trust-card-title {
    margin: 0 0 12px;
    padding: 0;
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.3;
}

section.trust-strip .trust-card-text {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 0.96rem;
    font-weight: 400;
    line-height: 1.6;
    color: #D1D5DB;
}

/* Mobile: stack cards vertically */
@media (max-width: 768px) {
    section.trust-strip {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 18px;
        width: min(94%, 1400px);
        padding: 48px 0 56px;
    }

    section.trust-strip > .trust-card {
        flex: 1 1 auto !important;
        width: 100% !important;
        padding: 36px 28px 32px;
    }
}

/* =====================================
   SECTION TITLE
===================================== */

.section-title {
    text-align: center;
    padding: 80px 20px 44px;
}

#premium-products > .section-title {
    padding-top: 0;
}

.section-title h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    line-height: 1.15;
    font-weight: 400;
}

.section-title p {
    color: var(--muted);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =====================================
   PRODUCTS
===================================== */

.products-section {
    padding-bottom: 96px;
    position: relative;
}

#premium-products {
    background: var(--bg-2);
    /* Breathing room after trust strip */
    padding-top: 80px;
}

#other-products {
    background: var(--bg-3);
}

#other-products .section-title {
    padding-top: 80px;
}

.products-grid {
    width: min(92%, 1500px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* =====================================
   PRODUCT CARD
===================================== */

.product-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 22px 18px 18px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
    box-shadow: var(--shadow-card);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(245, 197, 66, 0.08), transparent 55%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 197, 66, 0.4);
    background: var(--card-hover);
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(245, 197, 66, 0.08);
}

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

.product-card a {
    display: block;
}

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    background: radial-gradient(circle at center, rgba(245, 197, 66, 0.04) 0%, transparent 65%);
    border-radius: var(--radius-md);
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    text-align: center;
    min-height: 50px;
    margin-top: 14px;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text);
}

.price {
    text-align: center;
    color: var(--gold);
    font-size: 1.55rem;
    font-weight: 700;
    margin: 12px 0 14px;
    letter-spacing: 0.01em;
}

.coupon-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: var(--gold);
    color: #111;
    font-size: 11px;
    font-weight: 700;
    padding: 7px 12px;
    border-radius: var(--radius-pill);
}

.add-cart-btn {
    width: 100%;
    padding: 13px 14px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--gold);
    color: #111;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 18px rgba(245, 197, 66, 0.14);
    position: relative;
    overflow: hidden;
}

.add-cart-btn:hover {
    transform: translateY(-2px);
    background: var(--gold-soft);
    box-shadow: 0 12px 30px rgba(245, 197, 66, 0.34);
}

.add-cart-btn:active {
    transform: translateY(0);
}

.out-stock-btn {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(245, 197, 66, 0.22);
    border-radius: var(--radius-sm);
    background: #1E222B;
    color: #CFCFCF;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: not-allowed;
    opacity: 0.95;
    letter-spacing: 0.03em;
}

/* Product grid OOS badge */
.out-of-stock-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(15, 17, 21, 0.92);
    color: #F5C542;
    border: 1px solid rgba(245, 197, 66, 0.35);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 999px;
}

.out-of-stock-label {
    background: rgba(245, 197, 66, 0.08) !important;
    border-color: rgba(245, 197, 66, 0.4) !important;
    color: #F5C542 !important;
    margin-bottom: 14px;
}

/* =====================================
   SCROLL REVEAL (script.js)
===================================== */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.show-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================
   WINNERS SECTION
===================================== */

.season-winners {
    padding: 96px 20px;
    background: var(--bg-4);
}

.season-card {
    width: min(92%, 1000px);
    margin: 0 auto;
    text-align: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 60px 32px;
    box-shadow: var(--shadow-soft);
}

.season-card h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}

.season-card p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.winner-btn {
    display: inline-block;
    background: var(--gold);
    color: #111;
    padding: 15px 34px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    box-shadow: var(--shadow-gold);
}

.winner-btn:hover {
    transform: translateY(-3px);
    background: var(--gold-soft);
    box-shadow: 0 14px 30px rgba(245, 197, 66, 0.28);
    color: #111;
}

/* =====================================
   PREMIUM FOOTER
===================================== */

footer,
.site-footer {
    position: relative;
    background: #0F1115;
    border-top: 1px solid rgba(245, 197, 66, 0.2);
    margin-top: 0;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: -48%;
    left: 50%;
    width: min(1100px, 140%);
    height: 520px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(245, 197, 66, 0.045) 0%, rgba(245, 197, 66, 0.015) 42%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.footer-container {
    position: relative;
    z-index: 1;
    width: min(92%, 1400px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 56px;
    padding: 100px 0 76px;
}

.footer-column h3 {
    color: #F5C542;
    margin-bottom: 26px;
    font-size: 1.22rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.footer-about-text {
    color: #ffffff;
    line-height: 1.9;
    font-size: 0.96rem;
    margin-bottom: 20px;
    max-width: 340px;
}

.footer-address {
    color: #D1D5DB;
    line-height: 2;
    font-size: 0.93rem;
    margin: 0;
}

.footer-column p {
    color: #D1D5DB;
    line-height: 2;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-column a {
    color: #ffffff;
    transition: color 0.35s ease;
}

.footer-column a:hover {
    color: #F5C542;
}

.footer-column i {
    margin-right: 8px;
    color: #F5C542;
}

.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav a {
    display: inline-block;
    color: #ffffff;
    font-size: 0.96rem;
    font-weight: 400;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.35s ease;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #F5C542;
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-nav a:hover {
    color: #F5C542;
}

.footer-nav a:hover::after {
    width: 100%;
}

.footer-social-title {
    margin-top: 32px !important;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #171A21;
    color: #F5C542;
    border: 1px solid rgba(245, 197, 66, 0.22);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.05);
    background: #F5C542;
    color: #111;
    border-color: rgba(245, 197, 66, 0.55);
    box-shadow: 0 12px 28px rgba(245, 197, 66, 0.28);
}

/* =====================================
   FOOTER AFFILIATE CTA
===================================== */

.footer-affiliate-cta {
    position: relative;
    z-index: 1;
    width: min(92%, 1400px);
    margin: 0 auto;
    padding: 8px 0 48px;
}

.footer-affiliate-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px 40px;
    padding: 32px 36px;
    border-radius: var(--radius-lg);
    background: linear-gradient(
        145deg,
        rgba(23, 26, 33, 0.92) 0%,
        rgba(15, 17, 21, 0.96) 55%,
        rgba(12, 14, 18, 0.98) 100%
    );
    border: 1px solid rgba(245, 197, 66, 0.32);
    box-shadow:
        0 0 0 1px rgba(245, 197, 66, 0.06) inset,
        0 16px 48px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(245, 197, 66, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.footer-affiliate-content {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-width: 0;
    flex: 1;
}

.footer-affiliate-icon {
    flex-shrink: 0;
    font-size: 1.65rem;
    line-height: 1;
    margin-top: 2px;
    filter: drop-shadow(0 0 10px rgba(245, 197, 66, 0.35));
}

.footer-affiliate-heading {
    margin: 0 0 8px;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

.footer-affiliate-desc {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 520px;
}

.footer-affiliate-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #111;
    text-decoration: none;
    background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 45%, var(--gold-deep) 100%);
    border: 1px solid rgba(245, 197, 66, 0.55);
    box-shadow: 0 10px 28px rgba(245, 197, 66, 0.22);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        filter var(--transition);
    white-space: nowrap;
}

.footer-affiliate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(245, 197, 66, 0.32);
    filter: brightness(1.05);
    color: #111;
}

.footer-affiliate-btn:active {
    transform: translateY(-1px);
}

.footer-affiliate-arrow {
    font-size: 1.05em;
    transition: transform var(--transition);
}

.footer-affiliate-btn:hover .footer-affiliate-arrow {
    transform: translateX(3px);
}

/* =====================================
   ADD-TO-CART TOAST (premium floating)
===================================== */

.cart-toast {
    position: fixed;
    top: 22px;
    right: 22px;
    left: auto;
    z-index: 99999;
    width: min(360px, calc(100vw - 32px));
    margin: 0;
    padding: 0;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    transition:
        opacity 300ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
        visibility 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.cart-toast.is-leaving {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
}

.cart-toast-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px 16px 16px;
    border-radius: 14px;
    background: rgba(17, 19, 24, 0.92);
    border: 1px solid rgba(245, 197, 66, 0.22);
    border-left: 3px solid var(--gold);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 0 28px rgba(245, 197, 66, 0.08);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.cart-toast-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(
        145deg,
        rgba(245, 197, 66, 0.18) 0%,
        rgba(245, 197, 66, 0.08) 100%
    );
    border: 1px solid rgba(245, 197, 66, 0.3);
    color: var(--gold);
    font-size: 0.95rem;
    box-shadow: 0 0 16px rgba(245, 197, 66, 0.12);
}

.cart-toast-body {
    min-width: 0;
    flex: 1;
    padding-top: 1px;
}

.cart-toast-title {
    margin: 0 0 4px;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.cart-toast-message {
    margin: 0;
    color: #9CA3AF;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.45;
}

/* Copyright bar */
.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    border-top: 1px solid rgba(245, 197, 66, 0.12);
    padding: 24px 20px 28px;
    background: #090909;
}

.footer-copy {
    margin: 0 0 10px;
    color: #CFCFCF;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.footer-credit {
    margin: 0;
    color: #9CA3AF;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-align: center;
}

.footer-heart {
    color: #E11D48;
    display: inline;
}

.footer-credit-brand {
    color: #F5C542;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--muted-dim);
    font-size: 0.88rem;
    transition: color var(--transition);
}

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

.footer-bottom p {
    color: #CFCFCF;
    font-size: 0.86rem;
}

/* =====================================
   WHATSAPP BUTTON
   Desktop/Mobile: right side, ~65–70% from top
===================================== */

.floating-whatsapp {
    position: fixed;
    /* Lower-middle right — not bottom corner */
    top: 68vh;
    bottom: auto;
    right: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    z-index: 998;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.38);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.48);
    color: #fff;
}

/* =====================================
   CART SIDEBAR
===================================== */

.cart-sidebar {
    position: fixed;
    top: 78px;
    right: -420px;
    width: 380px;
    max-width: 95%;
    max-height: 78vh;
    background: var(--card);
    z-index: 9999;
    transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.55);
}

.cart-sidebar.active {
    right: 18px;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    background: rgba(245, 197, 66, 0.04);
}

.cart-header h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--gold);
    font-weight: 700;
}

#closeCart {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

#closeCart:hover {
    background: rgba(245, 197, 66, 0.12);
    border-color: rgba(245, 197, 66, 0.35);
    color: var(--gold);
}

#cartItems {
    padding: 14px 16px;
    overflow-y: auto;
    flex: 1;
    max-height: 420px;
}

.empty-cart {
    text-align: center;
    opacity: 0.75;
    padding: 40px 0;
    color: var(--muted);
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(42, 47, 56, 0.9);
}

.cart-item-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    background: #12151B;
    border: 1px solid var(--border);
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h4 {
    margin: 0 0 5px;
    font-size: 0.92rem;
    line-height: 1.35;
    font-weight: 600;
}

.cart-item-info p {
    margin: 3px 0;
    font-size: 0.84rem;
    color: var(--muted-dim);
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.qty-controls span {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
}

.qty-controls button {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: var(--gold);
    color: #111;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}

.qty-controls button:hover {
    transform: scale(1.08);
}

.cart-footer {
    padding: 18px 20px;
    border-top: 1px solid var(--border);
    background: #12151B;
}

#cartTotal {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
}

#cartTotal small {
    display: block;
    margin-top: 5px;
    font-size: 0.86rem;
    color: var(--muted);
    font-weight: 500;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: #111;
    text-align: center;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    font-size: 0.98rem;
    box-shadow: 0 8px 18px rgba(245, 197, 66, 0.16);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    background: var(--gold-soft);
    box-shadow: 0 12px 30px rgba(245, 197, 66, 0.34);
    color: #111;
}

/* =====================================
   HEADER WINNER CTA
===================================== */

.winner-header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.winner-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold);
}

.winner-header-btn {
    padding: 11px 22px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 700;
    background: var(--gold);
    color: #111;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 0 18px rgba(245, 197, 66, 0.2);
}

.winner-header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(245, 197, 66, 0.3);
    color: #111;
}

.mobile-winner-banner {
    display: none;
}

.desktop-only {
    display: flex;
}

/* =====================================
   SINGLE PRODUCT PAGE
===================================== */

.single-product-section {
    padding: 48px 20px 88px;
    background:
        radial-gradient(ellipse 50% 40% at 20% 0%, rgba(245, 197, 66, 0.06), transparent 55%),
        var(--bg-2);
    min-height: calc(100vh - 200px);
}

.single-product-wrapper {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    background: var(--card);
    padding: 44px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.single-product-image {
    position: relative;
}

.single-product-image::before {
    content: '';
    position: absolute;
    inset: 12% 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 197, 66, 0.14), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.single-product-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #1C2029 0%, #12151B 100%);
    padding: 36px;
    border: 1px solid var(--border);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.25);
    transition: transform 0.45s ease;
}

.single-product-image:hover img {
    transform: scale(1.02);
}

.single-product-info h1 {
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    margin-bottom: 12px;
    line-height: 1.15;
    letter-spacing: 0.03em;
    font-weight: 400;
}

.single-product-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--gold);
    letter-spacing: 0.01em;
}

.single-coupon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 197, 66, 0.08);
    border: 1px solid rgba(245, 197, 66, 0.35);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.86rem;
    margin-bottom: 16px;
}

.product-description {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 0.98rem;
}

.features-list {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.features-list p {
    margin: 0;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #12151B;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.features-list i {
    margin-right: 0;
    color: var(--gold);
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.single-add-btn {
    padding: 17px 20px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.single-product-info .out-stock-btn {
    width: 100%;
    padding: 17px;
    border-radius: var(--radius-md);
    background: #1E222B;
    color: var(--muted);
    border: 1px solid var(--border);
    font-size: 1.02rem;
    font-weight: 600;
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-affiliate-card {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        padding: 28px 24px;
        gap: 22px;
    }

    .footer-affiliate-btn {
        width: 100%;
    }

    .hero {
        width: calc(100% - 40px);
        margin-top: 20px;
        border-radius: 20px;
    }

    .single-product-wrapper {
        gap: 32px;
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .header-container {
        min-height: 58px;
        padding: 10px 0;
    }

    .header-actions {
        gap: 10px;
    }

    .hero {
        width: calc(100% - 24px);
        margin: 12px auto 0;
        border-radius: 16px;
        border: 1px solid rgba(245, 197, 66, 0.12);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    }

    #premium-products {
        padding-top: 56px;
    }

    .header-checkout-btn {
        padding: 9px 14px;
        font-size: 0.82rem;
    }

    .cart-text {
        display: none;
    }

    .cart-icon {
        padding: 10px 12px;
    }

    .section-title {
        padding: 56px 16px 28px;
    }

    .products-grid {
        width: 94%;
        gap: 12px;
    }

    .product-card {
        padding: 14px 12px 12px;
        border-radius: 16px;
    }

    .product-card img {
        height: 160px;
    }

    .product-card h3 {
        font-size: 0.88rem;
        min-height: 42px;
        margin-top: 10px;
    }

    .price {
        font-size: 1.25rem;
        margin: 8px 0 10px;
    }

    .add-cart-btn {
        padding: 11px;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 56px 0 40px;
    }

    .footer-about-text {
        max-width: none;
    }

    .footer-affiliate-cta {
        padding: 4px 0 36px;
    }

    .footer-affiliate-card {
        padding: 24px 20px;
        border-radius: var(--radius-md);
    }

    .footer-affiliate-content {
        gap: 14px;
    }

    .footer-affiliate-heading {
        font-size: 1.08rem;
    }

    .footer-affiliate-desc {
        font-size: 0.9rem;
    }

    .footer-affiliate-btn {
        padding: 14px 22px;
        font-size: 0.9rem;
    }

    /* Toast: top center on mobile */
    .cart-toast {
        top: 14px;
        right: auto;
        left: 50%;
        width: min(340px, calc(100vw - 28px));
        transform: translate(-50%, -18px);
    }

    .cart-toast.is-visible {
        transform: translate(-50%, 0);
    }

    .cart-toast.is-leaving {
        transform: translate(-50%, -12px);
    }

    .cart-toast-card {
        padding: 14px 16px 14px 14px;
        border-radius: 12px;
    }

    .cart-toast-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 0.88rem;
    }

    .cart-toast-title {
        font-size: 0.94rem;
    }

    .cart-toast-message {
        font-size: 0.84rem;
    }

    .season-card {
        padding: 36px 20px;
    }

    .cart-sidebar {
        top: auto;
        left: 0;
        right: 0;
        bottom: -100%;
        width: 100%;
        max-width: 100%;
        max-height: 80vh;
        border-radius: 20px 20px 0 0;
        transition: bottom 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .cart-sidebar.active {
        bottom: 0;
        right: 0;
    }

    .mobile-winner-banner {
        display: block;
        padding: 10px 15px;
        background: var(--bg);
    }

    .mobile-winner-banner a {
        display: block;
        text-align: center;
        padding: 12px;
        border-radius: 12px;
        font-weight: 700;
        text-decoration: none;
        background: var(--gold);
        color: #111;
    }

    .desktop-only {
        display: none !important;
    }

    .single-product-section {
        padding: 24px 14px 56px;
    }

    .single-product-wrapper {
        grid-template-columns: 1fr;
        padding: 22px 18px;
        gap: 24px;
        border-radius: 20px;
    }

    .single-product-image img {
        padding: 22px;
    }

    .single-product-info h1 {
        font-size: 1.7rem;
    }

    .single-product-price {
        font-size: 1.65rem;
    }

    .floating-whatsapp {
        width: 54px;
        height: 54px;
        font-size: 24px;
        /* ~70% viewport height, clear of browser chrome */
        top: 70vh;
        bottom: auto;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card img {
        height: 132px;
    }

    .product-card h3 {
        font-size: 0.8rem;
        min-height: 38px;
    }

    .price {
        font-size: 1.1rem;
    }

    .add-cart-btn {
        font-size: 0.78rem;
        padding: 10px 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
