﻿    /* ── Tokens ─────────────────────────────────────────── */
    :root {
      --ocean:       #1a6b8a;
      --ocean-dark:  #0f4a63;
      --ocean-light: #e8f4f8;
      --sand:        #e8dcc8;
      --sand-dark:   #c9b99a;
      --nature:      #4a7c59;
      --nature-light:#edf4ef;
      --dark:        #1a2b3c;
      --light:       #f8f5f0;
      --accent:      #d4813a;
      --radius:      .875rem;
      --transition:  .28s ease;
      --shadow-sm:   0 2px 12px rgba(26,107,138,.1);
      --shadow-md:   0 8px 32px rgba(26,107,138,.15);
      --shadow-lg:   0 20px 60px rgba(26,107,138,.18);
    }

    /* ── Base ────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      color: var(--dark);
      background: var(--light);
      overflow-x: hidden;
    }

    h1, h2, h3, .brand-font {
      font-family: 'Playfair Display', Georgia, serif;
    }

    /* ── Skip link ───────────────────────────────────────── */
    .skip-link {
      position: absolute; top: -100%; left: 1rem; z-index: 9999;
      background: var(--ocean); color: #fff;
      padding: .5rem 1.25rem; border-radius: 0 0 .5rem .5rem;
      font-weight: 600; transition: top var(--transition);
    }
    .skip-link:focus { top: 0; }

    /* ── Topbar ──────────────────────────────────────────── */
    .topbar {
      background: var(--ocean-dark);
      font-size: .8rem;
      color: rgba(255,255,255,.8);
    }
    .topbar a { color: rgba(255,255,255,.8); text-decoration: none; transition: color var(--transition); }
    .topbar a:hover { color: var(--sand); }

    /* ── Navbar sticky ───────────────────────────────────── */
    header {
      position: sticky;
      top: 0;
      z-index: 1030;
    }
    .navbar-main {
      background: #fff !important;
      border-bottom: 2px solid var(--sand);
      box-shadow: var(--shadow-sm);
      padding: .75rem 0;
      transition: box-shadow .3s ease, padding .3s ease;
    }
    .navbar-main.scrolled {
      box-shadow: 0 4px 24px rgba(26,107,138,.18);
      padding: .45rem 0;
    }

    .navbar-brand-wrap { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
    .brand-logo {
      width: 46px; height: 46px;
      background: linear-gradient(135deg, var(--ocean) 0%, var(--nature) 100%);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.4rem; flex-shrink: 0;
    }
    .brand-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--ocean-dark);
      line-height: 1.1;
    }
    .brand-tagline { font-size: .7rem; color: var(--nature); font-weight: 500; letter-spacing: .04em; }

    .nav-link-main {
      font-size: .9rem;
      font-weight: 500;
      color: var(--dark) !important;
      padding: .5rem .8rem !important;
      border-radius: .4rem;
      transition: color var(--transition), background var(--transition);
      position: relative;
      text-decoration: none !important;
    }
    .nav-link-main::after {
      content: '';
      position: absolute; bottom: 2px; left: .8rem; right: .8rem;
      height: 2px; background: var(--ocean);
      transform: scaleX(0); transition: transform var(--transition);
      border-radius: 1px;
    }
    .nav-link-main:hover { color: var(--ocean) !important; text-decoration: none !important; }
    .nav-link-main:hover::after { transform: scaleX(1); }
    .nav-link-main:focus, .nav-link-main:active { text-decoration: none !important; }
    .nav-icon { text-decoration: none !important; }

    .nav-icon {
      position: relative;
      color: var(--dark);
      font-size: 1.25rem;
      transition: color var(--transition), transform var(--transition);
      text-decoration: none;
    }
    .nav-icon:hover { color: var(--ocean); transform: scale(1.12); }
    .nav-icon .badge {
      position: absolute; top: -7px; right: -9px;
      font-size: .6rem; padding: .2rem .4rem;
    }

    /* ── Section helpers ─────────────────────────────────── */
    .section-label {
      display: inline-block;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--ocean);
      background: var(--ocean-light);
      padding: .3rem .9rem;
      border-radius: 2rem;
      margin-bottom: .9rem;
    }
    .section-label.green { color: var(--nature); background: var(--nature-light); }
    .section-label.sand  { color: var(--accent); background: #fdf0e6; }

    .section-title {
      font-size: clamp(1.7rem, 3.5vw, 2.6rem);
      font-weight: 800;
      line-height: 1.15;
      color: var(--dark);
    }
    .title-underline {
      display: inline-block;
      position: relative;
      padding-bottom: 8px;
    }
    .title-underline::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 100%; height: 4px;
      background: linear-gradient(90deg, var(--ocean), var(--nature));
      border-radius: 2px;
    }

    /* ── Hero ────────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex; align-items: center;
      overflow: hidden;
      background: var(--ocean-dark);
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1600&q=80');
      background-size: cover;
      background-position: center 30%;
      filter: brightness(.45) saturate(1.2);
      transition: transform 8s ease;
    }
    .hero:hover .hero-bg { transform: scale(1.04); }

    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        135deg,
        rgba(10,40,60,.85) 0%,
        rgba(26,107,138,.4) 60%,
        rgba(74,124,89,.25) 100%
      );
    }
    .hero-content { position: relative; z-index: 2; }

    .hero-badge {
      display: inline-flex; align-items: center; gap: .5rem;
      background: rgba(255,255,255,.12);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,.25);
      color: #fff; font-size: .8rem; font-weight: 600;
      padding: .45rem 1rem; border-radius: 2rem;
      margin-bottom: 1.5rem;
    }
    .hero-badge .dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #6ddb8a;
      animation: pulse-dot 2s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { transform: scale(1); opacity: 1; }
      50%       { transform: scale(1.4); opacity: .7; }
    }

    .hero h1 {
      font-size: clamp(2.2rem, 6vw, 4.2rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.08;
      margin-bottom: 1.25rem;
    }
    .hero h1 em { font-style: normal; color: var(--sand); }

    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: rgba(255,255,255,.8);
      max-width: 500px;
      margin-bottom: 2.5rem;
      font-weight: 300;
      line-height: 1.65;
    }

    .btn-hero-primary {
      background: linear-gradient(135deg, var(--ocean), var(--nature));
      color: #fff; border: none;
      padding: .9rem 2.4rem;
      font-weight: 600; font-size: 1rem;
      border-radius: .5rem;
      transition: all var(--transition);
      text-decoration: none; display: inline-flex; align-items: center; gap: .6rem;
      box-shadow: 0 6px 24px rgba(26,107,138,.45);
    }
    .btn-hero-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(26,107,138,.55);
      color: #fff;
    }

    .btn-hero-secondary {
      background: rgba(255,255,255,.12);
      backdrop-filter: blur(6px);
      color: #fff; border: 1px solid rgba(255,255,255,.35);
      padding: .9rem 2.4rem;
      font-weight: 500; font-size: 1rem;
      border-radius: .5rem;
      transition: all var(--transition);
      text-decoration: none; display: inline-flex; align-items: center; gap: .6rem;
    }
    .btn-hero-secondary:hover {
      background: rgba(255,255,255,.2);
      color: #fff; transform: translateY(-3px);
    }

    .hero-stats {
      display: flex; gap: 2.5rem;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,.15);
    }
    .hero-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem; font-weight: 900; color: var(--sand);
      line-height: 1;
    }
    .hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: .2rem; }

    .hero-scroll {
      position: absolute; bottom: 2rem; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: .4rem;
      color: rgba(255,255,255,.5); font-size: .75rem; z-index: 2;
      animation: bounce 2s ease-in-out infinite;
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(6px); }
    }

    /* ── Features strip ──────────────────────────────────── */
    .features-strip {
      background: #fff;
      border-bottom: 1px solid var(--sand);
    }
    .features-strip .row { flex-wrap: nowrap; }
    .feature-item {
      display: flex; align-items: center; gap: .75rem;
      padding: 1.1rem .5rem;
    }
    .feature-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
    }
    .feature-icon.fi-1 { background: var(--ocean-light);   color: var(--ocean); }
    .feature-icon.fi-2 { background: var(--nature-light);  color: var(--nature); }
    .feature-icon.fi-3 { background: #fdf0e6;              color: var(--accent); }
    .feature-icon.fi-4 { background: #f0eafa;              color: #7c5cbf; }
    .feature-title { font-weight: 600; font-size: .9rem; line-height: 1.2; }
    .feature-desc  { font-size: .75rem; color: #6b7280; margin-top: .1rem; }
    .features-divider {
      width: 1px; background: var(--sand);
      align-self: stretch; margin: .75rem 0; flex-shrink: 0;
    }

    /* ── Category cards ──────────────────────────────────── */
    .category-card {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      height: 260px;
      cursor: pointer;
      display: block;
      text-decoration: none;
    }
    .category-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .5s ease;
    }
    .category-card:hover img { transform: scale(1.08); }

    .category-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(0deg, rgba(10,40,60,.78) 0%, rgba(10,40,60,.1) 55%);
      display: flex; flex-direction: column;
      justify-content: flex-end;
      padding: 1.4rem;
      transition: background var(--transition);
    }
    .category-card:hover .category-overlay {
      background: linear-gradient(0deg, rgba(26,107,138,.82) 0%, rgba(26,107,138,.2) 55%);
    }
    .category-icon {
      font-size: 1.6rem; margin-bottom: .4rem;
    }
    .category-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem; font-weight: 700; color: #fff;
      margin: 0;
    }
    .category-count {
      font-size: .78rem; color: rgba(255,255,255,.75); margin-top: .15rem;
    }
    .category-arrow {
      position: absolute; top: 1rem; right: 1rem;
      width: 32px; height: 32px;
      background: rgba(255,255,255,.15);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: .9rem;
      opacity: 0; transform: translateX(-6px);
      transition: all var(--transition);
    }
    .category-card:hover .category-arrow { opacity: 1; transform: translateX(0); }

    /* ── Product cards ───────────────────────────────────── */
    .product-card {
      background: #fff;
      border: 1px solid rgba(232,220,200,.6);
      border-radius: var(--radius);
      overflow: hidden;
      transition: transform var(--transition), box-shadow var(--transition);
      height: 100%;
      display: flex; flex-direction: column;
    }
    .product-card:hover {
      box-shadow: var(--shadow-lg);
    }

    .product-img-wrap {
      position: relative;
      background: var(--sand);
      height: 210px;
      overflow: hidden;
    }
    .product-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .45s ease;
    }
    .product-card:hover .product-img-wrap img { transform: scale(1.05); }

    .product-badge-wrap {
      position: absolute; top: .75rem; left: .75rem;
      z-index: 2;
      display: flex; flex-direction: column; gap: .35rem;
    }
    .badge-local {
      background: var(--nature); color: #fff;
      font-size: .65rem; font-weight: 700;
      padding: .2rem .6rem; border-radius: 2rem;
    }
    .badge-promo {
      background: #e53e3e; color: #fff;
      font-size: .65rem; font-weight: 700;
      padding: .2rem .6rem; border-radius: 2rem;
    }
    .badge-bio {
      background: #38a169; color: #fff;
      font-size: .65rem; font-weight: 700;
      padding: .2rem .6rem; border-radius: 2rem;
    }

    .wishlist-btn {
      position: absolute; top: .6rem; right: .6rem;
      z-index: 3;
      width: 36px; height: 36px;
      background: #fff;
      border: 1.5px solid rgba(0,0,0,.08);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #bbb; font-size: 1.05rem;
      box-shadow: 0 2px 8px rgba(0,0,0,.15);
      cursor: pointer;
      pointer-events: all;
      transition: color .2s, transform .2s, background .2s;
    }
    .wishlist-btn:hover { color: #e53e3e; transform: scale(1.15); background: #fff0f0; }
    .wishlist-btn .bi-heart-fill { color: #e53e3e; }

    .product-body { padding: 1.1rem 1.1rem .5rem; flex: 1; }
    .product-origin {
      font-size: .8rem; color: #6b7280;
      font-weight: 400; text-transform: none; letter-spacing: 0;
      margin-bottom: .3rem; line-height: 1.4;
    }
    .product-name {
      font-family: 'Playfair Display', serif;
      font-size: 1rem; font-weight: 700;
      color: var(--dark); margin-bottom: .5rem;
    }
    .product-stars { color: #f6ad55; font-size: .8rem; }
    .product-reviews { color: #9ca3af; font-size: .75rem; margin-left: .3rem; }

    .product-footer {
      padding: .75rem 1.1rem 1rem;
      display: flex; align-items: center; justify-content: space-between;
      gap: .5rem;
      border-top: 1px solid rgba(232,220,200,.5);
    }
    .product-price-new { font-size: 1.15rem; font-weight: 800; color: var(--ocean-dark); }
    .product-price-old { font-size: .82rem; text-decoration: line-through; color: #aaa; }
    .product-unit { font-size: .72rem; color: #9ca3af; }

    /* ── Bouton panier (ajouter) ─────────────────────────── */
    .btn-cart {
      background: linear-gradient(135deg, var(--ocean), var(--ocean-dark));
      color: #fff; border: none;
      padding: .5rem 1.1rem;
      border-radius: .45rem; font-weight: 600; font-size: .82rem;
      transition: all var(--transition);
      white-space: nowrap; cursor: pointer;
      display: inline-flex; align-items: center; gap: .4rem;
      text-decoration: none;
    }
    .btn-cart:hover {
      background: linear-gradient(135deg, var(--nature), var(--ocean));
      transform: scale(1.03); color: #fff;
    }

    /* ── Bouton voir (navigation fiche produit) ──────────── */
    .btn-voir {
      background: var(--ocean-light);
      color: var(--ocean); border: 1.5px solid var(--ocean);
      padding: .45rem 1rem;
      border-radius: .45rem; font-weight: 600; font-size: .82rem;
      transition: all var(--transition);
      white-space: nowrap; cursor: pointer;
      display: inline-flex; align-items: center; gap: .4rem;
      text-decoration: none !important;
    }
    .btn-voir:hover {
      background: var(--ocean); color: #fff;
      transform: scale(1.03);
    }

    /* ── Producers ───────────────────────────────────────── */
    .producer-card {
      background: #fff;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .producer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

    .producer-img {
      height: 200px; overflow: hidden;
    }
    .producer-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .45s ease;
    }
    .producer-card:hover .producer-img img { transform: scale(1.06); }

    .producer-body { padding: 1.3rem; }
    .producer-tag {
      font-size: .7rem; font-weight: 700; color: var(--nature);
      text-transform: uppercase; letter-spacing: .08em; margin-bottom: .4rem;
    }
    .producer-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem;
    }
    .producer-desc { font-size: .85rem; color: #6b7280; line-height: 1.55; }
    .producer-location {
      display: flex; align-items: center; gap: .35rem;
      font-size: .78rem; color: var(--ocean); margin-top: .75rem; font-weight: 500;
    }

    /* ── Avantages ───────────────────────────────────────── */
    .avantage-item {
      background: #fff;
      border-radius: var(--radius);
      padding: 2rem 1.5rem;
      text-align: center;
      border: 1px solid rgba(232,220,200,.7);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .avantage-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
    .avantage-icon-wrap {
      width: 70px; height: 70px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem;
      margin: 0 auto 1.2rem;
    }
    .av-1 { background: var(--ocean-light); color: var(--ocean); }
    .av-2 { background: var(--nature-light); color: var(--nature); }
    .av-3 { background: #fdf0e6; color: var(--accent); }
    .av-4 { background: #f0eafa; color: #7c5cbf; }

    .avantage-title { font-weight: 700; margin-bottom: .5rem; }
    .avantage-desc  { font-size: .88rem; color: #6b7280; line-height: 1.6; }

    /* ── Newsletter ──────────────────────────────────────── */
    .newsletter-section {
      background: linear-gradient(135deg, var(--ocean-dark) 0%, var(--nature) 100%);
      position: relative; overflow: hidden;
    }
    .newsletter-section::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    /* ── Footer ──────────────────────────────────────────── */
    footer { background: var(--dark); color: rgba(255,255,255,.75); }
    footer h6 { color: #fff; font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
    footer a  { color: rgba(255,255,255,.65); text-decoration: none; font-size: .88rem; transition: color var(--transition); }
    footer a:hover { color: var(--sand); }

    .footer-brand-logo {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, var(--ocean), var(--nature));
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.3rem;
    }

    .footer-social a {
      display: inline-flex; align-items: center; justify-content: center;
      width: 38px; height: 38px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,.2);
      color: rgba(255,255,255,.7) !important;
      transition: background var(--transition), border-color var(--transition);
    }
    .footer-social a:hover {
      background: var(--ocean); border-color: var(--ocean);
      color: #fff !important;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      font-size: .8rem; color: rgba(255,255,255,.45);
    }

    /* ── Back to top ─────────────────────────────────────── */
    #backToTop {
      position: fixed; bottom: 1.5rem; right: 1.5rem;
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--ocean); color: #fff; border: none;
      display: none; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(26,107,138,.4);
      z-index: 1000;
      transition: background var(--transition), transform var(--transition);
    }
    #backToTop.visible { display: flex; }
    #backToTop:hover { background: var(--nature); transform: translateY(-3px); }

    /* ── Promo banner ─────────────────────────────────────── */
    .promo-strip {
      background: linear-gradient(90deg, var(--accent) 0%, #c0692a 100%);
      color: #fff;
      font-size: .85rem;
      text-align: center;
      padding: .5rem;
      font-weight: 500;
    }

    /* ── Recettes ────────────────────────────────────────── */
    .recette-card {
      background: #fff; border-radius: var(--radius);
      overflow: hidden; box-shadow: var(--shadow-sm);
      transition: transform var(--transition), box-shadow var(--transition);
      height: 100%; display: flex; flex-direction: column;
      border: 1px solid rgba(232,220,200,.5);
    }
    .recette-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .recette-img { position: relative; height: 210px; overflow: hidden; flex-shrink: 0; }
    .recette-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
    .recette-card:hover .recette-img img { transform: scale(1.07); }
    .recette-badge {
      position: absolute; top: .75rem; left: .75rem;
      background: var(--ocean); color: #fff; font-size: .68rem; font-weight: 700;
      padding: .22rem .65rem; border-radius: 2rem; text-transform: uppercase; letter-spacing: .04em;
    }
    .recette-time {
      position: absolute; bottom: .75rem; right: .75rem;
      background: rgba(0,0,0,.55); color: #fff; font-size: .72rem;
      padding: .22rem .6rem; border-radius: 2rem; backdrop-filter: blur(4px);
    }
    .recette-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
    .recette-diff { display: flex; align-items: center; gap: .4rem; font-size: .75rem; font-weight: 600; color: #6b7280; margin-bottom: .5rem; }
    .diff-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
    .diff-facile    { background: #38a169; }
    .diff-moyen     { background: #d69e2e; }
    .diff-difficile { background: #e53e3e; }
    .recette-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--dark); line-height: 1.3; }
    .recette-desc  { font-size: .84rem; color: #6b7280; line-height: 1.6; flex: 1; }
    .recette-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; padding-top: .75rem; border-top: 1px solid rgba(232,220,200,.5); gap: .5rem; }
    .recette-portions { font-size: .78rem; color: var(--ocean); font-weight: 600; white-space: nowrap; }

    /* ── Breadcrumb ──────────────────────────────────────── */
    .breadcrumb-item a { color: var(--ocean); text-decoration: none !important; }
    .breadcrumb-item a:hover { text-decoration: underline !important; }
    .breadcrumb-item.active { color: #6b7280; }

    /* ── Contact form ────────────────────────────────────── */
    .form-control:focus, .form-select:focus {
      border-color: var(--ocean);
      box-shadow: 0 0 0 .2rem rgba(26,107,138,.15);
    }

    /* ── Avantages — plus compacts ───────────────────────── */
    .avantage-item {
      background: #fff; border-radius: var(--radius);
      padding: 1.5rem 1.1rem; text-align: center;
      border: 1px solid rgba(232,220,200,.7);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .avantage-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .avantage-icon-wrap {
      width: 56px; height: 56px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin: 0 auto .9rem;
    }
    .avantage-title { font-weight: 700; margin-bottom: .35rem; font-size: .95rem; }
    .avantage-desc  { font-size: .82rem; color: #6b7280; line-height: 1.55; }

    /* ── Modale panier (slide droite) ───────────────────── */
    #modalPanier .modal-dialog {
      position: fixed; top: 0; right: 0; bottom: 0;
      margin: 0; max-width: 420px; width: 100%;
      transform: translateX(100%);
      transition: transform .3s ease;
    }
    #modalPanier.show .modal-dialog { transform: translateX(0); }
    #modalPanier .modal-content { border-radius: 0; }

    /* ── Modale compte ───────────────────────────────────── */
    #modalCompte .nav-pills .nav-link.active {
      background: var(--ocean); color: #fff;
    }
    #modalCompte .nav-pills .nav-link {
      color: var(--dark);
    }

    /* ── Animations d'apparition (scroll reveal) ────────── */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInLeft {
      from { opacity: 0; transform: translateX(-28px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(28px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes scaleIn {
      from { opacity: 0; transform: scale(.92); }
      to   { opacity: 1; transform: scale(1); }
    }
    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* État initial avant apparition */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
    }
    .reveal.reveal-left  { transform: translateX(-28px); }
    .reveal.reveal-right { transform: translateX(28px); }
    .reveal.reveal-scale { transform: scale(.93); }
    .reveal.visible {
      opacity: 1 !important;
      transform: none !important;
    }

    /* Délais échelonnés pour les grilles */
    .reveal-stagger > * {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
    }
    .reveal-stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay: .05s; }
    .reveal-stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: .12s; }
    .reveal-stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: .19s; }
    .reveal-stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: .26s; }
    .reveal-stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay: .33s; }
    .reveal-stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay: .40s; }
    .reveal-stagger.visible > *:nth-child(n+7) { opacity:1; transform:none; transition-delay: .47s; }

    /* Transitions de page */
    main { animation: fadeInUp .45s cubic-bezier(.22,1,.36,1) both; }

    /* Hover transitions enrichies sur les cartes */
    .product-card, .producer-card, .recette-card, .category-card, .avantage-item {
      transition: transform .3s cubic-bezier(.22,1,.36,1),
                  box-shadow .3s cubic-bezier(.22,1,.36,1);
    }

    /* Transition sur les boutons */
    .btn-cart, .btn-voir, .btn-hero-primary, .btn-hero-secondary {
      transition: all .25s cubic-bezier(.22,1,.36,1);
    }

    /* Barre de chargement en haut de page */
    #page-progress {
      position: fixed; top: 0; left: 0; z-index: 9999;
      height: 3px; width: 0%;
      background: linear-gradient(90deg, var(--ocean), var(--nature));
      transition: width .1s linear;
      pointer-events: none;
    }

    /* ── Responsive ──────────────────────────────────────── */
    @media (max-width: 991px) {
      .features-divider { display: none; }
      .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    }

    @media (max-width: 767px) {
      .hero { min-height: 100svh; }
      .hero-stats { gap: 1.25rem; }
      .hero-stat-num { font-size: 1.5rem; }
      .category-card { height: 200px; }
      .feature-title { font-size: .78rem; }
      .feature-desc  { display: none; }
      .feature-icon  { width: 36px; height: 36px; font-size: 1rem; }
      .feature-item  { gap: .4rem; }
    }

    @media (max-width: 575px) {
      .hero h1 { font-size: 2rem; }
      .topbar  { display: none !important; }
      .features-strip .row { flex-wrap: wrap !important; }
      .features-strip .col-3 { min-width: 50%; }
    }
