/* ═══════════════════════════════════════════════════
   CROUSTY TANDOORI — Shared Design System
   ═══════════════════════════════════════════════════ */

/* ─── Imports ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Caveat:wght@500;700&family=Noto+Sans+Bengali:wght@400;500;600;700&display=swap');

/* ─── Tokens ──────────────────────────────────────── */
:root {
  --cream:    #FBF8F2;
  --cream-2:  #F7F2E8;
  --cream-3:  #EFE7D4;
  --spice:    #C7411F;
  --spice-2:  #E0612C;
  --gold:     #CDA85C;
  --gold-2:   #E0C384;
  --char:     #15110D;
  --char-2:   #0E0B08;
  --ink:      #3A312A;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
}

/* ─── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--char);
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
@media (max-width: 1024px) { body { cursor: auto; } }

/* ─── Typography ──────────────────────────────────── */
.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: .95;
}
.display em { font-style: italic; font-weight: 400; color: var(--spice); }
.hand { font-family: 'Caveat', cursive; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 500;
}
.ornament { display: inline-flex; align-items: center; gap: .6rem; }
.ornament::before, .ornament::after {
  content: "";
  height: 1px;
  width: 30px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ─── Buttons ─────────────────────────────────────── */
.btn-primary {
  position: relative;
  display: inline-flex; align-items: center; gap: .7rem;
  padding: 1.05rem 1.9rem; border-radius: 9999px;
  background: linear-gradient(180deg, #D74A26 0%, #B8351A 100%);
  color: var(--cream); font-weight: 500; letter-spacing: .04em;
  box-shadow: 0 18px 40px -16px rgba(199,65,31,.55), inset 0 1px 0 rgba(255,255,255,.18);
  border: 1px solid rgba(224,195,132,.4);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, filter .35s;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 24px 50px -14px rgba(199,65,31,.65), inset 0 1px 0 rgba(255,255,255,.22);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: 1.05rem 1.9rem; border-radius: 9999px;
  background: rgba(251,248,242,.06); color: var(--cream);
  border: 1px solid rgba(251,248,242,.35);
  backdrop-filter: blur(8px);
  transition: all .35s;
  text-decoration: none;
}
.btn-ghost:hover { background: rgba(251,248,242,.14); border-color: rgba(224,195,132,.7); }
.btn-dark {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: 1.05rem 1.9rem; border-radius: 9999px;
  background: var(--char); color: var(--cream);
  border: 1px solid rgba(224,195,132,.3);
  transition: all .35s;
  text-decoration: none;
}
.btn-dark:hover { background: var(--char-2); border-color: rgba(224,195,132,.7); transform: translateY(-2px); }
.btn-sm { padding: .65rem 1.2rem; font-size: .85rem; }

/* ─── Navigation ──────────────────────────────────── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  /* dégradé permanent : garantit la lisibilité du menu + masque tout débordement du hero derrière la nav */
  background: linear-gradient(180deg, rgba(14,11,8,.62) 0%, rgba(14,11,8,0) 100%);
  transition: background .4s, backdrop-filter .4s, border-color .4s;
}
#site-nav.scrolled {
  background: rgba(14,11,8,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(224,195,132,.15);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 1.25rem;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 1024px) { .nav-inner { padding: 0 2.5rem; } }
.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav-logo-img {
  width: 36px; height: 36px; border-radius: 50%;
  background: url('../assets/LOGO.jpeg') center/cover;
  box-shadow: 0 0 0 1px rgba(224,195,132,.5);
  flex-shrink: 0;
}
.nav-logo-text {
  display: none;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(251,248,242,.9); font-weight: 500;
}
@media (min-width: 640px) { .nav-logo-text { display: block; } }
.nav-links {
  display: none;
  align-items: center; gap: 2rem;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(251,248,242,.75);
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  text-decoration: none; color: inherit;
  transition: color .25s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-2); }
.nav-links a.nav-crousty { color: #E0612C; }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.lang-pill {
  display: inline-flex; align-items: center;
  padding: .3rem; border-radius: 9999px;
  background: rgba(14,11,8,.7); border: 1px solid rgba(224,195,132,.3);
  backdrop-filter: blur(10px);
}
.lang-pill button {
  padding: .3rem .8rem; border-radius: 9999px;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  color: rgba(251,248,242,.55); background: transparent; border: none; cursor: pointer;
  transition: all .3s;
}
.lang-pill button.active { background: linear-gradient(180deg,#D74A26,#B8351A); color: var(--cream); }

/* Mobile hamburger */
.nav-hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: .5rem; background: none; border: none;
}
@media (min-width: 1024px) { .nav-hamburger { display: none; } }
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--cream); border-radius: 2px;
  transition: all .35s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* Mobile menu overlay */
.nav-mobile {
  position: fixed; inset: 0; z-index: 49;
  background: rgba(14,11,8,.97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  text-decoration: none; color: rgba(251,248,242,.85);
  font-size: 1.75rem;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  transition: color .25s;
}
.nav-mobile a:hover { color: var(--gold-2); }

/* ─── Footer ──────────────────────────────────────── */
#site-footer {
  background: var(--char-2); color: rgba(251,248,242,.65);
  border-top: 1px solid rgba(224,195,132,.12);
  padding: 4rem 0 2rem;
}
.footer-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 1.25rem;
}
@media (min-width: 1024px) { .footer-inner { padding: 0 2.5rem; } }
.footer-grid {
  display: grid; gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--cream); font-style: italic; margin-bottom: .5rem; }
.footer-brand p { font-size: .88rem; line-height: 1.6; max-width: 280px; }
.footer-col h4 { font-size: .7rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li + li { margin-top: .6rem; }
.footer-col a { color: inherit; text-decoration: none; font-size: .9rem; transition: color .25s; }
.footer-col a:hover { color: var(--gold-2); }
.footer-bottom {
  padding-top: 1.5rem; border-top: 1px solid rgba(251,248,242,.08);
  display: flex; flex-direction: column; gap: .5rem;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(251,248,242,.4);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* ─── Section pattern / noise ─────────────────────── */
.bg-noise { position: relative; }
.bg-noise::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: .04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ─── Image card with premium hover ──────────────────
   Uses a warm golden-spice glow overlay on hover
   instead of basic scale+brightness                  */
.img-card {
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  isolation: isolate; cursor: pointer;
}
.img-card .img-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.img-card:hover .img-bg { transform: scale(1.1); }

/* Warm glow layer — replaces the red overlay */
.img-card::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg,
    rgba(205,168,92,.0) 0%,
    rgba(199,65,31,.0) 50%,
    rgba(14,11,8,.0) 100%);
  transition: background .6s;
  mix-blend-mode: multiply;
}
.img-card:hover::before {
  background: linear-gradient(135deg,
    rgba(205,168,92,.45) 0%,
    rgba(199,65,31,.3) 50%,
    rgba(14,11,8,.1) 100%);
}

/* Subtle light leak from top-left on hover */
.img-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(circle at 20% 20%, rgba(255,200,100,.35) 0%, transparent 50%);
  opacity: 0; transition: opacity .6s;
}
.img-card:hover::after { opacity: 1; }

/* Scrim gradient at bottom */
.img-card .img-scrim {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, transparent 40%, rgba(14,11,8,.85) 100%);
}
.img-card .img-label {
  position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1.25rem;
  color: var(--cream); z-index: 3;
  transform: translateY(6px); transition: transform .5s;
}
.img-card:hover .img-label { transform: translateY(0); }

/* ─── Marquee ─────────────────────────────────────── */
.marquee-wrap { overflow: hidden; }
.marquee-track {
  display: flex; gap: 5rem;
  animation: marqueeScroll 38s linear infinite;
  will-change: transform;
}
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Scroll reveal ───────────────────────────────── */
/* No initial transform: GSAP sets yPercent:110 then animates to 0. With JS disabled, content stays visible. */
.reveal-line { display: block; overflow: hidden; }
.reveal-line > * { display: block; }

/* ─── Page hero ───────────────────────────────────── */
.page-hero {
  position: relative; width: 100%;
  background: var(--char-2); color: var(--cream);
  overflow: hidden;
}
.page-hero-img {
  position: absolute; inset: -5%;
  background-size: cover; background-position: center;
  will-change: transform;
}
.page-hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,11,8,.6) 0%, rgba(14,11,8,.3) 40%, rgba(14,11,8,.7) 70%, rgba(14,11,8,.96) 100%);
}
.page-hero-grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .96 0 0 0 0 .92 0 0 0 0 .84 0 0 0 .35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay; opacity: .45;
}
.page-hero-content {
  position: relative; z-index: 10;
  max-width: 1400px; margin: 0 auto;
  padding: 0 1.25rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 6vh;
}
@media (min-width: 1024px) { .page-hero-content { padding: 0 4rem 6vh; } }
.page-hero-content h1.display {
  text-shadow:
    0 2px 4px rgba(0,0,0,.55),
    0 8px 24px rgba(0,0,0,.4);
}
.page-hero-content h1.display em { text-shadow: 0 2px 8px rgba(0,0,0,.7); }

/* ─── Section ─────────────────────────────────────── */
.section { padding: 5rem 0; }
@media (min-width: 1024px) { .section { padding: 8rem 0; } }
.section-inner { max-width: 1400px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 1024px) { .section-inner { padding: 0 4rem; } }

/* ─── Testimonial column ──────────────────────────── */
.tcol-wrap {
  display: grid; gap: 1.5rem;
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
  max-height: 640px; overflow: hidden;
}
@media (min-width: 768px) { .tcol-wrap { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tcol-wrap { grid-template-columns: repeat(3, 1fr); } }
.tcol-col { overflow: hidden; }
.tcol-track { display: flex; flex-direction: column; gap: 1.25rem; }
.tcol-fast { animation: tcolScroll 30s linear infinite; }
.tcol-med  { animation: tcolScroll 38s linear infinite; }
.tcol-slow { animation: tcolScroll 46s linear infinite; }
@keyframes tcolScroll { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.tcol-card {
  padding: 1.5rem; border-radius: 20px;
  background: var(--cream); border: 1px solid rgba(14,11,8,.07);
  box-shadow: 0 12px 24px -18px rgba(14,11,8,.14);
  transition: transform .4s, box-shadow .4s;
}
.tcol-card:hover { transform: translateY(-3px); box-shadow: 0 24px 40px -16px rgba(199,65,31,.2); }
.tcol-card.dark { background: var(--char); color: var(--cream); border-color: rgba(224,195,132,.2); }
.tcol-stars { color: var(--gold); font-size: .9rem; letter-spacing: 2px; margin-bottom: .65rem; }
.tcol-card.dark .tcol-stars { color: var(--gold-2); }
.tcol-text { font-size: .92rem; line-height: 1.55; color: var(--ink); margin-bottom: 1rem; }
.tcol-card.dark .tcol-text { color: rgba(251,248,242,.8); }
.tcol-meta { display: flex; align-items: center; gap: .65rem; }
.tcol-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--spice), var(--gold));
  color: var(--cream); display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: .82rem; flex-shrink: 0;
}
.tcol-name { font-size: .85rem; font-weight: 600; color: var(--char); line-height: 1.2; }
.tcol-card.dark .tcol-name { color: var(--cream); }
.tcol-role { font-size: .72rem; color: var(--ink); opacity: .65; }
.tcol-card.dark .tcol-role { color: rgba(251,248,242,.55); }

/* ─── Custom cursor ───────────────────────────────── */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; mix-blend-mode: difference; }
.cursor-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cream); transform: translate(-50%,-50%); }
.cursor-ring {
  width: 34px; height: 34px; border: 1px solid rgba(251,248,242,.5); border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .25s, height .25s, background .25s, border-color .25s;
}
.cursor-ring.hover { width: 60px; height: 60px; background: rgba(251,248,242,.06); border-color: rgba(224,195,132,.6); }

/* ─── Click & Collect Simulator ───────────────────── */
.cc-tab {
  background: transparent; color: var(--ink);
  border: 1px solid rgba(14,11,8,.12);
  padding: .5rem 1.05rem; border-radius: 9999px;
  font-size: .82rem; font-weight: 500;
  white-space: nowrap; cursor: pointer;
  transition: all .25s;
}
.cc-tab:hover { background: rgba(199,65,31,.08); border-color: rgba(199,65,31,.3); }
.cc-tab.active { background: var(--char); color: var(--gold-2); border-color: var(--char); }
.cc-item {
  display: flex; gap: .85rem; padding: .75rem;
  border-radius: 16px; background: var(--cream);
  border: 1px solid rgba(14,11,8,.07);
  transition: all .3s;
}
.cc-item:hover { border-color: rgba(199,65,31,.35); transform: translateY(-2px); box-shadow: 0 12px 25px -12px rgba(14,11,8,.15); }
.cc-item.added { border-color: var(--spice); background: linear-gradient(180deg, #FBF8F2 0%, rgba(199,65,31,.05) 100%); }
.cc-item .thumb {
  width: 60px; height: 60px; border-radius: 12px;
  background-size: cover; background-position: center;
  flex-shrink: 0; transition: transform .5s;
}
.cc-item:hover .thumb { transform: scale(1.06); }
.cc-item h4 { font-size: .9rem; font-weight: 600; color: var(--char); line-height: 1.2; margin-bottom: .15rem; }
.cc-item .desc { font-size: .72rem; color: var(--ink); line-height: 1.3; }
.cc-item .price { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: var(--spice); margin-top: .2rem; }
.cc-add {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--char); color: var(--gold-2);
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; align-self: center; flex-shrink: 0;
  transition: all .25s;
}
.cc-add:hover { background: var(--spice); color: var(--cream); transform: rotate(90deg); }
.cc-qty { display: inline-flex; align-items: center; gap: .5rem; align-self: center; }
.cc-qty button {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--char); color: var(--gold-2);
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; font-size: 1rem;
  transition: all .2s;
}
.cc-qty button:hover { background: var(--spice); color: var(--cream); }
.cc-qty .v { font-weight: 600; min-width: 1.5rem; text-align: center; }
.cc-line {
  display: flex; align-items: center; gap: .7rem;
  padding: .65rem; border-radius: 12px;
  background: rgba(251,248,242,.05);
  border: 1px solid rgba(251,248,242,.08);
  animation: slideIn .35s cubic-bezier(.2,.7,.2,1);
}
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.cc-line .lthumb { width: 40px; height: 40px; border-radius: 8px; background-size: cover; background-position: center; flex-shrink: 0; }
.cc-line .lname { font-size: .85rem; font-weight: 500; color: var(--cream); }
.cc-line .lprice { font-size: .75rem; color: rgba(251,248,242,.55); }
.cc-line .lqty { display: inline-flex; align-items: center; gap: .4rem; }
.cc-line .lqty button {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(224,195,132,.15); color: var(--gold-2);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.cc-line .lqty button:hover { background: var(--spice); color: var(--cream); }
.cc-line .lv { color: var(--cream); font-weight: 600; min-width: 1.2rem; text-align: center; font-size: .85rem; }
.num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--char); color: var(--gold-2);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 600;
  font-family: 'Cormorant Garamond', serif; flex-shrink: 0;
}

/* ─── Modal ───────────────────────────────────────── */
#cc-modal.open { display: flex !important; }
#cc-modal.open #cc-modal-bg { animation: fadeIn .35s ease both; }
#cc-modal.open #cc-modal-card { animation: popIn .55s cubic-bezier(.2,.8,.2,1) both; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { from { opacity: 0; transform: scale(.85) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.confetti-dot {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  opacity: 0; animation: confettiDot 2.5s ease-out forwards;
}
@keyframes confettiDot {
  0% { opacity: 0; transform: translate(0,0); }
  10% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--cx), var(--cy)); }
}
#cc-check polyline { stroke-dasharray: 30; stroke-dashoffset: 30; }
#cc-modal.open #cc-check polyline { animation: drawCheck .8s ease-out .2s both; }
@keyframes drawCheck { from { stroke-dashoffset: 30; } to { stroke-dashoffset: 0; } }

/* ─── Gallery grid ────────────────────────────────── */
.gallery-mosaic { display: grid; grid-template-columns: repeat(12, 1fr); gap: .75rem; }
@media (max-width: 768px) { .gallery-mosaic { grid-template-columns: repeat(6, 1fr); gap: .5rem; } }
.gallery-mosaic > div { overflow: hidden; border-radius: var(--radius-sm); }
.gallery-mosaic > div .gm-img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.gallery-mosaic > div:hover .gm-img { transform: scale(1.1); }
.gallery-mosaic > div::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(205,168,92,.4) 0%, rgba(199,65,31,.3) 50%, transparent 80%);
  opacity: 0; transition: opacity .5s;
}
.gallery-mosaic > div:hover::after { opacity: 1; }

/* ─── Image auto slider ───────────────────────────── */
.auto-slider-outer {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.auto-slider-track { display: flex; gap: 1rem; animation: autoSlide 38s linear infinite; }
@keyframes autoSlide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.slide-item {
  flex-shrink: 0; width: 260px; height: 320px; border-radius: 18px;
  background-size: cover; background-position: center;
  transition: transform .5s, filter .5s;
}
.slide-item:hover { transform: scale(1.06) translateY(-6px); filter: brightness(1.12) saturate(1.15); }

/* ─── Scrollbar ───────────────────────────────────── */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: var(--char); border-radius: 8px; }

/* ─── Utilities ───────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.pt-nav { padding-top: 68px; }

/* ═══════════════════════════════════════════════════
   BENGALI LANGUAGE SUPPORT (বাংলা — Bangladesh)
   ═══════════════════════════════════════════════════ */
html.lang-bn,
html.lang-bn body,
html.lang-bn .display,
html.lang-bn .eyebrow,
html.lang-bn .hand {
  font-family: 'Noto Sans Bengali', 'Inter', system-ui, sans-serif;
}
html.lang-bn .display em {
  font-style: normal; /* Bengali has no italic */
  color: var(--spice);
  font-weight: 600;
}
html.lang-bn .eyebrow {
  letter-spacing: .08em; /* tighter for Bengali */
}
html.lang-bn .hero-title,
html.lang-bn .offer-title,
html.lang-bn .ps-text h2 { line-height: 1.25; }

/* ═══════════════════════════════════════════════════
   UBER EATS BUTTON
   ═══════════════════════════════════════════════════ */
.btn-uber {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem; border-radius: 9999px;
  background: #06C167; color: #FFFFFF;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 20px -8px rgba(6,193,103,.5), inset 0 1px 0 rgba(255,255,255,.2);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), filter .3s, box-shadow .3s;
}
.btn-uber:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 12px 28px -8px rgba(6,193,103,.6);
}
.btn-uber svg { flex-shrink: 0; }

.nav-mobile-actions {
  display: flex; flex-direction: column; gap: 1rem; align-items: center;
  margin-top: 1.5rem;
}
.nav-mobile-actions .btn-uber,
.nav-mobile-actions .btn-primary {
  padding: .85rem 1.5rem;
  font-size: .95rem;
}

/* 3-language lang-pill */
.lang-pill button { padding: .3rem .6rem; font-size: .7rem; display: inline-flex; align-items: center; gap: .3rem; }
.lang-pill button .flag { width: 18px; height: 13px; border-radius: 2px; overflow: hidden; display: inline-flex; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(255,255,255,.18); }
.lang-pill button .flag svg { width: 100%; height: 100%; display: block; }
html.lang-bn .lang-pill button { font-family: 'Inter', sans-serif; } /* keep code latin */

/* ═══════════════════════════════════════════════════
   PAGE TRANSITIONS
   ═══════════════════════════════════════════════════ */
#pt-overlay {
  position: fixed; inset: 0;
  background: var(--char-2);
  z-index: 9999; pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}
#pt-overlay.show { opacity: 1; pointer-events: all; }
body.pt-in {
  animation: ptIn .7s cubic-bezier(.2,.7,.2,1);
}
@keyframes ptIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════
   CARD STACK PORTFOLIO
   ═══════════════════════════════════════════════════ */
.cs-section {
  padding: 5rem 0; background: var(--cream);
  overflow: hidden;
}
@media (min-width: 1024px) { .cs-section { padding: 7rem 0; } }
.cs-stage {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  width: 100%; min-height: 480px;
  perspective: 1200px;
  transform-style: preserve-3d;
  margin-bottom: 2rem;
}
.cs-card {
  position: absolute; bottom: 0;
  border-radius: 24px; overflow: hidden;
  cursor: pointer;
  border: 3px solid rgba(14,11,8,.1);
  box-shadow: 0 30px 50px -20px rgba(14,11,8,.4), 0 12px 24px -12px rgba(14,11,8,.3);
  transition: transform .65s cubic-bezier(.2,.7,.2,1), box-shadow .5s, border-color .5s;
  will-change: transform;
  transform-style: preserve-3d;
}
.cs-card.active {
  border-color: var(--gold-2);
  box-shadow: 0 40px 70px -20px rgba(199,65,31,.35), 0 20px 40px -16px rgba(14,11,8,.45);
  cursor: default;
}
.cs-card-inner {
  position: relative; width: 100%; height: 100%;
  background-size: cover; background-position: center;
}
.cs-card-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(14,11,8,.92) 100%);
}
.cs-card-content {
  position: absolute; left: 1.5rem; right: 1.5rem; bottom: 1.5rem;
  color: var(--cream); z-index: 2;
}
.cs-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.85rem;
  font-weight: 500;
  margin-bottom: .25rem;
  letter-spacing: -.01em;
}
.cs-card-sub {
  font-size: .85rem;
  color: var(--gold-2);
  letter-spacing: .02em;
  margin-bottom: .85rem;
}
.cs-card-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem; border-radius: 9999px;
  background: linear-gradient(180deg,#D74A26,#B8351A); color: var(--cream);
  font-size: .75rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 20px -8px rgba(199,65,31,.6);
  border: 1px solid rgba(224,195,132,.4);
  transition: transform .3s, filter .3s;
}
.cs-card-cta:hover { transform: translateY(-2px); filter: brightness(1.08); }

.cs-dots {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem;
}
.cs-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(14,11,8,.2); border: none; padding: 0; cursor: pointer;
  transition: all .3s;
}
.cs-dot.on { background: var(--char); width: 22px; border-radius: 9999px; }
.cs-dot:hover { background: var(--spice); }

/* ═══════════════════════════════════════════════════
   PHONE SHOWCASE (Click & Collect mockup)
   ═══════════════════════════════════════════════════ */
.ps-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(160deg, var(--char-2) 0%, var(--char) 60%, #1a140e 100%);
  color: var(--cream);
  overflow: hidden;
}
@media (min-width: 1024px) { .ps-section { padding: 8rem 0; } }
.ps-section::before {
  content: ""; position: absolute; inset: 0;
  background-size: 60px 60px;
  background-image:
    linear-gradient(to right, rgba(224,195,132,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(224,195,132,.04) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
}
.ps-inner {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
  padding: 0 1.25rem;
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) { .ps-inner { grid-template-columns: 1fr 1fr; padding: 0 4rem; gap: 5rem; } }

.ps-text > * { opacity: 1; } /* GSAP will animate */
.ps-text .eyebrow { color: var(--gold-2); display: inline-block; margin-bottom: 1rem; }
.ps-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--cream);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: .95;
  margin-bottom: 1.25rem;
}
.ps-text h2 em { font-style: italic; color: var(--spice-2); }
.ps-text p {
  color: rgba(251,248,242,.75);
  line-height: 1.7;
  font-size: 1.02rem;
  max-width: 480px;
  margin-bottom: 2rem;
}
.ps-text .ps-text-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.ps-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(224,195,132,.2);
  max-width: 480px;
}
.ps-stat .ps-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2rem; font-weight: 500;
  color: var(--gold-2);
  display: block;
}
.ps-stat .ps-stat-lbl {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(251,248,242,.5);
  margin-top: .2rem; display: block;
}

.ps-phone-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 520px;
  perspective: 1100px;
}
@media (min-width: 1024px) { .ps-phone-wrap { min-height: 620px; } }

.ps-phone {
  position: relative;
  width: 270px; height: 540px;
  border-radius: 44px;
  background: #111;
  box-shadow:
    inset 0 0 0 2px #52525B,
    inset 0 0 0 7px #000,
    0 50px 90px -20px rgba(0,0,0,.85),
    0 25px 40px -12px rgba(0,0,0,.7),
    0 0 80px -10px rgba(199,65,31,.25);
  transform-style: preserve-3d;
}
@media (min-width: 1024px) { .ps-phone { width: 290px; height: 580px; } }

/* hardware buttons */
.ps-phone::before, .ps-phone::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #404040 0%, #171717 100%);
  box-shadow: inset -1px 0 1px rgba(255,255,255,.15), inset 1px 0 2px rgba(0,0,0,.8);
}
.ps-phone::before {
  top: 140px; left: -3px; width: 3px; height: 50px;
  border-radius: 4px 0 0 4px;
}
.ps-phone::after {
  top: 170px; right: -3px; width: 3px; height: 70px;
  border-radius: 0 4px 4px 0;
}

.ps-screen {
  position: absolute; inset: 7px;
  background: linear-gradient(170deg, #050914 0%, #0e1424 100%);
  border-radius: 38px;
  overflow: hidden;
  color: #fff;
  display: flex; flex-direction: column;
  box-shadow: inset 0 0 15px rgba(0,0,0,1);
}
.ps-screen::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(110deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,0) 45%);
  z-index: 40;
}

.ps-notch {
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px; background: #000; border-radius: 9999px; z-index: 50;
  display: flex; align-items: center; justify-content: flex-end; padding-right: 12px;
}
.ps-notch-led {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,.8);
  animation: ps-pulse 2s infinite;
}
@keyframes ps-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

.ps-app {
  position: relative; z-index: 10;
  flex: 1; padding: 50px 18px 24px;
  display: flex; flex-direction: column;
}
.ps-app-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.ps-app-head-l { display: flex; flex-direction: column; }
.ps-app-head-lbl {
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(224,195,132,.7); font-weight: 600;
}
.ps-app-head-title {
  font-size: 18px; font-weight: 700; color: #fff; margin-top: 2px;
  letter-spacing: -.02em;
}
.ps-app-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--spice), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-weight: 700; font-size: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
}

.ps-ring-wrap {
  position: relative;
  width: 168px; height: 168px;
  margin: 0 auto 18px;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,.7));
}
.ps-ring-svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ps-ring-bg { fill: none; stroke: rgba(255,255,255,.05); stroke-width: 12; }
.ps-ring {
  fill: none; stroke: var(--spice-2); stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 402; stroke-dashoffset: 402;
}
.ps-ring-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0 30px;            /* garde le texte à l'intérieur du cercle */
  text-align: center;
}
.ps-counter { font-size: 36px; font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1; }
.ps-counter-lbl {
  font-size: 8px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-2);
  margin-top: 5px; font-weight: 600;
  max-width: 104px; line-height: 1.35;   /* passe sur 2 lignes au lieu de déborder */
}

.ps-widgets { display: flex; flex-direction: column; gap: 9px; }
.ps-widget {
  background: linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.01) 100%);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 16px; padding: 10px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,.3), inset 0 1px 1px rgba(255,255,255,.05);
}
.ps-widget-icon {
  width: 34px; height: 34px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(199,65,31,.25), rgba(199,65,31,.06));
  border: 1px solid rgba(224,195,132,.2);
}
.ps-widget-icon.green { background: linear-gradient(135deg, rgba(34,197,94,.25), rgba(34,197,94,.06)); border-color: rgba(34,197,94,.3); }
.ps-widget-text { flex: 1; }
.ps-widget-name { font-size: 11px; font-weight: 600; color: #fff; }
.ps-widget-sub { font-size: 9px; color: rgba(255,255,255,.45); margin-top: 1px; }
.ps-widget-val { font-size: 12px; color: var(--gold-2); font-weight: 600; }

.ps-home-bar {
  position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 4px; border-radius: 9999px;
  background: rgba(255,255,255,.2);
}

/* Floating badges */
.ps-badge {
  position: absolute; z-index: 30;
  display: flex; align-items: center; gap: .65rem;
  padding: .75rem .85rem; border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(224,195,132,.18);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.1);
}
.ps-badge-emoji {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(199,65,31,.25), rgba(199,65,31,.06));
  border: 1px solid rgba(224,195,132,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.ps-badge-name { font-size: .75rem; font-weight: 600; color: #fff; letter-spacing: -.01em; }
.ps-badge-sub { font-size: .65rem; color: rgba(224,195,132,.65); margin-top: 1px; }
.ps-badge.top-left { top: 8%; left: -10px; }
.ps-badge.bottom-right { bottom: 12%; right: -10px; }
@media (min-width: 768px) {
  .ps-badge.top-left { top: 10%; left: -40px; }
  .ps-badge.bottom-right { bottom: 18%; right: -40px; }
}
@media (min-width: 1280px) {
  .ps-badge.top-left { left: -80px; }
  .ps-badge.bottom-right { right: -80px; }
}

/* ═══════════════════════════════════════════════════
   CHATBOT WIDGET
   ═══════════════════════════════════════════════════ */
#ct-chatbot {
  position: fixed; bottom: 1.25rem; right: 1.25rem;
  z-index: 200;
  font-family: 'Inter', system-ui, sans-serif;
}
html.lang-bn #ct-chatbot { font-family: 'Noto Sans Bengali', 'Inter', sans-serif; }

.ct-bubble {
  position: relative;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(180deg, #D74A26 0%, #B8351A 100%);
  color: var(--cream);
  border: 1px solid rgba(224,195,132,.5);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 20px 40px -12px rgba(199,65,31,.55), inset 0 1px 0 rgba(255,255,255,.18);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, filter .35s;
}
.ct-bubble:hover {
  transform: translateY(-3px) scale(1.04);
  filter: brightness(1.08);
  box-shadow: 0 26px 50px -10px rgba(199,65,31,.7);
}
.ct-bubble svg { color: var(--cream); }
.ct-bubble-dot {
  position: absolute; top: 6px; right: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #22c55e;
  border: 2px solid var(--char-2);
  box-shadow: 0 0 8px rgba(34,197,94,.6);
  animation: ps-pulse 2s infinite;
}

.ct-panel {
  position: absolute; bottom: calc(100% + .85rem); right: 0;
  width: min(360px, calc(100vw - 2.5rem));
  height: min(560px, calc(100vh - 6rem));
  background: var(--cream);
  border-radius: 22px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 40px 80px -16px rgba(14,11,8,.45), 0 0 0 1px rgba(224,195,132,.3);
  opacity: 0; transform: translateY(15px) scale(.97);
  pointer-events: none;
  transition: opacity .35s cubic-bezier(.2,.7,.2,1), transform .35s cubic-bezier(.2,.7,.2,1);
}
.ct-panel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.ct-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, var(--char) 0%, var(--char-2) 100%);
  color: var(--cream);
  border-bottom: 1px solid rgba(224,195,132,.15);
}
.ct-head-id { display: flex; align-items: center; gap: .75rem; }
.ct-head-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: url('LOGO.jpeg') center/cover;
  box-shadow: 0 0 0 1px rgba(224,195,132,.4), 0 4px 12px rgba(0,0,0,.4);
  flex-shrink: 0;
}
.ct-head-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.1rem;
  color: var(--gold-2);
  line-height: 1.15;
}
html.lang-bn .ct-head-title { font-family: 'Noto Sans Bengali', sans-serif; font-style: normal; font-weight: 600; }
.ct-head-sub { font-size: .7rem; color: rgba(251,248,242,.6); display: flex; align-items: center; gap: .35rem; }
.ct-online-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,.7);
}
.ct-close {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(251,248,242,.08); color: var(--cream);
  border: 1px solid rgba(251,248,242,.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .25s;
}
.ct-close:hover { background: var(--spice); border-color: var(--spice); }

.ct-body {
  flex: 1; padding: 1rem; overflow-y: auto;
  background:
    radial-gradient(circle at 0% 0%, rgba(199,65,31,.04), transparent 50%),
    var(--cream);
  scrollbar-width: thin;
}
.ct-body::-webkit-scrollbar { width: 5px; }
.ct-body::-webkit-scrollbar-thumb { background: rgba(14,11,8,.15); border-radius: 4px; }

.ct-msg {
  max-width: 85%; margin-bottom: .75rem;
  padding: .7rem .9rem; border-radius: 16px;
  font-size: .88rem; line-height: 1.5;
  animation: ct-msgIn .35s cubic-bezier(.2,.7,.2,1);
}
@keyframes ct-msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ct-msg.bot {
  background: var(--cream-2);
  border: 1px solid rgba(14,11,8,.06);
  color: var(--char);
  border-bottom-left-radius: 4px;
  margin-right: auto;
}
.ct-msg.user {
  background: linear-gradient(180deg, var(--char) 0%, var(--char-2) 100%);
  color: var(--cream);
  border-bottom-right-radius: 4px;
  margin-left: auto;
  box-shadow: 0 4px 12px -4px rgba(14,11,8,.3);
}
.ct-msg.bot a { color: var(--spice); font-weight: 500; }
.ct-msg.user a { color: var(--gold-2); }
.ct-msg.bot b { color: var(--char); font-weight: 600; }
.ct-msg.user b { color: var(--cream); }

.ct-typing { display: inline-flex; align-items: center; gap: 4px; padding: .8rem .9rem; }
.ct-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink); opacity: .35;
  animation: ct-bounce 1.2s infinite;
}
.ct-typing span:nth-child(2) { animation-delay: .15s; }
.ct-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes ct-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: .35; }
  30% { transform: translateY(-5px); opacity: .9; }
}

.ct-quick {
  display: flex; flex-wrap: wrap; gap: .35rem;
  padding: .65rem .85rem .35rem;
  border-top: 1px solid rgba(14,11,8,.06);
  background: var(--cream-2);
}
.ct-chip {
  padding: .35rem .75rem; border-radius: 9999px;
  background: var(--cream); color: var(--char);
  border: 1px solid rgba(14,11,8,.1);
  font-size: .72rem; cursor: pointer;
  transition: all .2s;
}
.ct-chip:hover { background: var(--spice); color: var(--cream); border-color: var(--spice); transform: translateY(-1px); }

.ct-form {
  display: flex; gap: .5rem;
  padding: .75rem .85rem .85rem;
  border-top: 1px solid rgba(14,11,8,.06);
  background: var(--cream);
}
.ct-form input {
  flex: 1; padding: .65rem .9rem;
  border-radius: 9999px;
  border: 1px solid rgba(14,11,8,.12);
  font-size: .88rem; font-family: inherit;
  background: var(--cream-2);
  outline: none;
  transition: border-color .2s, background .2s;
}
.ct-form input:focus { border-color: var(--spice); background: var(--cream); }
.ct-form button {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(180deg, #D74A26 0%, #B8351A 100%);
  color: var(--cream);
  border: 1px solid rgba(224,195,132,.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 14px -4px rgba(199,65,31,.5);
  transition: transform .2s, filter .2s;
}
.ct-form button:hover { transform: translateY(-1px) rotate(-8deg); filter: brightness(1.08); }

/* mobile cursor restore in chatbot */
#ct-chatbot, #ct-chatbot * { cursor: auto; }
#ct-chatbot button, #ct-chatbot a { cursor: pointer; }

@media (max-width: 640px) {
  #ct-chatbot { bottom: 1rem; right: 1rem; }
  .ct-bubble { width: 52px; height: 52px; }
  .ct-panel { width: calc(100vw - 2rem); right: -.25rem; }
}

/* ═══════════════════════════════════════════════════
   LEGAL PAGES — Mentions, CGV, Confidentialité, Cookies
   ═══════════════════════════════════════════════════ */

.legal-page {
  padding-top: 68px;
  min-height: 100vh;
}

.legal-hero {
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  border-bottom: 1px solid rgba(14,11,8,.08);
  padding: 5rem 1.25rem 4rem;
}
@media (min-width: 1024px) {
  .legal-hero { padding: 7rem 4rem 5rem; }
}

.legal-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal-eyebrow {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--spice);
  font-weight: 600;
  margin-bottom: 1rem;
  padding: .4rem .9rem;
  border: 1px solid rgba(199,65,31,.25);
  border-radius: 999px;
  background: rgba(199,65,31,.05);
}

.legal-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--char);
  margin-bottom: 1.5rem;
}
.legal-title em { font-style: italic; color: var(--spice); font-weight: 400; }

.legal-sub {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1.25rem;
  max-width: 70ch;
}

.legal-updated {
  font-size: .82rem;
  color: rgba(58,49,42,.7);
  font-style: italic;
  letter-spacing: .04em;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.25rem 6rem;
}
@media (min-width: 1024px) {
  .legal-content { padding: 5rem 0 8rem; }
}

.legal-content section {
  margin-bottom: 3rem;
  scroll-margin-top: 100px;
}

.legal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  color: var(--char);
  margin-bottom: 1rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid rgba(205,168,92,.35);
  letter-spacing: -.01em;
}

.legal-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--char);
  margin: 1.75rem 0 .75rem;
}

.legal-content p {
  font-size: .98rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1rem;
}

.legal-content a {
  color: var(--spice);
  text-decoration: underline;
  text-decoration-color: rgba(199,65,31,.4);
  text-underline-offset: 3px;
  transition: color .2s;
}
.legal-content a:hover { color: var(--spice-2); text-decoration-color: var(--spice-2); }

.legal-content strong { color: var(--char); font-weight: 600; }

.legal-content code {
  font-family: 'JetBrains Mono', 'Menlo', monospace;
  background: rgba(14,11,8,.05);
  padding: .15rem .4rem;
  border-radius: 5px;
  font-size: .85em;
  color: var(--char);
}

.legal-content mark {
  background: linear-gradient(180deg, transparent 60%, rgba(224,195,132,.55) 60%);
  padding: .05rem .25rem;
  color: var(--char);
  font-weight: 600;
  border-radius: 2px;
}

.legal-info {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.legal-info li {
  position: relative;
  padding: .5rem 0 .5rem 1.5rem;
  font-size: .96rem;
  line-height: 1.6;
  color: var(--ink);
  border-bottom: 1px solid rgba(14,11,8,.05);
}
.legal-info li:last-child { border-bottom: none; }
.legal-info li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.legal-info[class*="ordered"] li,
ol.legal-info {
  counter-reset: legal-counter;
}
ol.legal-info li {
  counter-increment: legal-counter;
  padding-left: 2.2rem;
}
ol.legal-info li::before {
  content: counter(legal-counter);
  background: transparent;
  width: auto;
  height: auto;
  top: .5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--spice);
  font-weight: 600;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--cream);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px -16px rgba(14,11,8,.15);
  font-size: .88rem;
}
.legal-table thead {
  background: var(--char);
  color: var(--cream);
}
.legal-table th {
  padding: .85rem 1rem;
  text-align: left;
  font-weight: 500;
  letter-spacing: .04em;
  font-size: .78rem;
  text-transform: uppercase;
  color: var(--gold-2);
}
.legal-table td {
  padding: .85rem 1rem;
  border-top: 1px solid rgba(14,11,8,.06);
  color: var(--ink);
  vertical-align: top;
  line-height: 1.55;
}
.legal-table tr:hover td { background: rgba(205,168,92,.05); }
@media (max-width: 640px) {
  .legal-table { font-size: .8rem; }
  .legal-table th, .legal-table td { padding: .6rem .55rem; }
}

.legal-back {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(14,11,8,.08);
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   COOKIE BANNER — discreet, premium, single-tap dismiss
   ═══════════════════════════════════════════════════ */

.ct-cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9998;
  background: var(--char);
  color: var(--cream);
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.5), 0 0 0 1px rgba(224,195,132,.18);
  display: flex;
  flex-direction: column;
  gap: .9rem;
  font-size: .88rem;
  line-height: 1.55;
  max-width: 540px;
  margin-left: auto;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), opacity .4s;
}
.ct-cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.ct-cookie-banner p {
  margin: 0;
  color: rgba(251,248,242,.85);
}
.ct-cookie-banner strong {
  color: var(--gold-2);
  font-weight: 600;
}
.ct-cookie-banner a {
  color: var(--gold-2);
  text-decoration: underline;
  text-decoration-color: rgba(224,195,132,.4);
  text-underline-offset: 2px;
}
.ct-cookie-banner a:hover { color: var(--cream); }
.ct-cookie-actions {
  display: flex;
  gap: .6rem;
  align-items: center;
}
.ct-cookie-ok {
  flex: 1;
  background: linear-gradient(180deg, var(--spice-2), var(--spice));
  color: var(--cream);
  border: none;
  padding: .65rem 1rem;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .15s, filter .2s;
}
.ct-cookie-ok:hover { transform: translateY(-1px); filter: brightness(1.08); }
@media (min-width: 640px) {
  .ct-cookie-banner {
    flex-direction: row;
    align-items: center;
    padding: 1.1rem 1.5rem;
  }
  .ct-cookie-actions { flex-shrink: 0; }
  .ct-cookie-ok { flex: 0 0 auto; }
}

/* ═══════════════════════════════════════════════════
   FOOTER — Legal sub-row
   ═══════════════════════════════════════════════════ */

.footer-legal {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(251,248,242,.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  justify-content: center;
  font-size: .78rem;
  letter-spacing: .03em;
}
.footer-legal a {
  color: rgba(251,248,242,.6);
  text-decoration: none;
  transition: color .2s;
}
.footer-legal a:hover { color: var(--gold-2); }
@media (min-width: 768px) {
  .footer-legal { justify-content: flex-start; }
}

/* ═══════════════════════════════════════════════════
   PHOTO CROUSTY OFFICIELLE (crousty-bowl.jpeg) — texte "CROUSTY" + logo intégrés
   On affiche l'image ENTIÈRE (contain) sur fond sombre pour ne jamais
   couper le texte (sinon "cover" rogne le haut où est écrit CROUSTY).
   ═══════════════════════════════════════════════════ */
[style*="crousty-bowl.jpeg"] {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-color: #15110D;
}

/* ═══════════════════════════════════════════════════
   FIX MOBILE NAV — masquer Uber/Commander sous 1024px
   (la classe .hidden-mobile était utilisée mais jamais définie :
    c'est ce qui écrasait le bouton menu et coupait "Commander")
   ═══════════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .hidden-mobile { display: none !important; }
  .nav-actions { gap: .5rem; }
}

/* ═══════════════════════════════════════════════════
   MENU MOBILE — animation premium d'ouverture
   ═══════════════════════════════════════════════════ */
/* La barre du haut (logo + langues + bouton X) doit rester AU-DESSUS
   de l'overlay plein écran, sinon impossible de refermer le menu. */
.nav-inner { position: relative; z-index: 55; }
.nav-hamburger { position: relative; z-index: 56; }

.nav-mobile {
  gap: 1.75rem;
  background:
    radial-gradient(circle at 50% 30%, rgba(199,65,31,.22), transparent 60%),
    rgba(14,11,8,.98);
}
.nav-mobile::before {
  /* halo de projecteur qui pulse derrière le menu */
  content: ""; position: absolute; top: 28%; left: 50%;
  width: 320px; height: 320px; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(224,195,132,.18), transparent 65%);
  pointer-events: none; opacity: 0; transition: opacity .6s .15s;
}
.nav-mobile.open::before { opacity: 1; }
.nav-mobile .nav-mobile-brand {
  position: absolute; top: 5.5rem; left: 0; right: 0;
  text-align: center; color: var(--gold-2);
  font-size: .72rem; letter-spacing: .35em; text-transform: uppercase;
  opacity: 0; transition: opacity .5s .2s;
}
.nav-mobile.open .nav-mobile-brand { opacity: .85; }
.nav-mobile a {
  position: relative;
  opacity: 0; transform: translateY(34px);
  transition: opacity .55s cubic-bezier(.2,.7,.2,1),
              transform .55s cubic-bezier(.2,.7,.2,1),
              color .25s;
}
.nav-mobile.open a { opacity: 1; transform: translateY(0); }
.nav-mobile.open a:nth-of-type(1) { transition-delay: .14s; }
.nav-mobile.open a:nth-of-type(2) { transition-delay: .21s; }
.nav-mobile.open a:nth-of-type(3) { transition-delay: .28s; }
.nav-mobile.open a:nth-of-type(4) { transition-delay: .35s; }
/* soulignement doré qui se déploie au tap/survol */
.nav-mobile a::after {
  content: ""; position: absolute; left: 50%; bottom: -.4rem;
  width: 0; height: 2px; background: linear-gradient(90deg, var(--spice-2), var(--gold-2));
  transform: translateX(-50%); transition: width .35s ease;
  border-radius: 2px;
}
.nav-mobile a:active::after,
.nav-mobile a:hover::after { width: 60%; }
.nav-mobile a:active { color: var(--gold-2); }
.nav-mobile .nav-mobile-actions {
  opacity: 0; transform: translateY(34px);
  transition: opacity .55s .42s cubic-bezier(.2,.7,.2,1), transform .55s .42s cubic-bezier(.2,.7,.2,1);
}
.nav-mobile.open .nav-mobile-actions { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════
   MENU PC — effet "projecteur" au survol
   ═══════════════════════════════════════════════════ */
.nav-links a::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 96px; height: 54px;
  transform: translate(-50%,-50%) scale(.5);
  background: radial-gradient(ellipse at center, rgba(224,195,132,.4) 0%, rgba(224,195,132,.12) 40%, transparent 72%);
  border-radius: 50%; opacity: 0; pointer-events: none;
  transition: opacity .35s ease, transform .45s cubic-bezier(.2,.7,.2,1);
  z-index: -1;
}
.nav-links a:hover::before { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.nav-links a:hover {
  color: #fff;
  text-shadow: 0 0 20px rgba(224,195,132,.85), 0 0 8px rgba(224,195,132,.6);
}

/* ═══════════════════════════════════════════════════
   CURSEUR — fumée / poudre d'épice (desktop)
   ═══════════════════════════════════════════════════ */
.spice-particle {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 10px; height: 10px; border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(224,160,90,.9) 0%, rgba(199,65,31,.55) 45%, rgba(199,65,31,0) 75%);
  filter: blur(1px);
  will-change: transform, opacity;
  animation: spiceDrift 1.1s ease-out forwards;
}
@keyframes spiceDrift {
  0%   { opacity: .85; transform: translate(-50%, -50%) scale(.5); }
  100% { opacity: 0;   transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(2.4); }
}
@media (max-width: 1024px) { .spice-particle { display: none; } }

/* ═══════════════════════════════════════════════════
   AVIS — bande horizontale (desktop + mobile)
   ═══════════════════════════════════════════════════ */
.rev-rows { display: flex; flex-direction: column; gap: 1rem; }
.rev-strip-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.rev-strip { display: flex; gap: 1rem; width: max-content; will-change: transform; }
.rev-strip.rev-ltr { animation: revRowScroll 48s linear infinite; }
.rev-strip.rev-rtl { animation: revRowScrollRev 56s linear infinite; }
.rev-strip-wrap:hover .rev-strip { animation-play-state: paused; }
@keyframes revRowScroll    { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes revRowScrollRev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.rev-strip .tcol-card { width: 300px; flex-shrink: 0; }
@media (max-width: 640px) {
  .rev-strip.rev-ltr { animation-duration: 32s; }
  .rev-strip.rev-rtl { animation-duration: 38s; }
  .rev-strip .tcol-card { width: 250px; }
}
@media (prefers-reduced-motion: reduce) {
  .rev-strip { animation: none !important; }
}

