/* ============================================
   Tendance Nature CBD - Clone CSS
   Couleurs et styles extraits du site Wix live
   ============================================ */

/* --- CSS Variables (from Wix theme) --- */
:root {
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-dark-brown: #3F2D26;       /* rgb(63,45,38) - primary brand */
    --color-olive-green: #7A8F56;      /* rgb(122,143,86) - accent green */
    --color-dark-navy: #1F2736;        /* rgb(31,39,54) - dark sections */
    --color-steel-blue: #54728A;       /* rgb(84,114,138) - secondary blue */
    --color-light-gray: #EFEFEF;       /* rgb(239,239,239) - backgrounds */
    --color-mid-gray: #BFBFBF;        /* rgb(191,191,191) */
    --color-dark-gray: #303030;        /* rgb(48,48,48) - body text */
    --color-green-accent: #3E7745;     /* rgb(62,119,69) - buttons/CTA */
    --color-green-bright: #16AE1C;     /* rgb(22,174,28) - highlights */
    --color-blue-deep: #154063;        /* rgb(21,64,99) */

    --font-heading: 'Montserrat', sans-serif;
    --font-nav: 'DM Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --site-width: 1200px;
    --header-height: 95px;
}

/* --- Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-dark-gray);
    background-color: var(--color-light-gray);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    height: var(--header-height);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-inner {
    max-width: var(--site-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
    flex-wrap: nowrap;
    overflow: visible;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 60px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 18px;
    color: var(--color-dark-brown);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--color-dark-brown);
    padding: 5px 10px;
}

.nav-list {
    display: flex;
    gap: 0;
    align-items: center;
}

.nav-list > li > a {
    font-family: var(--font-nav);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-dark-gray);
    padding: 10px 16px;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--color-dark-brown);
}

/* Dropdown */
.has-submenu {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    min-width: 240px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    z-index: 100;
    border-radius: 0 0 4px 4px;
}

.has-submenu:hover .submenu {
    display: block;
}

.submenu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 300;
    color: var(--color-dark-gray);
    transition: background-color 0.2s, color 0.2s;
}

.submenu li a:hover {
    background: var(--color-light-gray);
    color: var(--color-dark-brown);
}

/* Header phone */
.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-nav);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.header-phone a {
    color: var(--color-dark-brown);
}

.header-phone .phone-sep {
    color: #ccc;
    font-weight: 300;
}

.header-social {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: 6px;
}

.header-social a {
    color: var(--color-dark-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    transition: background 0.3s, color 0.3s;
}

.header-social a:hover {
    background: var(--color-olive-green);
    color: #fff;
}

/* ============================================
   HERO SECTION (Homepage)
   ============================================ */
/* Hero Carousel */
/* Hero scrolling banner */
.hero-banner {
    overflow: hidden;
    background: #0a0f0a;
    position: relative;
    isolation: isolate;
}

/* No smoke on banner level - smoke is on promo cards only */

.hero-banner-track {
    display: flex;
    width: max-content;
    animation: hero-scroll 30s linear infinite;
    position: relative;
    z-index: 1;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.hero-banner-track:hover {
    animation-play-state: paused;
}

.hero-banner-item {
    flex-shrink: 0;
    height: 420px;
    position: relative;
    overflow: hidden;
}

.hero-banner-item.god {
    width: 420px;
}

.hero-banner-item.god img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Promo card - god blurred behind + glass + glow */
.hero-banner-item.promo {
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 18px;
    text-align: center;
    text-decoration: none;
    gap: 8px;
    position: relative;
    background: transparent;
    transition: transform 0.3s;
}

/* Dark base for promo cards — uses inherit to pick up inline background color */
.hero-banner-item.promo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    z-index: 0;
}

/* Smoke video background - cropped, no watermark */
.hero-banner-item.promo .smoke-vid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen;
    opacity: 0.55;
    z-index: 1;
    pointer-events: none;
}

.hero-banner-item.promo:hover {
    transform: scale(1.02);
}

.hero-banner-item.promo .promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 2px 12px rgba(231,76,60,0.4);
    position: relative;
    z-index: 1;
}

.hero-banner-item.promo .promo-badge.best { background: linear-gradient(135deg, #f39c12, #e67e22); box-shadow: 0 2px 12px rgba(243,156,18,0.4); }
.hero-banner-item.promo .promo-badge.new { background: linear-gradient(135deg, #6e4eff, #9b59b6); box-shadow: 0 2px 12px rgba(110,78,255,0.4); }

.hero-banner-item.promo .promo-img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    border-radius: 0;
    background: none;
    padding: 0;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6)) drop-shadow(0 0px 20px rgba(110,255,0,0.2));
    transition: transform 0.3s, filter 0.3s;
}

.hero-banner-item.promo:hover .promo-img {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.7)) drop-shadow(0 0px 30px rgba(110,255,0,0.35));
}

.hero-banner-item.promo .promo-cat {
    font-family: var(--font-nav);
    font-size: 10px;
    font-weight: 600;
    color: rgba(110,255,0,0.7);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.hero-banner-item.promo .promo-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.hero-banner-item.promo .promo-price {
    font-family: var(--font-heading);
    position: relative;
    z-index: 1;
}

.hero-banner-item.promo .promo-price-old {
    text-decoration: line-through;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    margin-right: 6px;
}

.hero-banner-item.promo .promo-price-new {
    font-size: 26px;
    font-weight: 900;
    color: #6eff00;
    text-shadow: 0 0 20px rgba(110,255,0,0.3);
}

.hero-banner-item.promo .promo-price-unit {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.hero-banner-item.promo .promo-btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--color-green-accent), #4a7c10);
    color: #fff;
    padding: 10px 30px;
    border-radius: 24px;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 16px rgba(110,255,0,0.2);
}

.hero-banner-item.promo:hover .promo-btn {
    box-shadow: 0 4px 24px rgba(110,255,0,0.35);
    transform: translateY(-1px);
}

/* Pause/play button */
.hero-banner-pause {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: background 0.2s;
    line-height: 1;
}
.hero-banner-pause:hover {
    background: rgba(0,0,0,0.8);
}

@keyframes hero-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Keep .hero for non-homepage pages */
.hero {
    position: relative;
    height: 500px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 39, 54, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 56px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-family: var(--font-nav);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    border: 2px solid var(--color-white);
    padding: 8px 24px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

/* ============================================
   CATEGORIES GRID (Homepage)
   ============================================ */
.categories-section {
    padding: 50px 0;
    background: var(--color-light-gray);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.category-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1 / 1.05;
    display: flex;
    align-items: flex-end;
    background: var(--color-dark-brown);
    transition: transform 0.3s;
}

.category-card:hover {
    transform: scale(1.02);
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.category-card:hover img {
    opacity: 0.85;
}

.category-label {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 14px 16px;
    background: rgba(63, 45, 38, 0.82);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}

/* Last row smaller cards */
.categories-grid .category-card:nth-child(n+9) {
    aspect-ratio: 1 / 1;
}

/* ============================================
   ABOUT PREVIEW (Homepage)
   ============================================ */
.about-preview {
    position: relative;
    padding: 80px 0;
    background: url('../images/gorille-cbd.webp') center center / contain no-repeat fixed;
    background-color: #1a2e1a;
    color: var(--color-white);
}
.about-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 50, 30, 0.55);
    z-index: 1;
}
.about-preview .container {
    position: relative;
    z-index: 2;
}

.about-preview .about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ============================================
   CATEGORY SHOWCASE (Parallax promo per category)
   ============================================ */
.category-showcase {
    position: relative;
    padding: 80px 0;
    background: center center / contain no-repeat fixed;
    background-color: #1a2e1a;
    color: #fff;
    min-height: 350px;
    display: flex;
    align-items: center;
}
.category-showcase-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.category-showcase-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.showcase-promo-content {
    animation: showcaseFadeIn 0.8s ease-out;
}
.showcase-discount-badge {
    display: inline-block;
    font-size: 48px;
    font-weight: 900;
    font-family: var(--font-heading);
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    line-height: 120px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}
.showcase-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}
.showcase-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.95;
}
.btn-showcase {
    display: inline-block;
    padding: 14px 36px;
    background: var(--color-green-accent);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.3s, transform 0.2s;
}
.btn-showcase:hover {
    background: var(--color-olive-green);
    transform: translateY(-2px);
}
/* Special order CTA */
.showcase-special-order {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.showcase-special-order h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}
.showcase-special-order p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 18px;
}
.showcase-special-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-showcase-phone {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-showcase-phone:hover {
    background: rgba(255,255,255,0.3);
}
.showcase-phone-icon {
    font-size: 18px;
    margin-right: 6px;
}
.btn-showcase-contact {
    background: transparent;
    border: 2px solid var(--color-green-accent);
}
.btn-showcase-contact:hover {
    background: var(--color-green-accent);
}
@keyframes showcaseFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
    .category-showcase {
        padding: 50px 0;
        min-height: 250px;
        background-attachment: scroll;
    }
    .showcase-discount-badge {
        font-size: 36px;
        width: 90px;
        height: 90px;
        line-height: 90px;
    }
    .showcase-title {
        font-size: 24px;
    }
    .showcase-special-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Section titles (replaces inline styles) */
.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Store Map section */
.store-map {
    padding: 50px 0 0;
    background: #f8f9fa;
}
.map-embed {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.about-preview h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-preview p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.btn-secondary {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--color-white);
    color: var(--color-white);
    padding: 12px 36px;
    transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-olive-green);
}

/* ============================================
   PROMO BANNER
   ============================================ */
/* About + Store band 50/50 */
.about-store-band {
    display: flex;
    width: 100%;
    min-height: 500px;
}
.about-store-text {
    width: 50%;
    background: #4a5340;
    color: #fff;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-store-text h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}
.about-store-text p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}
.about-store-text .btn-secondary {
    margin-top: 16px;
    align-self: flex-start;
    color: #fff;
    border-color: #fff;
}
.about-store-text .btn-secondary:hover {
    background: #fff;
    color: #4a5340;
}
.about-store-img {
    width: 50%;
    overflow: hidden;
}
.about-store-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
    .about-store-band {
        flex-direction: column;
    }
    .about-store-text, .about-store-img {
        width: 100%;
    }
    .about-store-img {
        height: 300px;
    }
}

.promo-banner {
    padding: 50px 0;
    background: var(--color-dark-navy);
    color: var(--color-white);
    text-align: center;
}

.promo-banner h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.promo-banner p {
    font-size: 16px;
    font-weight: 300;
    color: var(--color-mid-gray);
}

/* ============================================
   PAGE HERO (Category / static pages)
   ============================================ */
.page-hero {
    position: relative;
    height: 420px;
    background-color: var(--color-dark-brown);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(63, 45, 38, 0.6);
}

.page-hero h1 {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.page-hero .hero-count {
    position: relative;
    z-index: 2;
    font-size: 16px;
    font-weight: 300;
    margin-top: 8px;
    opacity: 0.8;
}

.hero-boutique {
    background-image: url('../images/05ffa4_ba7069d99f424dbf80c280cc9985d955~mv2.avif');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-about {
    background: var(--color-olive-green);
}

.hero-contact {
    background: var(--color-steel-blue);
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products-section {
    padding: 50px 0;
    background: var(--color-light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    position: relative;
    background: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.2s;
}

.product-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.product-ribbon {
    position: absolute;
    top: 12px;
    left: 0;
    background: var(--color-green-accent);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    z-index: 3;
}

.product-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 16px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin-bottom: 6px;
    line-height: 1.3;
}

.product-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-green-accent);
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--color-mid-gray);
    font-size: 16px;
}

/* ============================================
   CONTENT PAGES (About, Contact)
   ============================================ */
.content-section {
    padding: 60px 0;
    background: var(--color-white);
}

.content-text {
    max-width: 800px;
    margin: 0 auto;
}

.content-text h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin-bottom: 20px;
}

.content-text h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin: 30px 0 15px;
}

.content-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-text ul {
    margin: 0 0 20px 20px;
    list-style: disc;
}

.content-text ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 6px;
}

.content-text a {
    color: var(--color-green-accent);
    text-decoration: underline;
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin-bottom: 20px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin: 28px 0 12px;
}

.contact-info p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-info a {
    color: var(--color-green-accent);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}

.hours-table td {
    padding: 8px 12px;
    border-bottom: 1px solid var(--color-light-gray);
    font-size: 15px;
}

.hours-table td:first-child {
    font-weight: 500;
    width: 120px;
}

/* Contact form */
.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark-gray);
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-mid-gray);
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-green-accent);
}

.btn-primary {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--color-dark-brown);
    color: var(--color-white);
    padding: 14px 40px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--color-green-accent);
}

/* ============================================
   HEADER PROMO BAR
   ============================================ */
.header-promo {
    background: var(--color-dark-brown);
    color: var(--color-white);
    padding: 0;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    overflow: hidden;
    position: relative;
    height: 36px;
    display: flex;
    align-items: center;
}

.promo-track {
    display: flex;
    gap: 0;
    animation: promo-scroll 25s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.promo-track:hover {
    animation-play-state: paused;
}

.promo-item {
    display: inline-flex;
    align-items: center;
    padding: 0 40px;
    font-size: 13px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.promo-item::after {
    content: '\2022';
    margin-left: 40px;
    opacity: 0.4;
}

@keyframes promo-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Header right group */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-icon {
    color: var(--color-dark-brown);
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}

.header-icon:hover {
    opacity: 0.6;
}

/* ============================================
   CONTACT HERO PAGE
   ============================================ */
.contact-hero {
    position: relative;
    min-height: 700px;
    background: url('../images/products/tendance-nature-aix-les-bains-fleurs-cbd-1.webp') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.contact-form-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    padding: 50px 40px;
    max-width: 600px;
    width: 100%;
    border-radius: 4px;
}

.contact-form-card h1 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-dark-brown);
    text-align: center;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ============================================
   LEGAL / INFO PAGES
   ============================================ */
.hero-legal {
    background: var(--color-dark-navy);
}

.legal-section {
    padding: 60px 0;
    background: var(--color-white);
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-text h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin: 30px 0 12px;
    letter-spacing: 0.5px;
}

.legal-text p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--color-dark-gray);
}

.legal-text .legal-bullet {
    padding-left: 20px;
}

.content-text h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-olive-green);
    margin: 24px 0 12px;
}

/* (cookie banner styles moved to RGPD section below) */

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-dark-brown);
    color: var(--color-white);
    padding: 50px 0 0;
}

.footer-inner {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: var(--color-white);
}

.footer-col p,
.footer-col li {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
}

.footer-col a {
    color: rgba(255,255,255,0.75);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--color-white);
}

.footer-phones {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-phones .phone-sep {
    color: rgba(255,255,255,0.3);
    font-weight: 300;
}

.footer-col ul li {
    margin-bottom: 4px;
}

/* Subscribe form */
.subscribe-form {
    display: flex;
    gap: 0;
    margin-bottom: 16px;
}

.subscribe-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.3);
    border-right: none;
    background: transparent;
    color: var(--color-white);
    font-size: 14px;
    font-family: var(--font-body);
}

.subscribe-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.subscribe-form button {
    padding: 10px 20px;
    background: var(--color-olive-green);
    border: 1px solid var(--color-olive-green);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    transition: background 0.3s;
}

.subscribe-form button:hover {
    background: var(--color-green-accent);
    border-color: var(--color-green-accent);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--color-olive-green);
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.footer-seo {
    margin-top: 8px;
    font-size: 12px !important;
}

/* Footer badges */
.footer-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 30px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: var(--site-width);
    margin: 0 auto;
}

/* Footer newsletter */
.footer-newsletter {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
}

.footer-newsletter h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--color-white);
}

/* Footer social */
.footer-social {
    display: flex;
    gap: 12px;
    padding: 10px 0;
}

.footer-social a {
    color: var(--color-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.footer-social a:hover {
    background: var(--color-olive-green);
}

/* Footer map */
.footer-map {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 0 20px 20px;
}

.footer-map iframe {
    border-radius: 4px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* iPad uniquement (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Cookie banner iPad */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
        gap: 12px;
    }
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    .cookie-settings.open {
        padding: 16px 20px;
    }
    .header-phone {
        display: none;
    }
    .header-social {
        display: none;
    }
    .logo {
        height: 45px;
    }
    .logo-text {
        font-size: 14px;
        letter-spacing: 1px;
    }
    .nav-list > li > a {
        font-size: 12px;
        padding: 10px 8px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .logo-text {
        font-size: 14px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        padding: 10px 0;
    }

    .nav-list.open {
        display: flex;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-list > li > a {
        padding: 12px 20px;
    }

    .submenu {
        position: static;
        box-shadow: none;
        background: var(--color-light-gray);
        max-height: none;
        overflow-y: visible;
    }

    .has-submenu:hover .submenu {
        display: block;
    }

    .header-right {
        gap: 8px;
    }

    .header-phone,
    .header-social {
        display: none;
    }

    .header-promo {
        height: 30px;
    }

    .promo-item {
        font-size: 11px;
        padding: 0 24px;
    }

    .promo-item::after {
        margin-left: 24px;
    }

    .hero-banner-item { height: 300px; }
    .hero-banner-item.god { width: 300px; }
    .hero-banner-item.promo { width: 240px; padding: 14px; gap: 5px; }
    .hero-banner-item.promo .promo-img { width: 110px; height: 110px; }
    .hero-banner-item.promo .promo-name { font-size: 13px; }
    .hero-banner-item.promo .promo-price-new { font-size: 20px; }
    .hero-banner-item.promo .promo-btn { padding: 8px 18px; font-size: 10px; }

    .hero {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .page-hero {
        height: 280px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .promo-banner h2 {
        font-size: 20px;
    }

    .contact-hero {
        min-height: 500px;
        padding: 30px 15px;
    }

    .contact-form-card {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-badges {
        gap: 16px;
    }

    .footer-badges svg {
        width: 36px;
        height: 36px;
    }
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    max-width: 1200px;
    margin: 12px auto 0;
    padding: 8px 20px;
    font-size: 13px;
    color: #888;
}

.breadcrumb a {
    color: var(--color-green-accent, #4CAF50);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span:last-child {
    color: #333;
    font-weight: 600;
}

.bc-sep {
    margin: 0 6px;
    color: #ccc;
}

/* Product page breadcrumb */
.pp-container .breadcrumb {
    padding: 0 0 8px;
    margin: 0 0 4px;
}

/* ============================================
   HEADER ICONS & CART BADGE
   ============================================ */
.header-icon {
    position: relative;
    cursor: pointer;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--color-green-accent);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Auth status indicator */
.auth-status-dot {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4CAF50;
    border: 2px solid var(--color-white);
    display: none;
}

.header-icon.logged-in .auth-status-dot {
    display: block;
}

.header-icon .auth-user-name {
    display: none;
    font-size: 12px;
    font-weight: 600;
    margin-left: 4px;
    color: var(--color-green-accent);
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-icon.logged-in .auth-user-name {
    display: inline;
}

.header-icon.logged-in svg {
    color: var(--color-green-accent);
}

.lang-toggle {
    font-family: var(--font-nav);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-dark-brown);
    cursor: pointer;
    background: none;
    border: 1px solid var(--color-mid-gray);
    border-radius: 3px;
    padding: 4px 8px;
    transition: border-color 0.2s;
}

.lang-toggle:hover {
    border-color: var(--color-dark-brown);
}

/* ============================================
   AGE GATE — Full-screen landing page
   ============================================ */
.age-gate-fullscreen {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}
.age-gate-fullscreen.fade-out {
    opacity: 0;
    pointer-events: none;
}
.age-gate-bg {
    position: absolute;
    inset: 0;
    background: url('../images/age-gate-bg.avif') center center / cover no-repeat;
    filter: blur(3px) brightness(0.35);
}
.age-gate-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 520px;
    width: 90%;
    padding: 50px 40px;
    background: rgba(0,0,0,0.35);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    animation: ageGateFadeIn 0.6s ease-out;
}
@keyframes ageGateFadeIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.age-gate-content h1 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 4px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}
.age-gate-subtitle {
    font-size: 14px;
    opacity: 0.7;
    letter-spacing: 2px;
    margin-bottom: 0;
}
.age-gate-divider {
    width: 60px;
    height: 2px;
    background: var(--color-green-accent);
    margin: 20px auto;
}
.age-gate-text {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 8px;
}
.age-gate-question {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 12px;
    margin-bottom: 0;
}
.age-gate-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}
.age-gate-yes, .age-gate-no {
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    transition: all 0.3s;
}
.age-gate-yes {
    background: var(--color-green-accent);
    color: #fff;
    box-shadow: 0 4px 16px rgba(76,175,80,0.4);
}
.age-gate-yes:hover {
    background: var(--color-olive-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.5);
}
.age-gate-no {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.25);
}
.age-gate-no:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.age-gate-legal {
    font-size: 11px;
    opacity: 0.5;
    margin-top: 20px;
    line-height: 1.5;
}
.age-gate-legal a {
    color: rgba(255,255,255,0.7);
    text-decoration: underline;
}
@media (max-width: 768px) {
    .age-gate-content {
        padding: 35px 24px;
    }
    .age-gate-content h1 {
        font-size: 22px;
        letter-spacing: 2px;
    }
}

/* ============================================
   VIDEO PROMO POPUP
   ============================================ */
#video-promo-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
#video-promo-popup.visible {
    opacity: 1;
    pointer-events: auto;
}
.video-promo-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.video-promo-card {
    position: relative;
    width: 340px;
    max-width: 90vw;
    max-height: 90vh;
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
#video-promo-popup.visible .video-promo-card {
    transform: scale(1) translateY(0);
}
.video-promo-close {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 3;
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.video-promo-close:hover { background: rgba(0,0,0,0.8); }
.video-promo-video-wrap {
    width: 100%;
    height: 380px;
    overflow: hidden;
}
.video-promo-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-promo-content {
    padding: 24px;
    text-align: center;
    background: linear-gradient(to bottom, #111, #1a1a1a);
}
.video-promo-content h3 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.video-promo-content p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-bottom: 16px;
}
.video-promo-content p strong {
    color: var(--color-green-accent);
    font-size: 20px;
}
.video-promo-code {
    display: inline-block;
    background: rgba(110,255,0,0.1);
    border: 2px dashed var(--color-green-accent);
    color: var(--color-green-accent);
    font-family: monospace;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 10px 24px;
    border-radius: 8px;
    margin-bottom: 16px;
}
.video-promo-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--color-green-accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
.video-promo-btn:hover {
    background: var(--color-olive-green);
    transform: translateY(-2px);
}
@media (max-width: 600px) {
    .video-promo-card { width: 300px; }
    .video-promo-video-wrap { height: 320px; }
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--color-white);
    z-index: 9991;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--color-light-gray);
}

.cart-drawer-header h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark-brown);
}

.cart-drawer-count {
    font-size: 13px;
    color: var(--color-dark-gray);
    font-weight: 400;
}

.cart-drawer-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--color-dark-gray);
    padding: 4px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-mid-gray);
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-light-gray);
    align-items: flex-start;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-details h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark-brown);
    margin-bottom: 4px;
    line-height: 1.3;
}

.cart-item-weight {
    font-size: 12px;
    color: var(--color-dark-gray);
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-green-accent);
    margin-bottom: 8px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
}

.cart-item-qty button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--color-mid-gray);
    background: var(--color-white);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.cart-item-qty button:hover {
    background: var(--color-light-gray);
}

.cart-item-qty span {
    width: 32px;
    height: 28px;
    border-top: 1px solid var(--color-mid-gray);
    border-bottom: 1px solid var(--color-mid-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

.cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
    opacity: 0.5;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.cart-item-remove:hover {
    opacity: 1;
}

/* Cart drawer footer */
.cart-drawer-footer {
    padding: 20px;
    border-top: 1px solid var(--color-light-gray);
    background: var(--color-white);
}

.cart-promo {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.cart-promo input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--color-mid-gray);
    border-radius: 3px;
    font-size: 13px;
    font-family: var(--font-body);
}

.cart-promo input.error {
    border-color: #d32f2f;
}

.cart-promo button {
    padding: 8px 16px;
    background: var(--color-dark-brown);
    color: var(--color-white);
    border: none;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-promo-status {
    margin-bottom: 8px;
}

.promo-active {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f5e9;
    color: var(--color-green-accent);
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.promo-remove {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-dark-gray);
}

.cart-totals {
    font-size: 14px;
}

.cart-totals-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    color: var(--color-dark-gray);
}

.cart-totals-row.total {
    font-weight: 700;
    font-size: 16px;
    color: var(--color-dark-brown);
    border-top: 1px solid var(--color-light-gray);
    padding-top: 10px;
    margin-top: 4px;
}

.cart-shipping-info {
    font-size: 11px;
    color: var(--color-dark-gray);
    text-align: center;
    margin: 8px 0;
}

.btn-checkout {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--color-green-accent);
    color: var(--color-white);
    border: none;
    border-radius: 3px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 12px;
}

.btn-checkout:hover {
    background: var(--color-olive-green);
}

.btn-continue {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    color: var(--color-dark-brown);
    text-decoration: underline;
    margin-top: 8px;
}

/* Cart toast */
.cart-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--color-dark-brown);
    color: var(--color-white);
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    white-space: nowrap;
}

.cart-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================
   QUICK VIEW MODAL
   ============================================ */
.qv-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9950;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.qv-overlay.show {
    opacity: 1;
}

.qv-modal {
    background: var(--color-white);
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.qv-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-dark-gray);
    z-index: 2;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.qv-close:hover {
    background: var(--color-light-gray);
}

.qv-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.qv-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px 0 0 8px;
    background: #fff;
    padding: 10px;
}

.qv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Quick-view navigation arrows */
.qv-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.92);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
    transition: background 0.2s, transform 0.2s;
    color: #222;
    z-index: 3;
}
.qv-nav-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.12);
}
.qv-nav-arrow.prev { left: 14px; }
.qv-nav-arrow.next { right: 14px; }

.qv-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.qv-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark-brown);
}

.qv-price-display {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.qv-price-label {
    font-size: 13px;
    color: var(--color-dark-gray);
}

.qv-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-green-accent);
}

.qv-variants label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-dark-gray);
    margin-bottom: 8px;
}

.qv-weight-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.qv-weight-btn {
    padding: 8px 16px;
    border: 1px solid var(--color-mid-gray);
    background: var(--color-white);
    border-radius: 3px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.qv-weight-btn:hover {
    border-color: var(--color-dark-brown);
}

.qv-weight-btn.active {
    background: var(--color-dark-brown);
    color: var(--color-white);
    border-color: var(--color-dark-brown);
}

.qv-quantity label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-dark-gray);
    margin-bottom: 8px;
}

.qv-qty-control {
    display: flex;
    align-items: center;
    width: fit-content;
}

.qv-qty-control button {
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-mid-gray);
    background: var(--color-white);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qv-qty-control span {
    width: 44px;
    height: 36px;
    border-top: 1px solid var(--color-mid-gray);
    border-bottom: 1px solid var(--color-mid-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.qv-add-cart {
    padding: 14px 24px;
    background: var(--color-green-accent);
    color: var(--color-white);
    border: none;
    border-radius: 3px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.qv-add-cart:hover {
    background: var(--color-olive-green);
}

.qv-add-cart.disabled {
    background: var(--color-mid-gray);
    cursor: not-allowed;
}

.qv-details-link {
    display: inline-block;
    font-size: 14px;
    color: var(--color-dark-brown);
    text-decoration: underline;
    transition: color 0.2s;
}

.qv-details-link:hover {
    color: var(--color-green-accent);
}

/* Quick view button on product cards */
.btn-quick-view {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(63, 45, 38, 0.9);
    color: var(--color-white);
    border: none;
    padding: 10px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s, transform 0.3s;
}

.product-card:hover .btn-quick-view {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   COOKIE BANNER (RGPD)
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: var(--color-dark-navy);
    color: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.cookie-text p {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.85;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, opacity 0.3s;
}

.cookie-btn-settings {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--color-white);
}

.cookie-btn-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--color-white);
}

.cookie-btn-accept {
    background: var(--color-green-accent);
    color: var(--color-white);
}

.cookie-btn-accept:hover {
    background: var(--color-olive-green);
}

.cookie-btn-save {
    background: var(--color-green-accent);
    color: var(--color-white);
    width: 100%;
    margin-top: 12px;
    padding: 12px;
}

.cookie-settings {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0,0,0,0.2);
}

.cookie-settings.open {
    max-height: 600px;
    padding: 20px 30px;
    overflow-y: auto;
}

.cookie-settings h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cookie-category {
    margin-bottom: 12px;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.cookie-toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    display: inline-block;
    width: 40px;
    height: 22px;
    background: rgba(255,255,255,0.2);
    border-radius: 11px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
    flex-shrink: 0;
}

.cookie-slider::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
}

.cookie-toggle input:checked + .cookie-slider {
    background: var(--color-green-accent);
}

.cookie-toggle input:checked + .cookie-slider::after {
    transform: translateX(18px);
}

.cookie-toggle input:disabled + .cookie-slider {
    opacity: 0.6;
    cursor: default;
}

.cookie-desc {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 4px;
}

/* ============================================
   AUTH MODAL
   ============================================ */
.auth-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9960;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-modal {
    background: var(--color-white);
    border-radius: 8px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Welcome promo popup */
.welcome-promo-modal {
    text-align: center;
}

.welcome-promo-icon {
    font-size: 48px;
    margin-bottom: 8px;
}

.welcome-promo-text {
    font-size: 15px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.5;
}

.welcome-promo-code {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2d5016, #4a7c28);
    border-radius: 8px;
    padding: 12px 24px;
    margin: 12px 0;
}

.welcome-promo-code-text {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
    font-family: var(--font-nav);
}

.welcome-promo-copy {
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

.welcome-promo-copy:hover {
    background: rgba(255,255,255,0.35);
}

.welcome-promo-applied {
    color: #2d5016;
    font-weight: 600;
    font-size: 14px;
    margin: 12px 0 4px;
}

.welcome-promo-hint {
    color: #888;
    font-size: 13px;
    margin: 12px 0 4px;
}

/* Forgot password */
.auth-forgot-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
}

.auth-switch-row {
    text-align: right;
    margin: -4px 0 12px;
    font-size: 13px;
}

.auth-switch-row a {
    color: var(--color-green-accent);
    text-decoration: none;
}

.auth-switch-row a:hover {
    text-decoration: underline;
}

.auth-forgot-notfound {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #856404;
    line-height: 1.5;
}

.auth-forgot-notfound a {
    color: #2d5016;
    font-weight: 600;
}

.auth-forgot-success {
    background: #f0f9f0;
    border: 1px solid #4CAF50;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 12px;
    text-align: center;
}

.auth-forgot-success p {
    margin: 6px 0;
    font-size: 14px;
}

.auth-forgot-label {
    font-size: 12px !important;
    color: #888;
}

.auth-forgot-warn {
    font-size: 12px !important;
    color: #c0392b;
    font-weight: 600;
    margin-top: 10px !important;
}

.auth-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--color-dark-gray);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.auth-close:hover {
    background: var(--color-light-gray);
}

.auth-modal h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark-brown);
    text-align: center;
    margin-bottom: 24px;
}

.auth-error {
    display: none;
    background: #fce4ec;
    color: #c62828;
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 16px;
    text-align: center;
}

.auth-input {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-mid-gray);
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 15px;
    margin-bottom: 12px;
    transition: border-color 0.2s;
}

.auth-input:focus {
    outline: none;
    border-color: var(--color-green-accent);
}

.auth-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--color-green-accent);
    color: var(--color-white);
    border: none;
    border-radius: 3px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 8px;
}

.auth-btn:hover {
    background: var(--color-olive-green);
}

.auth-btn-logout {
    background: var(--color-dark-gray);
}

.auth-btn-logout:hover {
    background: #555;
}

.auth-switch {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--color-dark-gray);
}

.auth-switch a {
    color: var(--color-green-accent);
    text-decoration: underline;
    font-weight: 500;
}

.auth-autogen-row {
    margin-bottom: 10px;
}
.auth-autogen-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-dark-gray);
    cursor: pointer;
    user-select: none;
}
.auth-autogen-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--color-green-accent);
    cursor: pointer;
}
.auth-password-wrap {
    position: relative;
    margin-bottom: 12px;
}
.auth-password-wrap .auth-input {
    margin-bottom: 0;
    font-family: monospace;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.auth-copy-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 4px;
    line-height: 1;
}
.auth-copy-btn:hover {
    background: var(--color-light-gray);
}

.auth-profile {
    text-align: center;
    margin: 20px 0;
    padding: 16px;
    background: var(--color-light-gray);
    border-radius: 6px;
}

.auth-profile p {
    margin: 4px 0;
    font-size: 15px;
    color: var(--color-dark-gray);
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section {
    margin-top: 40px;
    padding: 30px 0;
}

.reviews-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--color-light-gray);
    margin-bottom: 20px;
}

.reviews-tab {
    padding: 12px 20px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark-gray);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
}

.reviews-tab:hover {
    color: var(--color-dark-brown);
}

.reviews-tab.active {
    color: var(--color-dark-brown);
    border-bottom-color: var(--color-dark-brown);
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.reviews-avg {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark-brown);
}

.reviews-stars .star-filled {
    color: #f5a623;
    font-size: 18px;
}

.reviews-stars .star-empty {
    color: var(--color-mid-gray);
    font-size: 18px;
}

.reviews-count {
    font-size: 14px;
    color: var(--color-dark-gray);
}

.btn-write-review {
    padding: 10px 24px;
    background: var(--color-dark-brown);
    color: var(--color-white);
    border: none;
    border-radius: 3px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 20px;
}

.btn-write-review:hover {
    background: var(--color-green-accent);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-item {
    padding: 16px;
    background: var(--color-light-gray);
    border-radius: 6px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.review-author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-avatar-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #4a90d9;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-header strong {
    font-size: 14px;
    color: var(--color-dark-brown);
}

.review-date {
    font-size: 12px;
    color: var(--color-dark-gray);
}

.review-rating .star-filled {
    color: #f5a623;
}

.review-rating .star-empty {
    color: var(--color-mid-gray);
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-dark-gray);
    margin-top: 8px;
}

.review-admin-reply {
    background: #f5f0e8;
    border-left: 3px solid #4a7c59;
    border-radius: 4px;
    padding: 10px 12px;
    margin-top: 8px;
}
.review-admin-reply .reply-label {
    font-size: 11px;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.review-admin-reply p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
}

/* Floating reviews button (left side) */
/* Floating reviews button */
#floating-reviews-btn {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #4CAF50;
    color: #fff;
    padding: 12px 10px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    z-index: 9950;
    text-align: center;
    box-shadow: 2px 2px 12px rgba(0,0,0,0.2);
    transition: background 0.3s, padding-left 0.3s;
    min-width: 44px;
}
#floating-reviews-btn:hover {
    background: #388E3C;
    padding-left: 14px;
}
.floating-reviews-stars {
    color: #FFD700;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1;
}
.floating-reviews-label {
    font-size: 11px;
    font-weight: 700;
    margin-top: 4px;
    white-space: nowrap;
}

/* Floating reviews panel — overlay */
.reviews-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9955;
    animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
#floating-reviews-panel {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 420px;
    max-width: 100vw;
    background: #fff;
    box-shadow: -4px 0 30px rgba(0,0,0,0.2);
    z-index: 9960;
    display: flex;
    flex-direction: column;
    animation: reviewSlideIn 0.3s ease;
}
@keyframes reviewSlideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}
.floating-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #4CAF50;
    color: #fff;
    flex-shrink: 0;
}
.floating-panel-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}
.floating-panel-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 4px 8px;
}
.floating-panel-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    flex-shrink: 0;
    background: #f8f9fa;
}
.floating-panel-avg {
    font-weight: 700;
    font-size: 22px;
    color: #333;
}
.floating-panel-stars .star-filled { color: #f5a623; font-size: 16px; }
.floating-panel-stars .star-empty { color: #ddd; font-size: 16px; }
.floating-panel-count {
    color: #888;
    font-size: 13px;
}
.floating-panel-list {
    overflow-y: auto;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.floating-panel-item {
    padding: 14px;
    background: #f9f9f9;
    border-radius: 10px;
    border: 1px solid #eee;
}
.floating-panel-item .review-author-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}
.floating-panel-item .review-avatar-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #4CAF50;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}
.floating-panel-item .review-date {
    font-size: 11px;
    color: #999;
}
.floating-panel-item .review-rating {
    margin-bottom: 6px;
}
.floating-panel-item .review-text {
    font-size: 13px;
    line-height: 1.5;
    color: #444;
    margin: 0;
}
.floating-panel-item .review-admin-reply {
    margin-top: 8px;
    padding: 8px 12px;
    background: #e8f5e9;
    border-radius: 6px;
    font-size: 12px;
    color: #2e7d32;
}
.floating-panel-item .review-admin-reply .reply-label {
    font-weight: 700;
    margin-bottom: 2px;
}

/* Tablette */
@media (max-width: 768px) {
    #floating-reviews-panel {
        width: 100%;
    }
}
/* Mobile — bouton repositionné */
@media (max-width: 480px) {
    #floating-reviews-btn {
        top: auto;
        bottom: 80px;
        transform: none;
    }
}

/* Review modal */
.review-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9970;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-modal {
    background: var(--color-white);
    border-radius: 8px;
    padding: 32px;
    max-width: 460px;
    width: 90%;
    position: relative;
}

.review-modal h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin-bottom: 16px;
}

.star-selector {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star-select {
    font-size: 28px;
    color: var(--color-mid-gray);
    cursor: pointer;
    transition: color 0.2s;
}

.star-select.selected, .star-select:hover {
    color: #f5a623;
}

.review-textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid var(--color-mid-gray);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    resize: vertical;
    margin-bottom: 12px;
}

.review-textarea:focus {
    outline: none;
    border-color: var(--color-green-accent);
}

/* ============================================
   PRODUCT PAGE
   ============================================ */
.pp-container {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 30px 20px;
}

.pp-back {
    display: inline-block;
    font-size: 14px;
    color: var(--color-dark-brown);
    margin-bottom: 20px;
    transition: color 0.2s;
}

.pp-back:hover {
    color: var(--color-green-accent);
}

.pp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.pp-gallery {
    position: relative;
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
}

.pp-main-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    cursor: zoom-in;
    display: block;
}

/* Product page prev/next arrows */
.pp-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.92);
    border: 1px solid #ddd;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    color: #333;
    z-index: 3;
    text-decoration: none;
}
.pp-nav-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    color: #333;
}
.pp-nav-arrow.prev { left: -24px; }
.pp-nav-arrow.next { right: -24px; }
@media (max-width: 768px) {
    .pp-nav-arrow { width: 40px; height: 40px; font-size: 18px; }
    .pp-nav-arrow.prev { left: -6px; }
    .pp-nav-arrow.next { right: -6px; }
}

.pp-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pp-info h1 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark-brown);
}

.pp-price-display {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.pp-price-label {
    font-size: 14px;
    color: var(--color-dark-gray);
}

.pp-price-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-green-accent);
}

.pp-weight-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.pp-weight-btn {
    padding: 10px 20px;
    border: 1px solid var(--color-mid-gray);
    background: var(--color-white);
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.pp-weight-btn:hover {
    border-color: var(--color-dark-brown);
}

.pp-weight-btn.active {
    background: var(--color-dark-brown);
    color: var(--color-white);
    border-color: var(--color-dark-brown);
}

.pp-qty-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pp-qty-control {
    display: flex;
    align-items: center;
}

.pp-qty-control button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-mid-gray);
    background: var(--color-white);
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-qty-control span {
    width: 50px;
    height: 40px;
    border-top: 1px solid var(--color-mid-gray);
    border-bottom: 1px solid var(--color-mid-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
}

.pp-add-cart {
    flex: 1;
    padding: 14px 24px;
    background: var(--color-green-accent);
    color: var(--color-white);
    border: none;
    border-radius: 3px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.pp-add-cart:hover {
    background: var(--color-olive-green);
}

.pp-add-cart.disabled {
    background: var(--color-mid-gray);
    cursor: not-allowed;
}

/* Buy Now button (product page) */
.pp-buy-now {
    width: 100%;
    padding: 13px 24px;
    background: transparent;
    color: var(--color-green-accent);
    border: 2px solid var(--color-green-accent);
    border-radius: 3px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}
.pp-buy-now:hover {
    background: var(--color-green-accent);
    color: var(--color-white);
}

/* Buy Now button (quick view) */
.qv-buy-now {
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    color: var(--color-green-accent);
    border: 2px solid var(--color-green-accent);
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}
.qv-buy-now:hover {
    background: var(--color-green-accent);
    color: var(--color-white);
}

/* ---- Stock indicator ---- */
.stock-indicator {
    margin: 8px 0 4px;
    font-size: 13px;
    font-weight: 600;
    min-height: 20px;
}
.stock-indicator .stock-ok {
    color: #2ecc71;
}
.stock-indicator .stock-available {
    color: #27ae60;
}
.stock-indicator.stock-ok-num span {
    color: #27ae60;
}
.stock-indicator.stock-warning span {
    color: #e67e22;
}
.stock-indicator.stock-danger span {
    color: #e74c3c;
    animation: stock-pulse 1.5s ease-in-out infinite;
}
@keyframes stock-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.stock-indicator .stock-out {
    color: #e74c3c;
    font-weight: 700;
}

/* ---- Stock warning toast ---- */
.stock-warning-toast {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffc107;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.stock-warning-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.stock-warning-icon {
    font-size: 18px;
    color: #e67e22;
}

.pp-description {
    padding: 30px 0;
    border-top: 1px solid var(--color-light-gray);
    margin-top: 20px;
}

.pp-description h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin-bottom: 16px;
}

.pp-description p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* Similar products */
.similar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.similar-card {
    background: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.similar-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.similar-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.similar-card h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark-brown);
    padding: 10px 12px 4px;
}

.similar-card p {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-green-accent);
    padding: 0 12px 12px;
}

/* Lightbox */
.pp-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.pp-lightbox.show {
    opacity: 1;
}

.pp-lightbox-content {
    position: relative;
    max-width: 85vw;
    max-height: 85vh;
    background: #fff;
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 12px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.1);
}

.pp-lightbox-content img {
    max-width: 100%;
    max-height: calc(85vh - 28px);
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 6px;
}

.pp-lightbox-close {
    position: absolute;
    top: -44px;
    right: -4px;
    background: rgba(255,255,255,0.15);
    border: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}
.pp-lightbox-close:hover {
    background: rgba(255,255,255,0.3);
}

.pp-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.92);
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
    transition: background 0.2s, transform 0.2s;
    color: #222;
    z-index: 2;
}
.pp-lightbox-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.12);
}
.pp-lightbox-nav.prev { left: -70px; }
.pp-lightbox-nav.next { right: -70px; }
@media (max-width: 900px) {
    .pp-lightbox-nav.prev { left: -26px; }
    .pp-lightbox-nav.next { right: -26px; }
    .pp-lightbox-nav { width: 44px; height: 44px; font-size: 20px; }
}
@media (max-width: 768px) {
    .pp-lightbox-content { padding: 10px; max-width: 95vw; max-height: 90vh; }
    .pp-lightbox-content img { max-height: calc(90vh - 20px); }
    .pp-lightbox-nav.prev { left: 6px; }
    .pp-lightbox-nav.next { right: 6px; }
    .pp-lightbox-nav { width: 40px; height: 40px; font-size: 18px; background: rgba(255,255,255,0.85); }
    .pp-lightbox-nav { width: 40px; height: 40px; font-size: 18px; }
}
.pp-lightbox-counter {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    white-space: nowrap;
}

/* ============================================
   PANIER PAGE
   ============================================ */
.cart-page {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 40px 20px;
}

.cart-page h1 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin-bottom: 30px;
}

.cart-page-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
}

.cart-page-items .cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-light-gray);
    align-items: center;
}

.cart-page-items .cart-item-img {
    width: 90px;
    height: 90px;
}

.cart-page-summary {
    background: var(--color-light-gray);
    padding: 24px;
    border-radius: 6px;
    height: fit-content;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.cart-page-summary h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ============================================
   PROMO BANNER SLIDES
   ============================================ */
.promo-slides {
    position: relative;
    height: 1.5em;
    overflow: hidden;
}

.promo-slide {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s;
}

.promo-slide.active {
    opacity: 1;
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .category-label {
        font-size: 11px;
        padding: 10px 8px;
        letter-spacing: 1px;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .product-info {
        padding: 10px;
    }

    .product-name {
        font-size: 13px;
    }

    .product-price {
        font-size: 13px;
    }
}

/* ============================================
   RESPONSIVE — New components
   ============================================ */
@media (max-width: 768px) {
    .qv-body {
        grid-template-columns: 1fr;
    }

    .qv-image {
        border-radius: 8px 8px 0 0;
        max-height: 300px;
    }

    .qv-info {
        padding: 20px;
    }

    .pp-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .similar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cart-page-grid {
        grid-template-columns: 1fr;
    }

    .cart-page-summary {
        position: static;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .age-gate-content {
        padding: 30px 20px;
    }

    .auth-modal {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .qv-title {
        font-size: 18px;
    }

    .qv-price {
        font-size: 18px;
    }

    .similar-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .reviews-tabs {
        flex-direction: column;
        gap: 0;
    }

    .reviews-tab {
        padding: 10px 16px;
    }
}

/* ============================================
   PARALLAX & SCROLL REVEAL
   ============================================ */
.scroll-reveal,
.category-card,
.about-content,
.promo-banner,
.parallax-showcase .showcase-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed,
.category-card.revealed,
.about-content.revealed,
.promo-banner.revealed,
.parallax-showcase .showcase-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

/* Showcase section (homepage parallax images) */
.parallax-showcase {
    padding: 60px 0;
    background: #f8f9fa;
}

.parallax-showcase .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.showcase-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover img {
    transform: scale(1.08);
}

.showcase-item .showcase-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Stats bar */
.stats-bar {
    padding: 40px 20px;
    background: linear-gradient(135deg, #2d3228 0%, #4a5340 50%, #2d3228 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.gorille-band {
    padding: 0;
    overflow: hidden;
}
.gorille-band-inner {
    height: 700px;
    background: url('../images/gorille-cbd.webp') center center / contain no-repeat fixed;
    background-color: var(--color-olive-green);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.2);
}

.stat-icon {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.stat-counter {
    font-size: 48px;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
    background: linear-gradient(180deg, #ffffff 0%, #c8d6b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-size: 28px;
    font-weight: 700;
    -webkit-text-fill-color: #c8d6b0;
}

.stat-label {
    font-size: 12px;
    opacity: 0.75;
    margin-top: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .showcase-item {
        height: 220px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    .stat-item:nth-child(2)::after {
        display: none;
    }
    .stat-counter {
        font-size: 36px;
    }
    .stat-counter {
        font-size: 32px;
    }
}

/* ============================================
   RESPONSIVE — Grand smartphone (max 600px)
   ============================================ */
@media (max-width: 600px) {
    .header-icon .auth-user-name {
        display: none !important;
    }
    .hero {
        height: 280px;
    }
    .hero-content h1 {
        font-size: 26px;
        letter-spacing: 2px;
    }
    .hero-subtitle {
        font-size: 12px;
    }
    .btn-hero {
        font-size: 12px;
        padding: 10px 28px;
    }
    .page-hero {
        height: 220px;
    }
    .page-hero h1 {
        font-size: 22px;
    }
    .categories-grid {
        gap: 8px;
    }
    .category-card .category-name {
        font-size: 11px;
        padding: 6px 4px;
    }
    .products-grid {
        gap: 8px;
    }
    .product-card .product-name {
        font-size: 13px;
    }
    .product-card .product-price {
        font-size: 13px;
    }
    .promo-banner {
        padding: 30px 0;
    }
    .promo-banner h2 {
        font-size: 16px;
        padding: 0 15px;
    }
    .promo-banner p {
        font-size: 13px;
    }
    .about-store-text {
        padding: 30px 20px;
    }
    .about-store-text h2 {
        font-size: 22px;
    }
    .about-store-text p {
        font-size: 13px;
    }
    .about-store-img {
        height: 250px;
    }
    .btn-secondary {
        font-size: 12px;
        padding: 10px 24px;
    }
    .store-map {
        padding: 30px 0 0;
    }
    .store-map h2 {
        font-size: 20px !important;
    }
    .map-embed iframe {
        height: 250px !important;
    }
    .contact-hero {
        min-height: 400px;
        padding: 20px 10px;
    }
    .contact-form-card {
        padding: 20px 15px;
    }
    .contact-form-card h2 {
        font-size: 22px;
    }
    .footer-inner {
        gap: 20px;
        padding: 30px 15px;
    }
    .footer-col h3 {
        font-size: 14px;
    }
    .footer-bottom {
        font-size: 11px;
        padding: 12px 10px;
    }
    .cookie-banner {
        padding: 12px 10px;
    }
    .cookie-banner p {
        font-size: 12px;
    }
    .age-gate-content {
        padding: 30px 20px;
    }
    .age-gate-content h1 {
        font-size: 20px;
    }
    .age-gate-text {
        font-size: 13px;
    }
    .age-gate-question {
        font-size: 15px;
    }
    .age-gate-yes, .age-gate-no {
        font-size: 12px;
        padding: 12px 20px;
    }
    .age-gate-legal {
        font-size: 10px;
    }
    .category-showcase {
        padding: 35px 0;
        min-height: 200px;
    }
    .showcase-title {
        font-size: 20px;
    }
    .showcase-text {
        font-size: 13px;
    }
    .showcase-discount-badge {
        font-size: 28px;
        width: 70px;
        height: 70px;
        line-height: 70px;
    }
    .stats-bar {
        padding: 30px 15px;
    }
    .stat-counter {
        font-size: 28px;
    }
    .gorille-band-inner {
        height: 250px;
        background-attachment: scroll;
    }
    .stat-label {
        font-size: 11px;
    }
    .showcase-grid {
        gap: 12px;
    }
    .showcase-item {
        height: 180px;
    }
    .reviews-section {
        padding: 16px;
    }
    .reviews-tab {
        font-size: 12px;
        padding: 8px 10px;
    }
    .review-modal {
        padding: 20px 15px;
    }
    .qv-modal {
        padding: 15px;
    }
    .qv-title {
        font-size: 18px;
    }
    .auth-modal {
        padding: 25px 15px;
    }
    #floating-reviews-btn {
        padding: 10px 8px;
    }
    .floating-reviews-stars {
        font-size: 11px;
    }
    .floating-reviews-label {
        font-size: 10px;
    }
}

/* ============================================
   RESPONSIVE — Petit smartphone (max 380px)
   ============================================ */
@media (max-width: 380px) {
    .header-inner {
        padding: 0 8px;
    }
    .logo-text {
        font-size: 11px;
    }
    .logo {
        height: 32px;
    }
    .header-right {
        gap: 4px;
    }
    .lang-toggle {
        font-size: 11px;
        padding: 2px 5px;
    }
    .header-promo {
        height: 26px;
    }

    .promo-item {
        font-size: 10px;
        padding: 0 16px;
    }

    .promo-item::after {
        margin-left: 16px;
    }
    .hero {
        height: 220px;
    }
    .hero-content h1 {
        font-size: 20px;
        letter-spacing: 1px;
    }
    .hero-subtitle {
        font-size: 11px;
    }
    .btn-hero {
        font-size: 11px;
        padding: 8px 20px;
    }
    .page-hero {
        height: 180px;
    }
    .page-hero h1 {
        font-size: 18px;
    }
    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .product-card .product-name {
        font-size: 14px;
    }
    .product-card .product-price {
        font-size: 14px;
    }
    .product-card .btn-primary {
        font-size: 12px;
        padding: 8px 12px;
    }
    .promo-banner h2 {
        font-size: 14px;
    }
    .promo-banner p {
        font-size: 12px;
    }
    .about-store-text {
        padding: 20px 15px;
    }
    .about-store-text h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .about-store-text p {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 6px;
    }
    .about-store-img {
        height: 200px;
    }
    .btn-secondary {
        font-size: 11px;
        padding: 8px 18px;
    }
    .store-map h2 {
        font-size: 16px !important;
    }
    .map-embed iframe {
        height: 200px !important;
    }
    .contact-hero {
        min-height: 350px;
    }
    .contact-form-card {
        padding: 15px 12px;
    }
    .age-gate-content {
        padding: 24px 16px;
    }
    .age-gate-content h1 {
        font-size: 16px;
    }
    .age-gate-subtitle {
        font-size: 12px;
    }
    .age-gate-text {
        font-size: 12px;
    }
    .age-gate-question {
        font-size: 13px;
    }
    .age-gate-buttons {
        flex-direction: column;
        gap: 8px;
    }
    .age-gate-yes, .age-gate-no {
        font-size: 11px;
        padding: 10px 16px;
        width: 100%;
    }
    .showcase-title {
        font-size: 16px;
    }
    .showcase-text {
        font-size: 12px;
    }
    .stat-counter {
        font-size: 24px;
    }
    .stat-label {
        font-size: 10px;
    }
    .stats-grid {
        gap: 20px;
    }
    .footer-col h3 {
        font-size: 13px;
    }
    .footer-col p, .footer-col li, .footer-col a {
        font-size: 12px;
    }
    .review-item {
        padding: 12px;
    }
    .review-avatar-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    .qv-modal {
        padding: 12px;
    }
    .qv-title {
        font-size: 16px;
    }
    .auth-modal {
        padding: 20px 12px;
    }
    #floating-reviews-btn {
        padding: 8px 6px;
        top: auto;
        bottom: 90px;
    }
    .floating-reviews-stars {
        font-size: 10px;
    }
    .floating-reviews-label {
        font-size: 9px;
    }
}

/* ========== CAROUSEL TOUCH/DRAG ========== */

/* Empêcher le drag natif des éléments dans les carrousels */
.hero-banner *, .header-promo * {
    -webkit-user-drag: none;
    user-drag: none;
}
.hero-banner, .header-promo {
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

/* Flèches de navigation hero banner */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, opacity 0.3s;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.hero-banner:hover .hero-nav-btn,
.hero-banner:focus-within .hero-nav-btn {
    opacity: 1;
    pointer-events: auto;
}
.hero-nav-prev { left: 12px; }
.hero-nav-next { right: 12px; }
.hero-nav-btn:hover {
    background: rgba(0,0,0,0.8);
}
/* Toujours visible sur tactile */
@media (hover: none) {
    .hero-nav-btn {
        opacity: 0.7;
        pointer-events: auto;
    }
}

/* Dots de navigation hero banner */
.hero-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(0,0,0,0.4);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.hero-dot.active {
    background: #6eff00;
    border-color: #6eff00;
    transform: scale(1.2);
}
.hero-dot:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.3);
}

/* Similar grid scroll horizontal mobile */
@media (max-width: 768px) {
    .similar-grid {
        display: flex !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding-bottom: 8px;
    }
    .similar-grid::-webkit-scrollbar {
        height: 4px;
    }
    .similar-grid::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.2);
        border-radius: 2px;
    }
    .similar-card {
        flex: 0 0 160px;
        scroll-snap-align: start;
    }
    /* Flèches plus petites sur mobile */
    .hero-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    .hero-nav-prev { left: 6px; }
    .hero-nav-next { right: 6px; }
    .hero-dots {
        bottom: 8px;
        gap: 6px;
        padding: 4px 10px;
    }
    .hero-dot {
        width: 8px;
        height: 8px;
    }
}
