  :root{
    --cream:#F3EBDA;
    --cream-2:#EFE5CE;
    --ink:#1C1712;
    --ink-soft:#5B5348;
    --orange:#D9541F;
    --orange-dark:#B5410F;
    --line: rgba(28,23,18,0.12);
    --white:#FFFDF8;
    --radius: 14px;
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--cream);
    color:var(--ink);
    font-family:'Inter', sans-serif;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,.display{
    font-family:'Fraunces', serif;
    font-weight:500;
    letter-spacing:-0.01em;
    margin:0;
  }
  a{color:inherit; text-decoration:none;}
  button{font-family:inherit; cursor:pointer;}
  img{max-width:100%; display:block;}

  /* ===== Top announcement bar ===== */
  .announce{
    background:var(--ink);
    color:var(--cream);
    text-align:center;
    font-size:12.5px;
    letter-spacing:0.04em;
    padding:9px 12px;
  }
  .announce b{color:#F0A87A;}

  /* ===== Header ===== */
  header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 40px;
    max-width:1240px;
    margin:0 auto;
  }
  .logo{
    display:flex;
    align-items:center;
    gap:10px;
  }
  .logo-mark{
    width:54px; height:54px;
    border-radius:14px;
    overflow:hidden;
    flex-shrink:0;
  }
  .logo-mark img{width:100%; height:100%; object-fit:cover;}
  .logo-text{line-height:1.1;}

  nav{
    display:flex; gap:34px;
    font-size:14.5px;
    font-weight:500;
  }
  nav a{
    position:relative;
    padding:4px 0;
    color:var(--ink-soft);
    transition:color .2s;
  }
  nav a.active, nav a:hover{color:var(--ink);}
  nav a.active::after{
    content:'';
    position:absolute; left:0; right:0; bottom:-4px;
    height:2px; background:var(--orange); border-radius:2px;
  }

  .cart-btn{
    display:flex; align-items:center; gap:8px;
    background:var(--ink);
    color:var(--cream);
    border:none;
    padding:10px 18px 10px 16px;
    border-radius:999px;
    font-size:14px; font-weight:600;
  }
  .cart-count{
    background:var(--orange);
    color:white;
    font-size:11.5px; font-weight:700;
    min-width:19px; height:19px;
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
  }

  /* ===== Hero ===== */
  .hero{
    max-width:1240px;
    margin:26px auto 10px;
    padding:0 40px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:56px;
    align-items:center;
  }
  .eyebrow{
    color:var(--orange-dark);
    font-size:12.5px;
    font-weight:700;
    letter-spacing:0.14em;
    text-transform:uppercase;
    margin-bottom:14px;
    display:block;
  }
  .hero h1{
    font-size:clamp(34px, 4.4vw, 54px);
    line-height:1.06;
    letter-spacing:-0.02em;
  }
  .hero h1 em{
    font-style:italic;
    color:var(--orange);
  }
  .hero p{
    margin:20px 0 26px;
    font-size:16px;
    line-height:1.6;
    color:var(--ink-soft);
    max-width:440px;
  }
  .hero-cta{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:var(--orange);
    color:white;
    padding:14px 24px;
    border-radius:999px;
    font-weight:600;
    font-size:15px;
    border:none;
    transition:transform .15s, background .2s;
  }
  .hero-cta:hover{background:var(--orange-dark); transform:translateY(-1px);}

  .hero-img{
    border-radius:20px;
    overflow:hidden;
    aspect-ratio:4/3.1;
    background:var(--cream-2);
    border:1px solid var(--line);
  }
  .hero-img img{width:100%; height:100%; object-fit:cover;}

  /* ===== Promotions (affiches) ===== */
  .promos{
    max-width:1240px;
    margin:36px auto 0;
    padding:0 40px;
  }
  .promos-track{
    display:flex;
    gap:18px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding-bottom:6px;
  }
  .promos-track::-webkit-scrollbar{height:6px;}
  .promos-track::-webkit-scrollbar-thumb{background:var(--line); border-radius:6px;}
  .promo-slide{
    flex:0 0 auto;
    width:min(420px, 82vw);
    aspect-ratio:16/10;
    border-radius:16px;
    overflow:hidden;
    scroll-snap-align:start;
    background:var(--cream-2);
    border:1px solid var(--line);
  }
  .promo-slide img{width:100%; height:100%; object-fit:cover;}

  /* ===== Boutique section ===== */
  .boutique{
    max-width:1240px;
    margin:70px auto 0;
    padding:0 40px 90px;
  }
  .boutique-head{
    display:flex;
    align-items:baseline;
    justify-content:space-between;
    margin-bottom:26px;
    flex-wrap:wrap;
    gap:14px;
  }
  .boutique-head h2{font-size:26px;}

  .filters{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:36px;
  }
  .filter-btn{
    border:1px solid var(--line);
    background:var(--white);
    color:var(--ink-soft);
    padding:9px 18px;
    border-radius:999px;
    font-size:13.5px;
    font-weight:600;
    transition:all .18s;
  }
  .filter-btn.active, .filter-btn:hover{
    background:var(--ink);
    color:var(--cream);
    border-color:var(--ink);
  }

  .grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
  }
  .empty-shop{
    grid-column:1 / -1;
    text-align:center;
    padding:60px 20px;
    color:var(--ink-soft);
    font-size:15px;
  }
  .card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:var(--radius);
    overflow:hidden;
    display:flex; flex-direction:column;
    transition:box-shadow .2s, transform .2s;
  }
  .card:hover{box-shadow:0 14px 30px rgba(28,23,18,0.08); transform:translateY(-3px);}
  .card-img{
    position:relative;
    aspect-ratio:1.15/1;
    background:var(--cream-2);
    overflow:hidden;
  }
  .card-img img{width:100%; height:100%; object-fit:cover;}
  .add-btn{
    position:absolute;
    right:12px; bottom:12px;
    width:38px; height:38px;
    border-radius:50%;
    background:var(--ink);
    color:var(--cream);
    border:none;
    font-size:19px;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 6px 16px rgba(0,0,0,0.25);
    transition:background .2s, transform .15s;
  }
  .add-btn:hover{background:var(--orange); transform:scale(1.06);}
  .card-body{padding:16px 18px 18px;}
  .card-cat{
    font-size:10.5px;
    font-weight:700;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--orange-dark);
    margin-bottom:6px;
    display:block;
  }
  .card-name{font-size:15.5px; font-weight:600; line-height:1.35; margin-bottom:6px;}
  .card-price{font-size:14px; color:var(--ink-soft); font-weight:500;}

  /* ===== Comment commander ===== */
  .commander{
    background:var(--ink);
    color:var(--cream);
    padding:80px 40px;
  }
  .commander-inner{max-width:1240px; margin:0 auto;}
  .commander h2{
    color:var(--cream);
    font-size:28px;
    margin-bottom:38px;
    text-align:center;
  }
  .steps{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
  }
  .step{
    padding:30px 32px;
    border-radius:18px;
  }
  .step.local{
    background:rgba(243,235,218,0.06);
    border:1px solid rgba(243,235,218,0.14);
  }
  .step.abroad{
    background:linear-gradient(145deg, var(--orange), var(--orange-dark));
  }
  .step-eyebrow{
    font-size:11.5px;
    font-weight:700;
    letter-spacing:0.1em;
    text-transform:uppercase;
    opacity:0.75;
    margin-bottom:10px;
    display:block;
  }
  .step h3{
    font-size:23px;
    margin-bottom:12px;
    color:inherit;
  }
  .step p{
    font-size:14.5px;
    line-height:1.6;
    margin:0;
    opacity:0.9;
  }

  /* ===== Livraison ===== */
  .livraison{
    max-width:1240px;
    margin:0 auto;
    padding:80px 40px;
    text-align:center;
  }
  .livraison h2{font-size:26px; margin-bottom:14px;}
  .livraison p{
    color:var(--ink-soft);
    max-width:520px;
    margin:0 auto;
    line-height:1.6;
  }

  /* ===== Footer ===== */
  footer{
    border-top:1px solid var(--line);
    padding:30px 40px;
    text-align:center;
    font-size:13px;
    color:var(--ink-soft);
  }
  .footer-links{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-bottom:14px;
  }
  .footer-link{
    background:none;
    border:none;
    color:var(--ink-soft);
    font-size:13px;
    font-family:inherit;
    padding:2px 0;
    text-decoration:underline;
    text-underline-offset:3px;
    text-decoration-color:transparent;
    transition:text-decoration-color .15s, color .15s;
  }
  .footer-link:hover{color:var(--ink); text-decoration-color:var(--orange);}
  .footer-sep{color:var(--line);}
  .footer-copy{color:var(--ink-soft);}

  /* ===== Legal modals ===== */
  .modal-overlay{
    position:fixed; inset:0;
    background:rgba(28,23,18,0.45);
    opacity:0; pointer-events:none;
    transition:opacity .22s;
    z-index:60;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
  }
  .modal-overlay.open{opacity:1; pointer-events:all;}
  .modal-box{
    background:var(--white);
    border-radius:18px;
    max-width:640px;
    width:100%;
    max-height:82vh;
    display:flex;
    flex-direction:column;
    transform:translateY(16px);
    transition:transform .22s;
    box-shadow:0 30px 60px rgba(0,0,0,0.25);
  }
  .modal-overlay.open .modal-box{transform:translateY(0);}
  .modal-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:22px 26px;
    border-bottom:1px solid var(--line);
  }
  .modal-head h3{font-size:20px;}
  .modal-close{
    background:none; border:none;
    font-size:22px; color:var(--ink-soft); line-height:1;
  }
  .modal-close:hover{color:var(--orange);}
  .modal-body{
    padding:22px 26px 28px;
    overflow-y:auto;
    font-size:14px;
    line-height:1.7;
    color:var(--ink-soft);
  }
  .modal-body h4{
    font-family:'Inter', sans-serif;
    font-size:13.5px;
    font-weight:700;
    color:var(--ink);
    margin:18px 0 6px;
    text-transform:uppercase;
    letter-spacing:0.04em;
  }
  .modal-body h4:first-child{margin-top:0;}
  .modal-body p{margin:0 0 10px;}
  .modal-body ul{margin:0 0 10px; padding-left:18px;}
  .modal-body li{margin-bottom:5px;}

  /* ===== Cart drawer ===== */
  .overlay{
    position:fixed; inset:0;
    background:rgba(28,23,18,0.35);
    opacity:0; pointer-events:none;
    transition:opacity .25s;
    z-index:40;
  }
  .overlay.open{opacity:1; pointer-events:all;}

  .drawer{
    position:fixed;
    top:0; right:0; bottom:0;
    width:380px;
    max-width:92vw;
    background:var(--cream);
    box-shadow:-20px 0 40px rgba(0,0,0,0.15);
    transform:translateX(100%);
    transition:transform .3s cubic-bezier(.4,0,.2,1);
    z-index:50;
    display:flex; flex-direction:column;
  }
  .drawer.open{transform:translateX(0);}
  .drawer-head{
    display:flex; align-items:center; justify-content:space-between;
    padding:24px 24px 16px;
    border-bottom:1px solid var(--line);
  }
  .drawer-head h3{font-size:20px;}
  .drawer-close{
    background:none; border:none; font-size:22px; color:var(--ink-soft); line-height:1;
  }
  .drawer-items{
    flex:1;
    overflow-y:auto;
    padding:16px 24px;
    display:flex; flex-direction:column; gap:16px;
  }
  .empty-cart{
    color:var(--ink-soft);
    text-align:center;
    margin-top:60px;
    font-size:14px;
  }
  .drawer-item{
    display:flex; gap:12px;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:12px;
    padding:10px;
  }
  .drawer-item img{
    width:64px; height:64px;
    object-fit:cover;
    border-radius:8px;
    flex-shrink:0;
    background:var(--cream-2);
  }
  .di-info{flex:1; min-width:0;}
  .di-name{font-size:13.5px; font-weight:600; margin-bottom:2px;}
  .di-price{font-size:12.5px; color:var(--ink-soft); margin-bottom:8px;}
  .di-qty{
    display:flex; align-items:center; gap:10px;
  }
  .qty-btn{
    width:24px; height:24px;
    border-radius:50%;
    border:1px solid var(--line);
    background:var(--white);
    font-size:14px;
    display:flex; align-items:center; justify-content:center;
    color:var(--ink);
  }
  .di-remove{
    background:none; border:none;
    color:var(--ink-soft);
    font-size:18px;
    align-self:flex-start;
  }
  .di-remove:hover{color:var(--orange);}

  .drawer-foot{
    border-top:1px solid var(--line);
    padding:20px 24px 26px;
  }
  .total-row{
    display:flex; justify-content:space-between;
    font-size:15px; font-weight:600;
    margin-bottom:16px;
  }
  .promo-row{
    display:flex; gap:8px;
    margin-bottom:8px;
  }
  .promo-row input{
    flex:1;
    padding:10px 12px;
    border-radius:10px;
    border:1px solid var(--line);
    font-family:inherit;
    font-size:13.5px;
    background:var(--white);
  }
  .promo-row button{
    padding:10px 16px;
    border-radius:10px;
    border:none;
    background:var(--ink);
    color:var(--cream);
    font-weight:600;
    font-size:13px;
  }
  .promo-msg{
    font-size:12.5px;
    margin-bottom:14px;
    min-height:14px;
  }
  .promo-msg.ok{color:#2f7d4f;}
  .promo-msg.error{color:var(--orange-dark);}
  .checkout-btn{
    width:100%;
    background:var(--orange);
    color:white;
    border:none;
    padding:15px;
    border-radius:12px;
    font-weight:700;
    font-size:15px;
    display:flex; align-items:center; justify-content:center; gap:8px;
    transition:background .2s;
  }
  .checkout-btn:hover{background:var(--orange-dark);}
  .checkout-btn:disabled{background:var(--line); color:var(--ink-soft); cursor:not-allowed;}

  /* ===== Responsive ===== */
  @media (max-width: 880px){
    header{padding:16px 20px; flex-wrap:wrap; gap:12px;}
    nav{order:3; width:100%; justify-content:center; gap:22px;}
    .hero{grid-template-columns:1fr; padding:0 20px; gap:30px;}
    .hero-img{order:-1;}
    .boutique{padding:0 20px 60px;}
    .grid{grid-template-columns:repeat(2,1fr); gap:16px;}
    .steps{grid-template-columns:1fr;}
    .commander{padding:60px 20px;}
    .livraison{padding:60px 20px;}
  }
  @media (max-width: 520px){
    .grid{grid-template-columns:1fr 1fr;}
    .card-name{font-size:13.5px;}
  }