/* =========================================================
   HIS MARKET — design system
   Palette: deep navy / burnished gold / warm cream / claret
   Display: Fraunces (warm, old-style serif) — used with restraint
   Body/UI: Inter
   Signature motif: the gold ribbon — divider, underline, seal
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  --navy-900:#0E1A32;
  --navy-800:#152443;
  --navy-700:#1D2F55;
  --cream:#FAF5EA;
  --paper:#FFFFFF;
  --gold:#C6971F;
  --gold-light:#E8C468;
  --gold-dim:#a9821f;
  --wine:#7B2D3B;
  --wine-light:#9c3d4f;
  --ink:#1B1B1E;
  --ink-soft:#4B4B52;
  --line:#E7DFCC;
  --radius-s:6px;
  --radius-m:14px;
  --radius-l:26px;
  --shadow-card: 0 10px 30px -14px rgba(14,26,50,0.28);
  --shadow-pop: 0 20px 50px -18px rgba(14,26,50,0.45);
  --maxw:1200px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Inter',system-ui,sans-serif;
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
}
img,svg{display:block;max-width:100%;}
svg.heart{width:15px;height:15px;color:var(--wine);flex-shrink:0;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
h1,h2,h3,h4{
  font-family:'Fraunces',serif;
  margin:0;
  font-weight:600;
  color:var(--navy-900);
  letter-spacing:-0.01em;
}
p{margin:0;line-height:1.6;color:var(--ink-soft);}
button{font-family:inherit;cursor:pointer;}
:focus-visible{outline:3px solid var(--gold);outline-offset:3px;}

.container{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 32px;
}
@media(max-width:640px){ .container{padding:0 20px;} }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12.5px;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--gold-dim);
}
.eyebrow.on-dark{color:var(--gold-light);}

.section{padding:88px 0;}
.section-tight{padding:56px 0;}
@media(max-width:780px){
  .section{padding:60px 0;}
  .section-tight{padding:40px 0;}
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:40px;
  flex-wrap:wrap;
}
.section-head h2{font-size:clamp(28px,3.4vw,40px);}
.section-head .sub{max-width:520px;margin-top:10px;}

.link-arrow{
  display:inline-flex;align-items:center;gap:8px;
  font-weight:700;font-size:14.5px;color:var(--navy-900);
  white-space:nowrap;
  border-bottom:1px solid transparent;
  transition:border-color .2s ease, gap .2s ease;
}
.link-arrow:hover{border-color:var(--navy-900); gap:12px;}
.link-arrow svg{width:16px;height:16px;}

/* ---------- ribbon signature ---------- */
.ribbon-underline{
  position:relative;
  display:inline-block;
}
.ribbon-underline svg{
  position:absolute;
  left:-4%;
  bottom:-10px;
  width:108%;
  height:14px;
  overflow:visible;
}
.ribbon-underline path{
  stroke:var(--gold);
  stroke-width:4;
  fill:none;
  stroke-linecap:round;
  stroke-dasharray:300;
  stroke-dashoffset:300;
  transition:stroke-dashoffset 1.1s cubic-bezier(.2,.8,.2,1);
}
.ribbon-underline.in-view path{stroke-dashoffset:0;}

.ribbon-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin:0 auto;
  max-width:220px;
  color:var(--gold);
}
.ribbon-divider .line{flex:1;height:1px;background:linear-gradient(90deg,transparent,var(--gold),transparent);}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 26px;
  border-radius:999px;
  font-weight:700;
  font-size:14.5px;
  letter-spacing:0.01em;
  border:1.5px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px);}
.btn-gold{background:var(--gold);color:var(--navy-900);}
.btn-gold:hover{background:var(--gold-light);box-shadow:0 12px 26px -10px rgba(198,151,31,.6);}
.btn-outline-light{border-color:rgba(250,245,234,.55);color:var(--cream);}
.btn-outline-light:hover{background:rgba(250,245,234,.1);border-color:var(--cream);}
.btn-outline-dark{border-color:var(--navy-900);color:var(--navy-900);}
.btn-outline-dark:hover{background:var(--navy-900);color:var(--cream);}
.btn-navy{background:var(--navy-900);color:var(--cream);}
.btn-navy:hover{background:var(--navy-700);}
.btn-block{width:100%;}
.btn-sm{padding:10px 18px;font-size:13px;}
.btn svg{width:17px;height:17px;flex-shrink:0;}

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position:sticky;top:0;z-index:60;
  background:rgba(250,245,234,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 0;
  gap:20px;
}
.logo{display:flex;flex-direction:column;line-height:1;}
.logo .wordmark{
  font-family:'Fraunces',serif;font-weight:700;font-size:23px;
  color:var(--navy-900); display:flex; align-items:center; gap:9px;
}
.logo .wordmark .mark{color:var(--gold);}
.logo .tagline{
  font-size:10.5px;letter-spacing:0.06em;color:var(--ink-soft);margin-top:3px;
}


.main-nav{display:flex;align-items:center;gap:30px;}
.main-nav > ul{display:flex;gap:28px;align-items:center;}
.main-nav a.nav-link{
  font-size:14.5px;font-weight:600;color:var(--navy-900);
  position:relative; padding:6px 0;
}
.main-nav a.nav-link::after{
  content:'';position:absolute;left:0;bottom:0;height:2px;width:0;
  background:var(--gold);transition:width .2s ease;
}
.main-nav a.nav-link:hover::after,
.main-nav a.nav-link.active::after{width:100%;}
.main-nav a.nav-link.active{color:var(--gold-dim);}

.has-dropdown{position:relative;}
.has-dropdown::after{
  content:'';position:absolute;left:0;right:0;top:100%;height:18px;
}
.dropdown{
  position:absolute;top:calc(100% + 14px);left:50%;transform:translateX(-50%) translateY(6px);
  background:var(--paper);border-radius:var(--radius-m);
  box-shadow:var(--shadow-pop);
  min-width:220px;padding:10px;
  opacity:0;pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
  border:1px solid var(--line);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown{
  opacity:1;pointer-events:auto;transform:translateX(-50%) translateY(0);
}
.dropdown a{
  display:block;padding:10px 12px;border-radius:8px;font-size:14px;font-weight:600;color:var(--navy-900);
}
.dropdown a:hover{background:var(--cream);color:var(--gold-dim);}

.header-actions{display:flex;align-items:center;gap:20px;}
.icon-btn{
  display:inline-flex;align-items:center;justify-content:center;
  width:20px;height:20px;color:var(--navy-900);
}
.icon-link{display:flex;align-items:center;gap:7px;font-size:14px;font-weight:600;color:var(--navy-900);}
.icon-link svg{width:19px;height:19px;}
.header-actions .icon-link.hide-sm{display:flex;}

.burger{
  display:none;
  flex-direction:column;gap:5px;
  width:26px;
  background:none;border:none;padding:4px;
}
.burger span{height:2px;background:var(--navy-900);border-radius:2px;transition:transform .2s ease, opacity .2s ease;}

@media(max-width:980px){
  .main-nav{display:none;}
  .header-actions .icon-link span{display:none;}
  .burger{display:flex;}
}

/* mobile drawer */
.mobile-nav{
  position:fixed;inset:0;z-index:100;
  visibility:hidden;
}
.mobile-nav .scrim{
  position:absolute;inset:0;background:rgba(14,26,50,.55);
  opacity:0;transition:opacity .25s ease;
}
.mobile-nav .drawer{
  position:absolute;top:0;right:0;height:100%;width:min(340px,86vw);
  background:var(--navy-900);color:var(--cream);
  padding:26px 26px 40px;
  transform:translateX(100%);
  transition:transform .3s cubic-bezier(.2,.8,.2,1);
  display:flex;flex-direction:column;gap:6px;
  overflow-y:auto;
}
.mobile-nav.open{visibility:visible;}
.mobile-nav.open .scrim{opacity:1;}
.mobile-nav.open .drawer{transform:translateX(0);}
.drawer-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:18px;}
.drawer-close{background:none;border:none;color:var(--cream);width:26px;height:26px;}
.drawer a.m-link{
  padding:14px 4px;font-size:16.5px;font-weight:600;
  border-bottom:1px solid rgba(250,245,234,.12);
  display:flex;justify-content:space-between;align-items:center;
}
.drawer .m-link svg{width:16px;height:16px;opacity:.6;flex-shrink:0;}
.drawer .m-actions{display:flex;flex-direction:column;gap:12px;margin-top:22px;}
.drawer .m-sub{padding-left:14px;}
.drawer .m-sub a{font-size:14.5px;font-weight:500;opacity:.82;padding:9px 4px;border-bottom:none;}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  background:url('../assets/img/hero-couple.jpg') center right / cover no-repeat;
  color:var(--cream);
  overflow:hidden;
}
.hero::before{
  content:'';position:absolute;inset:0;z-index:1;
  background:linear-gradient(100deg, rgba(10,18,38,.97) 0%, rgba(10,18,38,.92) 26%, rgba(10,18,38,.6) 48%, rgba(10,18,38,.18) 68%, rgba(10,18,38,.05) 82%);
}
.hero-inner{
  position:relative;z-index:2;
  display:grid;grid-template-columns:1.05fr 0.95fr;gap:40px;align-items:center;
  padding:76px 0 84px;
}
.hero-copy .heart-icon{width:26px;height:26px;color:var(--gold);margin-bottom:18px;}
.hero-copy h1{
  font-size:clamp(34px,4.6vw,54px);
  line-height:1.05;
  color:var(--cream);
}
.hero-copy h1 .accent{color:var(--gold-light);font-style:italic;font-weight:500;}
.hero-copy p.lead{
  margin-top:20px;max-width:460px;color:rgba(250,245,234,.78);font-size:16.5px;
}
.hero-ctas{display:flex;gap:14px;margin-top:32px;flex-wrap:wrap;}
.hero-note{
  display:flex;gap:12px;align-items:flex-start;margin-top:36px;
  padding-top:24px;border-top:1px solid rgba(250,245,234,.16);
  max-width:440px;
}
.hero-note svg{width:20px;height:20px;color:var(--gold);flex-shrink:0;margin-top:2px;}
.hero-note strong{display:block;color:var(--cream);font-size:14.5px;}
.hero-note span{font-size:13.5px;color:rgba(250,245,234,.66);}

.hero-art{position:relative;display:flex;align-items:center;justify-content:center;min-height:320px;}
.hero-badge{
  position:absolute;
  right:0;bottom:-6%;
  width:172px;height:172px;
  background:var(--navy-900);
  border:1.5px solid var(--gold);
  border-radius:50%;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;padding:14px;
  box-shadow:0 22px 50px -14px rgba(0,0,0,.55);
  animation:spin-badge 26s linear infinite;
}
.hero-badge .badge-inner{animation:spin-badge-rev 26s linear infinite;}
@keyframes spin-badge{from{transform:rotate(0)}to{transform:rotate(360deg)}}
@keyframes spin-badge-rev{from{transform:rotate(0)}to{transform:rotate(-360deg)}}
.hero-badge svg{width:22px;height:22px;color:var(--gold);margin-bottom:4px;}
.hero-badge strong{font-family:'Fraunces',serif;font-size:14.5px;color:var(--gold-light);display:block;}
.hero-badge span{font-size:10.5px;color:rgba(250,245,234,.7);display:block;margin-top:3px;}

@media(max-width:920px){
  .hero-inner{grid-template-columns:1fr;padding-top:44px;}
  .hero-art{order:-1;min-height:0;}
  .hero-badge{position:static;margin-top:18px;width:140px;height:140px;}
  .hero{background-position:center 30%;}
  .hero::before{background:linear-gradient(190deg, rgba(10,18,38,.55) 0%, rgba(10,18,38,.88) 46%, rgba(10,18,38,.98) 78%);}
}

/* trust strip */
.trust-strip{background:var(--paper);border-bottom:1px solid var(--line);}
.trust-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:28px;
  padding:34px 0;
}
.trust-item{display:flex;gap:14px;align-items:flex-start;}
.trust-item .icon{
  width:44px;height:44px;border-radius:50%;
  background:var(--navy-900);color:var(--gold-light);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.trust-item .icon svg{width:20px;height:20px;}
.trust-item strong{display:block;font-size:13.5px;letter-spacing:0.02em;color:var(--navy-900);margin-bottom:3px;}
.trust-item p{font-size:13.5px;}
@media(max-width:920px){.trust-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:560px){.trust-grid{grid-template-columns:1fr;}}

/* =========================================================
   CATEGORY GRID
   ========================================================= */
.cat-grid{
  display:grid;grid-template-columns:repeat(6,1fr);gap:18px;
}
@media(max-width:980px){.cat-grid{grid-template-columns:repeat(3,1fr);}}
@media(max-width:560px){.cat-grid{grid-template-columns:repeat(2,1fr);}}

.cat-card{
  background:var(--paper);
  border-radius:var(--radius-m);
  overflow:hidden;
  border:1px solid var(--line);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.cat-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-card);border-color:var(--gold);}
.cat-tile{
  aspect-ratio:1/0.9;
  position:relative;
  overflow:hidden;
  color:var(--cream);
  background:var(--navy-800);
}
.cat-tile .cat-photo{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}
.cat-card:hover .cat-tile .cat-photo{transform:scale(1.07);}
.cat-tile::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(14,26,50,0) 45%, rgba(14,26,50,.55) 100%);
}
.cat-body{padding:14px 16px 18px;}
.cat-body strong{
  display:block;font-family:'Fraunces',serif;font-size:15px;color:var(--navy-900);letter-spacing:0.01em;
}
.cat-body span{font-size:12.5px;color:var(--ink-soft);}

/* palette rotation for category tiles */
.tile-1{background:linear-gradient(140deg,#1D2F55,#0E1A32);}
.tile-2{background:linear-gradient(140deg,#2b4a63,#132238);}
.tile-3{background:linear-gradient(140deg,#7B2D3B,#4a1c26);}
.tile-4{background:linear-gradient(140deg,#3a5a3f,#16281a);}
.tile-5{background:linear-gradient(140deg,#5a4a1d,#2b2308);}
.tile-6{background:linear-gradient(140deg,#3a3550,#1a1830);}

.center-cta{display:flex;justify-content:center;margin-top:38px;}

/* =========================================================
   DEAL / PRODUCT CARDS
   ========================================================= */
.deal-row{display:grid;grid-template-columns:repeat(5,1fr);gap:18px;}
@media(max-width:1080px){.deal-row{grid-template-columns:repeat(3,1fr);}}
@media(max-width:680px){.deal-row{grid-template-columns:repeat(2,1fr);}}
@media(max-width:460px){.deal-row{grid-template-columns:1fr;}}

.deal-card{
  background:var(--paper);border-radius:var(--radius-m);overflow:hidden;
  border:1px solid var(--line);
  transition:transform .22s ease, box-shadow .22s ease;
  display:flex;flex-direction:column;
}
.deal-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-card);}
.deal-media{
  aspect-ratio:1/0.88;position:relative;
  display:flex;align-items:center;justify-content:center;
  color:var(--cream);
}
.deal-media svg{width:52%;height:52%;position:relative;z-index:2;}
.deal-flag{
  position:absolute;top:12px;left:12px;z-index:3;
  background:var(--gold);color:var(--navy-900);
  font-size:10px;font-weight:800;letter-spacing:0.06em;text-transform:uppercase;
  padding:6px 10px;border-radius:999px;
}
.deal-save{
  position:absolute;top:12px;right:12px;z-index:3;
  background:var(--wine);color:#fff;
  font-size:10.5px;font-weight:800;
  padding:6px 9px;border-radius:999px;
}
.deal-body{padding:16px 16px 18px;display:flex;flex-direction:column;gap:4px;flex:1;}
.deal-body h4{font-size:15px;font-weight:600;line-height:1.3;}
.deal-body .desc{font-size:12.5px;color:var(--ink-soft);}
.deal-price{display:flex;align-items:baseline;gap:8px;margin-top:8px;}
.deal-price .now{font-family:'Fraunces',serif;font-weight:700;font-size:18px;color:var(--navy-900);}
.deal-price .was{font-size:12.5px;color:#9a9a9a;text-decoration:line-through;}
.deal-merchant{font-size:11.5px;color:var(--gold-dim);font-weight:700;margin-top:6px;letter-spacing:.02em;}

/* =========================================================
   COUNTDOWN / FRIDAY BANNER
   ========================================================= */
.friday-banner{
  background:var(--navy-900);color:var(--cream);
  border-radius:var(--radius-l);
  padding:36px 40px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;
  position:relative;overflow:hidden;
  border:1px solid rgba(198,151,31,.35);
}
.friday-banner::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(60% 120% at 90% 10%, rgba(198,151,31,.18), transparent 60%);
  pointer-events:none;
}
.friday-left{display:flex;align-items:center;gap:18px;position:relative;z-index:2;}
.friday-ring{
  width:64px;height:64px;border-radius:50%;border:1.5px solid var(--gold);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--gold-light);
}
.friday-ring svg{width:26px;height:26px;}
.friday-left h3{color:var(--cream);font-size:22px;}
.friday-left p{font-size:14px;color:rgba(250,245,234,.7);margin-top:3px;}
.friday-stats{display:flex;gap:30px;position:relative;z-index:2;flex-wrap:wrap;}
.friday-stat{display:flex;flex-direction:column;gap:4px;align-items:flex-start;}
.friday-stat svg{width:18px;height:18px;color:var(--gold);}
.friday-stat strong{font-size:12.5px;color:var(--gold-light);letter-spacing:.03em;text-transform:uppercase;}
.friday-stat span{font-size:12px;color:rgba(250,245,234,.62);}
.friday-cta{position:relative;z-index:2;}

.countdown{display:flex;gap:10px;position:relative;z-index:2;}
.countdown .cbox{
  background:rgba(250,245,234,.06);
  border:1px solid rgba(198,151,31,.4);
  border-radius:10px;
  padding:10px 14px;
  min-width:64px;text-align:center;
}
.countdown .cbox strong{display:block;font-family:'Fraunces',serif;font-size:24px;color:var(--gold-light);}
.countdown .cbox span{font-size:10px;letter-spacing:.08em;text-transform:uppercase;color:rgba(250,245,234,.6);}

/* =========================================================
   MERCHANT / CTA STRIP
   ========================================================= */
.merchant-strip{
  background:var(--paper);border:1px solid var(--line);border-radius:var(--radius-l);
  padding:40px;display:grid;grid-template-columns:1.2fr 2fr auto;gap:30px;align-items:center;
}
.merchant-copy .eyebrow{margin-bottom:8px;}
.merchant-copy h3{font-size:26px;margin-bottom:8px;}
.merchant-copy p{font-size:14.5px;max-width:340px;}
.merchant-points{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.merchant-point{display:flex;flex-direction:column;gap:8px;}
.merchant-point .icon{width:38px;height:38px;border-radius:10px;background:var(--cream);border:1px solid var(--line);display:flex;align-items:center;justify-content:center;color:var(--gold-dim);}
.merchant-point .icon svg{width:18px;height:18px;}
.merchant-point strong{font-size:13.5px;color:var(--navy-900);}
.merchant-point span{font-size:12.5px;color:var(--ink-soft);}
@media(max-width:980px){
  .merchant-strip{grid-template-columns:1fr;text-align:left;}
  .merchant-points{grid-template-columns:1fr 1fr;}
}
@media(max-width:560px){.merchant-points{grid-template-columns:1fr;}}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{background:var(--navy-900);color:rgba(250,245,234,.72);padding:64px 0 26px;}
.footer-grid{
  display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr 1.1fr;gap:32px;
  padding-bottom:42px;border-bottom:1px solid rgba(250,245,234,.12);
}
.footer-brand .wordmark{color:var(--cream);font-family:'Fraunces',serif;font-weight:700;font-size:21px;display:flex;align-items:center;gap:8px;}
.footer-brand .wordmark .mark{color:var(--gold);}
.footer-brand p{font-size:13px;color:rgba(250,245,234,.55);margin-top:10px;max-width:230px;}
.footer-col h5{
  color:var(--gold-light);font-size:12px;letter-spacing:.08em;text-transform:uppercase;margin-bottom:16px;font-family:'Inter';font-weight:700;
}
.footer-col li{margin-bottom:11px;}
.footer-col a{font-size:13.8px;transition:color .15s ease;}
.footer-col a:hover{color:var(--gold-light);}
.social-row{display:flex;gap:10px;margin-top:16px;}
.social-row a{
  width:34px;height:34px;border-radius:50%;border:1px solid rgba(250,245,234,.25);
  display:flex;align-items:center;justify-content:center;
}
.social-row a:hover{border-color:var(--gold);color:var(--gold-light);}
.social-row svg{width:15px;height:15px;}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;padding-top:22px;
  font-size:12.5px;color:rgba(250,245,234,.45);flex-wrap:wrap;gap:10px;
}
.footer-bottom span{display:inline-flex;align-items:center;gap:5px;flex-wrap:wrap;}
.footer-bottom .heart{width:12px;height:12px;}
@media(max-width:980px){
  .footer-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:560px){
  .footer-grid{grid-template-columns:1fr;}
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top{
  position:fixed;right:22px;bottom:22px;z-index:70;
  width:48px;height:48px;border-radius:50%;
  background:var(--navy-900);color:var(--gold-light);
  border:1.5px solid var(--gold);
  display:flex;align-items:center;justify-content:center;
  opacity:0;visibility:hidden;transform:translateY(10px);
  transition:opacity .25s ease, transform .25s ease, background .2s ease;
  box-shadow:0 14px 30px -10px rgba(0,0,0,.5);
}
.back-to-top.show{opacity:1;visibility:visible;transform:translateY(0);}
.back-to-top:hover{background:var(--navy-700);}
.back-to-top svg{width:20px;height:20px;}

/* =========================================================
   PAGE HERO (interior pages)
   ========================================================= */
.page-hero{
  background:radial-gradient(120% 160% at 14% 0%, #1c2c52 0%, var(--navy-900) 50%, #0a1226 100%);
  color:var(--cream);padding:56px 0 64px;
}
.breadcrumb{display:flex;gap:8px;align-items:center;font-size:12.5px;color:rgba(250,245,234,.55);margin-bottom:16px;}
.breadcrumb a:hover{color:var(--gold-light);}
.breadcrumb svg{width:13px;height:13px;color:rgba(250,245,234,.4);flex-shrink:0;}
.page-hero h1{color:var(--cream);font-size:clamp(30px,4vw,44px);}
.page-hero p{color:rgba(250,245,234,.72);max-width:560px;margin-top:12px;font-size:15.5px;}

/* filter bar */
.filter-bar{
  display:flex;gap:10px;flex-wrap:wrap;padding:22px 0;
  border-bottom:1px solid var(--line);margin-bottom:34px;
}
.chip{
  padding:9px 18px;border-radius:999px;font-size:13.5px;font-weight:600;
  border:1.5px solid var(--line);background:var(--paper);color:var(--navy-900);
  transition:all .18s ease;
}
.chip.active,.chip:hover{border-color:var(--gold);background:var(--navy-900);color:var(--gold-light);}

/* product grid (category pages) */
.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
@media(max-width:1080px){.product-grid{grid-template-columns:repeat(3,1fr);}}
@media(max-width:780px){.product-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:480px){.product-grid{grid-template-columns:1fr;}}

/* info split section (about/experiences) */
.split{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;}
@media(max-width:860px){.split{grid-template-columns:1fr;gap:32px;}}
.split-art{
  border-radius:var(--radius-l);
  background:linear-gradient(150deg,#1D2F55,#0E1A32);
  aspect-ratio:4/3.2;display:flex;align-items:center;justify-content:center;color:var(--gold-light);
  position:relative;overflow:hidden;
}
.split-art svg{width:40%;height:40%;}

.stat-row{display:flex;gap:34px;flex-wrap:wrap;margin-top:28px;}
.stat-row div strong{display:block;font-family:'Fraunces',serif;font-size:30px;color:var(--navy-900);}
.stat-row div span{font-size:12.5px;color:var(--ink-soft);}

/* two-col info cards (contact/merchants) */
.info-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
@media(max-width:860px){.info-cards{grid-template-columns:1fr;}}
.info-card{background:var(--paper);border:1px solid var(--line);border-radius:var(--radius-m);padding:26px;}
.info-card .icon{width:44px;height:44px;border-radius:12px;background:var(--navy-900);color:var(--gold-light);display:flex;align-items:center;justify-content:center;margin-bottom:16px;}
.info-card .icon svg{width:20px;height:20px;}
.info-card h4{font-size:16.5px;margin-bottom:6px;}
.info-card p{font-size:13.8px;}

/* form */
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
@media(max-width:640px){.form-grid{grid-template-columns:1fr;}}
.field{display:flex;flex-direction:column;gap:7px;}
.field.full{grid-column:1/-1;}
.field label{font-size:13px;font-weight:700;color:var(--navy-900);}
.field input,.field select,.field textarea{
  padding:13px 15px;border-radius:10px;border:1.5px solid var(--line);
  font-family:inherit;font-size:14.5px;background:var(--paper);color:var(--ink);
}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--gold);}
.field textarea{resize:vertical;min-height:120px;}
.contact-panel{background:var(--paper);border:1px solid var(--line);border-radius:var(--radius-l);padding:40px;}
@media(max-width:640px){.contact-panel{padding:26px;}}

/* pricing / merchant plans */
.plan-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
@media(max-width:900px){.plan-grid{grid-template-columns:1fr;}}
.plan-card{background:var(--paper);border:1.5px solid var(--line);border-radius:var(--radius-m);padding:30px;display:flex;flex-direction:column;gap:16px;}
.plan-card.featured{border-color:var(--gold);box-shadow:var(--shadow-card);position:relative;}
.plan-card.featured::before{
  content:'MOST POPULAR';position:absolute;top:-12px;left:50%;transform:translateX(-50%);
  background:var(--gold);color:var(--navy-900);font-size:10px;font-weight:800;letter-spacing:.06em;
  padding:5px 12px;border-radius:999px;
}
.plan-card h4{font-size:19px;}
.plan-price{font-family:'Fraunces',serif;font-size:32px;color:var(--navy-900);}
.plan-price span{font-size:13px;font-family:'Inter';color:var(--ink-soft);}
.plan-feats li{display:flex;gap:10px;align-items:flex-start;font-size:13.8px;padding:6px 0;color:var(--ink-soft);}
.plan-feats svg{width:16px;height:16px;color:var(--gold);flex-shrink:0;margin-top:3px;}

/* faq accordion */
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{
  width:100%;display:flex;justify-content:space-between;align-items:center;gap:16px;
  padding:20px 4px;background:none;border:none;text-align:left;
  font-family:'Fraunces',serif;font-size:17px;color:var(--navy-900);font-weight:600;
}
.faq-q svg{width:18px;height:18px;color:var(--gold);flex-shrink:0;transition:transform .25s ease;}
.faq-item.open .faq-q svg{transform:rotate(45deg);}
.faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease;}
.faq-a p{padding:0 4px 20px;font-size:14.5px;max-width:640px;}

/* utility */
.text-center{text-align:center;}
.mt-8{margin-top:8px;}
.badge-soft{
  display:inline-flex;align-items:center;gap:6px;padding:6px 14px;border-radius:999px;
  background:rgba(198,151,31,.12);color:var(--gold-dim);font-size:12px;font-weight:700;letter-spacing:.02em;
}
.reveal{opacity:0;transform:translateY(16px);transition:opacity .6s ease, transform .6s ease;}
.reveal.in-view{opacity:1;transform:translateY(0);}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1;transform:none;transition:none;}
  .hero-badge, .hero-badge .badge-inner{animation:none;}
  html{scroll-behavior:auto;}
}

/* Requested refinements */
.tm-small{font-size:.42em;line-height:0;vertical-align:super;margin-left:1px;font-weight:600;}
.deal-media .deal-photo{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:1;transition:transform .35s ease;}
.deal-card:hover .deal-media .deal-photo{transform:scale(1.04);}
.deal-media::after{content:"";position:absolute;inset:0;background:linear-gradient(to bottom,rgba(8,18,30,.03),rgba(8,18,30,.14));z-index:1;pointer-events:none;}
.deal-media .deal-flag,.deal-media .deal-save{z-index:3;}

/* Refined His Friday hero badge — styled to match supplied reference */
.hero-badge{
  right:2%;
  bottom:2%;
  width:196px;
  height:196px;
  padding:0;
  background:radial-gradient(circle at 42% 35%, #102752 0%, #071832 68%, #061329 100%);
  border:4px solid #d6a334;
  box-shadow:0 0 0 2px rgba(255,219,126,.2), 0 18px 38px rgba(0,0,0,.42);
  animation:none;
}
.hero-badge::after{
  content:'';
  position:absolute;
  inset:7px;
  border:1px solid rgba(246,194,74,.38);
  border-radius:50%;
  pointer-events:none;
}
.hero-badge .badge-inner{
  position:relative;
  z-index:1;
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:22px 20px 18px;
  animation:none;
}
.hero-badge .badge-crown{
  width:39px;
  height:28px;
  color:#e1ae37;
  margin:0 0 8px;
}
.hero-badge strong{
  font-family:'Inter',sans-serif;
  font-size:17px;
  line-height:1;
  letter-spacing:.035em;
  font-weight:800;
  color:#fff;
  text-transform:uppercase;
}
.hero-badge .badge-date{
  margin-top:7px;
  font-size:17px;
  line-height:1;
  letter-spacing:.065em;
  font-weight:800;
  color:#e8b43d;
}
.hero-badge p{
  width:142px;
  margin:13px 0 0;
  color:rgba(255,255,255,.94);
  font-size:11.5px;
  line-height:1.45;
  font-weight:500;
}
@media(max-width:920px){
  .hero-badge{width:166px;height:166px;margin-top:18px;}
  .hero-badge .badge-inner{padding:18px 16px 15px;}
  .hero-badge .badge-crown{width:32px;height:23px;margin-bottom:6px;}
  .hero-badge strong,.hero-badge .badge-date{font-size:14px;}
  .hero-badge p{width:120px;font-size:10px;margin-top:9px;}
}

/* Mobile refinements requested 15 Aug 2026 */
@media(max-width:920px){
  /* Hide the His Friday hero badge completely on the mobile/tablet hero layout. */
  .hero-art{display:none;}

  /* Give the hero copy more breathing room from the viewport edge. */
  .hero-inner{
    padding-left:30px;
    padding-right:30px;
    padding-top:54px;
    padding-bottom:66px;
  }
}

@media(max-width:640px){
  .hero-inner{
    padding-left:30px;
    padding-right:30px;
  }

  /* Keep promotional pills readable on narrow product cards. */
  .deal-media .deal-save{
    top:46px;
    left:12px;
    right:auto;
  }
}


/* Mobile spacing and promotion refinements — 15 Aug 2026 */
@media(max-width:640px){
  /* Header logo/actions should not touch the viewport edge. */
  .header-inner{
    padding:14px 24px;
  }

  /* Trust icons/copy align with the same comfortable mobile gutter. */
  .trust-grid{
    padding:34px 24px;
  }

  /* Only the discount badge is used on product imagery. */
  .deal-media .deal-flag{
    top:12px;
    left:12px;
    right:auto;
  }
  .deal-media .deal-save{display:none;}
}


/* =========================================================
   DISCOVERY PLATFORM — merchant-direct offer actions
   ========================================================= */
.deal-link{
  margin-top:auto;
  padding:11px 0 0;
  border:0;
  border-top:1px solid var(--line);
  background:transparent;
  color:var(--navy-900);
  font:inherit;
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
  text-align:left;
  cursor:pointer;
  transition:color .18s ease;
}
.deal-link::after{content:'  →';color:var(--gold-dim);}
.deal-link:hover{color:var(--gold-dim);}
.deal-merchant{display:block;}
.header-actions{margin-left:auto;}

/* Small contextual note shown when a prototype deal is clicked. */
.discovery-toast{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:10000;
  max-width:340px;
  padding:14px 16px;
  border-radius:12px;
  background:var(--navy-900);
  color:var(--cream);
  box-shadow:0 14px 36px rgba(14,26,50,.28);
  font-size:13px;
  line-height:1.45;
  opacity:0;
  transform:translateY(10px);
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
}
.discovery-toast.show{opacity:1;transform:translateY(0);}
.discovery-toast strong{color:var(--gold-light);}
@media(max-width:560px){
  .discovery-toast{left:18px;right:18px;bottom:18px;max-width:none;}
}


/* Product-card discovery actions */
.deal-actions{
  margin-top:auto;
  padding-top:11px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.deal-actions .deal-link{
  margin-top:0;
  padding:0;
  border-top:0;
  flex:0 0 auto;
  text-align:right;
}
.deal-save-btn{
  border:0;
  background:transparent;
  padding:0;
  color:var(--navy-900);
  font:inherit;
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:5px;
  transition:color .18s ease;
}
.deal-save-btn:hover,
.deal-save-btn.is-saved{color:var(--gold-dim);}
.save-heart{
  font-size:18px;
  line-height:1;
  font-weight:400;
}
.deal-save-btn.is-saved .save-heart{font-size:0;}
.deal-save-btn.is-saved .save-heart::after{
  content:'♥';
  font-size:16px;
}
@media (max-width:420px){
  .deal-actions{gap:8px;}
  .deal-save-btn,.deal-actions .deal-link{font-size:11.5px;}
}


/* Center merchant/deal notification bubble in viewport */
.deal-toast{
  position:fixed !important;
  left:50% !important;
  top:50% !important;
  right:auto !important;
  bottom:auto !important;
  transform:translate(-50%,-50%) !important;
  z-index:9999 !important;
  width:min(420px,calc(100vw - 40px));
  text-align:center;
}


/* Correctly center the View Deal / View Offer discovery message */
.discovery-toast,
.discovery-toast.show{
  position:fixed !important;
  left:50% !important;
  top:50% !important;
  right:auto !important;
  bottom:auto !important;
  width:min(440px,calc(100vw - 36px)) !important;
  max-width:440px !important;
  transform:translate(-50%,-50%) !important;
  margin:0 !important;
  text-align:center !important;
  z-index:99999 !important;
}

@media (max-width:700px){
  .discovery-toast,
  .discovery-toast.show{
    left:50% !important;
    top:50% !important;
    right:auto !important;
    bottom:auto !important;
    width:calc(100vw - 36px) !important;
    max-width:440px !important;
    transform:translate(-50%,-50%) !important;
  }
}
