
:root{
  --ink:#171118;
  --blackberry:#140f17;
  --night:#221828;
  --plum:#3a263f;
  --violet:#745782;
  --violet-soft:#a98bb6;
  --paper:#f1e9df;
  --paper-soft:#e8ddd0;
  --bone:#f7f1e9;
  --gold:#b88a54;
  --ember:#c86b34;
  --blood:#7e2630;
  --line:rgba(23,17,24,.15);
  --white-line:rgba(255,255,255,.14);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 12% 8%, rgba(116,87,130,.08), transparent 25%),
    radial-gradient(circle at 84% 30%, rgba(184,138,84,.06), transparent 23%),
    var(--paper);
  color:var(--ink);
  font-family:Inter,system-ui,sans-serif;
}
body.no-scroll{overflow:hidden}
a{color:inherit;text-decoration:none}
button,input{font:inherit}
button{color:inherit}
img{display:block;width:100%}
::selection{background:var(--plum);color:white}

.announcement{
  min-height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:8px 18px;
  background:var(--blackberry);
  color:#f4ecf5;
  text-align:center;
  font-size:10px;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.announcement span{color:#c5a8d1;font-size:14px}
.announcement i{font-style:normal;color:var(--gold);font-size:9px}

.site-header{
  height:90px;
  padding:0 4vw;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  background:rgba(241,233,223,.9);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  z-index:20;
}

.brand,.footer-brand{display:flex;align-items:center;gap:13px}
.brand-mark{
  width:46px;height:46px;border-radius:50%;
  border:1px solid rgba(23,17,24,.2);
  background:var(--ink);color:var(--paper);
  display:grid;place-items:center;
  font-family:"Cormorant Garamond",serif;
  font-size:27px;
  box-shadow:0 0 0 5px rgba(116,87,130,.07);
}
.brand-copy{max-width:310px}
.brand strong,.footer-brand strong{
  display:block;
  font-family:"Cinzel Decorative",serif;
  font-size:14px;
  letter-spacing:.035em;
  line-height:1.25;
}
.brand small,.footer-brand small{
  display:block;
  margin-top:4px;
  font-size:8px;
  letter-spacing:.16em;
  text-transform:uppercase;
  opacity:.52;
}

.desktop-nav{display:flex;gap:30px;font-size:12px}
.desktop-nav a{position:relative}
.desktop-nav a:before{
  content:"✦";
  position:absolute;
  left:50%;top:-15px;
  transform:translateX(-50%) scale(.3);
  opacity:0;
  color:var(--violet);
  transition:.25s ease;
}
.desktop-nav a:hover:before{opacity:1;transform:translateX(-50%) scale(1)}
.desktop-nav a:after{
  content:"";position:absolute;height:1px;left:50%;right:50%;bottom:-6px;
  background:var(--violet);transition:.25s ease;
}
.desktop-nav a:hover:after{left:0;right:0}

.header-actions{display:flex;gap:8px}
.icon-btn,.bag-btn{
  border:1px solid var(--line);
  background:rgba(255,255,255,.12);
  border-radius:100px;
  height:42px;
  padding:0 16px;
  cursor:pointer;
  transition:.25s;
}
.icon-btn{width:42px;padding:0;color:var(--violet)}
.icon-btn:hover,.bag-btn:hover{border-color:rgba(116,87,130,.55);background:rgba(116,87,130,.06)}
.bag-btn span{
  display:inline-grid;place-items:center;
  width:22px;height:22px;border-radius:50%;
  background:var(--ink);color:white;
  margin-left:6px;font-size:10px;
}

.hero{
  min-height:760px;
  display:grid;
  grid-template-columns:44% 56%;
  border-bottom:1px solid var(--line);
  overflow:hidden;
}
.hero-copy{
  position:relative;
  padding:8.5vw 5vw 7vw 7vw;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:
    linear-gradient(rgba(23,17,24,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,17,24,.035) 1px, transparent 1px);
  background-size:38px 38px;
}
.hero-copy:after{
  content:"";
  position:absolute;
  width:320px;height:320px;border-radius:50%;
  border:1px solid rgba(116,87,130,.11);
  left:-170px;bottom:-150px;
  box-shadow:
    0 0 0 24px rgba(116,87,130,.025),
    0 0 0 72px rgba(116,87,130,.018);
}
.sigil{
  position:absolute;
  color:rgba(116,87,130,.19);
  font-size:44px;
  pointer-events:none;
}
.sigil-left{right:7%;top:11%}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.19em;
  font-size:9px;
  font-weight:700;
  opacity:.64;
}

.hero h1,.section-heading h2,.intro-manifesto h2,.story h2,.rd-block h2,.newsletter h2,.faq h2,.cart-top h2{
  font-family:"Cormorant Garamond",serif;
  font-weight:600;
  letter-spacing:-.035em;
  margin:18px 0;
}
.hero h1{
  max-width:700px;
  font-size:clamp(54px,6vw,94px);
  line-height:.84;
}
.hero h1 em{
  display:block;
  color:var(--violet);
  font-weight:500;
  font-style:italic;
  text-shadow:0 8px 30px rgba(116,87,130,.13);
}
.hero-copy>p{
  max-width:570px;
  line-height:1.85;
  color:rgba(23,17,24,.66);
  font-size:14px;
}
.hero-cta{display:flex;align-items:center;gap:26px;margin-top:25px}
.primary-btn{
  display:inline-flex;
  align-items:center;justify-content:center;gap:13px;
  min-height:54px;padding:0 24px;
  border:1px solid var(--ink);border-radius:2px;
  background:var(--ink);color:white;
  cursor:pointer;font-weight:600;font-size:12px;
  box-shadow:6px 6px 0 rgba(116,87,130,.17);
  transition:.25s ease;
}
.primary-btn:hover{transform:translate(-2px,-2px);box-shadow:9px 9px 0 rgba(116,87,130,.22)}
.primary-btn b{color:#d2b5dc}
.text-link{font-size:12px;border-bottom:1px solid var(--ink);padding-bottom:4px}
.moon-phases{
  display:flex;gap:12px;
  margin-top:42px;
  color:var(--violet);
  font-size:14px;
  letter-spacing:.1em;
  opacity:.75;
}
.hero-proof{display:flex;gap:24px;flex-wrap:wrap;margin-top:16px;font-size:10px;opacity:.58}

.hero-visual{
  position:relative;
  overflow:hidden;
  min-height:720px;
  background:#211726;
}
.hero-visual>img{height:100%;object-fit:cover}
.veil{
  position:absolute;inset:0;
  background:
    linear-gradient(180deg,rgba(18,12,20,.02) 35%,rgba(16,10,18,.62)),
    radial-gradient(circle at 72% 20%,transparent 0 15%,rgba(24,13,27,.13) 55%,rgba(16,10,18,.25));
}
.hero-orbit{
  position:absolute;border-radius:50%;
  border:1px solid rgba(255,255,255,.22);
  pointer-events:none;
}
.hero-orbit:before,.hero-orbit:after{
  content:"✦";
  position:absolute;
  color:rgba(255,255,255,.7);
  font-size:9px;
}
.orbit-one{
  width:310px;height:310px;right:-118px;top:-105px;
  box-shadow:0 0 0 18px rgba(255,255,255,.025);
}
.orbit-one:before{left:36px;bottom:12px}
.orbit-two{
  width:140px;height:140px;left:-48px;bottom:110px;
  border-color:rgba(206,178,218,.35);
}
.orbit-two:after{right:7px;top:31px}
.hero-card{
  position:absolute;z-index:3;
  left:30px;bottom:34px;
  min-width:265px;
  padding:17px 19px;
  background:rgba(244,236,229,.88);
  border:1px solid rgba(255,255,255,.5);
  backdrop-filter:blur(14px);
  box-shadow:0 15px 50px rgba(0,0,0,.18);
}
.hero-card small{
  display:block;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:8px;
  opacity:.58;margin-bottom:6px;
}
.hero-card strong{
  display:block;
  font-family:"Cormorant Garamond",serif;
  font-size:21px;
}
.hero-card span{display:block;margin-top:7px;color:var(--violet);font-size:11px}
.rd-signature{
  position:absolute;z-index:3;right:28px;bottom:34px;
  color:white;text-align:right;
  padding-left:20px;
}
.rd-signature small{
  display:block;font-size:8px;text-transform:uppercase;letter-spacing:.16em;opacity:.65
}
.rd-signature b{display:block;margin-top:4px;font-size:11px;letter-spacing:.07em;color:#e2ccec}

.incantation-strip{
  overflow:hidden;
  background:var(--plum);
  color:#f5edf8;
  padding:16px 0;
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
}
.incantation-strip div{
  display:flex;gap:26px;align-items:center;
  white-space:nowrap;width:max-content;
  animation:marquee 18s linear infinite;
  font-family:"Cinzel Decorative",serif;
  font-size:10px;letter-spacing:.15em;
}
.incantation-strip i{font-style:normal;color:#c8abd3;opacity:.75}
@keyframes marquee{to{transform:translateX(-36%)}}

.intro-manifesto{
  position:relative;
  display:grid;
  grid-template-columns:140px 1.1fr .9fr;
  gap:38px;
  align-items:center;
  padding:95px 6vw;
  border-bottom:1px solid var(--line);
}
.manifesto-symbol{
  position:relative;width:110px;height:110px;
  border:1px solid rgba(116,87,130,.28);
  border-radius:50%;
  display:grid;place-items:center;
  color:var(--violet);
  font-family:"Cormorant Garamond";font-size:34px;
}
.manifesto-symbol:before,.manifesto-symbol:after{
  content:"";position:absolute;border-radius:50%;
  border:1px solid rgba(116,87,130,.12);
}
.manifesto-symbol:before{inset:9px}
.manifesto-symbol:after{inset:-11px}
.manifesto-symbol i{
  width:1px;height:145px;background:rgba(116,87,130,.18);
  position:absolute;transform:rotate(45deg)
}
.manifesto-symbol b{
  position:absolute;right:-4px;top:5px;
  font-size:10px;background:var(--paper);padding:4px;
}
.intro-manifesto h2{
  font-size:clamp(40px,4.5vw,67px);
  line-height:.98;
  margin-bottom:0;
}
.intro-manifesto>p{
  max-width:560px;line-height:1.85;font-size:13px;color:rgba(23,17,24,.63)
}

.collection-section,.faq{padding:110px 6vw}
.section-heading{
  display:flex;align-items:end;justify-content:space-between;
  margin-bottom:42px;gap:20px;
}
.section-heading h2{font-size:clamp(42px,5vw,68px);margin-bottom:0}
.filters{display:flex;gap:8px;flex-wrap:wrap}
.filter{
  position:relative;
  border:1px solid var(--line);background:transparent;
  border-radius:100px;padding:10px 17px;
  font-size:10px;cursor:pointer;
  transition:.2s;
}
.filter:hover{border-color:rgba(116,87,130,.45)}
.filter.active{background:var(--ink);color:white}
.filter.active:before{content:"✦";margin-right:7px;color:#cbb0d7}

.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.product-card{min-width:0;position:relative}
.product-card.hidden{display:none}
.product-image-wrap{
  position:relative;overflow:hidden;
  background:var(--paper-soft);
  aspect-ratio:4/5;
  border:1px solid rgba(23,17,24,.06);
}
.product-card.wide .product-image-wrap{aspect-ratio:5/4}
.product-image-wrap:after{
  content:"";
  position:absolute;inset:9px;
  border:1px solid rgba(255,255,255,.45);
  pointer-events:none;opacity:.6;
}
.product-image-wrap img{
  height:100%;object-fit:cover;
  transition:transform .65s cubic-bezier(.2,.7,.2,1),filter .4s ease;
}
.product-card:hover img{transform:scale(1.035);filter:saturate(.96) contrast(1.02)}
.badge{
  position:absolute;z-index:3;left:16px;top:16px;
  background:var(--ink);color:white;
  padding:8px 10px;border-radius:2px;
  text-transform:uppercase;font-size:7px;letter-spacing:.15em;
}
.badge.alt{background:var(--ember)}
.badge.purple{background:var(--plum)}
.card-rune{
  position:absolute;z-index:3;right:18px;top:15px;
  width:29px;height:29px;border-radius:50%;
  display:grid;place-items:center;
  background:rgba(21,14,24,.66);
  color:#eadff0;font-size:12px;
  backdrop-filter:blur(10px);
}
.quick-add{
  position:absolute;z-index:3;
  left:15px;right:15px;bottom:15px;
  border:1px solid rgba(255,255,255,.55);
  background:rgba(244,236,229,.93);
  height:46px;cursor:pointer;font-weight:600;font-size:11px;
  transform:translateY(66px);transition:.25s;
  backdrop-filter:blur(12px);
}
.product-card:hover .quick-add{transform:translateY(0)}
.product-meta{display:flex;justify-content:space-between;gap:16px;padding:16px 2px 8px}
.product-meta h3{
  margin:0 0 5px;
  font-family:"Cormorant Garamond",serif;
  font-size:25px;
}
.product-meta p{margin:0;font-size:10px;letter-spacing:.02em;opacity:.54}
.product-meta strong{font-size:11px;white-space:nowrap;margin-top:7px}

.story{
  display:grid;grid-template-columns:1fr 1fr;
  background:
    radial-gradient(circle at 76% 24%,rgba(116,87,130,.18),transparent 25%),
    var(--blackberry);
  color:#f7f1eb;
}
.story-image{position:relative;min-height:720px;overflow:hidden}
.story-image:after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,transparent 60%,rgba(20,15,23,.28))
}
.story-image img{height:100%;object-fit:cover}
.image-sigil{
  position:absolute;z-index:3;right:28px;bottom:28px;
  width:108px;height:108px;border-radius:50%;
  display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.38);
  color:white;font-size:28px;
  backdrop-filter:blur(6px);
}
.image-sigil:before{content:"";position:absolute;inset:10px;border:1px solid rgba(255,255,255,.2);border-radius:50%}
.image-sigil span{position:absolute;font-size:8px;right:4px;top:20px}
.story-copy{padding:8vw;display:flex;justify-content:center;flex-direction:column}
.story-copy h2{font-size:clamp(48px,5vw,76px);line-height:.94}
.story-copy>p{line-height:1.9;color:rgba(247,241,235,.67);max-width:620px;font-size:13px}
.features{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:20px;margin-top:58px;padding-top:26px;
  border-top:1px solid rgba(255,255,255,.15)
}
.features div{display:grid;gap:10px}
.features b{font-family:"Cormorant Garamond";font-size:27px;color:#d0b1dc}
.features span{font-size:10px;line-height:1.65;opacity:.66}

.rd-block{
  position:relative;
  background:var(--plum);
  color:white;
  padding:78px 6vw;
  display:grid;
  grid-template-columns:95px 1.1fr .9fr;
  gap:42px;
  align-items:center;
  overflow:hidden;
}
.rd-block:after{
  content:"RAVEN DIGITALS";
  position:absolute;right:-30px;bottom:-26px;
  font-size:72px;font-weight:700;letter-spacing:.08em;
  color:rgba(255,255,255,.025);
  white-space:nowrap;
}
.rd-emblem{
  width:78px;height:78px;border-radius:50%;
  display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.35);
  font-family:"Cormorant Garamond";font-size:38px;
  box-shadow:0 0 0 8px rgba(255,255,255,.035);
}
.rd-block h2{font-size:clamp(40px,4vw,62px);line-height:.98;margin-bottom:0}
.rd-copy p{line-height:1.85;color:rgba(255,255,255,.67);margin:0 0 18px;font-size:12px}
.rd-copy a{font-size:10px;letter-spacing:.08em;border-bottom:1px solid rgba(255,255,255,.45);padding-bottom:4px}

.faq{max-width:1200px;margin:auto}
.faq details{border-top:1px solid var(--line)}
.faq details:last-child{border-bottom:1px solid var(--line)}
.faq summary{
  list-style:none;display:flex;justify-content:space-between;align-items:center;
  padding:24px 0;cursor:pointer;
  font-family:"Cormorant Garamond";font-size:25px;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary span{font-family:Inter;font-size:18px;font-weight:400;color:var(--violet)}
.faq details[open] summary span{transform:rotate(45deg)}
.faq details p{
  max-width:760px;line-height:1.75;color:rgba(23,17,24,.62);
  padding:0 0 28px;margin:0;font-size:13px
}

.newsletter{
  position:relative;
  text-align:center;
  background:
    radial-gradient(circle at 50% 0,rgba(116,87,130,.18),transparent 30%),
    #dfd0c2;
  padding:100px 20px;
  overflow:hidden;
}
.newsletter:before,.newsletter:after{
  content:"";position:absolute;border:1px solid rgba(58,38,63,.12);border-radius:50%;
  width:250px;height:250px;
}
.newsletter:before{left:-135px;top:-90px}
.newsletter:after{right:-135px;bottom:-100px}
.newsletter-stars{font-size:12px;letter-spacing:.25em;color:var(--violet);margin-bottom:20px}
.newsletter h2{font-size:clamp(44px,5vw,72px);line-height:.95}
.newsletter form{
  display:flex;max-width:560px;margin:32px auto 0;
  border-bottom:1px solid var(--ink)
}
.newsletter input{flex:1;border:0;background:transparent;padding:16px 4px;outline:0}
.newsletter button{border:0;background:transparent;cursor:pointer;font-weight:700;font-size:11px}
.newsletter p{font-size:11px;min-height:16px}

footer{
  background:#100c12;color:#eee7e2;
  padding:68px 6vw 30px;
}
.footer-top{display:flex;justify-content:space-between;align-items:center;gap:25px}
.footer-brand .brand-mark{background:#eee7e2;color:#120f13;border-color:transparent;box-shadow:none}
.footer-symbol{color:#c9add4;letter-spacing:.35em;font-size:16px}
.footer-links{display:flex;gap:26px;margin:48px 0;font-size:11px;color:rgba(255,255,255,.67)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:22px;
  display:flex;justify-content:space-between;gap:20px;
  font-size:9px;color:rgba(255,255,255,.46)
}
.made-by b{color:#d5b8df}

.cart-drawer{
  position:fixed;top:0;right:0;height:100vh;width:min(440px,92vw);
  background:
    radial-gradient(circle at 90% 5%,rgba(116,87,130,.13),transparent 28%),
    var(--paper);
  z-index:50;transform:translateX(100%);
  transition:.35s ease;padding:28px;
  display:flex;flex-direction:column;
  box-shadow:-20px 0 80px rgba(0,0,0,.2);
}
.cart-drawer.open{transform:translateX(0)}
.cart-top{display:flex;justify-content:space-between;align-items:flex-start;border-bottom:1px solid var(--line);padding-bottom:18px}
.cart-top h2{font-size:36px;margin:7px 0 0}
#closeCart{border:0;background:transparent;font-size:32px;cursor:pointer}
.cart-items{flex:1;overflow:auto;padding:18px 0}
.empty-cart{opacity:.55;font-size:12px}
.cart-line{display:flex;justify-content:space-between;gap:15px;padding:15px 0;border-bottom:1px solid var(--line);font-size:11px}
.cart-line button{border:0;background:none;cursor:pointer;opacity:.55}
.cart-footer{border-top:1px solid var(--line);padding-top:18px}
.cart-footer>div{display:flex;justify-content:space-between;margin-bottom:18px}
.cart-footer .primary-btn{width:100%}
.cart-footer small{display:block;text-align:center;margin-top:10px;opacity:.5;font-size:9px}
.overlay{
  position:fixed;inset:0;background:rgba(16,12,16,.46);
  z-index:40;opacity:0;pointer-events:none;transition:.3s;
  backdrop-filter:blur(5px)
}
.overlay.show{opacity:1;pointer-events:auto}

.reveal{
  opacity:0;
  transform:translateY(16px);
  transition:opacity .65s ease, transform .65s ease;
}
.reveal.visible{opacity:1;transform:none}

@media (max-width:1080px){
  .brand-copy{max-width:245px}
  .desktop-nav{gap:20px}
}
@media (max-width:980px){
  .desktop-nav{display:none}
  .hero{grid-template-columns:1fr}
  .hero-copy{padding:90px 7vw}
  .hero-visual{min-height:620px}
  .intro-manifesto{grid-template-columns:120px 1fr}
  .intro-manifesto>p{grid-column:2}
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .story{grid-template-columns:1fr}
  .story-image{min-height:600px}
  .rd-block{grid-template-columns:78px 1fr}
  .rd-copy{grid-column:2}
}
@media (max-width:640px){
  .announcement{font-size:8px;gap:7px;letter-spacing:.08em}
  .site-header{height:74px;padding:0 16px}
  .brand-mark{width:37px;height:37px;font-size:22px}
  .brand strong{font-size:10px}
  .brand small{display:none}
  .icon-btn{display:none}
  .bag-btn{height:38px;padding:0 12px;font-size:10px}
  .hero{min-height:auto}
  .hero-copy{padding:74px 20px 58px}
  .hero h1{font-size:55px}
  .hero-cta{align-items:flex-start;flex-direction:column}
  .moon-phases{margin-top:32px}
  .hero-proof{gap:10px}
  .hero-visual{min-height:510px}
  .hero-card{left:14px;bottom:18px;min-width:0;right:14px}
  .rd-signature{display:none}
  .intro-manifesto{grid-template-columns:1fr;padding:72px 20px}
  .manifesto-symbol{width:90px;height:90px}
  .intro-manifesto>p{grid-column:auto}
  .collection-section,.faq{padding:76px 18px}
  .section-heading{align-items:flex-start;flex-direction:column}
  .product-grid{grid-template-columns:1fr}
  .product-card.wide .product-image-wrap,.product-image-wrap{aspect-ratio:4/5}
  .quick-add{transform:none}
  .story-image{min-height:470px}
  .story-copy{padding:72px 22px}
  .features{grid-template-columns:1fr;gap:14px}
  .rd-block{grid-template-columns:1fr;padding:64px 22px}
  .rd-emblem{width:64px;height:64px}
  .rd-copy{grid-column:auto}
  .newsletter{padding:80px 22px}
  .newsletter form{align-items:stretch;flex-direction:column;border:0;gap:10px}
  .newsletter input{border-bottom:1px solid var(--ink)}
  .newsletter button{background:var(--ink);color:white;padding:15px}
  .footer-top,.footer-links,.footer-bottom{flex-direction:column;align-items:flex-start}
}


/* ==========================
   V2 — cartes & marque-pages
   ========================== */

.shop-intro{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:30px;
  padding:95px 6vw 28px;
}
.shop-intro h2{
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(42px,5vw,68px);
  line-height:.95;
  margin:15px 0 0;
  letter-spacing:-.035em;
}
.shop-tabs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.type-filter{
  border:1px solid var(--line);
  background:transparent;
  border-radius:100px;
  padding:11px 17px;
  font-size:10px;
  cursor:pointer;
  transition:.2s;
}
.type-filter:hover{border-color:rgba(116,87,130,.45)}
.type-filter.active{
  background:var(--ink);
  color:white;
}
.type-filter.active:before{
  content:"✦";
  margin-right:7px;
  color:#cbb0d7;
}

.product-showcase{padding:14px 6vw 110px}
.mixed-grid{align-items:start}
.product-card.is-filtered-out{display:none}

.card-format{
  aspect-ratio:3/4;
  background:#d8c8b8;
}
.card-format img{
  object-fit:cover;
  object-position:center;
}
.card-format:before{
  content:"";
  position:absolute;
  z-index:2;
  inset:12px;
  border:1px solid rgba(244,236,229,.6);
  pointer-events:none;
}

.bookmark-stage{
  aspect-ratio:4/5;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 50% 40%,rgba(116,87,130,.12),transparent 35%),
    linear-gradient(145deg,#e5d8ca,#cbb9a6);
  overflow:hidden;
}
.bookmark-stage:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(23,17,24,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(23,17,24,.035) 1px,transparent 1px);
  background-size:25px 25px;
}
.bookmark-shell{
  position:relative;
  z-index:1;
  width:34%;
  height:76%;
  border-radius:3px;
  overflow:hidden;
  box-shadow:
    0 22px 42px rgba(23,17,24,.25),
    0 0 0 8px rgba(244,236,229,.5);
  border:1px solid rgba(23,17,24,.2);
  transform:rotate(-1.5deg);
  transition:.35s ease;
}
.bookmark-shell:before{
  content:"";
  position:absolute;
  z-index:2;
  left:50%;
  top:0;
  transform:translateX(-50%);
  width:16px;
  height:16px;
  border-radius:0 0 50% 50%;
  background:#d4c1ad;
  box-shadow:0 0 0 1px rgba(23,17,24,.15);
}
.bookmark-shell img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.bookmark-product:hover .bookmark-shell{
  transform:rotate(0) translateY(-4px) scale(1.02);
}
.badge.gold{
  background:#5f442a;
  color:#f3e8d8;
}

.category-banner{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  background:#18121b;
  color:white;
}
.category-banner-image{
  min-height:650px;
}
.category-banner-image img{
  height:100%;
  object-fit:cover;
}
.category-banner-copy{
  padding:8vw;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:
    radial-gradient(circle at 75% 20%,rgba(116,87,130,.18),transparent 25%),
    #18121b;
}
.category-banner-copy h2{
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(46px,5vw,72px);
  line-height:.94;
  margin:18px 0;
}
.category-banner-copy p{
  max-width:560px;
  line-height:1.85;
  color:rgba(255,255,255,.65);
  font-size:13px;
}
.category-banner-copy .text-link{
  color:white;
  border-color:white;
  width:max-content;
  margin-top:18px;
}

.bookmark-feature{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
  padding:110px 7vw;
  overflow:hidden;
}
.bookmark-feature-copy h2{
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(46px,5vw,72px);
  line-height:.94;
  margin:18px 0;
}
.bookmark-feature-copy p{
  max-width:560px;
  line-height:1.85;
  color:rgba(23,17,24,.62);
  font-size:13px;
  margin-bottom:28px;
}
.bookmark-fan{
  position:relative;
  min-height:590px;
  display:grid;
  place-items:center;
}
.bookmark-fan:before{
  content:"";
  position:absolute;
  width:430px;
  height:430px;
  border-radius:50%;
  border:1px solid rgba(116,87,130,.16);
  box-shadow:
    0 0 0 28px rgba(116,87,130,.035),
    0 0 0 70px rgba(116,87,130,.02);
}
.fan-card{
  position:absolute;
  width:180px;
  height:470px;
  border-radius:5px;
  overflow:hidden;
  box-shadow:0 28px 60px rgba(23,17,24,.28);
  border:1px solid rgba(23,17,24,.2);
  background:#e0d0c1;
  transition:.4s ease;
}
.fan-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.fan-1{transform:translateX(-135px) rotate(-9deg)}
.fan-2{transform:translateX(0) rotate(0deg);z-index:2}
.fan-3{transform:translateX(135px) rotate(9deg)}
.bookmark-fan:hover .fan-1{transform:translateX(-160px) rotate(-11deg) translateY(-4px)}
.bookmark-fan:hover .fan-2{transform:translateX(0) rotate(0deg) translateY(-10px)}
.bookmark-fan:hover .fan-3{transform:translateX(160px) rotate(11deg) translateY(-4px)}

@media (max-width:980px){
  .shop-intro{align-items:flex-start;flex-direction:column}
  .shop-tabs{justify-content:flex-start}
  .category-banner,
  .bookmark-feature{grid-template-columns:1fr}
  .category-banner-image{min-height:560px}
  .bookmark-feature{gap:20px}
}
@media (max-width:640px){
  .shop-intro{padding:72px 18px 24px}
  .product-showcase{padding:10px 18px 76px}
  .category-banner-image{min-height:430px}
  .category-banner-copy{padding:70px 22px}
  .bookmark-feature{padding:75px 20px}
  .bookmark-fan{min-height:500px}
  .fan-card{width:135px;height:390px}
  .fan-1{transform:translateX(-92px) rotate(-8deg)}
  .fan-3{transform:translateX(92px) rotate(8deg)}
}


/* ==========================================
   V3 — PERSONNALISATION / MESSAGERIE DIRECTE
   ========================================== */

.custom-product-image{position:relative}
.custom-product-image img{filter:saturate(.78) brightness(.78)}
.custom-overlay-copy{
  position:absolute;
  z-index:3;
  left:24px;
  right:24px;
  top:50%;
  transform:translateY(-50%);
  text-align:center;
  color:white;
  text-shadow:0 3px 20px rgba(0,0,0,.6);
}
.custom-overlay-copy span{
  display:block;
  font-size:9px;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin-bottom:8px;
  color:#ddc5e6;
}
.custom-overlay-copy strong{
  font-family:"Cormorant Garamond",serif;
  font-size:34px;
  font-weight:600;
}

.custom-order{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:70px;
  padding:110px 7vw;
  align-items:center;
  background:
    radial-gradient(circle at 10% 10%,rgba(116,87,130,.14),transparent 28%),
    var(--paper);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.custom-order-copy h2{
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(46px,5vw,72px);
  line-height:.94;
  margin:18px 0;
}
.custom-order-copy>p{
  max-width:570px;
  line-height:1.85;
  color:rgba(23,17,24,.64);
  font-size:13px;
}
.custom-price{
  margin-top:32px;
  padding:22px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  display:grid;
  gap:5px;
}
.custom-price span{
  font-size:9px;
  text-transform:uppercase;
  letter-spacing:.18em;
  opacity:.55;
}
.custom-price strong{
  font-family:"Cormorant Garamond",serif;
  font-size:34px;
  color:var(--violet);
}
.custom-price small{opacity:.55;font-size:10px}
.custom-examples{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:22px;
  align-items:center;
}
.custom-examples>span{
  width:100%;
  font-size:9px;
  text-transform:uppercase;
  letter-spacing:.15em;
  opacity:.55;
}
.custom-examples button{
  border:1px solid var(--line);
  border-radius:100px;
  background:transparent;
  padding:9px 13px;
  cursor:pointer;
  font-size:9px;
}
.custom-examples button:hover{
  border-color:rgba(116,87,130,.5);
  background:rgba(116,87,130,.06);
}

.direct-message-card{
  overflow:hidden;
  border:1px solid rgba(23,17,24,.15);
  background:#f7f0e8;
  box-shadow:0 30px 80px rgba(23,17,24,.14);
}
.dm-header{
  display:flex;
  align-items:center;
  gap:12px;
  padding:17px 18px;
  background:var(--blackberry);
  color:white;
}
.dm-avatar{
  width:42px;
  height:42px;
  flex:0 0 42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.3);
  font-family:"Cinzel Decorative",serif;
  background:var(--plum);
}
.dm-header strong{display:block;font-size:11px}
.dm-header small{
  display:flex;
  align-items:center;
  gap:5px;
  margin-top:4px;
  opacity:.58;
  font-size:8px;
}
.dm-header small i{
  width:6px;height:6px;border-radius:50%;
  background:#91c79a;
}
.dm-raven{
  margin-left:auto;
  font-size:8px;
  letter-spacing:.08em;
  color:#d6badf;
}

.dm-thread{
  min-height:180px;
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:10px;
  background:
    radial-gradient(circle at 92% 5%,rgba(116,87,130,.1),transparent 25%),
    #eee3d8;
}
.bubble{
  max-width:76%;
  padding:13px 15px;
  border-radius:15px 15px 15px 3px;
  font-size:11px;
  line-height:1.6;
}
.brand-bubble{
  align-self:flex-start;
  background:white;
  box-shadow:0 7px 18px rgba(23,17,24,.07);
}
.user-bubble{
  align-self:flex-end;
  background:var(--plum);
  color:white;
  border-radius:15px 15px 3px 15px;
}

.dm-form{padding:22px;background:#f8f1e9}
.dm-fields{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:10px;
}
.dm-form input[type="text"],
.dm-form textarea{
  width:100%;
  border:1px solid var(--line);
  background:white;
  padding:13px 14px;
  outline:none;
  resize:vertical;
  font-size:11px;
}
.dm-form input[type="text"]:focus,
.dm-form textarea:focus{
  border-color:rgba(116,87,130,.65);
  box-shadow:0 0 0 3px rgba(116,87,130,.07);
}
.reference-field{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  padding:13px 0;
  font-size:10px;
}
.reference-field small{opacity:.55}
.reference-field input{max-width:240px;font-size:9px}
.dm-actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:6px;
}
.copy-request{
  border:1px solid var(--line);
  background:transparent;
  padding:0 18px;
  cursor:pointer;
  font-size:10px;
}
.dm-note{
  margin:13px 0 0;
  font-size:8px;
  line-height:1.55;
  opacity:.5;
}
.prepared-message{
  margin:0 22px 22px;
  padding:18px;
  border:1px solid rgba(116,87,130,.22);
  background:rgba(116,87,130,.06);
}
.prepared-message p{
  white-space:pre-wrap;
  font-size:10px;
  line-height:1.65;
}
.prepared-actions{
  display:flex;
  gap:9px;
}
.prepared-actions button,
.prepared-actions a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 13px;
  border:1px solid var(--line);
  background:white;
  font-size:9px;
  cursor:pointer;
}

@media(max-width:980px){
  .custom-order{grid-template-columns:1fr}
}
@media(max-width:640px){
  .custom-order{padding:76px 18px;gap:42px}
  .dm-fields{grid-template-columns:1fr}
  .reference-field{align-items:flex-start;flex-direction:column}
  .dm-actions{flex-direction:column}
  .copy-request{min-height:44px}
  .dm-actions .primary-btn{width:100%}
  .dm-raven{display:none}
}


/* V5.1 — accès admin simplifié */
.admin-access-btn{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  padding:0 14px;
  border:1px solid rgba(116,87,130,.35);
  border-radius:100px;
  background:rgba(116,87,130,.07);
  color:var(--plum);
  font-size:10px;
  transition:.2s ease;
}
.admin-access-btn span{
  font-size:13px;
  color:var(--violet);
}
.admin-access-btn b{
  font-weight:700;
}
.admin-access-btn:hover{
  background:var(--plum);
  color:white;
  border-color:var(--plum);
}
.admin-access-btn:hover span{color:#e5cee9}
.footer-admin-link{
  color:#d4b7df!important;
  border-left:1px solid rgba(255,255,255,.12);
  padding-left:20px;
}
@media(max-width:640px){
  .admin-access-btn{
    min-width:42px;
    width:42px;
    padding:0;
  }
  .admin-access-btn b{display:none}
  .footer-admin-link{
    border-left:0;
    padding-left:0;
  }
}


/* =====================================================
   V6.6 — MOBILE / TABLET POLISH · Raven Digitals
   ===================================================== */

.mobile-bottom-nav{display:none}

@media (min-width:641px) and (max-width:1100px){
  .site-header{padding-inline:3vw}
  .hero-copy{padding:80px 6vw}
  .hero h1{font-size:clamp(64px,8vw,88px)}
  .hero-visual{min-height:560px}
  .collection-section,.faq{padding-inline:4vw}
  .shop-intro{padding-inline:4vw}
  .product-grid{gap:16px}
  .product-meta h3{font-size:25px}
  .story-copy{padding:70px 6vw}
  .custom-layout{gap:18px}
}

@media (max-width:700px){
  html{scroll-padding-bottom:82px}
  body{padding-bottom:76px;overflow-x:hidden}
  button,a,input,select,textarea{-webkit-tap-highlight-color:transparent}
  input,select,textarea{font-size:16px!important}
  button,.primary-btn,.bag-btn,.admin-access-btn{min-height:44px}

  .announcement{
    min-height:30px;
    padding:7px 12px;
    white-space:nowrap;
    overflow:hidden;
    justify-content:flex-start;
  }
  .announcement i:nth-of-type(n+1),
  .announcement span:last-child{display:none}

  .site-header{
    height:68px;
    padding:0 12px;
    gap:8px;
  }
  .brand{min-width:0;gap:8px}
  .brand-mark{flex:0 0 36px;width:36px;height:36px}
  .brand-copy{min-width:0}
  .brand strong{
    display:block;
    max-width:145px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-size:9px;
  }
  .header-actions{gap:6px}
  .admin-access-btn{width:38px;min-width:38px;height:38px;padding:0}
  .admin-access-btn b{display:none}
  .bag-btn{min-width:72px;padding:0 10px}
  .bag-btn>span{min-width:18px}

  .hero-copy{padding:58px 18px 46px}
  .hero h1{
    font-size:clamp(48px,14vw,62px);
    line-height:.9;
    letter-spacing:-.045em;
  }
  .hero-copy>p{font-size:12px;line-height:1.75}
  .hero-cta{gap:15px}
  .hero-cta .primary-btn{width:100%;justify-content:space-between}
  .hero-proof{display:grid;grid-template-columns:1fr;gap:7px;font-size:8px}
  .moon-phases{font-size:18px}
  .hero-visual{min-height:430px}
  .hero-card{padding:14px}
  .hero-card strong{font-size:20px}

  .incantation-strip{overflow:hidden}
  .incantation-strip div{min-width:max-content}

  .shop-intro{padding:62px 18px 22px;align-items:flex-start;flex-direction:column}
  .shop-intro h2,.section-heading h2{font-size:clamp(38px,12vw,52px)}
  .collection-section,.faq{padding:62px 16px}
  .product-grid{gap:22px}
  .product-meta{padding:12px 2px 4px}
  .product-meta h3{font-size:25px}
  .product-meta p{font-size:9px;line-height:1.5}
  .product-meta strong{font-size:10px}
  .quick-add{
    min-height:46px;
    opacity:1;
    transform:none;
  }

  .story-image{min-height:410px}
  .story-copy{padding:58px 18px}
  .story-copy h2{font-size:46px}
  .features{padding-inline:18px}

  .newsletter{padding:60px 18px}
  .newsletter h2{font-size:45px}

  .cart-drawer{
    top:auto;
    bottom:0;
    left:0;
    right:0;
    width:100%;
    height:min(82vh,720px);
    height:min(82dvh,720px);
    padding:20px 18px calc(18px + env(safe-area-inset-bottom));
    border-radius:20px 20px 0 0;
    transform:translateY(105%);
    box-shadow:0 -20px 70px rgba(0,0,0,.24);
  }
  .cart-drawer.open{transform:translateY(0)}
  .cart-top:before{
    content:"";
    position:absolute;
    top:8px;
    left:50%;
    width:42px;
    height:4px;
    margin-left:-21px;
    border-radius:999px;
    background:rgba(23,17,24,.18);
  }
  .cart-top{position:relative;padding-top:10px}
  .cart-top h2{font-size:30px}
  .cart-line{font-size:10px;align-items:center}
  .cart-line button{min-width:44px;min-height:44px}
  .cart-footer .primary-btn{min-height:48px}

  .mobile-bottom-nav{
    position:fixed;
    z-index:35;
    left:10px;
    right:10px;
    bottom:calc(8px + env(safe-area-inset-bottom));
    min-height:60px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    align-items:stretch;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.12);
    border-radius:18px;
    background:rgba(20,15,23,.95);
    color:white;
    box-shadow:0 14px 45px rgba(0,0,0,.28);
    backdrop-filter:blur(18px);
  }
  .mobile-bottom-nav a,
  .mobile-bottom-nav button{
    position:relative;
    min-width:0;
    min-height:60px;
    padding:7px 2px 5px;
    border:0;
    background:transparent;
    color:rgba(255,255,255,.65);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:3px;
  }
  .mobile-bottom-nav span{font-size:16px;line-height:1}
  .mobile-bottom-nav b{font-size:7px;font-weight:600;letter-spacing:.02em}
  .mobile-bottom-nav a.active{color:white;background:rgba(255,255,255,.07)}
  .mobile-bottom-nav i{
    position:absolute;
    right:10px;
    top:7px;
    min-width:16px;
    height:16px;
    padding:0 4px;
    display:grid;
    place-items:center;
    border-radius:999px;
    background:#745782;
    color:white;
    font-style:normal;
    font-size:7px;
  }
  .mobile-bottom-nav i:not(.has-items){opacity:.45}

  .footer-bottom{padding-bottom:10px}
}

@media (max-width:380px){
  .brand strong{max-width:112px}
  .bag-btn{min-width:64px;font-size:9px}
  .hero h1{font-size:45px}
  .mobile-bottom-nav{left:6px;right:6px}
  .mobile-bottom-nav b{font-size:6.5px}
}


/* V6.7 — Accueil éditorial : 1 verre, 1 carte, 1 marque-page */
.home-curated .section-heading{
  max-width:720px;
}
.home-curated .product-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.home-curated .quick-add{
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
@media(max-width:900px){
  .home-curated .product-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .home-curated .product-card:last-child{
    grid-column:1/-1;
    width:min(50%,420px);
    justify-self:center;
  }
}
@media(max-width:700px){
  .home-curated .product-grid{
    grid-template-columns:1fr;
  }
  .home-curated .product-card:last-child{
    grid-column:auto;
    width:100%;
  }
}


/* V6.8 — accueil : uniquement 3 produits */
.home-selection-copy{
  max-width:620px;
  margin:14px 0 0;
  font-size:11px;
  line-height:1.7;
  opacity:.58;
}
.home-three-products .product-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
@media(max-width:900px){
  .home-three-products .product-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .home-three-products .product-card:last-child{
    grid-column:1/-1;
    width:min(50%,420px);
    justify-self:center;
  }
}
@media(max-width:700px){
  .home-selection-copy{font-size:10px}
  .home-three-products .product-grid{
    grid-template-columns:1fr;
  }
  .home-three-products .product-card:last-child{
    grid-column:auto;
    width:100%;
  }
}


/* V6.10 — Logo officiel Les Illustrations d’Hécate */
.brand-logo{
  overflow:hidden;
  padding:0!important;
  background:transparent!important;
  border:0!important;
}
.brand-logo img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  border-radius:50%;
}
@media(max-width:700px){
  .brand-logo{
    width:38px!important;
    height:38px!important;
    flex:0 0 38px!important;
  }
}


/* V6.11 — correction logo header */
.site-header .brand-logo{
  width:58px;
  height:58px;
  flex:0 0 58px;
  border:0;
  background:#100d12;
  box-shadow:0 0 0 1px rgba(23,17,24,.15), 0 0 0 6px rgba(116,87,130,.07);
}
.site-header .brand-logo img,
.footer-brand .brand-logo img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  border-radius:50%;
}
.footer-brand .brand-logo{
  width:54px;
  height:54px;
  flex:0 0 54px;
  background:#100d12!important;
}
@media(max-width:700px){
  .site-header .brand-logo{
    width:44px!important;
    height:44px!important;
    flex:0 0 44px!important;
  }
}


/* =====================================================
   V6.12 — Grand logo officiel dans le hero d'accueil
   ===================================================== */
.hero-brand-logo{
  position:relative;
  width:min(340px,72%);
  aspect-ratio:1/1;
  margin:18px 0 22px;
  display:grid;
  place-items:center;
  isolation:isolate;
}

.hero-brand-logo::before{
  content:"";
  position:absolute;
  inset:7%;
  border-radius:50%;
  background:
    radial-gradient(circle at 50% 45%,
      rgba(132,96,151,.20) 0%,
      rgba(132,96,151,.08) 42%,
      rgba(132,96,151,0) 72%);
  filter:blur(10px);
  z-index:-1;
}

.hero-brand-logo::after{
  content:"";
  position:absolute;
  inset:4%;
  border:1px solid rgba(113,82,129,.12);
  border-radius:50%;
  pointer-events:none;
}

.hero-brand-logo img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  filter:drop-shadow(0 18px 34px rgba(36,22,41,.16));
}

.hero-copy h1{
  margin-top:0;
}

@media (min-width:701px) and (max-width:1100px){
  .hero-brand-logo{
    width:min(290px,64%);
    margin:15px 0 20px;
  }
}

@media (max-width:700px){
  .hero-brand-logo{
    width:min(245px,72vw);
    margin:12px auto 18px 0;
  }

  .hero-brand-logo::before{
    filter:blur(8px);
  }
}

@media (max-width:380px){
  .hero-brand-logo{
    width:min(215px,70vw);
    margin-bottom:15px;
  }
}


/* V6.15 — visibilité du logo sur l'accueil */
.site-header{
  min-height:94px;
}

.site-header .brand{
  gap:14px;
}

.site-header .brand-logo{
  width:76px!important;
  height:76px!important;
  flex:0 0 76px!important;
  background:#120e14!important;
  box-shadow:
    0 0 0 2px rgba(108,72,124,.22),
    0 0 0 7px rgba(108,72,124,.06),
    0 8px 24px rgba(30,20,34,.12);
}

.site-header .brand strong{
  font-size:14px!important;
}

.site-header .brand small{
  font-size:8px!important;
  margin-top:5px;
}

@media(max-width:900px){
  .site-header{
    min-height:82px;
  }

  .site-header .brand-logo{
    width:62px!important;
    height:62px!important;
    flex:0 0 62px!important;
  }
}

@media(max-width:700px){
  .site-header{
    min-height:72px;
  }

  .site-header .brand-logo{
    width:50px!important;
    height:50px!important;
    flex:0 0 50px!important;
  }

  .site-header .brand strong{
    font-size:10px!important;
  }

  .site-header .brand small{
    font-size:6.5px!important;
  }
}


/* =====================================================
   V6.16 — catégories plus grosses, aucune supprimée
   ===================================================== */

/* Accueil : on garde exactement les mêmes liens */
.desktop-nav{
  gap:28px!important;
  font-size:14px!important;
  font-weight:600;
}

.desktop-nav a{
  padding:12px 0;
  white-space:nowrap;
}

/* Sur tablette on conserve le menu plus longtemps */
@media (max-width:1080px){
  .desktop-nav{
    gap:18px!important;
    font-size:12px!important;
  }
}

/* On ne masque les catégories qu'en vrai format téléphone */
@media (min-width:761px) and (max-width:980px){
  .desktop-nav{
    display:flex!important;
    gap:13px!important;
    font-size:11px!important;
  }

  .site-header{
    padding-inline:18px!important;
  }

  .site-header .brand-copy{
    max-width:185px!important;
  }

  .site-header .brand-copy small{
    display:none;
  }

  .site-header .header-actions{
    gap:5px;
  }

  .site-header .admin-access-btn{
    padding-inline:10px;
  }

  .site-header .bag-btn{
    padding-inline:11px;
  }
}

@media (max-width:760px){
  .desktop-nav{
    display:none!important;
  }

  .mobile-bottom-nav b{
    font-size:8px!important;
  }
}


/* =====================================================
   V6.22 — Box Mystère mensuelle
   ===================================================== */
.mystery-box-home{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:650px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#19121d;
  color:white;
}
.mystery-box-home-visual{
  min-height:650px;
  position:relative;
  overflow:hidden;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 40% 34%,rgba(137,94,158,.28),transparent 25%),
    radial-gradient(circle at 70% 70%,rgba(184,138,84,.13),transparent 24%),
    linear-gradient(145deg,#201626,#100c12);
}
.mystery-box-home-visual:before{
  content:"";position:absolute;inset:25px;border:1px solid rgba(255,255,255,.08);border-radius:50%;
}
.mystery-seal{position:absolute;right:8%;top:8%;font-family:"Cormorant Garamond";font-size:64px;color:#c5a8d1;opacity:.8}
.mystery-stack{width:min(520px,78%);height:470px;position:relative}
.mystery-glass,.mystery-card,.mystery-bookmark{position:absolute;overflow:hidden;box-shadow:0 25px 70px rgba(0,0,0,.34);border:1px solid rgba(255,255,255,.12)}
.mystery-glass{width:46%;aspect-ratio:1/1;left:2%;top:7%;border-radius:50%;background:#efe4db;transform:rotate(-6deg)}
.mystery-card{width:44%;aspect-ratio:4/5;right:5%;top:2%;transform:rotate(5deg)}
.mystery-bookmark{width:21%;height:64%;left:40%;bottom:0;transform:rotate(2deg)}
.mystery-glass img,.mystery-card img,.mystery-bookmark img{width:100%;height:100%;object-fit:cover}
.mystery-stickers{position:absolute;right:4%;bottom:5%;display:flex;gap:9px}
.mystery-stickers span{width:52px;height:52px;border-radius:50%;display:grid;place-items:center;background:#f1e9df;color:#3a263f;font-size:19px;box-shadow:0 12px 30px rgba(0,0,0,.22)}
.mystery-box-home-copy{padding:90px 7vw;display:flex;flex-direction:column;justify-content:center;align-items:flex-start}
.mystery-box-home-copy h2{font-family:"Cormorant Garamond";font-size:clamp(52px,6vw,88px);line-height:.88;margin:17px 0 22px;letter-spacing:-.04em}
.mystery-box-home-copy h2 em{color:#c5a8d1;font-weight:500}
.mystery-box-home-copy p{max-width:560px;font-size:12px;line-height:1.8;color:rgba(255,255,255,.65)}
.mystery-box-home-copy ul{list-style:none;margin:20px 0 25px;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:9px 24px;font-size:10px;color:rgba(255,255,255,.72)}
.mystery-box-home-copy li:before{content:"✦";color:#c5a8d1;margin-right:8px}
.mystery-home-price{display:flex;align-items:end;gap:16px;margin:0 0 25px;padding-top:18px;border-top:1px solid rgba(255,255,255,.12)}
.mystery-home-price span{font-size:8px;text-transform:uppercase;letter-spacing:.15em;opacity:.5}
.mystery-home-price strong{font-family:"Cormorant Garamond";font-size:32px}
.mystery-box-home .primary-btn{background:#f1e9df;color:#171118}
@media(max-width:900px){
  .mystery-box-home{grid-template-columns:1fr}
  .mystery-box-home-visual{min-height:520px}
  .mystery-box-home-copy{padding:70px 6vw}
}
@media(max-width:700px){
  .mystery-box-home-visual{min-height:430px}
  .mystery-stack{height:340px;width:86%}
  .mystery-stickers span{width:40px;height:40px}
  .mystery-box-home-copy{padding:58px 18px}
  .mystery-box-home-copy h2{font-size:50px}
  .mystery-box-home-copy ul{grid-template-columns:1fr}
  .mobile-bottom-nav{grid-template-columns:repeat(6,1fr)!important}
}
