:root {
  --primary: #0f766e;
  --primary-dark: #0d5e58;
  --primary-light: #ccfbf1;
  --accent: #5eead4;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --card: #f8fafc;
  --border: #e2e8f0;
  --text: #0f172a;
  --muted: #64748b;
  --danger: #ef4444;
  --success: #22c55e;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, .page-title, .section-title, .logo-text { font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.w-full { width: 100%; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 20px; border-radius: var(--radius); font-size: 14px; font-weight: 600;
  border: none; cursor: pointer; transition: all .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; border: 2px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: #f0fdfa; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ── Top Bar ── */
.topbar { background: var(--text); color: #fff; font-size: 12px; }
.topbar-inner { display: flex; justify-content: center; gap: 24px; padding: 8px 16px; }
.topbar span { opacity: .8; }

/* ── Header ── */
.header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; gap: 20px; padding: 12px 16px; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 72px; width: auto; object-fit: contain; filter: drop-shadow(0 1px 2px rgba(0,0,0,.08)); transition: filter .2s; }
.logo:hover .logo-img { filter: drop-shadow(0 2px 4px rgba(0,0,0,.12)); }

.search-bar { flex: 1; max-width: 500px; display: flex; border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.search-bar input { flex: 1; border: none; padding: 10px 16px; font-size: 14px; outline: none; }
.search-btn { background: var(--primary); color: #fff; border: none; padding: 10px 16px; cursor: pointer; font-size: 16px; }

.header-actions { display: flex; gap: 12px; align-items: center; }
.btn-sm-header { padding: 8px 16px; font-size: 13px; border-radius: 50px; background: #25D366; color: #fff; font-weight: 700; text-decoration: none; white-space: nowrap; }
.btn-sm-header:hover { opacity: .9; }

/* ── Hamburger animé ── */
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; position: relative; z-index: 110;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px; background: var(--text);
  position: absolute; left: 7px; transition: all .3s ease;
}
.menu-toggle span:nth-child(1) { top: 10px; }
.menu-toggle span:nth-child(2) { top: 17px; }
.menu-toggle span:nth-child(3) { top: 24px; }
.menu-toggle.active span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* ── Nav ── */
.main-nav { background: var(--primary); }
.nav-inner { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.nav-inner::-webkit-scrollbar { display: none; }
.nav-link { padding: 12px 18px; color: rgba(255,255,255,.75); font-size: 14px; font-weight: 500; transition: all .2s; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,.1); }

/* ── Nav Overlay (mobile) ── */
.nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 99; opacity: 0; transition: opacity .3s;
}
.nav-overlay.active { display: block; opacity: 1; }

/* ── Hero ── */
.hero { background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 50%, #e0f2fe 100%); }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 60px 16px; min-height: 480px; }
.hero-badge { display: inline-block; background: #fff; padding: 6px 16px; border-radius: 999px; font-size: 12px; font-weight: 600; color: var(--primary); border: 1px solid var(--primary-light); }
.hero h1 { margin-top: 20px; font-size: clamp(28px, 5vw, 44px); line-height: 1.1; font-weight: 800; }
.highlight { color: var(--primary); }
.hero p { margin-top: 16px; color: var(--muted); font-size: 16px; max-width: 440px; }
.hero-btns { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-visual img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ── Brands ── */
/* ── Mot du fondateur ── */
.founder-intro { background: var(--card); padding: 28px 0; border-bottom: 1px solid var(--border); }
.founder-intro p { text-align: center; font-size: 15px; color: var(--text); max-width: 800px; margin: 0 auto; line-height: 1.7; font-style: italic; }

.brands { border-bottom: 1px solid var(--primary-dark); background: var(--primary); overflow: hidden; }
.brands-track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.brands-slide { display: flex; align-items: center; gap: 32px; padding: 14px 20px; flex-shrink: 0; }
.brand-item { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.7); letter-spacing: .1em; white-space: nowrap; opacity: .8; transition: opacity .2s, color .2s; padding: 6px 16px; border: 1px solid transparent; border-radius: 6px; }
.brand-item:hover { opacity: 1; color: #fff; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.1); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Categories ── */
.categories-section { padding: 24px 0 16px; }

/* ── CTA Section ── */
.cta-section { padding: 40px 0; }
.cta-box { background: linear-gradient(135deg, var(--primary), #0d9488); color: #fff; border-radius: var(--radius-lg); padding: 48px 32px; text-align: center; }
.cta-icon { font-size: 48px; display: block; margin-bottom: 16px; }
.cta-box h2 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.cta-box p { font-size: 15px; opacity: .9; max-width: 600px; margin: 0 auto 24px; line-height: 1.7; }
.cta-box .btn-whatsapp { background: #25D366; color: #fff; border: none; font-size: 16px; padding: 14px 32px; border-radius: 50px; font-weight: 700; text-decoration: none; display: inline-block; transition: transform .2s; }
.cta-box .btn-whatsapp:hover { transform: scale(1.05); }

/* ── Brands Request Grid ── */
.brands-request-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.brands-request-grid.brands-request-small { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.brand-request-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 20px 12px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.brand-request-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.brand-request-card img, .brand-request-card .brand-logo-text { width: 80px; height: 80px; object-fit: cover; border-radius: 50%; margin-bottom: 12px; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; letter-spacing: .5px; color: var(--text); background: var(--bg-alt); }
.brand-request-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.brand-request-card .brand-count { font-size: 12px; color: var(--muted); }
.section-title { font-size: clamp(20px, 3vw, 26px); font-weight: 800; }
.section-sub { color: var(--muted); margin-top: 4px; font-size: 14px; }
.categories-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 16px; }
.cat-card { padding: 20px 16px; border-radius: var(--radius-lg); transition: transform .2s, box-shadow .2s; border: 2px solid transparent; cursor: pointer; background: #fff; text-align: center; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border); }
.cat-card.selected { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(15,118,110,.2); }
.cat-emoji { font-size: 28px; display: block; margin-bottom: 8px; }
.cat-card h3 { font-size: 16px; font-weight: 700; }

/* Type panel */
.type-panel { margin-top: 20px; }
.types-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.type-btn { padding: 10px 20px; border-radius: 999px; border: 1px solid var(--border); background: #fff; font-size: 13px; font-weight: 500; cursor: pointer; transition: all .2s; }
.type-btn:hover { background: var(--primary-light); border-color: var(--primary); }
.type-btn.selected { background: var(--primary); color: #fff; border-color: var(--primary); }
.cat-wa-btn { margin-top: 16px; display: inline-flex; }

/* ── Cat search box ── */
.cat-search-box { text-align: center; padding: 32px 20px; background: linear-gradient(135deg, var(--primary-light), #f0fdfa); border-radius: var(--radius-lg); border: 2px solid var(--primary); margin-bottom: 8px; }
.cat-search-row { display: flex; gap: 10px; max-width: 560px; margin: 16px auto 0; }
.cat-search-input { flex: 1; padding: 14px 18px; border: 2px solid var(--border); border-radius: var(--radius); font-size: 15px; font-family: inherit; outline: none; transition: border-color .2s; }
.cat-search-input:focus { border-color: var(--primary); }
.cat-search-input::placeholder { color: var(--muted); }
@media (max-width: 480px) { .cat-search-row { flex-direction: column; } .cat-search-row .btn { width: 100%; justify-content: center; min-height: 48px; } }

/* ── Catalogue ── */
.catalogue { padding: 20px 0 24px; background: var(--card); }
.catalogue-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }
.catalogue-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn { padding: 8px 18px; border-radius: 999px; border: 1px solid var(--border); background: #fff; font-size: 13px; font-weight: 500; cursor: pointer; transition: all .2s; }
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Product Cards ── */
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.product-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform .2s, box-shadow .2s; position: relative; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-badge { position: absolute; top: 12px; left: 12px; z-index: 2; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; background: #fff; color: var(--text); box-shadow: var(--shadow); }
.product-card img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #f1f5f9; }
.product-placeholder { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; background: #f1f5f9; font-size: 48px; color: #ccc; }
.product-info { padding: 16px; }
.product-brand { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.product-info h3 { margin-top: 4px; font-size: 14px; font-weight: 600; line-height: 1.3; }
.product-rating { margin-top: 6px; font-size: 12px; color: #f59e0b; }
.product-rating span { color: var(--muted); margin-left: 4px; }
.product-price { margin-top: 10px; display: flex; align-items: baseline; gap: 8px; }
.price-now { font-size: 18px; font-weight: 800; color: var(--primary); }
.product-card .btn { margin-top: 12px; }

/* ── Galerie ── */
.real-photos { padding: 24px 0; text-align: center; }
.gallery-wrap { margin-top: 16px; }
.gallery-track { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; padding: 0; }
.gallery-item { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); cursor: pointer; transition: transform .2s; position: relative; }
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.gallery-num { display: none; }
.gallery-arrow { display: none; }

/* ── Services ── */
.services-section { padding: 24px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 16px; }
.service-card { padding: 20px; border: 1px solid var(--border); border-radius: var(--radius-lg); transition: transform .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-icon { font-size: 28px; display: block; margin-bottom: 12px; }
.service-card h3 { font-size: 16px; font-weight: 700; }
.service-card p { margin-top: 6px; font-size: 14px; color: var(--muted); }

/* ── À propos ── */
.about-section { padding: 48px 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: center; }
.about-media { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary-light), #e0f2fe); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.about-logo { max-width: 220px; width: 100%; filter: drop-shadow(0 4px 12px rgba(0,0,0,.1)); }
.about-kicker { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--primary); background: var(--primary-light); padding: 4px 12px; border-radius: 999px; margin-bottom: 8px; }
.about-text p { margin-top: 14px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.about-points { margin-top: 20px; display: grid; gap: 10px; }
.about-points li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.about-text .btn { margin-top: 24px; }

/* ── Reviews ── */
.reviews-section { padding: 24px 0; background: var(--card); overflow: hidden; }
.reviews-track { display: flex; width: max-content; animation: scroll-reviews 20s linear infinite; }
.reviews-track:hover { animation-play-state: paused; }
.reviews-slide { display: flex; gap: 12px; padding: 0 6px; }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; min-width: 300px; flex-shrink: 0; }
.review-stars { color: #f59e0b; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p { font-size: 14px; color: var(--text); font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: grid; place-items: center; font-weight: 700; font-size: 14px; }
.review-author strong { display: block; font-size: 13px; }
.review-author span { font-size: 12px; color: var(--muted); }

@keyframes scroll-reviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Contact ── */
.contact-section { padding: 24px 0; }

/* ── Map ── */
.map-section { padding: 24px 0 32px; background: transparent; }
.map-container { margin-top: 16px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); position: relative; display: flex; justify-content: center; }
.map-container iframe { display: block; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info { background: var(--primary); color: #fff; padding: 28px; border-radius: var(--radius-lg); }
.contact-info h2 { color: #fff; }
.contact-info p { color: rgba(255,255,255,.8); margin-top: 8px; font-size: 15px; }
.contact-info .contact-link { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.1); }
.contact-info .contact-link:hover { background: rgba(255,255,255,.2); border-color: #fff; }
.contact-info .contact-link strong { color: #fff; }
.contact-info .contact-link span { color: rgba(255,255,255,.7); }
.contact-info .contact-icon { color: #fff; }
.contact-links { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.contact-link { display: flex; align-items: center; gap: 14px; padding: 14px; border: 1px solid var(--border); border-radius: var(--radius); transition: all .2s; }
.contact-link:hover { border-color: var(--primary); background: var(--primary-light); }
.contact-icon { font-size: 20px; }
.contact-link strong { display: block; font-size: 14px; }
.contact-link span { font-size: 12px; color: var(--muted); }
.contact-social { margin-top: 24px; }
.contact-social h4 { font-size: 14px; font-weight: 600; margin-bottom: 8px; }

.contact-form-box { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.contact-form-box h3 { font-size: 20px; font-weight: 700; }
.contact-form-box > p { font-size: 14px; color: var(--muted); margin-top: 4px; }
.contact-form { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; font-family: inherit; outline: none; transition: border .2s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--primary); }

/* ── Footer ── */
.footer { background: var(--text); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding: 48px 0 32px; }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-col .logo-img { height: 60px; width: 60px; border-radius: 50%; object-fit: cover; filter: drop-shadow(0 2px 8px rgba(255,255,255,.1)) brightness(1.1); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 12px; max-width: 280px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 16px 0; text-align: center; font-size: 12px; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.6); text-decoration: none; }
.footer-bottom a:hover { color: #fff; text-decoration: underline; }
.footer-social { display: flex; gap: 12px; justify-content: center; margin-top: 12px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: transparent; text-decoration: none; transition: background .2s, transform .2s; }
.footer-social a:hover { transform: scale(1.1); }
.footer-social a.whatsapp { color: #25D366; border: 1px solid #25D366; }
.footer-social a.whatsapp svg { fill: #25D366; }
.footer-social a.whatsapp:hover { background: #25D366; }
.footer-social a.whatsapp:hover svg { fill: #fff; }
.footer-social a.facebook { color: #1877F2; border: 1px solid #1877F2; }
.footer-social a.facebook svg { fill: #1877F2; }
.footer-social a.facebook:hover { background: #1877F2; }
.footer-social a.facebook:hover svg { fill: #fff; }
.footer-social a.instagram { color: #E4405F; border: 1px solid #E4405F; }
.footer-social a.instagram svg { fill: #E4405F; }
.footer-social a.instagram:hover { background: #E4405F; }
.footer-social a.instagram:hover svg { fill: #fff; }
.footer-social a.tiktok { color: #fff; border: 1px solid rgba(255,255,255,.3); }
.footer-social a.tiktok svg { fill: #fff; }
.footer-social a.tiktok:hover { background: #fff; }
.footer-social a.tiktok:hover svg { fill: #000; }
.footer-social svg { width: 18px; height: 18px; }

/* ── Hero Slideshow ── */
.hero-slideshow { position: relative; min-height: 75vh; display: flex; align-items: center; overflow: hidden; background: #000; }
.slideshow-bg { position: absolute; inset: 0; }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center 20%; opacity: 0; transition: opacity 1.2s ease-in-out; }
.slide.active { opacity: 1; }
.slideshow-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.4) 50%, rgba(0,0,0,.2) 100%); }
.hero-slideshow .hero-content { position: relative; z-index: 2; padding: 48px 16px; color: #fff; }
.hero-slideshow h1 { font-size: clamp(24px, 5vw, 38px); font-weight: 800; line-height: 1.1; margin-top: 12px; }
.hero-slideshow .highlight { color: var(--accent); }
.hero-slideshow p { margin-top: 12px; max-width: 500px; font-size: 15px; opacity: .9; }
.hero-btns { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,.5); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.slideshow-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; gap: 8px; }
.slideshow-dots .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: all .3s; }
.slideshow-dots .dot.active { background: #fff; width: 28px; border-radius: 5px; }

/* ── Note Banner ── */
.note-banner { display: flex; gap: 16px; align-items: flex-start; background: #fffbeb; border: 1px solid #fde68a; border-radius: var(--radius-lg); padding: 24px; margin-bottom: 32px; }
.note-icon { font-size: 32px; flex-shrink: 0; }
.note-banner h3 { font-size: 16px; font-weight: 700; color: #92400e; }
.note-banner p { margin-top: 6px; font-size: 14px; color: #78350f; }

/* ── Troc ── */
.troc-hero { background: linear-gradient(135deg, #f59e0b, #d97706); }
.troc-content { padding: 40px 0; }
.troc-info-box { display: flex; gap: 16px; align-items: flex-start; background: #fffbeb; border: 1px solid #fde68a; border-radius: var(--radius-lg); padding: 24px; margin-bottom: 32px; }
.troc-info-icon { font-size: 32px; flex-shrink: 0; }
.troc-info-box h3 { font-size: 16px; font-weight: 700; color: #92400e; }
.troc-info-box p { margin-top: 6px; font-size: 14px; color: #78350f; }
.troc-cta { display: flex; gap: 12px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.troc-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 28px; align-items: stretch; }
.troc-step { text-align: center; padding: 28px 16px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; position: relative; display: flex; flex-direction: column; align-items: center; }
.troc-step-num { position: absolute; top: 12px; right: 12px; width: 28px; height: 28px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.troc-step-icon { font-size: 36px; display: block; margin-bottom: 12px; }
.troc-step h3 { font-size: 16px; font-weight: 700; }
.troc-step p { margin-top: 6px; font-size: 13px; color: var(--muted); }
.troc-what { margin-top: 48px; }
.troc-brands { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 24px; }
.troc-brand-card { padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; }
.troc-brand-icon { font-size: 28px; display: block; margin-bottom: 10px; }
.troc-brand-card h3 { font-size: 16px; font-weight: 700; }
.troc-brand-card p { margin-top: 6px; font-size: 13px; color: var(--muted); line-height: 1.6; }
.troc-conditions { margin-top: 48px; }
.troc-conditions-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 24px; }
.troc-condition { display: flex; gap: 12px; padding: 16px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; }
.troc-ok { color: var(--success); font-size: 18px; font-weight: 700; flex-shrink: 0; }
.troc-condition h4 { font-size: 14px; font-weight: 700; }
.troc-condition p { margin-top: 2px; font-size: 13px; color: var(--muted); }

/* ── Troc Form ── */
.troc-form-section { margin-top: 48px; }
.troc-form { margin-top: 24px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: 1 / -1; margin-top: 8px; }
.form-group label { font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-hint { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 14px; font-family: inherit; outline: none; transition: border .2s; background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group select { cursor: pointer; }

.photo-upload { position: relative; border: 2px dashed var(--border); border-radius: var(--radius); overflow: hidden; transition: border .2s; }
.photo-upload:hover { border-color: var(--primary); }
.photo-upload input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 2; }
.photo-upload-label { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 32px; text-align: center; }
.photo-upload-icon { font-size: 36px; }
.photo-upload-label span { font-size: 14px; color: var(--muted); }
.photo-upload-hint { font-size: 12px !important; }

.photo-preview { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.photo-preview-item {
  position: relative; width: 100px; height: 100px; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border);
}
.photo-preview-item img { width: 100%; height: 100%; object-fit: cover; }
.photo-preview-remove {
  position: absolute; top: 4px; right: 4px; width: 22px; height: 22px;
  border-radius: 50%; background: var(--danger); color: #fff; border: none;
  font-size: 12px; cursor: pointer; display: grid; place-items: center; line-height: 1;
}

.form-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 12px; }

/* ── Page Hero ── */
.page-hero { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; padding: 64px 16px; text-align: center; }
.page-title { font-size: clamp(24px, 5vw, 36px); font-weight: 800; }
.page-desc { margin-top: 8px; opacity: .85; font-size: 16px; }
.services-hero { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.contact-hero { background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)), url('https://images.pexels.com/photos/30466737/pexels-photo-30466737.jpeg?auto=compress&cs=tinysrgb&w=1200') center/cover no-repeat; }

/* ── Section header ── */
.section-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.link-more { font-size: 14px; font-weight: 600; color: var(--primary); }
.link-more:hover { text-decoration: underline; }

/* ── Featured ── */
.featured { padding: 24px 0; }

/* ── Brands Detail ── */
.brands-detail { padding: 40px 0; }
.brand-block { margin-bottom: 48px; }
.brand-header { margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid var(--border); }
.brand-logo-big { font-size: 24px; font-weight: 800; letter-spacing: .1em; color: var(--text); }
.brand-header p { margin-top: 6px; color: var(--muted); font-size: 14px; }
.brand-soon { color: var(--muted); font-size: 14px; padding: 20px; background: var(--card); border-radius: var(--radius); }

/* ── Services Detail ── */
.services-detail { padding: 40px 0; }
.service-detail-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-detail-card { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; transition: transform .2s, box-shadow .2s; }
.service-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-big-icon { font-size: 36px; display: block; margin-bottom: 12px; }
.service-detail-card h3 { font-size: 18px; font-weight: 700; }
.service-detail-card p { margin-top: 8px; font-size: 14px; color: var(--muted); }
.service-detail-card ul { margin-top: 14px; }
.service-detail-card li { font-size: 13px; color: var(--text); padding: 4px 0; padding-left: 16px; position: relative; }
.service-detail-card li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* ── CTA Section ── */
.cta-section { background: var(--primary); color: #fff; }
.cta-inner { text-align: center; padding: 56px 16px; }
.cta-inner h2 { font-size: clamp(22px, 4vw, 32px); font-weight: 800; }
.cta-inner p { margin-top: 8px; opacity: .85; }
.cta-btns { display: flex; gap: 12px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }

/* ── Contact Page ── */
.contact-page { padding: 40px 0; background: var(--primary); color: #fff; }
.contact-page h2, .contact-page h3, .contact-page h4 { color: #fff; }
.contact-page p, .contact-page span { color: rgba(255,255,255,.75); }
.contact-page .contact-link { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.1); }
.contact-page .contact-link:hover { background: rgba(255,255,255,.2); border-color: #fff; }
.contact-page .contact-link strong { color: #fff; }
.contact-page .contact-link span { color: rgba(255,255,255,.7); }
.contact-page .contact-form-box { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.contact-page .contact-form-box h3 { color: #fff; }
.contact-page .contact-form-box > p { color: rgba(255,255,255,.7); }
.contact-page .contact-form input, .contact-page .contact-form textarea { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; }
.contact-page .contact-form input::placeholder, .contact-page .contact-form textarea::placeholder { color: rgba(255,255,255,.5); }
.contact-page .contact-form input:focus, .contact-page .contact-form textarea:focus { border-color: #fff; }
.contact-page .footer-social a.whatsapp { color: #25D366; border: 1px solid #25D366; }
.contact-page .footer-social a.whatsapp svg { fill: #25D366; }
.contact-page .footer-social a.whatsapp:hover { background: #25D366; }
.contact-page .footer-social a.whatsapp:hover svg { fill: #fff; }
.contact-page .footer-social a.facebook { color: #1877F2; border: 1px solid #1877F2; }
.contact-page .footer-social a.facebook svg { fill: #1877F2; }
.contact-page .footer-social a.facebook:hover { background: #1877F2; }
.contact-page .footer-social a.facebook:hover svg { fill: #fff; }
.contact-page .footer-social a.instagram { color: #E4405F; border: 1px solid #E4405F; }
.contact-page .footer-social a.instagram svg { fill: #E4405F; }
.contact-page .footer-social a.instagram:hover { background: #E4405F; }
.contact-page .footer-social a.instagram:hover svg { fill: #fff; }
.contact-page .footer-social a.tiktok { color: #fff; border: 1px solid rgba(255,255,255,.3); }
.contact-page .footer-social a.tiktok svg { fill: #fff; }
.contact-page .footer-social a.tiktok:hover { background: #fff; }
.contact-page .footer-social a.tiktok:hover svg { fill: var(--primary); }
.contact-page .contact-social h4 { color: #fff; }

/* ── Legal Pages ── */
.legal-page { padding: 20px 0 60px; max-width: 800px; }
.legal-section { margin-bottom: 28px; }
.legal-section h3 { color: var(--text); margin-bottom: 10px; font-weight: 700; }
.legal-section p { line-height: 1.8; margin-bottom: 10px; }
.legal-section ul { margin: 10px 0 10px 20px; }
.legal-section li { line-height: 1.7; margin-bottom: 6px; }
.legal-subtitle { color: var(--primary); font-size: 20px; margin-bottom: 12px; font-weight: 700; }
.legal-separator { border: 0; border-top: 1px solid var(--border); margin: 32px 0; }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  font-size: 28px; box-shadow: 0 4px 12px rgba(37,211,102,.4);
  transition: transform .2s; text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ── Toast ── */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--text); color: #fff; padding: 12px 24px; border-radius: var(--radius); font-size: 14px; font-weight: 500; opacity: 0; transition: all .3s; z-index: 200; pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile First Complet
   ═══════════════════════════════════════════ */

/* ── Globaux mobile (≤768px) ── */
@media (max-width: 768px) {
  .container { padding: 0 14px; }
  body { font-size: 15px; }

  /* Topbar cachée */
  .topbar { display: none; }

  /* Header mobile */
  .header-inner { flex-wrap: wrap; gap: 10px; padding: 10px 14px; }
  .logo-img { height: 56px; filter: drop-shadow(0 1px 3px rgba(0,0,0,.1)); }
  .search-bar { order: 3; flex: 1 1 100%; max-width: 100%; border-width: 1px; }
  .search-bar input { padding: 10px 12px; font-size: 14px; }
  .search-btn { padding: 10px 14px; }
  .header-actions { gap: 8px; }
  .btn-sm-header { padding: 7px 14px; font-size: 12px; }

  /* Menu hamburger */
  .menu-toggle { display: block; width: 36px; height: 36px; }
  .menu-toggle span { width: 20px; left: 8px; }
  .menu-toggle span:nth-child(1) { top: 10px; }
  .menu-toggle span:nth-child(2) { top: 17px; }
  .menu-toggle span:nth-child(3) { top: 24px; }
  .menu-toggle.active span:nth-child(1) { top: 17px; transform: rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

  /* Nav tiroir gauche */
  .main-nav {
    display: block; position: fixed; top: 0; left: -280px;
    width: 280px; height: 100dvh; z-index: 101;
    background: var(--primary); overflow-y: auto;
    transition: left .3s ease;
  }
  .main-nav.open { left: 0; }
  .nav-inner { flex-direction: column; padding-top: 60px; }
  .nav-link { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 15px; min-height: 48px; display: flex; align-items: center; }

  /* ── Hero mobile ── */
  .hero-slideshow { min-height: 65vh; }
  .hero-slideshow .hero-content { padding: 32px 16px; }
  .hero-badge { font-size: 11px; padding: 5px 12px; }
  .hero-slideshow h1 { font-size: 22px; margin-top: 10px; line-height: 1.15; }
  .hero-slideshow p { font-size: 13px; margin-top: 10px; line-height: 1.6; }
  .hero-btns { gap: 10px; margin-top: 18px; flex-direction: column; }
  .hero-btns .btn { width: 100%; padding: 12px 20px; font-size: 14px; justify-content: center; }
  .slideshow-dots { bottom: 14px; }
  .slideshow-dots .dot { width: 8px; height: 8px; }
  .slideshow-dots .dot.active { width: 22px; }

  /* ── Brands marquee ── */
  .brands { padding: 0; }
  .brands-slide { gap: 20px; padding: 10px 14px; }
  .brand-item { font-size: 11px; padding: 4px 10px; letter-spacing: .04em; }

  /* ── Section titres ── */
  .section-title { font-size: 18px; }
  .section-sub { font-size: 13px; margin-top: 4px; }

  /* ── Catégories ── */
  .categories-section { padding: 18px 0 14px; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
  .cat-card { padding: 16px 10px; min-height: auto; }
  .cat-emoji { font-size: 26px; margin-bottom: 6px; }
  .cat-card h3 { font-size: 13px; }
  .cat-card p { font-size: 11px; margin-top: 2px; }
  .type-btn { padding: 10px 16px; font-size: 13px; min-height: 44px; }
  .cat-wa-btn { width: 100%; justify-content: center; padding: 14px 24px; font-size: 15px; min-height: 48px; }

  /* ── Galerie ── */
  .real-photos { padding: 18px 0; }
  .gallery-track { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 8px; }
  .gallery-item img { aspect-ratio: 1; }
  .gallery-num { width: 24px; height: 24px; font-size: 11px; top: 6px; left: 6px; }

  /* ── CTA ── */
  .cta-section { padding: 24px 0; }
  .cta-box { padding: 28px 18px; border-radius: var(--radius); }
  .cta-icon { font-size: 36px; margin-bottom: 12px; }
  .cta-box h2 { font-size: 17px; }
  .cta-box p { font-size: 13px; line-height: 1.6; }
  .cta-box .btn-whatsapp { padding: 12px 24px; font-size: 14px; width: 100%; }

  /* ── Services ── */
  .services-section { padding: 18px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 14px; }
  .service-card { padding: 16px; }
  .service-card h3 { font-size: 15px; }
  .service-card p { font-size: 13px; }

  /* ── À propos ── */
  .about-section { padding: 28px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .about-media { max-width: 200px; margin: 0 auto; padding: 24px; }
  .about-logo { max-width: 140px; filter: drop-shadow(0 4px 16px rgba(0,0,0,.15)); }
  .about-text p { font-size: 14px; }
  .about-points { justify-items: center; }
  .about-points li { text-align: left; font-size: 13px; }
  .about-text .btn { width: 100%; justify-content: center; }

  /* ── Avis ── */
  .reviews-section { padding: 18px 0; }
  .review-card { min-width: 260px; padding: 16px; }
  .review-card p { font-size: 13px; }

  /* ── Catalogue ── */
  .catalogue { padding: 18px 0; }
  .catalogue-header { flex-direction: column; align-items: stretch; gap: 10px; }
  .catalogue-filters { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: 6px; }
  .catalogue-filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; padding: 7px 14px; font-size: 12px; min-height: 36px; }

  /* ── Produits ── */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .product-card img, .product-placeholder { aspect-ratio: 1; height: auto; }
  .product-info { padding: 10px; }
  .product-brand { font-size: 10px; }
  .product-info h3 { font-size: 12px; margin-top: 2px; }
  .product-rating { font-size: 11px; margin-top: 3px; }
  .price-now { font-size: 14px; }
  .product-card .btn { margin-top: 8px; padding: 8px 10px; font-size: 12px; width: 100%; }
  .product-badge { font-size: 9px; padding: 2px 6px; top: 6px; left: 6px; }

  /* ── Page hero ── */
  .page-hero { padding: 40px 16px; }
  .page-title { font-size: 20px; }
  .page-desc { font-size: 14px; }

  /* ── Contact ── */
  .contact-section { padding: 18px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-info { padding: 24px; }
  .contact-info p { font-size: 14px; }
  .contact-form-box { padding: 20px; }
  .contact-form input, .contact-form textarea { padding: 12px; font-size: 14px; }
  .map-container iframe { width: 100%; height: 250px; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; padding: 28px 0 16px; }
  .footer-grid .footer-col:first-child { grid-column: span 2; text-align: center; }
  .footer-desc { max-width: 100%; margin: 10px auto 0; }
  .footer-col h4 { font-size: 13px; margin-bottom: 8px; }
  .footer-col a, .footer-col p { font-size: 12px; margin-bottom: 6px; }
  .footer-bottom { padding: 12px 0; font-size: 11px; }
  .footer-social { margin-top: 14px; gap: 10px; }
  .footer-social a { width: 34px; height: 34px; }

  /* ── Troc ── */
  .troc-content { padding: 24px 0; }
  .troc-steps { grid-template-columns: 1fr; gap: 10px; margin-top: 18px; }
  .troc-step { display: flex; text-align: left; gap: 12px; align-items: center; padding: 14px; }
  .troc-step-icon { font-size: 28px; margin-bottom: 0; }
  .troc-step h3 { font-size: 14px; }
  .troc-step p { font-size: 12px; }
  .troc-brands { grid-template-columns: 1fr; gap: 10px; }
  .troc-brand-card { padding: 16px; }
  .troc-conditions-grid { grid-template-columns: 1fr; }
  .troc-condition { padding: 14px; }
  .troc-info-box { flex-direction: column; padding: 18px; }
  .note-banner { flex-direction: column; padding: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .troc-form { padding: 18px; }
  .troc-form h3 { font-size: 16px; }
  .photo-upload-label { padding: 20px; }
  .photo-preview-item { width: 80px; height: 80px; }

  /* ── Services detail ── */
  .services-detail { padding: 24px 0; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-detail-card { padding: 20px; }

  /* ── Marques ── */
  .brands-detail { padding: 24px 0; }

  /* ── Legal ── */
  .legal-page { padding: 16px 0 40px; }

  /* ── Brands Request ── */
  .brands-request-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .brands-request-grid.brands-request-small { grid-template-columns: 1fr 1fr; }
  .brand-request-card { padding: 14px 8px; }
  .brand-request-card img, .brand-request-card .brand-logo-text { width: 56px; height: 56px; font-size: 10px; }
  .brand-request-card h3 { font-size: 12px; }
}

/* ── Petit mobile (≤480px) ── */
@media (max-width: 480px) {
  .container { padding: 0 12px; }

  .header-inner { gap: 8px; padding: 8px 12px; }
  .logo-img { height: 48px; filter: drop-shadow(0 1px 2px rgba(0,0,0,.1)); }
  .btn-sm-header { padding: 6px 12px; font-size: 11px; }
  .search-bar { border-width: 1px; }

  .hero-slideshow { min-height: 55vh; }
  .hero-slideshow .hero-content { padding: 24px 12px; }
  .hero-slideshow h1 { font-size: 19px; }
  .hero-slideshow p { font-size: 12px; }
  .hero-btns .btn { padding: 11px 16px; font-size: 13px; }

  .brands-slide { gap: 16px; padding: 8px 12px; }
  .brand-item { font-size: 10px; padding: 3px 8px; }

  .section-title { font-size: 16px; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cat-card { padding: 12px 8px; }
  .cat-emoji { font-size: 22px; }
  .cat-card h3 { font-size: 12px; }
  .cat-card p { display: none; }
  .type-btn { padding: 9px 14px; font-size: 12px; min-height: 42px; }

  .gallery-track { grid-template-columns: repeat(auto-fill, minmax(95px, 1fr)); gap: 6px; }
  .gallery-num { width: 22px; height: 22px; font-size: 10px; }

  .products-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .product-info { padding: 8px; }
  .product-info h3 { font-size: 11px; }
  .price-now { font-size: 13px; }

  .page-hero { padding: 32px 12px; }
  .page-title { font-size: 18px; }
  .page-desc { font-size: 13px; }

  .cta-box { padding: 24px 16px; }
  .cta-box h2 { font-size: 16px; }
  .cta-icon { font-size: 30px; }

  .footer-grid { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid .footer-col:first-child { grid-column: span 1; }

  .brands-request-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .brands-request-grid.brands-request-small { grid-template-columns: 1fr 1fr; }

  .troc-step h3 { font-size: 13px; }
}

/* ── Très petit mobile (≤360px) ── */
@media (max-width: 360px) {
  .header-inner { gap: 6px; padding: 6px 10px; }
  .logo-img { height: 42px; filter: drop-shadow(0 1px 2px rgba(0,0,0,.1)); }
  .btn-sm-header { padding: 5px 10px; font-size: 11px; }
  .menu-toggle { width: 32px; height: 32px; }
  .menu-toggle span { width: 18px; }
  .menu-toggle span:nth-child(1) { top: 7px; left: 7px; }
  .menu-toggle span:nth-child(2) { top: 13px; left: 7px; }
  .menu-toggle span:nth-child(3) { top: 19px; left: 7px; }
  .menu-toggle.active span:nth-child(1) { top: 13px; }
  .menu-toggle.active span:nth-child(3) { top: 13px; }
  .main-nav { width: 260px; left: -260px; }

  .hero-slideshow { min-height: 50vh; }
  .hero-slideshow h1 { font-size: 17px; }
  .hero-slideshow p { font-size: 11px; }
  .hero-btns .btn { padding: 10px 14px; font-size: 12px; }

  .categories-grid { gap: 6px; }
  .cat-card { padding: 10px 6px; }
  .cat-emoji { font-size: 20px; }
  .cat-card h3 { font-size: 11px; }

  .type-btn { padding: 8px 12px; font-size: 11px; min-height: 40px; }

  .gallery-track { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 5px; }

  .products-grid { gap: 5px; }
  .product-info { padding: 6px; }
  .product-info h3 { font-size: 10px; }
  .price-now { font-size: 12px; }
  .product-card .btn { font-size: 11px; padding: 7px 8px; }

  .brands-track { animation-duration: 25s; }
  .brand-item { font-size: 9px; padding: 3px 6px; }

  .section-title { font-size: 15px; }
  .page-hero { padding: 24px 10px; }
  .page-title { font-size: 17px; }

  .brands-request-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .brand-request-card { padding: 10px 6px; }
  .brand-request-card img, .brand-request-card .brand-logo-text { width: 48px; height: 48px; font-size: 9px; }
  .brand-request-card h3 { font-size: 11px; }

  .lightbox-content { max-height: 90vh; border-radius: var(--radius); }
  .lightbox-info { padding: 14px; }
  .lightbox-info h3 { font-size: 15px; }
  .lightbox-specs { grid-template-columns: 1fr; }
  .lightbox-actions { flex-direction: column; }
  .lightbox-actions .btn { min-height: 40px; font-size: 13px; }
}

/* ── Tablette (≤1024px) ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3,1fr); }
  .troc-steps { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .review-card { min-width: 280px; }
  .service-detail-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── Tablette petit (≤860px) ── */
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid .footer-col:first-child { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .about-points { justify-items: center; }
  .about-points li { text-align: left; }
  .about-media { max-width: 260px; margin: 0 auto; }
}

/* ── WhatsApp safe area iPhone ── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .whatsapp-float {
    bottom: calc(24px + env(safe-area-inset-bottom));
  }
}

/* ── Lightbox Modal ── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.85); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 16px;
}
.lightbox.active { display: flex; }
.lightbox-content {
  background: #fff; border-radius: var(--radius-lg); max-width: 700px; width: 100%;
  max-height: 90vh; overflow-y: auto; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.lightbox-close {
  position: absolute; top: 10px; right: 10px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: var(--text); color: #fff; font-size: 18px; cursor: pointer;
  display: grid; place-items: center; transition: background .2s;
}
.lightbox-close:hover { background: var(--danger); }
.lightbox-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.lightbox-info { padding: 20px; }
.lightbox-info h3 { font-size: 18px; font-weight: 700; }
.lightbox-brand { display: inline-block; margin-top: 6px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--primary); background: var(--primary-light); padding: 3px 10px; border-radius: 999px; }
.lightbox-ref { margin-top: 8px; display: inline-block; font-size: 13px; font-weight: 700; color: var(--primary); background: var(--primary-light); padding: 4px 14px; border-radius: var(--radius); border: 2px solid var(--primary); }
.lightbox-specs { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lightbox-spec { padding: 10px 12px; background: var(--card); border-radius: var(--radius); border: 1px solid var(--border); }
.lightbox-spec-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.lightbox-spec-value { font-size: 13px; font-weight: 700; margin-top: 2px; }
.lightbox-price { margin-top: 14px; display: flex; align-items: baseline; gap: 10px; }
.lightbox-price-now { font-size: 20px; font-weight: 800; color: var(--primary); }

@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation-duration: 60s; }
  .brands-track { animation-duration: 80s; }
}
.lightbox-actions { margin-top: 14px; display: flex; gap: 10px; }
.lightbox-actions .btn { flex: 1; justify-content: center; min-height: 44px; }