:root{
  --cream:#FCF3E0;
  --card:#EECAA2;
  --ink:#353332;
  --ink-soft:#6b625f;
  --enamel:#2b2a28;
  --enamel-dark:#1f1e1d;
  --tomato:#EA6716;
  --mustard:#EECAA2;
  --line: rgba(53,51,50,0.12);
  --radius: 14px;
  --shadow: 0 4px 10px rgba(53,51,50,0.10);
}

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

/* ---------- Bannière vers le site "soeur" ---------- */
.sister-site-bar{
  background:var(--enamel);
  color:#fff;
  text-align:center;
  font-size:12.5px;
  padding:9px 16px;
}
.sister-site-bar a{
  color:#fff;
  font-weight:700;
  text-decoration:underline;
  margin-left:4px;
}
.sister-site-bar a:hover{ text-decoration-thickness:2px; }

/* ---------- Header ---------- */
header{
  position:sticky;top:0;z-index:50;
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;
  padding:18px clamp(20px,5vw,56px);
  background:rgba(251,246,236,0.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.logo{
  font-family:'Fraunces', serif;
  font-style:italic;
  font-weight:600;
  font-size:19px;
  display:flex;
  align-items:center;
  gap:11px;
  text-decoration:none;
  color:var(--ink);
  flex-shrink:0;
  white-space:nowrap;
}
.logo-img{
  width:40px;height:40px;
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 0 0 1px var(--line);
  flex-shrink:0;
}
.logo .dot{
  width:9px;height:9px;border-radius:50%;
  background:var(--tomato);
  display:inline-block;
}
nav{
  display:flex;align-items:center;justify-content:center;gap:22px;font-size:14px;font-weight:500;
  flex:1;min-width:0;overflow:hidden;white-space:nowrap;
}
nav a{text-decoration:none;opacity:0.75;transition:opacity .2s;flex-shrink:0;}
nav a:hover{opacity:1;}

.social-icons{
  display:flex; align-items:center; gap:8px;
  flex-shrink:0;
}
.social-icons a{
  display:flex; align-items:center; justify-content:center;
  width:34px; height:34px;
  border-radius:50%;
  background:var(--card);
  color:var(--ink);
  transition:transform .15s ease, background .15s ease;
}
.social-icons a:hover{ transform:translateY(-2px); background:var(--mustard); }
.social-icons svg{ width:17px; height:17px; display:block; }
@media (max-width:600px){ .social-icons{ display:none; } }
.social-icons-footer{ display:flex; }
@media (max-width:600px){ .social-icons-footer{ display:flex; } }

.search-toggle{
  display:flex; align-items:center; justify-content:center;
  width:34px; height:34px;
  border-radius:50%;
  background:var(--card);
  color:var(--ink);
  border:none; cursor:pointer;
  flex-shrink:0;
  transition:transform .15s ease, background .15s ease;
}
.search-toggle:hover{ transform:translateY(-2px); background:var(--mustard); }
.search-toggle svg{ width:17px; height:17px; display:block; }

/* ---------- Centre de notifications du navigateur ---------- */
.notification-center-toggle{
  position:relative; display:flex; align-items:center; justify-content:center;
  width:34px; height:34px; flex-shrink:0; padding:0;
  color:var(--ink); background:var(--card); border:none; border-radius:50%;
  cursor:pointer; transition:transform .15s ease,background .15s ease;
}
.notification-center-toggle:hover{ transform:translateY(-2px); background:var(--mustard); }
.notification-center-toggle svg{ width:18px; height:18px; }
.notification-center-badge{
  position:absolute; top:-5px; right:-5px; min-width:17px; height:17px;
  display:grid; place-items:center; padding:0 4px;
  color:#fff; background:#e53935; border:2px solid var(--cream);
  border-radius:100px; font:700 9px/1 'DM Sans',sans-serif;
}
.notification-center-badge[hidden]{ display:none; }
.notification-center-panel{
  position:fixed; top:76px; right:clamp(14px,3vw,40px); z-index:88;
  width:min(410px,calc(100vw - 28px)); max-height:min(620px,calc(100dvh - 96px));
  display:flex; flex-direction:column; overflow:hidden;
  color:var(--ink); background:rgba(255,253,248,.98);
  border:1px solid var(--line); border-radius:20px;
  box-shadow:0 24px 65px rgba(38,36,31,.22);
  backdrop-filter:blur(18px);
}
.notification-center-panel[hidden]{ display:none; }
.notification-center-head{
  display:flex; align-items:flex-start; justify-content:space-between; gap:18px;
  padding:20px 20px 13px;
}
.notification-center-head h2{
  margin:3px 0 0; font-family:'Fraunces',serif; font-size:25px; font-weight:600;
}
.notification-center-eyebrow{
  color:var(--tomato); font-size:10px; font-weight:800;
  letter-spacing:.12em; text-transform:uppercase;
}
.notification-center-close{
  width:34px; height:34px; display:grid; place-items:center; padding:0;
  color:var(--ink-soft); background:var(--card); border:none; border-radius:50%;
  font-size:23px; line-height:1; cursor:pointer;
}
.notification-center-actions{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:0 20px 14px; border-bottom:1px solid var(--line);
}
.notification-center-summary{ color:var(--ink-soft); font-size:12px; font-weight:650; }
.notification-mark-all,.notification-read-toggle{
  color:var(--tomato); background:none; border:none; padding:0;
  font-family:inherit; font-size:11.5px; font-weight:750; cursor:pointer;
}
.notification-mark-all:disabled{ color:var(--ink-soft); opacity:.55; cursor:default; }
.notification-center-list{ overflow-y:auto; padding:8px; }
.notification-center-item{
  position:relative; display:grid; grid-template-columns:minmax(0,1fr) auto;
  gap:10px; align-items:center; padding:6px 8px 6px 10px;
  border-bottom:1px solid rgba(220,209,190,.65);
}
.notification-center-item:last-child{ border-bottom:none; }
.notification-center-item.is-unread::before{
  content:""; position:absolute; left:1px; top:20px;
  width:7px; height:7px; border-radius:50%; background:#e53935;
}
.notification-center-open{
  min-width:0; display:flex; flex-direction:column; align-items:flex-start; gap:4px;
  padding:10px; text-align:left; color:inherit; background:none; border:none;
  border-radius:12px; cursor:pointer;
}
.notification-center-open:hover{ background:var(--card); }
.notification-center-open strong{
  width:100%; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
  font-size:13.5px; line-height:1.3;
}
.notification-center-item.is-read .notification-center-open strong{ color:var(--ink-soft); font-weight:600; }
.notification-center-open span{
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;
  overflow:hidden; color:var(--ink-soft); font-size:12px; line-height:1.45;
}
.notification-center-open time{ color:var(--ink-soft); font-size:10.5px; }
.notification-read-toggle{ max-width:66px; line-height:1.25; }
.notification-center-empty{
  min-height:190px; display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:7px; padding:28px;
  text-align:center; color:var(--ink-soft);
}
.notification-center-empty strong{ color:var(--ink); font-size:14px; }
.notification-center-empty span{ max-width:250px; font-size:12px; line-height:1.5; }
@media (max-width:600px){
  .notification-center-panel{
    top:auto; right:8px; bottom:8px; left:8px; width:auto;
    max-height:min(72dvh,620px); border-radius:20px;
  }
  .notification-center-actions{ align-items:flex-start; }
}

.search-bar{
  display:none;
  position:absolute;
  top:100%;left:0;right:0;
  background:var(--cream);
  align-items:center;
  gap:10px;
  padding:16px clamp(20px,5vw,56px);
  border-bottom:1px solid var(--line);
  box-shadow:0 14px 26px rgba(0,0,0,0.12);
  z-index:49;
}
.search-bar.search-open{ display:flex; }
.search-bar input{
  flex:1;
  font-family:inherit; font-size:15px;
  padding:12px 18px; border-radius:100px;
  border:1px solid var(--line); background:#fff; color:var(--ink);
}
.search-bar button{
  background:var(--tomato); color:#fff; border:none;
  width:44px;height:44px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; flex-shrink:0;
}
.search-bar button svg{ width:19px; height:19px; }

.subscribe-btn{
  display:inline-flex;align-items:center;gap:8px;
  background:#FF0000;color:#fff;border:none;
  padding:10px 18px;border-radius:100px;font-weight:700;font-size:14px;
  text-decoration:none;white-space:nowrap;flex-shrink:0;
  box-shadow:0 4px 14px rgba(255,0,0,0.3);
  transition:transform .15s ease;
}
.subscribe-btn svg{ flex-shrink:0; }
.subscribe-btn:hover{transform:translateY(-1px);}

/* Sur mobile, le bouton d'abonnement du header devient l'icône YouTube
   seule. Le libellé reste présent dans le HTML pour les lecteurs d'écran. */
@media (max-width:700px){
  header .subscribe-btn{
    width:40px;height:40px;padding:0;gap:0;
    justify-content:center;
    background:transparent;box-shadow:none;
    font-size:0;
  }
  header .subscribe-btn svg{width:30px;height:22px;}
  header .subscribe-btn svg rect{fill:#FF0000;}
  header .subscribe-btn svg path{fill:#fff;}
}

/* ---------- Menu hamburger : réserve toujours sa place dans le header
   (pour ne pas décaler le reste au moment où il apparaît), mais reste
   invisible et inactif tant qu'aucune catégorie ne déborde. ---------- */
.menu-toggle{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:4px;
  width:38px;height:38px;
  flex-shrink:0;
  background:none;border:1px solid var(--line);border-radius:8px;
  cursor:pointer;
  visibility:hidden;
  pointer-events:none;
}
.menu-toggle.has-overflow{
  visibility:visible;
  pointer-events:auto;
}
.nav-more-label{
  display:inline-flex;align-items:center;
  background:none;border:none;
  font-family:inherit;font-size:13px;font-weight:600;color:var(--tomato);
  white-space:nowrap;flex-shrink:0;
  padding:0;margin-right:2px;cursor:pointer;
  visibility:hidden;pointer-events:none;
  width:0;overflow:hidden;
  transition:opacity .2s ease;
}
.nav-more-label.has-overflow{
  visibility:visible;pointer-events:auto;
  width:auto;overflow:visible;
}
.nav-more-label:hover{ text-decoration:underline; }
@media (max-width:600px){ .nav-more-label{ display:none; } }
.menu-toggle span{
  display:block;width:17px;height:2px;background:var(--ink);
  transition:transform .2s ease, opacity .2s ease;
}
.menu-toggle.is-open span:nth-child(1){transform:translateY(6px) rotate(45deg);}
.menu-toggle.is-open span:nth-child(2){opacity:0;}
.menu-toggle.is-open span:nth-child(3){transform:translateY(-6px) rotate(-45deg);}
.menu-toggle-light{ border-color:rgba(255,255,255,0.3); }
.menu-toggle-light span{ background:#fff; }

/* Menu déroulant contenant uniquement les catégories qui ne tenaient pas
   dans la nav — jamais toute la liste, juste le surplus. */
.nav-overflow{
  display:none;
  position:absolute;
  top:calc(100% + 8px);
  right:clamp(20px,5vw,56px);
  left:auto;
  width:220px;
  background:var(--cream);
  flex-direction:column;
  gap:0;
  padding:6px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  box-shadow:0 14px 30px rgba(0,0,0,0.18);
  z-index:49;
}
.nav-overflow.nav-open{display:flex;}
.nav-overflow a{
  text-decoration:none;color:var(--ink);opacity:1;
  padding:12px 2px;
  border-bottom:1px solid var(--line);
  white-space:normal;
  font-size:13.5px;
}
.nav-overflow a:last-child{border-bottom:none;}

.nav-overflow .nav-overflow-social{
  display:flex; gap:10px; align-items:center;
  padding:14px 2px 6px;
  margin-top:4px;
}
@media (min-width:601px){
  /* Le header a la place pour les icônes au-delà de 600px — pas besoin
     de les dupliquer dans le menu ☰. */
  .nav-overflow .nav-overflow-social{ display:none; }
}
.nav-overflow .nav-overflow-social a{
  display:flex; align-items:center; justify-content:center;
  width:34px; height:34px;
  border-radius:50%;
  background:var(--card);
  color:var(--ink);
  padding:0; border-bottom:none;
}
.nav-overflow .nav-overflow-social svg{ width:17px; height:17px; display:block; }

@media (max-width:480px){
  .nav-overflow{ right:16px; width:200px; }
}

@media (max-width:480px){
  header{padding:12px;gap:6px;}
  header .logo{font-size:15px;gap:7px;flex-shrink:1;min-width:34px;overflow:hidden;}
  .logo-img{width:34px;height:34px;}
  .menu-toggle{width:34px;height:34px;}
  .subscribe-btn{padding:8px 14px;font-size:13px;}
  header .subscribe-btn{width:34px;height:34px;padding:0;font-size:0;}
  header .subscribe-btn svg{width:28px;height:20px;}
}

/* ---------- Hero (page d'accueil) ---------- */
.hero{
  position:relative;
  min-height:clamp(320px, 46vh, 480px);
  display:flex;align-items:flex-end;
  padding:36px clamp(20px,5vw,56px);
  overflow:hidden;
  background:var(--enamel-dark);
}
.hero-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  filter:saturate(1.05);
  opacity:0.55;
  transition:opacity .6s ease;
}
.hero-scrim{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(23,19,16,0.15) 0%, rgba(23,19,16,0.55) 55%, rgba(23,19,16,0.97) 100%);
}
.hero-content{position:relative;z-index:2;max-width:640px;color:#fff;}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:'JetBrains Mono', monospace;
  font-size:11.5px;letter-spacing:0.08em;text-transform:uppercase;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.25);
  padding:5px 11px;border-radius:100px;
  margin-bottom:14px;
}
.hero-eyebrow .dot{width:7px;height:7px;border-radius:50%;background:var(--mustard);}
.hero h1{
  font-size:clamp(28px,4.4vw,46px);
  line-height:1.06;
  font-weight:600;
  margin-bottom:12px;
}
.hero h1 em{color:var(--mustard);font-style:italic;font-weight:500;}
.hero p{
  font-size:15.5px;line-height:1.5;
  color:rgba(255,255,255,0.82);
  max-width:480px;
  margin-bottom:20px;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;align-items:center;}
.btn-primary{
  background:var(--mustard);color:var(--ink);
  border:none;padding:12px 22px;border-radius:100px;
  font-weight:700;font-size:14.5px;text-decoration:none;
  display:inline-flex;align-items:center;gap:8px;
  transition:transform .15s ease;
}
.btn-primary:hover{transform:translateY(-1px);}
.btn-ghost{
  color:#fff;text-decoration:none;font-weight:600;font-size:14.5px;
  display:inline-flex;align-items:center;gap:8px;
  border-bottom:1px solid rgba(255,255,255,0.4);
  padding-bottom:2px;
}

/* ---------- Bouton play sur le héros ---------- */
.hero-play{
  position:absolute; right:clamp(20px,5vw,56px); bottom:36px;
  z-index:3;
  width:62px;height:62px;border-radius:50%;
  background:var(--mustard); color:var(--ink); border:none;
  font-size:19px; display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 22px rgba(0,0,0,0.35);
  transition:transform .15s ease;
  text-decoration:none;
}
.hero-play:hover{transform:scale(1.06);}
@media (max-width:820px){ .hero-play{ display:none !important; } }

/* ---------- Bandeau promo newsletter (sous le héros) ---------- */
.newsletter-teaser{
  background:var(--mustard);
  color:var(--ink);
  display:flex;align-items:center;justify-content:center;
  gap:18px;flex-wrap:wrap;
  padding:18px 20px;
  text-align:center;
}
.newsletter-teaser-text{
  font-size:17px;font-weight:700;
}
.newsletter-teaser-btn{
  background:var(--ink);color:#fff;
  padding:11px 22px;border-radius:100px;
  text-decoration:none;font-weight:700;font-size:15px;
  white-space:nowrap;
  transition:transform .15s ease;
}
.newsletter-teaser-btn:hover{transform:translateY(-1px);}

/* ---------- Sections / lignes de vidéos (façon Netflix) ---------- */
main{padding-top:8px;}
.row-section{
  padding:38px clamp(20px,5vw,56px) 6px;
}
.row-section.products-section{
  background:var(--cream);
  border:2px solid #fff;
  border-radius:24px;
  margin:20px clamp(20px,5vw,56px) 6px;
  padding:30px clamp(20px,4vw,36px) 24px;
  box-shadow:
    0 0 26px rgba(255,255,255,0.9),
    0 16px 40px rgba(217,115,50,0.14),
    0 2px 10px rgba(38,36,31,0.05);
}
.row-head{
  display:flex;align-items:baseline;justify-content:space-between;
  margin-bottom:10px;
}
.row-head h2{
  font-size:clamp(20px,2.4vw,28px);
  font-weight:600;
}
.row-description{
  font-size:14px;
  color:var(--ink-soft);
  line-height:1.5;
  margin:0 0 18px;
  max-width:640px;
}
.row-head .count{
  font-family:'JetBrains Mono', monospace;
  font-size:12px;color:var(--ink-soft);
}
.row-head-link{
  font-size:13px;font-weight:700;color:var(--tomato);
  text-decoration:none;white-space:nowrap;flex-shrink:0;
}
.row-head-link:hover{ text-decoration:underline; }
.row-scroll{
  display:flex;gap:18px;
  overflow-x:auto;
  padding-bottom:14px;
  scroll-snap-type:x proximity;
  scrollbar-width:none;
}
.row-scroll::-webkit-scrollbar{display:none;}

/* recipe-card / index card styling — the signature element */
.card{
  flex:0 0 auto;
  width:270px;
  scroll-snap-align:start;
  background:var(--card);
  border:none;
  padding:0;
  text-align:left;
  font-family:inherit;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  position:relative;
  text-decoration:none;
  color:var(--ink);
  display:block;
  transform:translateY(0);
  transition:transform .2s ease, box-shadow .2s ease;
  overflow:hidden;
}
.card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 38px rgba(217,115,50,0.22), 0 6px 16px rgba(38,36,31,0.12);
}
.card-thumb{
  position:relative;
  aspect-ratio:16/9;
  background:#ddd3ba;
  overflow:hidden;
}
.card-thumb img{width:100%;height:100%;object-fit:cover;}
/* kitchen-timer duration badge */
.timer-badge{
  position:absolute;bottom:8px;right:8px;
  background:var(--mustard);
  color:var(--ink);
  font-family:'JetBrains Mono', monospace;
  font-weight:700;font-size:12px;
  width:38px;height:38px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 3px 8px rgba(0,0,0,0.25);
}
.timer-badge::before{
  content:"";
  position:absolute;top:-6px;left:50%;transform:translateX(-50%);
  width:10px;height:5px;border-radius:2px 2px 0 0;
  background:var(--mustard);
}
.card-body{padding:14px 16px 18px;}
.card-tag{
  display:inline-block;
  font-family:'JetBrains Mono', monospace;
  font-size:10px;letter-spacing:0.06em;text-transform:uppercase;
  color:var(--enamel);
  border:1px dashed var(--enamel);
  padding:3px 8px;border-radius:6px;
  transform:rotate(-2deg);
  margin-bottom:10px;
}
.newsletter-badge{
  display:inline-block;
  font-family:'JetBrains Mono', monospace;
  font-size:13px;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;
  color:#fff;
  background:var(--ink);
  padding:7px 16px;border-radius:8px;
  transform:rotate(-2deg);
  margin-bottom:14px;
  box-shadow:0 4px 10px rgba(0,0,0,0.18);
}
.card-title{
  font-size:15.5px;font-weight:500;line-height:1.35;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}

/* small play glyph on every card thumbnail */
.card-thumb .play-glyph{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:opacity .2s ease;
  background:rgba(20,18,14,0.28);
}
.card:hover .play-glyph{opacity:1;}
.play-glyph span{
  width:46px;height:46px;border-radius:50%;
  background:rgba(251,246,236,0.92); color:var(--ink);
  display:flex;align-items:center;justify-content:center;font-size:16px;
}

/* nav arrows */
.row-wrap{position:relative;}
.row-arrow{
  position:absolute;top:38%;transform:translateY(-50%);
  width:38px;height:38px;border-radius:50%;
  background:#fff;border:1px solid var(--line);
  box-shadow:var(--shadow);
  display:flex;align-items:center;justify-content:center;
  font-size:16px;z-index:5;
  opacity:0;transition:opacity .2s ease;
}
.row-wrap:hover .row-arrow{opacity:1;}
.row-arrow.left{left:-6px;}
.row-arrow.right{right:-6px;}
@media (max-width:820px){ .row-arrow{display:none;} }

/* ---------- Empty / loading states ---------- */
.state-msg{
  font-family:'JetBrains Mono', monospace;
  font-size:13px;color:var(--ink-soft);
  padding:16px 4px;
}
.setup-banner{
  margin:20px clamp(20px,5vw,56px) 0;
  background:#fff3d6;border:1px solid #e8c877;
  border-radius:12px;padding:16px 20px;
  font-size:14px;line-height:1.6;
}
.setup-banner code{
  background:rgba(0,0,0,0.06);padding:2px 6px;border-radius:4px;
  font-family:'JetBrains Mono', monospace;font-size:12.5px;
}
.setup-banner a{ color:var(--tomato); font-weight:600; }

/* ---------- Page vidéo dédiée ---------- */
.video-page{
  max-width:860px;
  margin:0 auto;
  padding:32px clamp(20px,5vw,56px) 10px;
}
.video-back{
  display:inline-flex; align-items:center; gap:6px;
  font-size:14px; font-weight:600; text-decoration:none;
  color:var(--ink-soft); margin-bottom:20px;
  transition:color .15s ease;
}
.video-back:hover{ color:var(--ink); }
.video-player-wrap{
  width:100%; aspect-ratio:16/9;
  background:#000; border-radius:var(--radius);
  overflow:hidden; box-shadow:var(--shadow);
}
.video-player-wrap iframe{ width:100%; height:100%; border:0; display:block; }
.video-title{
  font-size:clamp(24px,3.4vw,34px);
  font-weight:600; line-height:1.25;
  margin-top:26px;
}
.video-meta{
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
  margin-top:14px;
}
.timer-chip{
  font-family:'JetBrains Mono', monospace; font-size:12.5px; font-weight:700;
  background:var(--card); color:var(--ink);
  padding:5px 12px; border-radius:100px;
  display:none;
}
.video-meta a{ color:var(--tomato); font-weight:600; font-size:14px; text-decoration:none; }
.video-meta a:hover{ text-decoration:underline; }
.video-description{
  font-size:15.5px; line-height:1.75; color:var(--ink-soft);
  white-space:pre-line; margin-top:22px; max-width:680px;
  background:var(--card);
  border-radius:var(--radius);
  padding:20px 22px;
}
.video-page .row-section{ padding-left:0; padding-right:0; margin-top:12px; }

/* ---------- Carrousel de produits affiliés ---------- */
.product-card{
  flex:0 0 auto;
  width:164px;
  scroll-snap-align:start;
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  text-decoration:none;
  color:var(--ink);
  overflow:hidden;
  display:block;
  transition:transform .2s ease;
}

/* Page Boutique : cartes plus compactes pour garder plusieurs produits visibles. */
#main .products-section .product-card{ width:164px; border-radius:14px; }
#main .products-section .product-thumb{ aspect-ratio:4/3; padding:10px; }
#main .products-section .product-body{ padding:10px 12px 13px; }
@media (max-width:560px){ #main .products-section .product-card{ width:142px; } }
@media (max-width:560px){ .product-card{ width:142px; } }
.product-card:hover{ transform:translateY(-5px); }
.product-thumb{
  aspect-ratio:4/3;
  background:#fff;
  display:flex; align-items:center; justify-content:center;
  padding:10px;
}
.product-thumb img{ width:100%; height:100%; object-fit:contain; }
.product-body{ padding:10px 12px 13px; }
.product-name{
  font-size:13.5px; font-weight:600; line-height:1.35;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  margin-bottom:8px;
}
.product-cta{
  font-family:'JetBrains Mono', monospace;
  font-size:11px; font-weight:700; color:var(--tomato);
}
.disclosure{
  font-family:'JetBrains Mono', monospace;
  font-size:11.5px; line-height:1.55; color:var(--ink-soft);
  max-width:640px;
  margin:-8px 0 16px;
}

/* ---------- Newsletter ---------- */
.newsletter{
  padding:20px clamp(20px,5vw,56px) 10px;
}
.newsletter-box{
  background:var(--mustard);
  color:var(--ink);
  border-radius:20px;
  padding:clamp(28px,4vw,48px);
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:36px;
  align-items:center;
  position:relative;
  overflow:hidden;
}
.newsletter-box::before{
  /* motif pointillé façon trajet postal, en clin d'œil à la carte-recette */
  content:"";
  position:absolute; inset:0;
  background-image:radial-gradient(rgba(38,36,31,0.08) 1.5px, transparent 1.5px);
  background-size:16px 16px;
  opacity:0.5;
  pointer-events:none;
}
.newsletter-text, .newsletter-form{ position:relative; z-index:1; }
.newsletter-text h2{ font-size:clamp(34px,4.2vw,46px); font-weight:600; margin:12px 0 14px; color:var(--ink); }
.newsletter-text p{ font-size:14.5px; line-height:1.6; color:rgba(38,36,31,0.7); max-width:420px; }
.newsletter-form{ display:flex; flex-direction:column; gap:12px; }
.newsletter-form input[type="text"],
.newsletter-form input[type="email"]{
  background:rgba(38,36,31,0.06);
  border:1px solid rgba(38,36,31,0.25);
  border-radius:10px;
  padding:13px 16px;
  color:var(--ink);
  font-family:inherit; font-size:14.5px;
}
.newsletter-form input::placeholder{ color:rgba(38,36,31,0.45); }
.newsletter-form input:focus{ outline:2px solid var(--ink); outline-offset:1px; }
.nl-consent{
  display:flex; gap:9px; align-items:flex-start;
  font-size:12.5px; line-height:1.5; color:rgba(38,36,31,0.65);
}
.nl-consent input{ margin-top:3px; accent-color:var(--ink); }
.newsletter-form .btn-primary{ align-self:flex-start; border:none; background:var(--ink); color:#fff; font-size:19.5px; padding:16px 32px; }
.newsletter-form .btn-primary:disabled{ opacity:0.6; cursor:default; transform:none; }
.nl-msg{ font-size:13px; min-height:16px; margin:0; }
.nl-msg-ok{ color:var(--ink); font-weight:600; }
.nl-msg-error{ color:#C1442E; font-weight:600; }
@media (max-width:760px){
  .newsletter-box{ grid-template-columns:1fr; }
}

/* ---------- Footer ---------- */
footer{
  margin-top:60px;
  background:var(--mustard);
  color:rgba(38,36,31,0.75);
  padding:48px clamp(20px,5vw,56px) 32px;
}
footer .foot-top{
  display:flex;justify-content:space-between;align-items:flex-start;
  flex-wrap:wrap;gap:24px;
  padding-bottom:28px;border-bottom:1px solid rgba(38,36,31,0.15);
}
footer h3{font-size:24px;font-style:italic;font-weight:500;color:var(--ink);}
footer p{font-size:14px;max-width:360px;line-height:1.6;color:rgba(38,36,31,0.65);margin-top:10px;}
footer .foot-bottom{
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;
  padding-top:20px;font-size:12.5px;color:rgba(38,36,31,0.55);
  font-family:'JetBrains Mono', monospace;
}
.admin-link{
  text-decoration:underline;
  opacity:0.6;
  margin-left:6px;
  transition:opacity .15s ease;
}
.admin-link:hover{ opacity:1; }

/* ---------- Bouton retour en haut de page ---------- */
.back-to-top{
  position:fixed;
  bottom:24px; right:24px;
  width:48px; height:48px;
  border-radius:50%;
  background:var(--mustard);
  color:var(--ink);
  border:3px solid #fff;
  font-size:19px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 22px rgba(0,0,0,0.3);
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:opacity .25s ease, transform .25s ease, visibility .25s;
  z-index:40;
}
.back-to-top.visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.back-to-top:hover{ transform:translateY(-3px) scale(1.05); }
@media (max-width:480px){
  .back-to-top{ bottom:16px; right:16px; width:44px; height:44px; font-size:17px; }
}

/* ---------- Page de maintenance ---------- */
.maintenance-page{
  min-height:100vh;
  display:flex;align-items:center;justify-content:center;
  padding:24px;
}
.maintenance-card{
  max-width:460px;
  text-align:center;
  background:#fff;
  border-radius:20px;
  padding:clamp(32px,6vw,56px) clamp(24px,5vw,40px);
  box-shadow:var(--shadow);
}
.maintenance-logo{
  width:92px;height:92px;border-radius:50%;
  box-shadow:0 0 0 1px var(--line);
  margin:0 auto 22px;
  display:block;
}
.maintenance-badge{
  display:inline-block;
  font-family:'JetBrains Mono', monospace;
  font-size:11px;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;
  color:var(--tomato);
  border:1px dashed var(--tomato);
  padding:5px 12px;border-radius:100px;
  margin-bottom:18px;
}
.maintenance-card h1{
  font-family:'Fraunces', serif;font-weight:600;
  font-size:clamp(22px,3vw,30px);
  color:var(--ink);
  margin-bottom:14px;
}
.maintenance-card p{
  font-size:15px;line-height:1.65;color:var(--ink-soft);
  white-space:pre-line;
}
.maintenance-youtube-btn{
  display:inline-flex;align-items:center;gap:9px;
  background:#FF0000;color:#fff;
  text-decoration:none;font-weight:700;font-size:14.5px;
  padding:12px 22px;border-radius:100px;
  margin-top:26px;
  box-shadow:0 6px 16px rgba(255,0,0,0.3);
  transition:transform .15s ease;
}
.maintenance-youtube-btn:hover{ transform:translateY(-1px); }
.maintenance-youtube-btn svg{ flex-shrink:0; }

/* ---------- Bandeau visible seulement par les admins connectés,
   quand le mode maintenance est actif pour tout le monde d'autre ---------- */
.admin-maintenance-banner{
  background:var(--tomato);color:#fff;
  text-align:center;font-size:13px;font-weight:600;
  padding:10px 16px;
}
.admin-maintenance-banner a{ color:#fff; text-decoration:underline; margin-left:6px; }

/* ---------- Bannière d'installation iOS (Safari n'a pas d'invite native) ---------- */
.ios-install-banner{
  position:fixed;
  left:16px; right:16px; bottom:16px;
  z-index:60;
  background:var(--ink);color:#fff;
  border-radius:16px;
  padding:14px 16px;
  display:flex;align-items:center;gap:12px;
  box-shadow:0 12px 30px rgba(0,0,0,0.3);
  font-size:13px;line-height:1.45;
}
.ios-install-banner svg{ flex-shrink:0; }
.ios-install-banner strong{ color:var(--mustard); }
.ios-install-banner button{
  background:none;border:none;color:rgba(255,255,255,0.6);
  font-size:16px;cursor:pointer;flex-shrink:0;margin-left:auto;
  padding:4px;line-height:1;
}
.ios-install-banner button:hover{ color:#fff; }
@media (min-width:600px){ .ios-install-banner{ max-width:420px; left:auto; } }

/* ---------- Bouton d'installation Android (déclenché par le navigateur) ---------- */
.android-install-btn{
  position:fixed;
  right:24px;bottom:84px;
  z-index:55;
  background:var(--mustard);color:var(--ink);
  border:3px solid #fff;
  border-radius:100px;
  padding:12px 20px;
  font-weight:700;font-size:13.5px;font-family:inherit;
  box-shadow:0 8px 22px rgba(0,0,0,0.25);
  cursor:pointer;
  display:flex;align-items:center;gap:8px;
}
.android-install-btn:hover{ transform:translateY(-2px); }
@media (max-width:480px){ .android-install-btn{ right:16px;bottom:76px;padding:10px 16px;font-size:12.5px; } }

/* ---------- Bannière d'installation Safari Mac (même style/position que le bouton Android) ---------- */
.mac-install-banner{
  position:fixed;
  right:24px;bottom:84px;
  z-index:56;
  max-width:300px;
  background:var(--mustard);color:var(--ink);
  border:3px solid #fff;
  border-radius:16px;
  padding:14px 16px;
  display:flex;align-items:center;gap:10px;
  box-shadow:0 8px 22px rgba(0,0,0,0.25);
  font-size:13px;line-height:1.4;
}
.mac-install-banner strong{ color:var(--tomato); }
.mac-install-banner button{
  background:none;border:none;color:var(--ink);opacity:0.55;
  font-size:16px;cursor:pointer;flex-shrink:0;padding:2px;line-height:1;
}
.mac-install-banner button:hover{ opacity:1; }
@media (max-width:480px){ .mac-install-banner{ right:16px;bottom:76px;max-width:260px; } }

/* ---------- Tutoriel d'installation (iPhone/iPad) ---------- */
.install-tutorial-link{ color:inherit; font-weight:700; text-decoration:underline; }
.install-tutorial-overlay{
  display:none;
  position:fixed; inset:0; z-index:100;
  background:rgba(20,18,14,0.55);
  align-items:center; justify-content:center;
  padding:20px;
}
.install-tutorial-overlay.visible{ display:flex; }
.install-tutorial-modal{
  background:#fff; border-radius:20px;
  padding:28px 24px 24px;
  max-width:360px; width:100%;
  position:relative;
  box-shadow:0 20px 50px rgba(0,0,0,0.3);
}
.install-tutorial-close{
  position:absolute; top:14px; right:14px;
  background:none; border:none; font-size:18px;
  color:var(--ink-soft); cursor:pointer; padding:4px; line-height:1;
}
.install-tutorial-modal h3{
  font-family:'Fraunces', serif; font-weight:600; font-size:20px;
  margin:0 0 20px; color:var(--ink); padding-right:20px;
}
.install-tutorial-step{ display:flex; gap:14px; margin-bottom:18px; }
.install-tutorial-num{
  flex-shrink:0; width:28px; height:28px; border-radius:50%;
  background:var(--mustard); color:var(--ink);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:13px;
}
.install-tutorial-step strong{ display:block; font-size:14.5px; color:var(--ink); margin-bottom:3px; }
.install-tutorial-step p{ font-size:13px; color:var(--ink-soft); line-height:1.5; margin:0; }
.install-tutorial-btn{
  width:100%; margin-top:6px;
  background:var(--tomato); color:#fff; border:none;
  border-radius:100px; padding:13px; font-weight:700; font-size:14px;
  cursor:pointer; font-family:inherit;
}
.install-tutorial-btn:hover{ transform:translateY(-1px); }

/* ---------- Bouton d'activation des notifications ---------- */
.notify-optin-banner{
  position:fixed;
  left:16px;right:16px;bottom:16px;
  z-index:56;
  background:var(--mustard);color:var(--ink);
  border:2px solid #fff;
  border-radius:16px;
  padding:16px 16px 16px 18px;
  display:flex;align-items:center;gap:12px;
  box-shadow:0 14px 34px rgba(0,0,0,0.3);
}
.notify-optin-banner .notify-optin-icon{ font-size:22px;flex-shrink:0; }
.notify-optin-banner .notify-optin-text{ flex:1;font-size:13px;line-height:1.4; }
.notify-optin-banner .notify-optin-text strong{ display:block;font-size:14.5px;margin-bottom:2px; }
.notify-optin-accept{
  background:var(--ink);color:#fff;
  border:none;border-radius:100px;
  padding:10px 16px;font-weight:700;font-size:12.5px;font-family:inherit;
  cursor:pointer;flex-shrink:0;
}
.notify-optin-accept:hover{ transform:translateY(-1px); }
.notify-optin-dismiss{
  background:none;border:none;color:rgba(38,36,31,0.55);
  font-size:16px;cursor:pointer;flex-shrink:0;padding:4px;line-height:1;
}
.notify-optin-dismiss:hover{ color:var(--ink); }
@media (min-width:600px){ .notify-optin-banner{ max-width:400px;right:auto; } }

/* ---------- Bandeau de consentement cookies (Google Tag Manager) ---------- */
.consent-banner{
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:80;
  background:var(--ink);color:#fff;
  padding:18px clamp(20px,5vw,56px);
  display:flex;align-items:center;gap:20px;flex-wrap:wrap;
  box-shadow:0 -8px 24px rgba(0,0,0,0.25);
}
.consent-banner p{
  flex:1;min-width:240px;
  font-size:13px;line-height:1.5;color:rgba(255,255,255,0.85);
  margin:0;
}
.consent-actions{ display:flex;gap:10px;flex-shrink:0; }
.consent-refuse{
  background:none;border:1px solid rgba(255,255,255,0.3);color:#fff;
  border-radius:100px;padding:10px 18px;
  font-weight:600;font-size:13px;font-family:inherit;cursor:pointer;
}
.consent-refuse:hover{ border-color:rgba(255,255,255,0.6); }
.consent-accept{
  background:var(--tomato);border:none;color:#fff;
  border-radius:100px;padding:10px 18px;
  font-weight:700;font-size:13px;font-family:inherit;cursor:pointer;
}
.consent-accept:hover{ transform:translateY(-1px); }

/* ---------- Bandeau "nouvelle version disponible" ---------- */
.update-banner{
  position:fixed;
  top:0;left:0;right:0;
  z-index:90;
  background:var(--ink);color:#fff;
  padding:12px 16px;
  display:flex;align-items:center;justify-content:center;gap:14px;
  flex-wrap:wrap;
  font-size:13.5px;
  box-shadow:0 4px 14px rgba(0,0,0,0.25);
}
.update-banner > span{ display:flex; flex-direction:column; gap:2px; }
.update-banner > span strong{ font-size:13.5px; }
.update-banner > span small{ color:rgba(255,255,255,.72); font-size:11.5px; }
.update-banner-btn{
  background:var(--tomato);color:#fff;border:none;
  border-radius:100px;padding:8px 16px;
  font-weight:700;font-size:12.5px;font-family:inherit;cursor:pointer;
}
.update-banner-btn:hover{ transform:translateY(-1px); }
.update-banner-btn:disabled{ opacity:.65; cursor:wait; transform:none; }

/* ---------- Bandeau de la page Boutique ---------- */
.shop-hero{
  position:relative;
  overflow:hidden;
  padding:56px clamp(20px,5vw,56px) 40px;
  background:var(--mustard);
  text-align:center;
}
.shop-hero-content{ max-width:640px; margin:0 auto; position:relative; z-index:1; }
.shop-hero .hero-eyebrow{
  background:rgba(38,36,31,0.1);
  border-color:rgba(38,36,31,0.2);
  color:var(--ink);
}
.shop-hero h1{
  font-family:'Fraunces', serif; font-weight:600;
  font-size:clamp(32px,4.5vw,52px); line-height:1.1;
  margin:0 0 14px; color:var(--ink);
}
.shop-hero p{
  font-size:16px; line-height:1.6;
  color:rgba(38,36,31,0.75); margin:0;
}
.shop-hero-icon{
  position:absolute;
  font-size:30px;
  opacity:0.3;
  pointer-events:none;
  user-select:none;
  line-height:1;
}
.shop-hero-icon-1{ top:16%; left:5%;  font-size:38px; transform:rotate(-12deg); }
.shop-hero-icon-2{ top:62%; left:11%; font-size:26px; transform:rotate(10deg); }
.shop-hero-icon-3{ top:30%; left:19%; font-size:20px; transform:rotate(-6deg); opacity:0.22; }
.shop-hero-icon-4{ top:18%; right:6%;  font-size:36px; transform:rotate(14deg); }
.shop-hero-icon-5{ top:64%; right:13%; font-size:27px; transform:rotate(-8deg); }
.shop-hero-icon-6{ top:32%; right:21%; font-size:20px; transform:rotate(9deg); opacity:0.22; }
@media (max-width:820px){ .shop-hero-icon{ display:none; } }

/* ---------- Page de recherche ---------- */
.search-hero{
  padding:48px clamp(20px,5vw,56px) 36px;
  background:var(--mustard);
  text-align:center;
}
.search-hero-content{ max-width:600px; margin:0 auto; }
.search-hero h1{
  font-family:'Fraunces', serif; font-weight:600;
  font-size:clamp(26px,3.6vw,38px); line-height:1.15;
  margin:0 0 20px; color:var(--ink);
}
.search-hero-form{
  display:flex; align-items:center; gap:10px;
  background:#fff; border-radius:100px;
  padding:6px 6px 6px 20px;
  box-shadow:var(--shadow);
}
.search-hero-form input{
  flex:1; border:none; background:none;
  font-family:inherit; font-size:15px; color:var(--ink);
  padding:10px 0;
}
.search-hero-form input:focus{ outline:none; }
.search-hero-form button{
  background:var(--tomato); color:#fff; border:none;
  width:44px;height:44px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; flex-shrink:0;
}
.search-hero-form button svg{ width:19px; height:19px; }
.search-results-summary{
  padding:24px clamp(20px,5vw,56px) 0;
  font-size:14px; color:var(--ink-soft);
}
.search-empty{
  padding:50px clamp(20px,5vw,56px);
  text-align:center;
  color:var(--ink-soft);
  font-size:15px;
  line-height:1.6;
}

/* ---------- Page vidéo orientée boutique ---------- */
.video-page{
  max-width:1480px;
  margin:0 auto;
  padding:34px clamp(18px,4vw,60px) 44px;
}
.video-page-topline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:22px;
}
.video-page-topline .video-back{ margin:0; }
.video-shop-shortcut{
  color:var(--tomato);
  font-size:13px;
  font-weight:800;
  text-decoration:none;
}
.video-shop-shortcut:hover{ text-decoration:underline; }
.video-commerce-layout{
  display:grid;
  grid-template-columns:minmax(0,1.55fr) minmax(340px,.85fr);
  gap:clamp(22px,3vw,42px);
  align-items:start;
}
.video-products-column{
  min-width:0;
  display:grid;
  gap:clamp(18px,2.2vw,28px);
  align-content:start;
}
.video-watch-column{ min-width:0; }
.video-watch-intro{ margin-bottom:20px; }
.video-eyebrow{
  display:inline-block;
  color:var(--tomato);
  font:800 10.5px/1 'JetBrains Mono',monospace;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.video-watch-intro .video-title{
  max-width:920px;
  margin:9px 0 0;
  font-size:clamp(29px,3.3vw,50px);
  line-height:1.08;
  letter-spacing:-.035em;
}
.video-watch-intro .video-meta{ margin-top:16px; }
.video-player-shell{
  padding:10px;
  background:var(--enamel);
  border-radius:26px;
  box-shadow:0 22px 55px rgba(35,31,27,.22);
}
.video-player-shell .video-player-wrap{
  border-radius:18px;
  box-shadow:none;
}
.video-watch-note{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:15px;
  padding:13px 15px;
  color:var(--ink-soft);
  background:rgba(255,255,255,.5);
  border:1px solid var(--line);
  border-radius:15px;
}
.video-watch-note > span{
  width:36px;
  height:36px;
  flex:0 0 36px;
  display:grid;
  place-items:center;
  background:#fff;
  border-radius:11px;
}
.video-watch-note p{
  margin:0;
  font-size:12.5px;
  line-height:1.5;
}
.video-product-panel{
  position:relative;
  min-width:0;
  overflow:hidden;
  padding:clamp(20px,2.3vw,30px);
  background:linear-gradient(155deg,rgba(255,255,255,.96),rgba(238,202,162,.58));
  border:1px solid rgba(255,255,255,.8);
  border-radius:28px;
  box-shadow:0 22px 55px rgba(53,51,50,.14);
}
.video-product-panel::before{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  top:-92px;
  right:-72px;
  background:rgba(234,103,22,.13);
  border-radius:50%;
}
.video-product-panel-head,
.video-product-grid,
.video-shop-all,
.video-product-panel .disclosure,
.video-product-loading{
  position:relative;
  z-index:1;
}
.video-product-panel-badge{
  display:inline-flex;
  padding:7px 10px;
  color:#fff;
  background:var(--tomato);
  border-radius:100px;
  font:800 9px/1 'JetBrains Mono',monospace;
  letter-spacing:.05em;
  text-transform:uppercase;
}
.video-product-panel-head h2{
  margin:13px 0 7px;
  font-size:clamp(25px,2.4vw,34px);
  line-height:1.08;
  letter-spacing:-.025em;
}
.video-product-panel-head p{
  margin:0;
  color:var(--ink-soft);
  font-size:13px;
  line-height:1.55;
}
.video-product-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:20px;
}
.video-product-panel .video-product-card{
  width:auto;
  min-width:0;
  display:flex;
  flex-direction:column;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(53,51,50,.1);
  border-radius:18px;
  box-shadow:0 9px 22px rgba(53,51,50,.08);
}
.video-product-panel .video-product-card:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 28px rgba(53,51,50,.13);
}
.video-product-panel .product-thumb{
  aspect-ratio:1.12/1;
  padding:13px;
  border-bottom:1px solid var(--line);
}
.video-product-panel .product-body{
  min-width:0;
  flex:1;
  display:flex;
  flex-direction:column;
  padding:12px;
}
.video-product-card-kicker{
  margin-bottom:6px;
  color:var(--tomato);
  font:800 8.5px/1.2 'JetBrains Mono',monospace;
  letter-spacing:.05em;
  text-transform:uppercase;
}
.video-product-panel .product-name{
  display:block;
  margin:0 0 12px;
  overflow:visible;
  font-size:13px;
  line-height:1.35;
}
.video-product-panel .product-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:6px;
  margin-top:auto;
  padding:9px 10px;
  color:#fff;
  background:var(--enamel);
  border-radius:10px;
  font-size:9.5px;
}
.video-product-grid .video-product-card:only-child{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:minmax(120px,42%) minmax(0,1fr);
}
.video-product-grid .video-product-card:only-child .product-thumb{
  min-height:180px;
  aspect-ratio:auto;
  border-right:1px solid var(--line);
  border-bottom:0;
}
.video-shop-all{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:14px;
  padding:13px 15px;
  color:#fff;
  background:linear-gradient(135deg,var(--tomato),#c94f0b);
  border-radius:13px;
  text-decoration:none;
  font-size:12.5px;
  font-weight:800;
  box-shadow:0 9px 20px rgba(234,103,22,.2);
}
.video-shop-all:hover{ transform:translateY(-1px); }
.video-product-panel .disclosure{
  max-width:none;
  margin:12px 2px 0;
  font-size:9.5px;
  line-height:1.45;
}
.video-product-panel-compact{ padding:clamp(18px,2vw,25px); }
.video-product-panel-compact .video-product-panel-head h2{
  font-size:clamp(23px,2vw,30px);
}
.video-product-panel-compact .video-product-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:16px;
}
.video-product-panel-compact .product-thumb{
  aspect-ratio:1.2/1;
  padding:10px;
}
.video-product-panel-compact .product-body{ padding:10px; }
.video-product-panel-compact .product-name{
  margin-bottom:9px;
  font-size:12px;
}
.video-product-panel-selection{
  background:linear-gradient(155deg,rgba(255,255,255,.97),rgba(255,238,218,.72));
}
.video-product-panel-selection::before{ background:rgba(27,106,92,.11); }
.video-product-panel-selection .video-product-panel-badge{ background:var(--enamel); }
.video-product-loading{
  min-height:260px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:8px;
  color:var(--ink-soft);
}
.video-product-loading span{
  color:var(--tomato);
  font:800 10px/1 'JetBrains Mono',monospace;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.video-product-loading strong{
  max-width:280px;
  color:var(--ink);
  font:600 29px/1.12 'Fraunces',serif;
}
.video-description-section{
  display:grid;
  grid-template-columns:minmax(210px,.72fr) minmax(0,1.65fr);
  gap:clamp(24px,4vw,58px);
  margin-top:clamp(28px,4vw,52px);
  padding:clamp(24px,3vw,40px);
  background:rgba(255,255,255,.66);
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:0 14px 36px rgba(53,51,50,.07);
}
.video-description-heading h2{
  margin-top:9px;
  font-size:clamp(25px,2.5vw,36px);
  line-height:1.12;
}
.video-description-heading p{
  margin:12px 0 0;
  color:var(--ink-soft);
  font-size:13px;
  line-height:1.55;
}
.video-description-content{
  min-width:0;
  padding:20px 22px;
  background:var(--cream);
  border:1px solid var(--line);
  border-radius:18px;
}
.video-description-content .video-description{
  max-width:none;
  margin:0;
  padding:0;
  color:var(--ink-soft);
  background:none;
  font-size:14.5px;
  line-height:1.75;
  white-space:pre-wrap;
  overflow-wrap:anywhere;
}
.video-page .video-suggestions-section{
  margin-top:clamp(32px,5vw,60px);
  padding:0;
}
.video-suggestions-section .row-head{ align-items:flex-end; }
.video-suggestions-section .row-head h2{ margin-top:8px; }

@media (max-width:980px){
  .video-commerce-layout{ grid-template-columns:1fr; }
  .video-products-column .video-product-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:700px){
  .video-page{ padding-inline:14px; }
  .video-page-topline{ align-items:flex-start; flex-direction:column; gap:9px; }
  .video-watch-intro .video-title{ font-size:clamp(27px,9vw,39px); }
  .video-player-shell{ padding:6px; border-radius:19px; }
  .video-player-shell .video-player-wrap{ border-radius:14px; }
  .video-product-panel{ padding:19px; border-radius:22px; }
  .video-product-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
  .video-description-section{ grid-template-columns:1fr; padding:20px; border-radius:22px; }
  .video-description-content{ padding:17px; }
}
@media (max-width:430px){
  .video-products-column .video-product-grid{ grid-template-columns:1fr; }
  .video-products-column .video-product-grid .video-product-card:only-child{
    display:flex;
    grid-template-columns:none;
  }
  .video-products-column .video-product-grid .video-product-card:only-child .product-thumb{
    min-height:0;
    aspect-ratio:1.2/1;
    border-right:0;
    border-bottom:1px solid var(--line);
  }
}
