/* === Nayou — global styles === */
:root {
  --teal: #099B9A;
  --teal-deep: #06797a;
  --teal-tint: #e8f3f3;
  --gold: #E1B538;
  --gold-soft: #f3e3b3;
  --ink: #1d2a2a;
  --ink-soft: #4a5a5a;
  --mute: #8a9595;
  --cream: #faf5ec;
  --cream-2: #f3ecdb;
  --paper: #ffffff;
  --line: #e6dfce;
  --line-2: #efe7d3;
  --r: 12px;
  --shadow: 0 4px 24px rgba(29,42,42,.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Manrope', 'Helvetica Neue', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  font-size: 15px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.serif { font-family: 'Cormorant Garamond', 'Georgia', serif; font-weight: 500; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

.container { width: 100%; max-width: 1360px; margin: 0 auto; padding: 0 32px; }

/* placeholder image */
.ph {
  background:
    repeating-linear-gradient(135deg, rgba(9,155,154,.06) 0 10px, rgba(9,155,154,.02) 10px 20px),
    linear-gradient(180deg, #ece2cd, #f1e9d4);
  position: relative;
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 0 12px 0;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  color: rgba(29,42,42,.45);
  text-transform: uppercase;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  font-weight: 600; font-size: 13px;
  letter-spacing: .04em; text-transform: uppercase;
  background: var(--teal); color: white;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 1px 0 rgba(0,0,0,.04); cursor: pointer;
}
.btn:hover { background: var(--teal-deep); transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn.ghost:hover { background: var(--ink); color: white; }
.btn.gold { background: var(--gold); color: var(--ink); }
.btn.gold:hover { background: #cfa42a; }
.btn.sm { padding: 10px 18px; font-size: 11px; }
.btn.full { width: 100%; justify-content: center; }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal);
}

h1, h2, h3, h4 { margin: 0; font-weight: 500; }
h1.display { font-family: 'Cormorant Garamond', serif; font-size: clamp(48px, 6vw, 92px); line-height: .98; letter-spacing: -.01em; }
h2.section { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 56px); line-height: 1.05; letter-spacing: -.005em; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: rgba(9,155,154,.3); border-radius: 99px; }
::-webkit-scrollbar-track { background: transparent; }

/* ====== INTRO ====== */
.intro {
  position: fixed; inset: 0; z-index: 80;
  background: #06403f; overflow: hidden;
  display: grid; place-items: center; color: white;
  transition: opacity .7s ease, visibility .7s ease;
}
.intro.leaving { animation: intro-out .8s forwards ease-in; }
@keyframes intro-out { to { opacity: 0; transform: scale(1.04); } }

.intro__video {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #0a5a59 0%, #06403f 60%, #042a2a 100%);
}
.intro__vid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.intro__vid-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(4, 26, 26, 0.52);
}
.intro__video::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 2px, transparent 2px 4px),
    radial-gradient(circle at center, transparent 30%, rgba(0,0,0,.35) 100%);
  mix-blend-mode: overlay;
}
.intro__blobs span {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: .55;
  animation: floaty 12s ease-in-out infinite;
}
.intro__blobs span:nth-child(1){ width:520px;height:520px;background:#0fb5b3;left:-80px;top:-120px; }
.intro__blobs span:nth-child(2){ width:380px;height:380px;background:#e1b538;right:-60px;top:30%;animation-delay:-3s; }
.intro__blobs span:nth-child(3){ width:440px;height:440px;background:#0fb5b3;left:30%;bottom:-160px;animation-delay:-6s; }
@keyframes floaty {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-30px) scale(1.06); }
}
.intro__noise {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/></svg>");
  opacity: .15;
}
.intro__content {
  position: relative; z-index: 2; text-align: center; padding: 0 24px;
  display: grid; gap: 32px; justify-items: center;
  animation: fade-up 1.1s .15s both ease-out;
}
.intro__logo { width: min(420px, 70vw); }
.intro__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.4vw, 32px); font-style: italic; font-weight: 400;
  color: rgba(255,255,255,.92); max-width: 640px;
}
.intro__sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.6);
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.intro__enter {
  position: absolute; top: 28px; right: 32px; z-index: 3;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px 14px 26px;
  border: 1px solid rgba(255,255,255,.4); border-radius: 999px;
  color: white; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  backdrop-filter: blur(8px); background: rgba(255,255,255,.06);
  transition: all .25s ease; cursor: pointer;
}
.intro__enter:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); padding-right: 28px; }
.intro__enter svg { transition: transform .25s ease; }
.intro__enter:hover svg { transform: translateX(4px); }
.intro__sound {
  position: absolute; top: 28px; left: 32px; z-index: 3;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px;
  color: rgba(255,255,255,.7); font-size: 11px; letter-spacing: 0; text-transform: uppercase;
}
.intro__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.5);
  display: grid; justify-items: center; gap: 8px;
}
.intro__scroll::after {
  content: ''; width: 1px; height: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.6), transparent);
  animation: drop 1.6s ease-in-out infinite;
}
@keyframes drop { 0%{transform:translateY(-6px);opacity:0;} 30%{opacity:1;} 100%{transform:translateY(6px);opacity:0;} }
.intro__play {
  position: absolute; left: 50%; bottom: 110px; transform: translateX(-50%);
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35); display: grid; place-items: center; color: white;
  transition: all .25s ease;
}
.intro__play:hover { background: rgba(255,255,255,.1); }

/* ====== TOP BAR ====== */
.topbar { background: var(--ink); color: rgba(255,255,255,.85); font-size: 12px; border-bottom: 1px solid rgba(255,255,255,.05); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.topbar__links { display: flex; gap: 22px; align-items: center; }
.topbar__links a { display: inline-flex; gap: 8px; align-items: center; transition: color .2s; color: rgba(255,255,255,.85); }
.topbar__links a:hover { color: var(--gold); }
.topbar__marquee { color: rgba(255,255,255,.7); font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0; text-transform: uppercase; }

/* ====== ANNOUNCE ====== */
.announce {
  background: var(--teal); color: white;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0; text-transform: uppercase; text-align: center; padding: 9px 12px;
}
.announce span { opacity: .85; padding: 0 18px; }

/* ====== HEADER ====== */
.header { background: var(--paper); position: sticky; top: 0; z-index: 40; border-bottom: 1px solid var(--line); }
.header__row {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 22px 0 18px;
}
.header__left, .header__right { display: flex; align-items: center; gap: 22px; }
.header__right { justify-content: flex-end; }
.header__logo-link { display: flex; }
.header__logo { height: 56px; width: auto; }
.header__icon {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  color: var(--ink); position: relative; padding: 6px 4px; transition: color .2s;
}
.header__icon:hover { color: var(--teal); }
.header__icon .badge {
  position: absolute; top: -4px; right: -10px;
  background: var(--gold); color: var(--ink);
  font-size: 10px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 99px;
  display: grid; place-items: center; padding: 0 5px; font-style: normal;
}
.search {
  display: flex; align-items: center; gap: 10px;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 16px; width: 260px; transition: border .2s;
}
.search:focus-within { border-color: var(--teal); }
.search input { border: none; background: none; outline: none; flex: 1; font: inherit; color: var(--ink); }
.search input::placeholder { color: var(--mute); }

/* ====== NAV ====== */
.nav { border-top: 1px solid var(--line); background: var(--paper); position: relative; }
.nav__list { display: flex; justify-content: center; gap: 36px; list-style: none; margin: 0; padding: 0; }
.nav__item { position: static; }
.nav__btn {
      display: inline-flex;
    align-items: center;
    gap: 0px;
    padding: 10px 4px;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 2px solid transparent;
    transition: all .2s;
    cursor: pointer;
}
.nav__btn:hover, .nav__btn.active, .nav__item.is-open .nav__btn { color: var(--teal); border-bottom-color: var(--teal); }
.nav__btn.is-accent { color: var(--gold); }
.nav__btn.is-accent:hover { color: #b4901c; border-bottom-color: var(--gold); }

/* ====== MEGA MENU ====== */
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(20,40,40,.18);
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity .25s, transform .25s; z-index: 50;
}
.nav__item.is-open .mega { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mega__grid {
  display: grid; grid-template-columns: repeat(3, 1fr) 1.2fr;
  gap: 48px; padding: 36px 0 44px;
}
.mega__col h4 {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; margin-top: 0;
}
.mega__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.mega__col a {
  font-family: 'Cormorant Garamond', serif; font-size: 19px;
  color: var(--ink); transition: color .15s, transform .15s; display: inline-block;
}
.mega__col a:hover { color: var(--teal); transform: translateX(2px); }
.mega__feat {
  background: var(--cream); border-radius: 12px; padding: 18px;
  display: grid; gap: 12px; align-content: start;
}
.mega__feat .ph { aspect-ratio: 4/3; border-radius: 8px; }
.mega__feat h5 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; line-height: 1.1; margin: 0; }
.mega__feat p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.mega__feat > a {
  display: inline-flex; gap: 8px; align-items: center;
  color: var(--teal); font-size: 12px; letter-spacing: 0; text-transform: uppercase; font-weight: 600;
}

/* ====== HERO ====== */
.hero {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 64px; align-items: center; padding: 72px 0 96px;
}
.hero__media { position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; background: var(--cream-2); }
.hero__media .ph { position: absolute; inset: 0; }
.hero__badge {
  position: absolute; top: 22px; left: 22px; background: var(--paper); border-radius: 999px;
  padding: 8px 14px 8px 8px; display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0; text-transform: uppercase; font-weight: 600;
}
.hero__badge .dot { width: 26px; height: 26px; border-radius: 50%; background: var(--teal); display: grid; place-items: center; color: white; }
.hero__tag {
  position: absolute; bottom: 22px; left: 22px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border-radius: 14px; padding: 14px 18px; display: grid; gap: 4px; max-width: 280px;
}
.hero__tag b { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; }
.hero__tag span { font-size: 12px; color: var(--ink-soft); }
.hero__circle {
  position: absolute; right: -28px; bottom: -28px;
  width: 140px; height: 140px; border-radius: 50%; background: var(--gold);
  display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--ink); font-size: 16px; line-height: 1.1; text-align: center; padding: 12px;
  transform: rotate(-8deg); animation: spin 22s linear infinite;
}
.hero__circle span { display: block; }
@keyframes spin { to { transform: rotate(352deg); } }
.hero__copy { display: grid; gap: 24px; }
.hero__copy h1 small { display: block; font-style: italic; color: var(--teal); font-size: .55em; font-weight: 400; margin-bottom: 8px; }
.hero__lede { font-size: 17px; color: var(--ink-soft); max-width: 460px; line-height: 1.65; margin: 0; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 32px; margin-top: 8px; }
.hero__stat { display: grid; gap: 4px; }
.hero__stat b { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: var(--teal); }
.hero__stat span { font-size: 11px; letter-spacing: 0; text-transform: uppercase; color: var(--ink-soft); }

/* ====== SECTIONS ====== */
.section { padding: 20px 0; }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.section__head .eyebrow { margin-bottom: 8px; display: block; }
.section__head h2 { max-width: 640px; }
.section__head a {
  font-size: 12px; letter-spacing: 0; text-transform: uppercase; font-weight: 600;
  color: var(--teal); display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.section__head a:hover { color: var(--teal-deep); }

/* ====== CATEGORIES ====== */
.cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px; gap: 16px;
}
.cat { position: relative; overflow: hidden; border-radius: 20px; background: var(--cream-2); transition: transform .35s ease; display: block; }
.cat:hover { transform: translateY(-2px); }
.cat .ph { position: absolute; inset: 0; }
.cat__body {
  position: absolute; inset: auto 16px 16px 16px; background: var(--paper);
  border-radius: 12px; padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.cat__body b { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; display: block; }
.cat__body span { font-size: 11px; color: var(--mute); letter-spacing: .12em; text-transform: uppercase; }
.cat__arrow { width: 32px; height: 32px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; transition: all .2s; flex-shrink: 0; }
.cat:hover .cat__arrow { background: var(--teal); color: white; }
.cat--lg, .cat--md, .cat--sm { grid-column: span 1; grid-row: span 1; }

/* ====== PRODUCTS ====== */
.tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; justify-content: center; }
.tab {
  padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  background: var(--paper); color: var(--ink-soft); transition: all .2s; cursor: pointer;
}
.tab:hover { color: var(--ink); border-color: var(--ink); }
.tab.is-active { background: var(--teal); color: white; border-color: var(--teal); }

.prods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 22px; }
.prod { display: grid; gap: 12px; position: relative; cursor: pointer; }
.prod__cover-link { position: absolute; inset: 0; z-index: 1; border-radius: 16px; }
.prod.is-hidden { display: none; }
.prod__media { position: relative; aspect-ratio: 4/5; background: var(--cream-2); border-radius: 16px; overflow: hidden; }
.prod__media .ph { position: absolute; inset: 0; }
.prod__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.prod__tags { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.prod__tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; background: var(--ink); color: white;
}
.prod__tag.gold { background: var(--gold); color: var(--ink); }
.prod__tag.teal { background: var(--teal); color: white; }
.prod__tag.line { background: var(--paper); color: var(--ink); border: 1px solid var(--line); }
.prod__fav {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; background: var(--paper);
  display: grid; place-items: center; transition: all .2s; color: var(--ink); cursor: pointer; border: none;
}
.prod__fav:hover, .prod__fav.is-active { background: var(--teal); color: white; }
.prod__quick {
  position: absolute; left: 12px; right: 12px; bottom: -50px; z-index: 2;
  background: var(--ink); color: white; border-radius: 999px;
  padding: 12px 18px; display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  transition: bottom .3s ease, opacity .3s ease; opacity: 0; cursor: pointer; border: none;
}
.prod:hover .prod__quick { bottom: 12px; opacity: 1; }
.prod__title { font-family: 'Cormorant Garamond', serif; font-size: 21px; line-height: 1.15; margin: 0; position: relative; z-index: 2; }
.prod__title a { color: var(--ink); }
.prod__title a:hover { color: var(--teal); }
.prod__meta { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2; }
.prod__price { font-weight: 600; color: var(--ink); font-size: 15px; }
.prod__price s { color: var(--mute); margin-right: 6px; font-weight: 400; }
.prod__color { display: flex; gap: 6px; }
.prod__color i { width: 13px; height: 13px; border-radius: 50%; display: inline-block; border: 1px solid rgba(0,0,0,.08); }
.prod__sub { font-size: 12px; color: var(--mute); letter-spacing: .04em; position: relative; z-index: 2; }

/* ====== STORY ====== */
.story {
  background: var(--teal); color: white; border-radius: 28px; margin: 32px 0;
  overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
}
.story__media { position: relative; min-height: 480px; background: #0a8281; }
.story__media .ph {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 10px, rgba(255,255,255,.0) 10px 20px), linear-gradient(180deg, #0a8281, #086867);
}
.story__media .ph::after { color: rgba(255,255,255,.5); }
.story__pic {
  position: absolute; inset: 32px; border-radius: 16px;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 8px, transparent 8px 16px), linear-gradient(180deg, #0e9a98, #0a7574);
  border: 1px solid rgba(255,255,255,.1);
}
.story__body { padding: 56px; display: grid; gap: 22px; align-content: center; }
.story__body .eyebrow { color: var(--gold-soft); }
.story__body h2 { color: white; font-family: 'Cormorant Garamond', serif; font-size: 50px; line-height: 1.05; font-weight: 500; }
.story__body h2 em { color: var(--gold); font-style: italic; }
.story__body p { color: rgba(255,255,255,.86); font-size: 16px; line-height: 1.7; max-width: 480px; margin: 0; }
.story__values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 12px; }
.story__value { border: 1px solid rgba(255,255,255,.2); border-radius: 12px; padding: 14px 16px; display: grid; gap: 4px; }
.story__value b { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 500; color: var(--gold-soft); }
.story__value span { font-size: 13px; color: rgba(255,255,255,.7); }

/* ====== ETHICS ====== */
.ethics { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eth { padding: 32px 28px; display: grid; gap: 6px; border-right: 1px solid var(--line); }
.eth:last-child { border-right: none; }
.eth__icon { width: 36px; height: 36px; color: var(--teal); margin-bottom: 6px; }
.eth b { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; }
.eth span { color: var(--ink-soft); font-size: 13px; }

/* ====== INSTAGRAM ====== */
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.insta { aspect-ratio: 1; border-radius: 12px; position: relative; overflow: hidden; background: var(--cream-2); display: block; }
.insta .ph { position: absolute; inset: 0; }
.insta__heart {
  position: absolute; inset: 0; background: rgba(9,155,154,.6); color: white;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  opacity: 0; transition: opacity .25s;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0;
}
.insta:hover .insta__heart { opacity: 1; }

/* ====== NEWSLETTER ====== */
.newsletter {
  background: var(--cream-2); border-radius: 28px; padding: 64px 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.newsletter__form {
  display: flex; gap: 8px; background: var(--paper);
  padding: 8px; border-radius: 999px; border: 1px solid var(--line);
}
.newsletter__form input {
  flex: 1; border: none; outline: none; background: none;
  padding: 12px 18px; font: inherit; color: var(--ink);
}
.newsletter__form .btn { padding: 12px 22px; }
.newsletter small { font-size: 12px; color: var(--ink-soft); margin-top: 10px; display: block; }

/* ====== FOOTER ====== */
.footer { background: var(--ink); color: rgba(255,255,255,.8); padding: 72px 0 24px; margin-top: 56px; }
.footer__top {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr) 1.2fr;
  gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand img { width: 160px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer__brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 280px; margin: 0; }
.footer h5 { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer ul a { font-size: 14px; color: rgba(255,255,255,.7); }
.footer ul a:hover { color: var(--gold); }
.footer__contact { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,.6); }
.footer__contact b { color: white; font-weight: 600; }
.footer__bot { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; font-size: 12px; color: rgba(255,255,255,.5); }
.footer__bot .socials { display: flex; gap: 12px; }
.footer__bot .socials a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: grid; place-items: center; transition: all .2s; }
.footer__bot .socials a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* ====== BREADCRUMB ====== */
.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 12px; color: var(--mute); letter-spacing: .06em; padding: 16px 0; }
.breadcrumb a { color: var(--mute); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .sep { opacity: .4; }

/* ====== ALERTS ====== */
.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 16px; font-size: 14px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }
.alert-info    { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ====== FORMS ====== */
.form-group { display: grid; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: .04em; }
.form-control {
  width: 100%; padding: 12px 16px; border: 1px solid var(--line); border-radius: var(--r);
  font: inherit; font-size: 14px; color: var(--ink); background: var(--paper);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(9,155,154,.12); }
.form-control::placeholder { color: var(--mute); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%238a9595' stroke-width='1.5' fill='none'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; }

/* ====== LIGHTBOX ====== */
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(4,26,26,.93);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .32s cubic-bezier(.4,0,.2,1);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__wrap {
  display: flex; align-items: center; justify-content: center;
  transform: scale(.88) translateY(16px);
  transition: transform .38s cubic-bezier(.34,1.4,.64,1);
}
.lightbox.is-open .lightbox__wrap { transform: scale(1) translateY(0); }
.lightbox__img {
  max-width: 88vw; max-height: 86vh;
  object-fit: contain; border-radius: 10px;
  box-shadow: 0 32px 100px rgba(0,0,0,.7);
  display: block; user-select: none;
}
.lightbox__close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.12); color: white;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.lightbox__close:hover { background: rgba(255,255,255,.25); transform: rotate(90deg); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.12); color: white;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__prev { left: 20px; }
.lightbox__prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox__next { right: 20px; }
.lightbox__next:hover { transform: translateY(-50%) translateX(3px); }
.lightbox__counter {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.5); font-size: 13px; letter-spacing: .04em;
}
.gallery-main { cursor: zoom-in; }

/* ====== GO TO TOP ====== */
.go-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal); color: white; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(9,155,154,.35);
  opacity: 0; transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s;
  pointer-events: none;
}
.go-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.go-top:hover { background: var(--teal-deep); }

/* ====== TOAST ====== */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--ink); color: white; padding: 14px 20px; border-radius: 12px;
  font-size: 14px; font-weight: 500; box-shadow: 0 8px 30px rgba(0,0,0,.25);
  transform: translateY(20px); opacity: 0; transition: all .35s cubic-bezier(.4,0,.2,1);
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: var(--teal); }
.toast.error { background: #e53e3e; }

/* ====== SHOP LAYOUT ====== */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }
.shop-sidebar { position: sticky; top: 100px; }
.sidebar-block { margin-bottom: 32px; }
.sidebar-block h4 { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--teal); margin: 0 0 14px; }
.sidebar-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; cursor: pointer; color: var(--ink-soft); border-bottom: 1px solid var(--line-2); transition: color .15s; }
.sidebar-item:hover, .sidebar-item.active { color: var(--teal); }
.sidebar-item .count { margin-left: auto; font-size: 11px; color: var(--mute); }

/* ====== PRODUCT PAGE ====== */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; padding: 48px 0 96px; }
.product-gallery { display: grid; gap: 12px; }
.gallery-main { aspect-ratio: 4/5; border-radius: 20px; background: var(--cream-2); overflow: hidden; position: relative; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.gallery-thumb { width: 80px; height: 96px; border-radius: 10px; background: var(--cream-2); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color .2s; }
.gallery-thumb.active { border-color: var(--teal); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info { display: grid; gap: 22px; }
.product-info h1 { font-family: 'Cormorant Garamond', serif; font-size: 42px; line-height: 1.1; font-weight: 500; }
.product-price { display: flex; align-items: baseline; gap: 12px; }
.product-price .current { font-size: 28px; font-weight: 700; color: var(--teal); }
.product-price .old { font-size: 18px; color: var(--mute); text-decoration: line-through; }
.product-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.product-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line); font-size: 11px; color: var(--ink-soft); }
.color-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.color-swatch { width: 32px; height: 32px; border-radius: 50%; cursor: pointer; border: 3px solid transparent; transition: all .2s; }
.color-swatch.active { border-color: var(--teal); box-shadow: 0 0 0 2px white inset; }
.qty-ctrl { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; }
.qty-ctrl button { width: 40px; height: 40px; font-size: 18px; color: var(--ink); }
.qty-ctrl span { padding: 0 16px; font-size: 16px; font-weight: 600; }

/* ====== CART PAGE ====== */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; padding: 48px 0 96px; }
.cart-items { display: grid; gap: 0; }
.cart-item { display: grid; grid-template-columns: 90px 1fr auto; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.cart-item__img { width: 90px; height: 108px; border-radius: 12px; background: var(--cream-2); overflow: hidden; }
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__name { font-family: 'Cormorant Garamond', serif; font-size: 20px; margin: 0 0 4px; }
.cart-item__sub { font-size: 12px; color: var(--mute); margin-bottom: 12px; }
.cart-summary { background: var(--cream-2); border-radius: 20px; padding: 28px; position: sticky; top: 100px; }
.cart-summary h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; margin: 0 0 20px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.summary-total { display: flex; justify-content: space-between; padding: 16px 0 20px; }
.summary-total span { font-weight: 700; font-size: 16px; }
.summary-total b { font-family: 'Cormorant Garamond', serif; font-size: 28px; }

/* ====== CHECKOUT ====== */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; padding: 48px 0 96px; }
.payment-options { display: grid; gap: 12px; margin-top: 8px; }
.payment-opt { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 2px solid var(--line); border-radius: 14px; cursor: pointer; transition: border-color .2s; }
.payment-opt.selected { border-color: var(--teal); background: var(--teal-tint); }
.payment-opt input[type="radio"] { width: 18px; height: 18px; accent-color: var(--teal); }
.payment-opt-label b { display: block; font-size: 14px; font-weight: 600; }
.payment-opt-label span { font-size: 12px; color: var(--mute); }
.mm-operators { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 12px; }
.mm-op { padding: 12px; border: 1px solid var(--line); border-radius: 10px; text-align: center; cursor: pointer; font-size: 13px; font-weight: 600; transition: all .2s; }
.mm-op.selected { border-color: var(--teal); background: var(--teal-tint); color: var(--teal); }

/* ====== ACCOUNT ====== */
.account-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; padding: 40px 0 80px; }
.account-nav { position: sticky; top: 100px; }
.account-nav a { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--ink-soft); transition: all .2s; margin-bottom: 4px; }
.account-nav a:hover { background: var(--cream-2); color: var(--ink); }
.account-nav a.active { background: var(--teal); color: white; }
.account-card { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 28px; margin-bottom: 20px; }
.account-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; margin: 0 0 20px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.order-row { display: grid; grid-template-columns: 1fr auto auto; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line-2); }
.order-row:last-child { border-bottom: none; }
.status-badge { padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.status-pending   { background: #fff3cd; color: #856404; }
.status-confirmed { background: #d4edda; color: #155724; }
.status-shipped   { background: #d1ecf1; color: #0c5460; }
.status-delivered { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }

/* ====== BLOG ====== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { background: var(--paper); border-radius: 16px; overflow: hidden; border: 1px solid var(--line); transition: box-shadow .2s; display: block; }
.blog-card:hover { box-shadow: var(--shadow); }
.blog-card__img { aspect-ratio: 16/9; background: var(--cream-2); overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.blog-card:hover .blog-card__img img { transform: scale(1.03); }
.blog-card__body { padding: 20px; }
.blog-card__meta { font-size: 11px; color: var(--mute); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.blog-card__title { font-family: 'Cormorant Garamond', serif; font-size: 22px; line-height: 1.2; margin: 0 0 8px; }
.blog-card__excerpt { font-size: 13px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* ====== FAQ ====== */
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-q { width: 100%; padding: 18px 22px; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 15px; font-weight: 600; color: var(--ink); background: var(--paper); cursor: pointer; }
.faq-q:hover { background: var(--cream); }
.faq-q .chevron { transition: transform .3s; flex-shrink: 0; color: var(--teal); }
.faq-item.open .faq-q .chevron { transform: rotate(180deg); }
.faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .2s; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 18px; }
.faq-a p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }

/* ====== PAGINATION ====== */
.pagination { display: flex; justify-content: center; margin-top: 48px; }
.pagination ul { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; align-items: center; }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; font-size: 14px; font-weight: 600; color: var(--ink-soft); border: 1px solid var(--line); transition: all .2s; }
.pagination a:hover { border-color: var(--teal); color: var(--teal); }
.pagination li.active a { background: var(--teal); color: white; border-color: var(--teal); }

/* ====== ADMIN ====== */
.admin-body { display: flex; min-height: 100vh; background: #f0f2f5; font-family: 'Manrope', sans-serif; }
.admin-sidebar { width: 240px; background: #0d1f1f; color: white; display: flex; flex-direction: column; position: fixed; top: 0; bottom: 0; left: 0; z-index: 30; overflow-y: auto; }
.admin-sidebar__logo, .admin-sidebar-logo { padding: 22px 20px 18px; border-bottom: 1px solid rgba(255,255,255,.07); }
.admin-sidebar__logo img, .admin-sidebar-logo img { height: 32px; filter: brightness(0) invert(1); object-fit: contain; }
.admin-sidebar__logo .admin-label, .admin-sidebar-logo .admin-label { color: rgba(255,255,255,.3); font-size: 10px; letter-spacing: 0; text-transform: uppercase; margin-top: 6px; }
.admin-nav { padding: 12px 0 24px; flex: 1; }
.admin-nav .nav-group { padding: 16px 20px 4px; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.25); font-weight: 600; }
.admin-nav a { display: flex; align-items: center; gap: 10px; padding: 10px 20px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.6); transition: background .15s, color .15s; border-radius: 0; text-decoration: none; }
.admin-nav a:hover { background: rgba(255,255,255,.07); color: rgba(255,255,255,.9); }
.admin-nav a.active { background: var(--teal); color: white; }
.admin-nav a svg { flex-shrink: 0; opacity: .8; }
.admin-nav a.active svg, .admin-nav a:hover svg { opacity: 1; }
.admin-main { margin-left: 240px; flex: 1; display: flex; flex-direction: column; min-height: 100vh; }
.admin-topbar { background: white; border-bottom: 1px solid #e4e8ec; padding: 0 28px; height: 60px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 20; box-shadow: 0 1px 4px rgba(0,0,0,.04); }
.admin-topbar h1 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 0; }
.admin-topbar__user { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #8a9595; }
.admin-topbar__user svg { color: var(--teal); }
.admin-content { padding: 28px; flex: 1; }
.stat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-bottom: 24px; }
.stat-card { background: white; border-radius: 12px; padding: 18px 20px; border: 1px solid #e4e8ec; }
.stat-card.teal { background: var(--teal); color: white; border-color: var(--teal); }
.stat-card.gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.stat-card .label { font-size: 11px; font-weight: 600; opacity: .65; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 8px; }
.stat-card .value { font-size: 26px; font-weight: 700; line-height: 1; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th { padding: 11px 16px; text-align: left; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: #8a9595; border-bottom: 2px solid #e4e8ec; background: #f8f9fa; white-space: nowrap; }
.admin-table td { padding: 13px 16px; border-bottom: 1px solid #f0f2f5; vertical-align: middle; color: var(--ink); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #fafbfc; }
.admin-card { background: white;
    padding: 15px 25px; border-radius: 12px; border: 1px solid #e4e8ec; overflow: hidden; margin-bottom: 24px; }
.admin-card__head { padding: 16px 24px; border-bottom: 1px solid #e4e8ec; display: flex; align-items: center; justify-content: space-between; }
.admin-card__head h2 { font-size: 15px; font-weight: 700; margin: 0; }
.admin-card__body { padding: 24px; }
/* Actions dans les tableaux */
.actions { display: flex; align-items: center; gap: 6px; }
.btn-icon { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 7px; border: 1px solid #e4e8ec; background: white; color: var(--ink); cursor: pointer; transition: all .15s; text-decoration: none; }
.btn-icon:hover { border-color: var(--teal); color: var(--teal); }
.btn-icon.btn-delete:hover { border-color: #e53e3e; color: #e53e3e; background: #fff5f5; }
/* Badges statut commandes */
.status-badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: .04em; white-space: nowrap; }
.status-en_attente   { background: #fff8e1; color: #b7791f; }
.status-confirmee    { background: #e8f0fe; color: #3c5fcb; }
.status-en_preparation { background: #f3e8fd; color: #7c3aed; }
.status-en_livraison { background: #fff3e0; color: #c05621; }
.status-livree       { background: #e8f5e9; color: #2e7d32; }
.status-annulee      { background: #fee; color: #c00; }
/* Bouton plein largeur (login) */
.btn.full { width: 100%; justify-content: center; }
/* Boutons admin complémentaires */
.admin-btn { padding: 7px 14px; border-radius: 7px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all .2s; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; border: 1px solid transparent; }
.admin-btn.primary { background: var(--teal); color: white; }
.admin-btn.primary:hover { background: var(--teal-deep); }
.admin-btn.secondary { background: white; color: var(--ink); border-color: #e4e8ec; }
.admin-btn.secondary:hover { border-color: var(--ink); }
.admin-btn.danger { background: #fff5f5; color: #c00; border-color: #fcc; }
.admin-btn.danger:hover { background: #c00; color: white; }

/* ====== PAGE LOADER ====== */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #06403f;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  transition: opacity .5s ease, visibility .5s ease;
}
#page-loader.hide { opacity: 0; visibility: hidden; }
.loader__logo { width: min(220px, 55vw); }
.loader__spin  { width: 56px; height: 56px; }

/* ====== AUTH ====== */
.auth-page { min-height: 60vh; display: grid; place-items: center; padding: 60px 20px; }
.auth-box { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: 48px; width: 100%; max-width: 440px; }
.auth-box h1 { font-family: 'Cormorant Garamond', serif; font-size: 36px; margin: 0 0 6px; }
.auth-box > p { color: var(--mute); font-size: 14px; margin: 0 0 28px; }
.auth-separator { text-align: center; position: relative; margin: 24px 0; color: var(--mute); font-size: 13px; }
.auth-separator::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--line); }
.auth-separator span { background: var(--paper); padding: 0 12px; position: relative; }

/* ====== FORM LAYOUT ====== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ====== EMPTY STATE ====== */
.empty-state { text-align: center; padding: 80px 20px; color: var(--mute); }
.empty-state .icon { font-size: 48px; display: block; margin-bottom: 16px; }
.empty-state h2 { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--ink); margin: 0 0 8px; }
.empty-state p { font-size: 14px; margin: 0; }

/* ====== PAY CHIP ====== */
.pay-chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: var(--cream); border: 1px solid var(--line); font-size: 12px; }

/* ====== CHECKOUT SECTION ====== */
.checkout-section { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 28px; margin-bottom: 20px; }
.checkout-section h2 { font-size: 16px; font-weight: 600; margin: 0 0 20px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }

/* ====== ACCOUNT CONTENT ====== */
.account-content { min-width: 0; }
.account-content h1 { font-family: 'Cormorant Garamond', serif; font-size: 36px; margin: 0 0 24px; }

/* ====== ORDER TABLE ====== */
.order-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.order-table th { padding: 10px 14px; text-align: left; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--mute); border-bottom: 2px solid var(--line); }
.order-table td { padding: 12px 14px; border-bottom: 1px solid var(--line-2); vertical-align: middle; }
.order-table tr:hover td { background: var(--cream); }

/* ====== BUTTON VARIANTS ====== */
.btn.lg { padding: 18px 32px; font-size: 14px; }
.btn.red { background: #e53e3e; color: white; }
.btn.red:hover { background: #c53030; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .cat--lg, .cat--md, .cat--sm { grid-column: span 1; grid-row: auto; height: 260px; }
  .prods { grid-template-columns: repeat(2, 1fr); }
  .story { grid-template-columns: 1fr; }
  .ethics { grid-template-columns: repeat(2, 1fr); }
  .eth:nth-child(2) { border-right: none; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .newsletter { grid-template-columns: 1fr; padding: 40px 28px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mega__grid { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: 1fr; gap: 32px; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .account-layout { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .topbar__links { gap: 14px; }
  .topbar__marquee { display: none; }
  .header__left .search { display: none; }
  .header__icon span { display: none; }
  .header__logo { height: 40px; }
  .nav__list { gap: 18px; overflow-x: auto; padding: 0 16px; flex-wrap: nowrap; justify-content: flex-start; }
  .nav__btn { font-size: 11px; white-space: nowrap; padding: 14px 0; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat--lg, .cat--md, .cat--sm { grid-column: span 1; height: 220px; }
  .prods { grid-template-columns: 1fr 1fr; gap: 18px; }
  .story__body { padding: 36px 28px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; }
  .intro__enter span { display: none; }
  .announce span { padding: 0 8px; font-size: 9px; }
  .hero { padding: 40px 0 60px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .admin-sidebar { width: 200px; }
  .admin-main { margin-left: 200px; }
}

/* ====== IMAGE MANAGER (admin produits) ====== */
.img-manager {
  border: 2px dashed #dde8e8;
  border-radius: 12px;
  padding: 16px;
  background: #f6fafa;
}
.img-manager__thumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 14px;
  min-height: 10px;
}
.img-thumb {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #e0eaea;
  cursor: grab;
  flex-shrink: 0;
  transition: border-color .2s, box-shadow .2s, transform .15s;
  background: #eee;
}
.img-thumb:first-child {
  width: 120px;
  height: 120px;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(9,155,154,.15);
}
.img-thumb.drag-over {
  border-color: var(--gold);
  transform: scale(1.06);
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
}
.img-thumb.dragging {
  opacity: .4;
  cursor: grabbing;
}
.img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.img-thumb__del {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,.65);
  color: #fff;
  border: none;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity .15s;
  z-index: 2;
  padding: 0;
}
.img-thumb:hover .img-thumb__del { opacity: 1; }
.img-thumb__cover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--teal);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  padding: 4px 0 3px;
  text-transform: uppercase;
  letter-spacing: .1em;
  display: none;
}
.img-thumb:first-child .img-thumb__cover { display: block; }
.img-thumb__new-badge {
  position: absolute;
  top: 5px;
  left: 5px;
  background: var(--gold);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.img-manager__drop {
  border: 1.5px dashed #c8d8d8;
  border-radius: 10px;
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #9ab5b5;
  font-size: 12.5px;
  transition: border-color .2s, background .2s, color .2s;
  user-select: none;
}
.img-manager__drop:hover,
.img-manager__drop.drag-active {
  border-color: var(--teal);
  background: rgba(9,155,154,.04);
  color: var(--teal);
}
.img-manager__drop label { color: var(--teal); cursor: pointer; text-decoration: underline; }

/* Product list thumbnail */
.prod-thumb {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #e8eeee;
  flex-shrink: 0;
}
.prod-thumb-ph {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #eef3f3;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
}
