:root {
    --cream: #FDFBF7;
    --black: #1A1A1A;
    --gold: #D4AF37;
    --blush: #F2D1C9;
    --caramel: #C68E5F;
    --white: #FFFFFF;

    --shadow-soft: 0 12px 30px rgba(0,0,0,0.08);
    --shadow-lift: 0 22px 55px rgba(0,0,0,0.14);

    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background:
        radial-gradient(circle at 15% 10%, rgba(242, 209, 201, 0.35), transparent 55%),
        radial-gradient(circle at 85% 75%, rgba(212, 175, 55, 0.16), transparent 55%),
        var(--cream);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

a { text-decoration: none; color: inherit; }

/* --- Layout Utils --- */
.container { 
    padding: 0 5%; 
    max-width: 1400px; 
    margin: 0 auto; 
}
.hidden { display: none !important; }

/* --- Background Decor --- */
.bg-shape {
    position: fixed;
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
    will-change: transform;
}

.arch {
    width: 400px;
    height: 600px;
    border: 1px solid var(--gold);
    border-radius: 200px 200px 0 0;
    top: 10%;
    left: -100px;
    transform: rotate(-15deg);
    animation: float-arch 18s ease-in-out infinite;
}

.blob {
    width: 300px;
    height: 300px;
    background: var(--blush);
    filter: blur(80px);
    border-radius: 50%;
    bottom: 10%;
    right: -50px;
    animation: float-blob 22s ease-in-out infinite;
}

@keyframes float-arch {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(-15deg); }
    50% { transform: translate3d(12px, 18px, 0) rotate(-10deg); }
}

@keyframes float-blob {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-16px, -22px, 0) scale(1.05); }
}

/* --- Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links li {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
}

.nav-links li::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links li:hover::after { width: 100%; }

.nav-icons { display: flex; gap: 1.5rem; font-size: 1.1rem; align-items: center; }
.nav-icons i { cursor: pointer; transition: var(--transition); }
.nav-icons i:hover { color: var(--gold); transform: translateY(-2px); }

.cart-icon { position: relative; }
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--black);
    color: white;
    font-size: 0.6rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Hero --- */
.page-section { padding-top: 120px; padding-bottom: 2rem; opacity: 0; transform: translateY(14px); will-change: transform, opacity; }
.page-section#page-home { min-height: 5vh; }

.page-section:not(.hidden),
.fade-in {
    animation: fade-up 720ms cubic-bezier(0.165, 0.84, 0.44, 1) 80ms both;
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-text {
    position: relative;
}

/* Eyebrow / domain badge */
.hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: rgba(26, 26, 26, 0.85);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(198, 142, 95, 0.25);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    margin-bottom: 1.25rem;
    opacity: 0;
    filter: blur(6px);
    transform: translateY(0);
    animation:
        hero-fade 900ms cubic-bezier(0.165, 0.84, 0.44, 1) 120ms both,
        kicker-float 7s ease-in-out 1.3s infinite;
}

@keyframes hero-fade {
    from { opacity: 0; filter: blur(6px); }
    to { opacity: 1; filter: blur(0); }
}

.hero-kicker::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-left: 0.75rem;
    background: radial-gradient(circle at 30% 30%, var(--gold), var(--caramel));
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.14);
}

@keyframes kicker-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.2rem);
    line-height: 0.95;
    margin-bottom: 2rem;
    position: relative;
}

.hero-title::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    left: -90px;
    top: -70px;
    background: rgba(242, 209, 201, 0.55);
    filter: blur(40px);
    border-radius: 50%;
    z-index: -1;
    animation: title-glow 9s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.55; }
    50% { transform: translate3d(14px, 10px, 0) scale(1.08); opacity: 0.75; }
}

.hero-title-line {
    display: block;
    opacity: 0;
    transform: translateY(16px);
    animation: hero-reveal 900ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

.hero-title-line:nth-child(1) { animation-delay: 220ms; }
.hero-title-line:nth-child(2) { animation-delay: 360ms; }

.hero-title-line.accent {
    background: linear-gradient(90deg, var(--caramel), var(--gold), var(--caramel));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation:
        hero-reveal 900ms cubic-bezier(0.165, 0.84, 0.44, 1) 360ms both,
        gradient-pan 4.2s ease-in-out 1.4s infinite;
}

@keyframes gradient-pan {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes hero-reveal {
    from { opacity: 0; transform: translateY(16px); filter: blur(6px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    position: relative; 
    gap: 40px;
}
.hero-text { width: 45%; z-index: 2; }
.hero-text h1:not(.hero-title) { 
    font-size: clamp(3rem, 8vw, 5.5rem); 
    line-height: 0.9; 
    margin-bottom: 2rem; 
}
.hero-text h1:not(.hero-title) span { color: var(--caramel); font-style: italic; display: block; margin-left: 10%; }

.hero-img-box {
    width: 50%;
    height: clamp(400px, 70vh, 800px);
    position: relative;
    background: var(--white);
    border-radius: 300px 300px 20px 20px;
    overflow: hidden;
    box-shadow: 20px 20px 0 var(--blush);
}

.hero-img-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.08));
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.hero-img-box:hover::after { opacity: 1; }

.hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.hero-img-box:hover img { transform: scale(1.04); }

.cta-btn {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--black);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    transition: var(--transition);
    border: 1px solid var(--black);
    cursor: pointer;
    text-align: center;
    font-family: inherit;
    line-height: 1;
    appearance: none;
    -webkit-appearance: none;
}

/* Give buttons some depth + a subtle “shine” on hover */
.cta-btn,
.whatsapp-btn {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transform: translateZ(0);
}

.cta-btn::before,
.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -50%;
    width: 40%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-18deg);
    opacity: 0;
    pointer-events: none;
}

.cta-btn:hover::before,
.whatsapp-btn:hover::before {
    opacity: 1;
    animation: btn-shine 750ms ease-out;
}

@keyframes btn-shine {
    from { left: -50%; }
    to { left: 130%; }
}

.cta-btn:hover {
    background: transparent;
    color: var(--black);
    transform: translateY(-2px) scale(1.03);
    box-shadow: var(--shadow-lift);
}

.cta-btn:active,
.whatsapp-btn:active {
    transform: translateY(0) scale(0.99);
}

.cta-btn:focus-visible,
.whatsapp-btn:focus-visible,
.nav-btn:focus-visible {
    outline: 3px solid rgba(198, 142, 95, 0.35);
    outline-offset: 4px;
}

/* Home hero CTA group: stack buttons and force same width */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: min(340px, 100%);
}

.hero-actions .cta-btn,
.hero-actions .whatsapp-btn {
    width: 100%;
}

.hero-actions .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1.2rem 3.5rem;
    background: #25D366;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    transition: var(--transition);
    border: 1px solid #25D366;
    text-align: center;
    margin: 0;
}
.whatsapp-btn:hover {
    background: #1fa854;
    border-color: #1fa854;
    transform: translateY(-2px) scale(1.03);
    box-shadow: var(--shadow-lift);
}
.whatsapp-btn i {
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
}

/* --- Carousel Section --- */
.carousel-container {
    position: relative;
    padding: 4rem 0;
    overflow: visible;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.25rem;
    padding: 0 5%;
}

/* Trust widgets under "Les Nouveautés" */
.trust-widgets {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    padding: 0 5%;
    margin-top: 1rem;
    margin-bottom: 0;
}

.trust-widget {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.05rem 1.15rem;
    border-radius: 20px;

    /* modern glass + gradient border */
    border: 1px solid transparent;
    background:
        linear-gradient(rgba(255,255,255,0.78), rgba(255,255,255,0.55)) padding-box,
        linear-gradient(135deg, rgba(212,175,55,0.35), rgba(198,142,95,0.35), rgba(242,209,201,0.45)) border-box;
    backdrop-filter: blur(12px);

    box-shadow: var(--shadow-soft);
    color: rgba(26, 26, 26, 0.88);
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
    will-change: transform;

    opacity: 0;
    transform: translateY(12px);
    animation: widget-in 900ms cubic-bezier(0.165, 0.84, 0.44, 1) calc(560ms + var(--d, 0ms)) both;
}

.trust-widget:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lift);
    color: var(--black);
    background:
        linear-gradient(rgba(255,255,255,0.86), rgba(255,255,255,0.62)) padding-box,
        linear-gradient(135deg, rgba(198,142,95,0.55), rgba(212,175,55,0.45), rgba(242,209,201,0.55)) border-box;
}

@keyframes widget-in {
    from { opacity: 0; transform: translateY(12px); filter: blur(6px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.tw-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* icon matches text color via currentColor */
    color: inherit;

    background: rgba(26, 26, 26, 0.04);
    border: 1px solid rgba(26, 26, 26, 0.06);
}

.tw-icon i {
    font-size: 1.25rem;
    color: currentColor; /* icon must match text color */
}

.tw-text { line-height: 1.15; }
.tw-title {
    font-weight: 800;
    letter-spacing: 0.2px;
    font-size: 1rem;
}

.tw-subtitle {
    margin-top: 0.25rem;
    font-size: 0.9rem;
    opacity: 0.78;
}

.carousel-nav {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--black);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--black);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.slider-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 2rem 5%;
    scrollbar-width: none; /* Firefox */
    scroll-behavior: smooth;
}

.slider-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.slider-card {
    flex: 0 0 clamp(280px, 30vw, 400px);
    scroll-snap-align: center;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    cursor: pointer;
}

.slider-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.slider-img {
    height: 350px;
    overflow: hidden;
    position: relative;
}

/* Ensure badges sit above quick-add overlay in the carousel */
.slider-img .product-badges {
    z-index: 6;
}

.slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.slider-card:hover .slider-img img {
    transform: scale(1.1);
}

.slider-info {
    padding: 1.5rem;
}

/* Prices */
.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-top: 0.35rem;
}

.price-row-lg {
    font-size: 1.5rem;
}

.price-new {
    color: var(--caramel);
    font-weight: 700;
}

.price-old {
    text-decoration: line-through;
    opacity: 0.55;
    font-weight: 600;
    font-size: 0.9em;
}

/* Badges on product images */
.product-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 5;
    pointer-events: none;
}

.product-badge {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(10px);
}

.product-badge.product-sale {
    background: rgba(26, 26, 26, 0.92);
    border-color: rgba(26, 26, 26, 0.92);
    color: white;
}

/* Card content */
.card-info {
    padding: 1.5rem;
}

.card-desc {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.75;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Product Grid & Shop --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.card {
    background: var(--white);
    grid-column: span 4;
    position: relative;
    transition: var(--transition);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.04);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lift);
}

.card-img { height: clamp(300px, 40vh, 450px); overflow: hidden; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }

.quick-add {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(255,255,255,0.9);
    padding: 1rem;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.7rem;
    cursor: pointer;
    display: block;
}
.card:hover .quick-add, .slider-card:hover .quick-add { transform: translateY(0); }

/* --- Product Detail View --- */
.product-detail {
    display: flex;
    align-items: flex-start;
    gap: clamp(1.25rem, 4vw, 3rem);
}

.p-gallery {
    flex: 0 0 min(520px, 46%);
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.p-gallery img {
    width: 100%;
    border-radius: 18px;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    max-height: 560px;
}

.p-content {
    flex: 1;
    min-width: 0;
    position: sticky;
    top: 120px;
}

.buy-block {
    display: flex;
    align-items: stretch;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
}

.qty-picker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.10);
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    color: var(--black);
}

.qty-btn:hover {
    background: rgba(0,0,0,0.05);
}

.qty-input {
    width: 60px;
    height: 44px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 800;
    font-size: 0.95rem;
    outline: none;
    color: var(--black);
}

/* Hide number input spinners (Chrome/Edge/Safari) */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide number input spinners (Firefox) */
.qty-input[type=number] {
    -moz-appearance: textfield;
}

.buy-now {
    flex: 1;
    min-width: 220px;
}

/* --- Checkout Fields (Product Page) --- */
.checkout-fields {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.checkout-fields input {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1px solid rgba(0,0,0,0.10);
    border-radius: 12px;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--black);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    box-sizing: border-box;
}

.checkout-fields input::placeholder {
    opacity: 0.5;
}

.checkout-fields input:focus {
    border-color: var(--caramel);
    box-shadow: 0 0 0 3px rgba(198,142,95,0.15);
}

.product-perks {
    margin-top: 0.25rem;
}

.product-perks h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 0.75rem;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.perk {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;

    border: 1px solid transparent;
    background:
        linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.60)) padding-box,
        linear-gradient(135deg, rgba(212,175,55,0.30), rgba(198,142,95,0.30), rgba(242,209,201,0.38)) border-box;
    backdrop-filter: blur(12px);

    box-shadow: var(--shadow-soft);
    color: rgba(26, 26, 26, 0.88);

    opacity: 0;
    transform: translateY(10px);
    animation: widget-in 850ms cubic-bezier(0.165, 0.84, 0.44, 1) calc(680ms + var(--d, 0ms)) both;
}

.perk i {
    color: currentColor;
    font-size: 1.05rem;
    flex-shrink: 0;
}

/* --- Product Image Thumbnails --- */
.p-thumbnails {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.p-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.65;
    transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.p-thumb:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.p-thumb.active {
    border-color: var(--caramel);
    opacity: 1;
}

.back-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.back-link:hover {
    opacity: 1;
    color: var(--caramel);
}


/* --- Cart Sidebar --- */
#cart-panel {
    position: fixed; right: -100%; top: 0; width: 450px; max-width: 100%; height: 100vh;
    background: var(--white); z-index: 2000; padding: 2rem;
    box-shadow: -20px 0 50px rgba(0,0,0,0.05); transition: var(--transition);
    display: flex; flex-direction: column;
}
#cart-panel.open { right: 0; }

/* --- Footer --- */
footer { 
    background: var(--black); 
    color: var(--white); 
    padding: 5rem 5% 3rem; 
    margin-top: 0; 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr 1fr; 
    gap: 3rem; 
    margin-bottom: 3rem; 
}

.footer-logo { 
    font-size: 1.8rem; 
    margin-bottom: 1.5rem; 
    display: block; 
}

.footer-col h4 { 
    color: var(--gold); 
    margin-bottom: 1.5rem; 
    text-transform: uppercase; 
    font-size: 0.75rem; 
    letter-spacing: 2px; 
}

.footer-col ul { 
    list-style: none; 
}

.footer-col li { 
    margin-bottom: 0.8rem; 
    font-size: 0.85rem; 
    opacity: 0.6; 
    transition: 0.3s; 
    cursor: pointer; 
}

.footer-col li:hover { 
    opacity: 1; 
    color: var(--blush); 
}

/* --- Responsive Queries --- */
@media (max-width: 968px) {
    .nav-links { display: none; }
    .hamburger-menu { display: flex !important; }
    .hero { flex-direction: column; text-align: center; gap: 30px; }
    .hero-text, .hero-img-box { width: 100%; }
    .hero-kicker { margin-left: auto; margin-right: auto; }
    .hero-actions { margin: 0 auto; }
    .hero-title::before { left: 50%; transform: translateX(-50%); }
    .hero-img-box { height: 50vh; }

    /* Product page mobile/tablet */
    .product-detail {
        flex-direction: column;
    }

    .p-gallery {
        flex: 1 1 auto;
    }

    .p-gallery img {
        max-height: none;
        aspect-ratio: 4 / 5;
    }

    .p-content {
        position: static;
        top: auto;
    }

    .perks-grid {
        grid-template-columns: 1fr;
    }

    .buy-now {
        min-width: 100%;
    }

    .trust-widgets {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 1rem;
        margin-bottom: 0;
    }

    .card { grid-column: span 6; }
    .slider-card { flex: 0 0 300px; }
    .footer-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 2rem; 
    }
}

@media (max-width: 600px) {
    .trust-widgets {
        grid-template-columns: 1fr;
    }

    .card { grid-column: span 12; }
    .slider-card { flex: 0 0 85vw; }
    .footer-grid { 
        grid-template-columns: 1fr; 
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* --- Mobile Drawer Menu --- */
.hamburger-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.hamburger-menu:hover {
    color: var(--gold);
}

.mobile-drawer {
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    z-index: 1500;
    transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow-y: auto;
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
}

.mobile-drawer.active {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.close-drawer {
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-drawer:hover {
    color: var(--gold);
}

.drawer-links {
    list-style: none;
    padding: 2rem 0;
}

.drawer-links li {
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid #f0f0f0;
    color: var(--black);
}

.drawer-links li:hover {
    background: var(--cream);
    color: var(--caramel);
    padding-left: 3rem;
}
