/* ===========================
   SAKIO DESIGN — STYLE COMPLET
   =========================== */
:root {
    --brand:        #b29f75;   /* Or/Gold Sakio */
    --brand-mid:    #8B7D5B;   /* Beige foncé */
    --brand-light:  #ded4bf;   /* Or clair */
    --brand-bg:     #FFFFFF;   /* Fond blanc pur */
    --brand-accent: #b4a177;   /* Gold accent */
    --brand-dark:   #111111;   /* Noir Sakio */
    --red:          #b29f75;   /* Or/Gold remplace le rouge */
    --stock-blue:   #b29f75;   /* Gold aussi pour En stock */
    --text:         #111111;
    --text-gray:    #8a8a8a;
    --white:        #ffffff;
    --border:       #ececec;
    --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
    --shadow-md:    0 6px 24px rgba(178,159,117,0.12);
    --radius:       4px;
    --transition:   0.25s ease;
    --ease:         cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Poppins', system-ui, Arial, Helvetica, sans-serif;
    --font-body:    'Poppins', system-ui, Arial, Helvetica, sans-serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--brand-bg);
    color: var(--text);
    font-size: 14px;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
.container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* ============ PROMO ALERT ============ */
.promo-alert {
    background: var(--brand-dark);
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.promo-alert a { color: var(--white); }

/* ============ TOP BAR ============ */
.top-bar {
    background: var(--brand);
    font-size: 13px;
    font-weight: 500;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    padding: 9px 20px;
}
.top-bar a {
    color: var(--white);
    margin-right: 22px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color var(--transition);
}
.top-bar a:hover { color: var(--brand-dark); }

/* ============ MAIN HEADER ============ */
.main-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: background var(--transition);
    white-space: nowrap;
}
.menu-btn:hover { background: var(--brand-light); }
.menu-btn i { font-size: 18px; }
.logo img { height: 44px; object-fit: contain; }

/* Search */
.search-container {
    flex: 1;
    display: flex;
    height: 46px;
    border: 1.5px solid var(--brand-light);
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 620px;
    transition: border-color var(--transition);
}
.search-container:focus-within { border-color: var(--brand-mid); }
.search-container input {
    flex: 1;
    padding: 0 18px;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: inherit;
    background: var(--brand-bg);
}
.search-container button {
    width: 52px;
    background: var(--brand-dark);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background var(--transition);
}
.search-container button:hover { background: var(--brand); }

/* Header Right */
.header-right {
    display: flex;
    gap: 24px;
    margin-left: auto;
    flex-shrink: 0;
}
.header-icon-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
    position: relative;
    white-space: nowrap;
    transition: color var(--transition);
}
.header-icon-link i { font-size: 20px; }
.header-icon-link:hover { color: var(--brand); }
.cart-badge {
    position: absolute;
    top: -8px; right: -10px;
    background: var(--brand-dark);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    min-width: 18px; height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    transition: transform 0.3s cubic-bezier(.36,2,.6,1);
}

/* ============ MAIN NAV ============ */
.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 73px;
    z-index: 190;
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.nav-main-links {
    display: flex;
    gap: 0;
}
.nav-main-links > li > a {
    display: inline-block;
    padding: 16px 18px;
    font-size: 13.5px;
    font-weight: 400;
    color: var(--text);
    border-bottom: 3px solid transparent;
    transition: color var(--transition), border-color var(--transition);
    white-space: nowrap;
}
.nav-main-links > li > a:hover,
.nav-main-links > li > a.nav-active {
    color: var(--brand);
    border-bottom-color: var(--brand);
}
.nav-secondary {
    display: flex;
    gap: 0;
    flex-shrink: 0;
}
.nav-secondary .nav-promo {
    display: inline-block;
    padding: 16px 18px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--brand);
    white-space: nowrap;
    transition: color var(--transition);
}
.nav-secondary .nav-promo:hover { color: var(--brand-dark); }

/* ============ NAV MEGA DROPDOWN (hover) ============ */
.nav-dropdown { position: static; }
.nav-mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-top: 2px solid var(--brand-light);
    box-shadow: var(--shadow-md);
    padding: 24px;
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
}
.nav-dropdown:hover > .nav-mega-dropdown,
.nav-mega-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Category Carousel in Mega Menu */
.mega-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--brand-light);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.mega-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding-bottom: 4px;
    flex: 1;
}
.carousel-track::-webkit-scrollbar { display: none; }
.mega-cat {
    min-width: 130px;
    text-align: center;
    cursor: pointer;
    transition: transform var(--transition);
    flex-shrink: 0;
}
.mega-cat:hover { transform: translateY(-4px); }
.mega-cat img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: border-color var(--transition);
}
.mega-cat.active img { border-color: var(--brand); }
.mega-cat span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-gray);
}
.mega-cat.active span { font-weight: 700; color: var(--brand); }
.carousel-arrow-btn {
    width: 32px; height: 32px;
    border: 1px solid var(--brand-light);
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: all var(--transition);
}
.carousel-arrow-btn:hover { background: var(--brand); color: var(--white); border-color: var(--brand); }

/* Mega Links */
.mega-content {
    display: flex;
    gap: 30px;
}
.mega-col { flex: 1; }
.mega-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--brand-light);
}
.mega-col h4 + ul { margin-bottom: 18px; }
.mega-col ul li { margin-bottom: 6px; }
.mega-col ul a {
    font-size: 13px;
    color: var(--text);
    transition: color var(--transition), padding-left var(--transition);
}
.mega-col ul a:hover { color: var(--brand); padding-left: 4px; }

/* Mega Promo Cards */
.mega-promos {
    display: flex;
    gap: 12px;
    width: 34%;
    flex-shrink: 0;
}
.promo-card {
    flex: 1;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 200px;
}
.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.promo-label-dark {
    position: absolute;
    bottom: 16px; left: 16px;
    background: var(--brand);
    color: var(--white);
    font-weight: 800;
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.promo-label-light {
    position: absolute;
    bottom: 16px; left: 16px;
    background: rgba(255,255,255,0.88);
    color: var(--text);
    font-weight: 800;
    font-size: 20px;
    padding: 12px;
    border-radius: 4px;
    line-height: 1.15;
}

/* ============ BURGER SIDE PANEL (Kitea-style) ============ */
.burger-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.burger-overlay.open { opacity: 1; visibility: visible; }

.burger-panel {
    position: fixed;
    top: 0; left: 0;
    width: 0;
    max-width: 780px;
    height: 100vh;
    background: var(--white);
    z-index: 510;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 30px rgba(0,0,0,0.15);
}
.burger-panel.open {
    width: 780px;
}
.burger-close {
    position: absolute;
    top: 8px; left: 8px;
    width: 36px; height: 36px;
    background: var(--brand-dark);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 520;
    transition: background var(--transition);
}
.burger-close:hover { background: var(--brand); }

.burger-cols {
    display: flex;
    height: 100%;
    overflow: hidden;
}
.burger-main-col {
    width: 220px;
    min-width: 220px;
    border-right: 1px solid #EEE;
    overflow-y: auto;
    padding: 50px 0 20px;
    display: flex;
    flex-direction: column;
}
.burger-main-list {
    flex: 1;
}
.burger-main-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
    border-left: 3px solid transparent;
}
.burger-main-list li a:hover,
.burger-main-list li.active > a {
    background: #f9f7f3;
    color: var(--brand);
    border-left-color: var(--brand);
    font-weight: 700;
}
.burger-main-list li a i { font-size: 11px; color: #BBB; }

.burger-footer {
    border-top: 1px solid #EEE;
    padding: 16px 20px;
}
.burger-contact p {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 4px;
}
.burger-contact p strong { color: var(--text); }
.burger-contact a {
    font-size: 12px;
    color: var(--brand);
    font-weight: 600;
    display: block;
    margin-top: 6px;
}
.burger-account {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #EEE;
}
.burger-account a {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Burger Sub Column */
.burger-sub-col {
    width: 260px;
    min-width: 260px;
    border-right: 1px solid #EEE;
    overflow-y: auto;
    padding: 20px 0;
    display: none;
}
.burger-sub-col.open { display: block; }

.burger-submenu {
    display: none;
    padding: 0 20px;
}
.burger-submenu.open { display: block; }
.burger-submenu h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    text-transform: uppercase;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--brand-light);
}
.burger-submenu ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 13px;
    color: #111111;
    font-weight: 500;
    transition: all var(--transition);
    border-bottom: 1px solid #F5F5F5;
}
.burger-submenu ul li a:hover,
.burger-submenu ul li.active > a {
    color: var(--brand);
    font-weight: 700;
    padding-left: 4px;
}
.burger-submenu ul li a i { font-size: 10px; color: #888; }

/* Burger Sub-Sub Column */
.burger-subsub-col {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: none;
}
.burger-subsub-col.open { display: block; }
.burger-subsubmenu {
    display: none;
}
.burger-subsubmenu.open { display: block; }
.burger-subsubmenu h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    text-transform: uppercase;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--brand-light);
}
.burger-subsubmenu ul li a {
    display: block;
    padding: 8px 0;
    font-size: 13px;
    color: #111111;
    font-weight: 500;
    border-bottom: 1px solid #F5F5F5;
    transition: all var(--transition);
}
.burger-subsubmenu ul li a:hover {
    color: var(--brand);
    font-weight: 700;
    padding-left: 4px;
}

/* ============ HERO ============ */
.hero-section { padding: 28px 0 0 0; }
.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    height: 480px;
}
.hero-main {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    padding: 48px 48px 56px;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
    background-color: var(--brand-dark);
}
.hero-slide::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(30,15,10,0.65) 0%, transparent 60%);
}
.hero-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}
.slide-content { position: relative; z-index: 2; }
.slide-tag {
    display: inline-block;
    background: var(--brand);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}
.slide-content h2 {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 22px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    font-family: var(--font-heading);
}
.btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--brand-dark);
    padding: 12px 26px;
    font-weight: 700;
    font-size: 13px;
    border-radius: var(--radius);
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-white:hover { background: var(--brand); color: var(--white); }

/* Slider arrows */
.prod-arrow {
    background: rgba(255,255,255,0.85);
    border: none;
    width: 48px; height: 48px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition);
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-dark);
}
.prod-arrow:hover { background: var(--brand); color: var(--white); border-color: var(--brand); }

/* Carousel track wrapper (horizontal scroll container) */
.carousel-track-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 0 40px; /* space for arrows */
}
.carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}
.carousel-track::-webkit-scrollbar { display: none; }

.hero-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,0.85);
    border: none;
    width: 42px; height: 42px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.hero-arrow:hover { background: var(--white); transform: translateY(-50%) scale(1.08); }
.hero-arrow.prev { left: 14px; }
.hero-arrow.next { right: 14px; }

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 16px;
    left: 50%; transform: translateX(-50%);
    z-index: 5;
    display: flex; gap: 8px;
}
.dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all var(--transition);
}
.dot.active { background: var(--white); width: 28px; border-radius: 5px; }

/* Side banners */
.hero-side { display: flex; flex-direction: column; gap: 16px; }
.side-banner-slider {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
}
.side-banner-track {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.side-banner-track::-webkit-scrollbar { display: none; }
.side-banner {
    flex: 0 0 100%;
    height: 100%;
    scroll-snap-align: start;
    background-size: cover;
    background-position: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.side-banner::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.2) 60%, transparent 100%);
}
.side-content { position: relative; z-index: 2; width: 100%; }
.side-content h3 {
    font-size: 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    line-height: 1.1;
}
.price-tag {
    display: inline-block;
    background: var(--brand);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.5;
}
.price-tag span { font-size: 17px; display: block; }
.price-red { background: var(--red); }
.link-more {
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    transition: letter-spacing var(--transition);
}
.link-more:hover { letter-spacing: 0.5px; }

/* ============ PROMO BANNERS SECTION ============ */
.promo-banners-section {
    padding: 16px 0 20px;
}
.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.promo-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--brand-bg);
}
.promo-banner img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    transition: transform var(--transition);
}
.promo-banner:hover img {
    transform: scale(1.03);
}
.promo-btn {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    color: var(--brand-dark);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    transition: background var(--transition), color var(--transition);
}
.promo-btn:hover {
    background: var(--brand-dark);
    color: var(--white);
}

/* ============ PRODUCTS SECTION ============ */
.products-section {
    padding: 32px 0 40px;
}
.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--brand-dark);
    font-family: var(--font-heading);
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}
/* Title Animation (Premium) */
.animated-title {
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto 28px auto; /* Merged margin-bottom from .section-title to ensure spacing is kept */
    transition: letter-spacing 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s ease;
    cursor: default;
}
.animated-title:hover {
    letter-spacing: 2px;
    transform: scale(1.02);
}
.animated-title .star {
    display: inline-block;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.4s ease;
}
.animated-title:hover .star {
    transform: rotate(180deg) scale(1.3);
    color: var(--brand);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.filter-tab {
    padding: 10px 28px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid var(--brand-dark);
    background: var(--white);
    color: var(--brand-dark);
    letter-spacing: 0.5px;
    transition: all var(--transition);
    font-family: inherit;
}
.filter-tab:hover,
.filter-tab.active {
    background: var(--brand-dark);
    color: var(--white);
}

/* Product Carousel Wrapper */
.product-carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.product-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 4px 16px;
    flex: 1;
}
.product-carousel::-webkit-scrollbar { display: none; }

/* Product Card (Modern Clean Card) */
.prod-card {
    min-width: 260px;
    max-width: 260px;
    background: var(--white);
    border: none;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    transition: transform var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.prod-card:hover {
    transform: translateY(-4px);
}

.prod-img-wrap {
    position: relative;
    background: #f6f6f6;
    border-radius: 12px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}
.prod-card[data-category~="nouveaute"] .prod-img-wrap::before {
    content: "Nouveauté";
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--white);
    color: #111;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    z-index: 5;
}
.prod-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.4s var(--ease), opacity 0.4s ease;
}
.prod-img-wrap .img-secondary {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    width: 100%;
    height: 100%;
    padding: 16px;
}
.prod-card:hover .prod-img-wrap .img-primary { opacity: 0; transform: scale(1.05); }
.prod-card:hover .prod-img-wrap .img-secondary { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
.prod-card:hover .prod-img-wrap img:only-child { opacity: 1; transform: scale(1.05); }

/* Badges row below image */
.prod-meta-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 4px 6px 4px;
}
.prod-discount-badge {
    background: #e3001b; /* Red promo brand instead of beige */
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
}
.prod-stock-pill {
    background: #f4f4f4;
    color: #111111;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.prod-stock-pill i {
    font-size: 8px;
    color: #20c997; /* Cyan dot */
}

.prod-body {
    padding: 6px 4px 16px 4px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}
.prod-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 14px;
    line-height: 1.4;
    transition: color var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.prod-card:hover .prod-name {
    color: var(--brand);
}
.prod-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 0;
}
.prod-price {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--brand); /* Beige brand color */
    line-height: 1;
}
.prod-old-price {
    font-size: 14px;
    color: #666;
    text-decoration: line-through;
    font-weight: 500;
}
.btn-add-cart {
    margin-top: 0;
    width: 100%;
    padding: 10px;
    background: var(--brand-dark);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all var(--transition);
    font-family: inherit;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
}
.prod-card:hover .btn-add-cart {
    max-height: 45px;
    opacity: 1;
    margin-top: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Carousel Nav Arrows */
.prod-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--brand-light);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}
.prod-arrow:hover { background: var(--brand); color: var(--white); border-color: var(--brand); }

/* Scrollbar track indicator */
.carousel-track-wrapper {
    margin-top: 18px;
    padding: 0 56px;
}
.carousel-track {
    height: 3px;
    background: var(--brand-light);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}
.carousel-thumb {
    height: 100%;
    width: 25%;
    background: var(--brand);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: transform 0.15s ease, width 0.15s ease;
}

/* ============ SERVICES BAR ============ */
.services-bar {
    background: #f7f4ee;
    padding: 36px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.service-item i {
    font-size: 32px;
    color: var(--brand);
    flex-shrink: 0;
}
.service-item h4 { font-size: 16px; font-family: var(--font-heading); margin-bottom: 3px; font-weight: 700; }
.service-item p { font-size: 12px; color: var(--text-gray); }

/* ============ FOOTER ============ */
.main-footer {
    background: var(--brand-dark);
    color: #9a9a9a;
    padding: 56px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-logo {
    height: 52px;
    margin-bottom: 18px;
    background: var(--white);
    padding: 8px 12px;
    border-radius: 4px;
    object-fit: contain;
}
.footer-col p { font-size: 13px; line-height: 1.7; margin-bottom: 18px; color: #9a9a9a; }
.footer-col h4 { color: var(--white); font-size: 18px; font-family: var(--font-heading); font-weight: 700; margin-bottom: 18px; letter-spacing: 0.5px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a {
    font-size: 13px;
    color: #9a9a9a;
    transition: all var(--transition);
}
.footer-col ul a:hover { color: var(--brand); padding-left: 5px; }
.social-row { display: flex; gap: 12px; }
.social-row a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    transition: background var(--transition);
}
.social-row a:hover { background: var(--brand-mid); }
.newsletter-form { display: flex; margin-top: 14px; border-radius: var(--radius); overflow: hidden; }
.newsletter-form input {
    flex: 1;
    padding: 11px 14px;
    border: none;
    outline: none;
    font-size: 13px;
    font-family: inherit;
}
.newsletter-form button {
    padding: 11px 18px;
    background: var(--brand);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    transition: background var(--transition);
    font-family: inherit;
}
.newsletter-form button:hover { background: var(--brand-mid); color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
}

/* ============ FLOATING ELEMENTS ============ */
.floating-chat {
    position: fixed;
    bottom: 90px; right: 28px;
    width: 58px; height: 58px;
    background: var(--brand-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 999;
    transition: transform var(--transition), background var(--transition);
}
.floating-chat:hover { transform: scale(1.1); background: var(--brand); }
.scroll-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 46px; height: 46px;
    background: var(--brand-dark);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    box-shadow: 0 3px 14px rgba(0,0,0,0.2);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--brand); transform: translateY(-4px); }

/* ============ FEATURES STRIP ============ */
.features-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}
.features-strip-inner {
    display: flex;
    justify-content: center;
    gap: 0;
}
.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 28px;
    border-right: 1px solid var(--border);
    cursor: default;
}
.feature-item:last-child { border-right: none; }
.feature-icon-wrap {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background var(--transition), transform var(--transition);
}
.feature-icon-wrap i {
    font-size: 22px;
    color: #888;
    transition: color var(--transition);
}
.feature-item:hover .feature-icon-wrap {
    background: #f7f3ec;
    transform: translateY(-3px);
}
.feature-item:hover .feature-icon-wrap i {
    color: var(--brand);
}
.feature-title {
    font-size: 14px;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text);
    margin-bottom: 6px;
    text-transform: uppercase;
}
.feature-desc {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.5;
    max-width: 140px;
}

/* ============ CATÉGORIES DU MOMENT ============ */
.categories-section {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}
.cat-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}
.cat-section-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text);
    text-transform: uppercase;
    transition: color var(--transition);
    cursor: pointer;
}
.cat-section-title:hover {
    color: var(--brand);
}
.cat-voir-plus {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}
.cat-voir-plus:hover { color: var(--brand); }
.cat-voir-plus i { font-size: 11px; }

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.cat-card {
    background: #F8F7F3;
    border: none;
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: pointer;
    transition: transform var(--transition);
}
.cat-card:hover {
    transform: translateY(-4px);
}
.cat-img-wrap {
    height: 160px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.5s var(--ease);
}
.cat-card:hover .cat-img-wrap img {
    transform: scale(1.06);
}
.cat-info {
    padding: 0;
    border-top: none;
}
.cat-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 12px;
    transition: color var(--transition);
}
.cat-info h3:hover {
    color: var(--brand);
}
.cat-discover {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-dark);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color var(--transition), gap var(--transition);
    text-decoration: none;
}
.cat-discover i { font-size: 11px; }
.cat-discover:hover {
    color: var(--brand);
    gap: 8px;
}

/* ============ NOS BEST SELLERS ============ */
.bestsellers-section {
    padding: 32px 0;
    background: #fafaf8;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.bs-carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.bs-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 4px 16px;
    flex: 1;
}
.bs-carousel::-webkit-scrollbar { display: none; }

.bs-card {
    min-width: 260px;
    max-width: 260px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}
.bs-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.bs-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px 0;
    min-height: 32px;
}
.bs-discount {
    background: var(--brand);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
}
.bs-stock {
    font-size: 11px;
    font-weight: 600;
    color: var(--brand);
    display: flex;
    align-items: center;
    gap: 4px;
}
.bs-stock i { font-size: 7px; }

.bs-img-wrap {
    height: 200px;
    background: #f8f7f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 12px;
}
.bs-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.bs-img-wrap .img-secondary {
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
}
.bs-card:hover .bs-img-wrap .img-primary { opacity: 0; transform: scale(1.04); }
.bs-card:hover .bs-img-wrap .img-secondary { opacity: 1; transform: scale(1.04); }
.bs-card:hover .bs-img-wrap img:only-child { opacity: 1; transform: scale(1.04); }
.bs-body {
    padding: 12px 14px 16px;
}
.bs-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.45;
    margin-bottom: 10px;
    transition: color var(--transition);
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bs-card:hover .bs-name {
    color: var(--brand);
}
.bs-pricing {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}
.bs-label {
    display: block;
    width: 100%;
    font-size: 11px;
    color: var(--text-gray);
    margin-bottom: 2px;
}
.bs-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand);
}
.bs-old {
    font-size: 12px;
    color: #bbb;
    text-decoration: line-through;
}
.bs-variants {
    display: block;
    font-size: 11px;
    color: var(--text-gray);
    margin-top: 4px;
}

/* ============ LES PETITS PRIX DE LA SEMAINE ============ */
.petitprix-section {
    padding: 32px 0;
    background: var(--white);
}
.petitprix-title {
    letter-spacing: 3px;
}
.petitprix-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: stretch;
}
/* LEFT PROMO CARD */
.petitprix-promo-card {
    background: linear-gradient(145deg, var(--brand) 0%, var(--brand-mid) 100%);
    border-radius: 10px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 340px;
    color: var(--white);
}
/* Decorative circles (like Kitea) */
.ppcard-circles { position: absolute; inset: 0; pointer-events: none; }
.ppcard-circle-bg {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.ppcard-c1 {
    width: 260px; height: 260px;
    bottom: -80px; right: -80px;
}
.ppcard-c2 {
    width: 160px; height: 160px;
    top: -50px; left: -50px;
}
/* Center badge circle */
.ppcard-badge-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 2;
    padding: 12px 0;
}
.ppcard-badge {
    width: 150px; height: 150px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.ppcard-badge-top {
    font-size: 11px;
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
}
.ppcard-badge-mid {
    font-size: 10px;
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 4px;
}
.ppcard-badge-pct {
    font-size: 36px;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
}
/* Bottom text */
.ppcard-footer { position: relative; z-index: 2; }
.ppcard-link {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    transition: gap var(--transition);
}
.ppcard-link:hover { gap: 10px; }
.ppcard-link i { font-size: 12px; }
.ppcard-desc {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 14px;
}
.ppcard-cta {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition), opacity var(--transition);
}
.ppcard-cta:hover { gap: 8px; opacity: 0.8; }
/* RIGHT STRIP */
.petitprix-strip-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.petitprix-strip {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    flex: 1;
    padding: 4px 2px 16px;
    min-width: 0;
}
.petitprix-strip::-webkit-scrollbar { display: none; }
.petitprix-strip .bs-card { min-width: 220px; max-width: 220px; }

/* ============ WHATSAPP SECTION ============ */
.whatsapp-section {
    background: var(--brand-dark);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
/* Decorative circles */
.wa-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.wa-deco-1 {
    width: 300px; height: 300px;
    background: rgba(178,159,117,0.08);
    top: -80px; left: -80px;
}
.wa-deco-2 {
    width: 200px; height: 200px;
    background: rgba(178,159,117,0.06);
    bottom: -60px; right: 10%;
}
.wa-deco-3 {
    width: 120px; height: 120px;
    background: rgba(178,159,117,0.1);
    top: 20px; right: 30%;
}
.wa-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 2;
}
.wa-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}
.wa-icon-wrap {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(178,159,117,0.15);
    border: 2px solid rgba(178,159,117,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wa-icon-wrap i {
    font-size: 38px;
    color: #25D366;
}
.wa-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}
.wa-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    max-width: 380px;
}
.wa-right {
    flex-shrink: 0;
    width: 380px;
}
.wa-form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-light);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.wa-form {
    display: flex;
    gap: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    margin-bottom: 12px;
}
.wa-input-wrap {
    display: flex;
    align-items: center;
    background: var(--white);
    flex: 1;
    min-width: 0;
}
.wa-prefix {
    padding: 0 12px;
    font-size: 13px;
    font-weight: 700;
    color: #25D366;
    white-space: nowrap;
    border-right: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 6px;
}
.wa-prefix i { font-size: 16px; }
.wa-input {
    flex: 1;
    padding: 14px 12px;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: inherit;
    background: transparent;
    color: var(--text);
    min-width: 0;
}
.wa-input::placeholder { color: #bbb; }
.wa-btn {
    padding: 0 24px;
    background: var(--brand);
    color: var(--white);
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background var(--transition);
    white-space: nowrap;
}
.wa-btn:hover { background: var(--brand-mid); }
.wa-btn i { font-size: 18px; }
.wa-note {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    gap: 5px;
}
.wa-note i { color: rgba(178,159,117,0.5); }

/* ============ RESPONSIVE ============ */
/* ── 1100px ── */
@media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1.6fr 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .burger-panel.open { width: 100vw; max-width: 100vw; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .petitprix-layout { grid-template-columns: 220px 1fr; }
    .wa-inner { gap: 28px; }
    .wa-right { width: 320px; }
}

/* ── 900px ── */
@media (max-width: 900px) {
    .main-nav { top: 0; position: relative; }
    .nav-main-links { overflow-x: auto; scrollbar-width: none; flex-wrap: nowrap; }
    .nav-main-links::-webkit-scrollbar { display: none; }
    .nav-mega-dropdown { display: none !important; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-main { height: 340px; }
    .hero-side { display: none; }
    .slide-content h2 { font-size: 36px; }
    .wa-inner { flex-direction: column; text-align: center; gap: 32px; }
    .wa-left { flex-direction: column; text-align: center; }
    .wa-sub { max-width: 100%; }
    .wa-right { width: 100%; max-width: 480px; }
    .petitprix-layout { grid-template-columns: 1fr; }
    .petitprix-promo-card { min-height: auto; flex-direction: row; align-items: center; gap: 16px; padding: 20px; }
    .ppcard-badge-wrap { flex: 0 0 auto; padding: 0; }
    .ppcard-badge { width: 110px; height: 110px; }
    .ppcard-badge-pct { font-size: 28px; }
}

/* ── 768px ── */
@media (max-width: 768px) {
    /* Header */
    .header-inner { flex-wrap: wrap; gap: 8px; padding: 10px 16px; }
    .header-left { flex: 0 0 auto; }
    .header-right { margin-left: 0; gap: 16px; }
    .search-container { order: 3; flex: 0 0 100%; margin-top: 8px; border-radius: 6px; }
    .logo img { height: 36px; }

    /* Top bar / promo */
    .top-bar-inner { flex-direction: column; gap: 6px; text-align: center; padding: 8px 16px; }
    .top-bar a { margin-right: 0; }

    /* Nav */
    .main-nav { display: none; }

    /* Hero */
    .hero-section { padding: 16px 0 0 0; }
    .hero-main { height: 280px; }
    .slide-content { padding: 24px; }
    .slide-content h2 { font-size: 26px; }
    .slide-tag { font-size: 10px; }
    .btn-white { padding: 10px 18px; font-size: 12px; }

    /* Categories */
    .categories-section { padding: 32px 0; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cat-img-wrap { height: 140px; }
    .cat-info { padding: 0; }
    .cat-info h3 { font-size: 18px; }

    /* Promo Banners */
    .promo-banners-section { padding: 12px 0 10px; }
    .promo-grid { grid-template-columns: 1fr; gap: 12px; }

    /* Products section */
    .products-section { padding: 24px 0 30px; }
    .filter-tabs { gap: 8px; }
    .filter-tab { padding: 8px 16px; font-size: 12px; }
    .prod-card { min-width: 200px; max-width: 200px; }
    .prod-img-wrap { height: 160px; }

    /* Best sellers */
    .bestsellers-section { padding: 24px 0; }
    .bs-card { min-width: 180px; max-width: 180px; }
    .bs-img-wrap { height: 140px; }

    /* Petits prix */
    .petitprix-section { padding: 24px 0; }
    .petitprix-layout { grid-template-columns: 1fr; gap: 16px; }
    .petitprix-promo-card { flex-direction: row; min-height: auto; padding: 20px; gap: 16px; }
    .ppcard-badge { width: 100px; height: 100px; }
    .ppcard-badge-pct { font-size: 24px; }
    .ppcard-badge-top, .ppcard-badge-mid { font-size: 9px; }
    .ppcard-link { font-size: 14px; }
    .ppcard-desc { font-size: 11px; }
    .petitprix-strip .bs-card { min-width: 180px; max-width: 180px; }

    /* WhatsApp */
    .whatsapp-section { padding: 40px 0; }
    .wa-inner { flex-direction: column; gap: 28px; text-align: center; }
    .wa-left { flex-direction: column; align-items: center; }
    .wa-icon-wrap { width: 64px; height: 64px; }
    .wa-icon-wrap i { font-size: 30px; }
    .wa-title { font-size: 20px; }
    .wa-sub { font-size: 12px; max-width: 100%; }
    .wa-right { width: 100%; }
    .wa-form { flex-direction: column; border-radius: 8px; overflow: visible; box-shadow: none; gap: 10px; }
    .wa-input-wrap { border-radius: 6px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
    .wa-btn { border-radius: 6px; padding: 14px 20px; justify-content: center; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }

    /* Features strip */
    .features-strip { padding: 28px 0; }
    .features-strip-inner { flex-wrap: wrap; }
    .feature-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--border); padding: 18px 12px; }
    .feature-item:nth-child(odd) { border-right: 1px solid var(--border); }
    .feature-item:nth-last-child(-n+2) { border-bottom: none; }
    .feature-icon-wrap { width: 52px; height: 52px; }
    .feature-icon-wrap i { font-size: 18px; }

    /* Services bar */
    .services-grid { grid-template-columns: 1fr 1fr; }
    .service-item { flex-direction: column; text-align: center; }
    .service-item i { font-size: 26px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-logo { height: 40px; }

    /* Mega menu */
    .mega-promos { display: none; }
    .mega-content { flex-wrap: wrap; }

    /* Burger */
    .burger-panel.open { width: 100vw; }


    .burger-sub-col { width: 180px; min-width: 180px; }
    .burger-panel.open { width: 100vw; max-width: 100vw; }

    /* Section titles */
    .cat-section-title { font-size: 16px; letter-spacing: 1.5px; }
    .section-title { font-size: 24px; }
}

/* ── 480px ── */
@media (max-width: 480px) {
    .container { padding: 0 12px; }
    .promo-alert { font-size: 11px; padding: 8px; }
    .header-inner { padding: 8px 12px; }
    .logo img { height: 30px; }
    .header-icon-link span { display: none; }
    .hero-main { height: 240px; }
    .slide-content { padding: 18px; }
    .slide-content h2 { font-size: 22px; }
    .btn-white { padding: 8px 14px; font-size: 11px; }

    /* Categories: 1 column on very small */
    .cat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .cat-img-wrap { height: 120px; }

    /* Products */
    .prod-card, .bs-card { min-width: 175px; max-width: 175px; }
    .bs-img-wrap, .prod-img-wrap { height: 140px; }

    /* Petits prix: stack vertically */
    .petitprix-promo-card { flex-direction: column; align-items: flex-start; }
    .ppcard-badge-wrap { width: 100%; justify-content: center; }

    /* Features 2-col stays */
    .feature-item { padding: 14px 8px; }
    .feature-title { font-size: 10px; letter-spacing: 1px; }
    .feature-desc { font-size: 11px; }

    /* Services: 1 col */
    .services-grid { grid-template-columns: 1fr; }

    /* WA form */
    .wa-title { font-size: 18px; }
    .wa-form-label { text-align: left; }

    /* Footer */
    .footer-grid { gap: 20px; }
    .social-row a { width: 32px; height: 32px; font-size: 13px; }

    /* Filter tabs: scrollable */
    .filter-tabs { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 8px; scrollbar-width: none; }
    .filter-tabs::-webkit-scrollbar { display: none; }
    .filter-tab { white-space: nowrap; flex-shrink: 0; }
}

/* ── 360px ── */
@media (max-width: 360px) {
    .hero-main { height: 210px; }
    .slide-content h2 { font-size: 19px; }
    .prod-card, .bs-card { min-width: 160px; max-width: 160px; }
    .petitprix-strip .bs-card { min-width: 160px; max-width: 160px; }
    .wa-title { font-size: 16px; }
    .ppcard-badge { width: 90px; height: 90px; }
    .ppcard-badge-pct { font-size: 20px; }
}

/* ============ LIFESTYLE GRID SECTION ============ */
.lifestyle-grid-section {
    padding: 30px 0 60px;
    background: #fdfbf7;
}
.lifestyle-grid-title {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 30px;
}
.lifestyle-grid {
    display: grid;
    grid-template-columns: 6fr 4fr; /* First row: wide left, narrower right */
    gap: 20px;
    margin-bottom: 20px;
}
.lifestyle-grid.second-row {
    grid-template-columns: 4fr 6fr; /* Second row: narrower left, wide right */
}
.lifestyle-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 30px;
    min-height: 380px;
    background-size: cover;
    background-position: center;
}
.lifestyle-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%);
    pointer-events: none;
}
.lifestyle-card .btn-decouvre {
    position: relative;
    z-index: 2;
    background: var(--white);
    color: var(--text);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, background 0.3s ease;
    text-decoration: none;
}
.lifestyle-card .btn-decouvre:hover {
    transform: translateY(-2px);
    background: var(--brand-light);
}

@media (max-width: 768px) {
    .lifestyle-grid, .lifestyle-grid.second-row {
        grid-template-columns: 1fr;
    }
    .lifestyle-card { min-height: 280px; }
}

/* ============ FOOTER PARTNERS ============ */
.footer-partners-section {
    background: #f7f6f4;
    padding: 40px 0 20px;
    text-align: center;
    border-top: 1px solid #eaeaea;
}
.partners-pill {
    background: var(--white);
    border-radius: 40px;
    padding: 16px 32px;
    display: inline-flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.03);
    margin-bottom: 24px;
}
.partners-text {
    font-size: 14px;
    font-weight: 600;
    color: #111111; /* Black color */
}
.partners-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}
.partners-logos img {
    height: 24px;
    object-fit: contain;
    transition: all var(--transition);
}
.partners-logos img:hover {
    transform: scale(1.05);
}
.footer-links-row {
    font-size: 12px;
    color: #111111;
    margin-bottom: 8px;
}
.footer-links-row a {
    color: #111111;
    text-decoration: none;
}
.footer-links-row a:hover {
    text-decoration: underline;
}
.copyright {
    font-size: 12px;
    color: #111111;
    margin-bottom: 12px;
}
.made-with-love {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.heart-emoji {
    display: inline-block;
    animation: heartbeat 1.5s infinite;
    transform-origin: center;
}
@keyframes heartbeat {
    0% { transform: scale(1); }
    15% { transform: scale(1.3); }
    30% { transform: scale(1); }
    45% { transform: scale(1.3); }
    60% { transform: scale(1); }
    100% { transform: scale(1); }
}
