/* ── Hero Carousel ── */
.hero-section{position:relative;overflow:hidden;background:var(--bg-panel);border-radius:0;margin:0;}
.hero-section .hero-slider{position:relative;overflow:hidden;border-radius:0;}
.hero-section .hero-track{display:flex;transition:transform .6s cubic-bezier(.25,.46,.45,.94);}
.hero-section .hero-slide{min-width:100%;}
.hero-section .hero-banner{display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:1rem;padding:1.5rem 2rem;position:relative;overflow:hidden;border-radius:0;min-height:320px;}
.hero-section .hero-banner::before{content:"";position:absolute;inset:0;background:repeating-linear-gradient(115deg,rgba(255,255,255,.03) 0 2px,transparent 2px 48px);pointer-events:none;}
.hero-section .hero-copy{z-index:1;color:#fff;}
.hero-section .hero-copy .eyebrow{font-size:.65rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.5);}
.hero-section .hero-copy h1{font-family:var(--font-serif);font-size:clamp(1.3rem,2.5vw,2rem);line-height:1.15;margin:8px 0 6px;}
.hero-section .hero-copy h1 .gold{color:var(--gold);}
.hero-section .hero-copy .hero-price{font-family:var(--font-serif);font-size:1.4rem;font-weight:700;color:var(--gold);margin:6px 0 14px;}
.hero-section .hero-visual{display:flex;align-items:center;justify-content:center;z-index:1;}
.hero-section .hero-visual img{max-height:240px;object-fit:contain;aspect-ratio:4/3;filter:drop-shadow(0 12px 28px rgba(0,0,0,.35));border-radius:8px;animation:float 3s ease-in-out infinite;}
.hero-section .hero-ctrl{position:absolute;top:50%;left:0;right:0;transform:translateY(-50%);display:flex;justify-content:space-between;padding:0 .5rem;pointer-events:none;z-index:4;}
.hero-section .hero-ctrl button{pointer-events:auto;width:32px;height:32px;border-radius:50%;border:1px solid rgba(255,255,255,.2);background:rgba(255,255,255,.08);color:#fff;font-size:.85rem;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .25s,transform .25s;backdrop-filter:blur(4px);}
.hero-section .hero-ctrl button:hover{background:rgba(255,255,255,.2);transform:scale(1.1);}
.hero-section .hero-ctrl button:active{transform:scale(.95);}
.hero-section .hero-dots{position:absolute;bottom:.75rem;left:50%;transform:translateX(-50%);display:flex;gap:.35rem;z-index:4;}
.hero-section .hero-dots span{width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,.35);cursor:pointer;transition:background .25s,width .25s,transform .25s;}
.hero-section .hero-dots span:hover{background:rgba(255,255,255,.6);transform:scale(1.2);}
.hero-section .hero-dots span.active{width:18px;border-radius:3px;background:var(--gold);transform:none;}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)}}

/* ── Section Headings (uppercase, compact) ─ */
.sec-head{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:10px;margin-bottom:14px;}
.sec-head h2{font-family:var(--font-serif);font-size:1.2rem;text-transform:uppercase;letter-spacing:.04em;}

/* ── Promo Cards ── */
.promo-row{padding:20px 0;}
.promo-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;}
.promo-card{position:relative;border-radius:var(--radius);overflow:hidden;min-height:200px;background:var(--bg-panel);border:1px solid var(--line);display:flex;flex-direction:column;justify-content:flex-end;padding:16px;transition:box-shadow .3s;}
.promo-card::after{content:"";position:absolute;inset:0;background:linear-gradient(transparent 30%,rgba(0,0,0,.7));pointer-events:none;z-index:1;}
.promo-card:hover{box-shadow:var(--shadow-md);}
.promo-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.75;transition:transform .5s,opacity .3s;}
.promo-card:hover img{transform:scale(1.05);opacity:.85;}
.promo-card .promo-content{position:relative;z-index:2;color:#fff;}
.promo-card .promo-content h3{font-family:var(--font-serif);font-size:1rem;margin-bottom:4px;}
.promo-card .promo-content p{font-size:.75rem;opacity:.8;margin-bottom:10px;}
.dark .promo-card{border-color:var(--line-dark);background:var(--bg-panel);}

/* ── Deals Section ── */
.deals-section{padding:20px 0;}
.deals-section .sec-head{border-bottom:1px solid var(--line);padding-bottom:10px;}
.deals-section .sec-head .countdown{font-size:.78rem;color:var(--ink-soft);}
.deals-section .sec-head .nav-arrows{display:flex;gap:6px;}
.deals-section .sec-head .nav-arrows button{width:28px;height:28px;border-radius:50%;border:1px solid var(--line);background:var(--bg);color:var(--ink);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .25s,color .25s,border-color .25s;}
.deals-section .sec-head .nav-arrows button:hover{background:var(--gold);color:#fff;border-color:var(--gold);}
.deals-section .sec-head .nav-arrows button:active{transform:scale(.95);}
.dark .deals-section .sec-head .nav-arrows button{border-color:var(--line-dark);}
.deals-frame{overflow-x:auto;scrollbar-width:thin;padding-bottom:4px;}
.deals-track{display:flex;transition:transform .45s cubic-bezier(.25,.46,.45,.94);}
.deals-grid{display:flex;gap:10px;flex-shrink:0;}
.p-card{flex:0 0 200px;width:200px;background:var(--bg-panel);border:1px solid var(--line);border-radius:var(--product-radius);overflow:hidden;transition:box-shadow .3s;display:flex;flex-direction:column;}
.p-card:hover{box-shadow:0 4px 16px rgba(0,0,0,.1);}
.dark .p-card{border-color:var(--line-dark);}
.p-card .p-img{aspect-ratio:1/1;overflow:hidden;background:var(--bg);position:relative;}
.p-card .p-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s;}
.p-card:hover .p-img img{transform:scale(1.05);}
.p-card .p-img .p-disc{position:absolute;top:6px;left:6px;background:var(--gold);color:var(--navy-deep);font-size:.6rem;font-weight:800;padding:2px 6px;border-radius:2px;z-index:2;letter-spacing:.02em;}
.p-card .p-wish{position:absolute;top:6px;right:6px;width:26px;height:26px;border-radius:50%;background:rgba(255,255,255,.85);backdrop-filter:blur(4px);border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:.65rem;color:var(--ink-soft);z-index:3;transition:color .2s;box-shadow:0 1px 3px rgba(0,0,0,.08);}
.p-card .p-wish:hover{color:var(--red);}
.dark .p-card .p-wish{background:rgba(30,30,30,.85);color:#999;}
.dark .p-card .p-wish:hover{color:var(--red);}
.p-card .p-body{padding:6px 8px 8px;display:flex;flex-direction:column;gap:2px;flex:1;}
.p-card .p-body .p-stars{color:var(--gold-dark);font-size:.6rem;letter-spacing:.5px;}
.p-card .p-body .p-cat{font-size:.55rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;color:var(--ink-soft);}
.p-card .p-body h4{font-family:var(--font-sans);font-size:.72rem;font-weight:500;margin:0;line-height:1.25;color:var(--ink);overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;}
.p-card .p-body .p-price{font-weight:700;font-size:.8rem;color:var(--royal-blue);}
.p-card .p-body .p-price del{font-weight:400;font-size:.62rem;color:var(--ink-soft);margin-left:4px;}
.dark .p-card .p-body .p-price del{color:#888;}
.p-card .p-buy{width:100%;padding:5px 0;background:var(--gold);color:var(--navy-deep);border:none;font-family:var(--font-sans);font-size:.68rem;font-weight:700;cursor:pointer;transition:background .2s;margin-top:auto;display:flex;align-items:center;justify-content:center;gap:4px;text-transform:uppercase;letter-spacing:.03em;}
.p-card .p-buy:hover{background:var(--gold-dark);color:#fff;}

/* ── Trending Section ── */
.trend-section{padding:20px 0;}
.trend-section .sec-head{border-bottom:1px solid var(--line);padding-bottom:10px;}
.trend-section .sec-head .tab-row{display:flex;gap:12px;flex-wrap:wrap;}
.trend-section .sec-head .tab-row button{background:none;border:none;font-size:.68rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--ink-soft);padding-bottom:3px;border-bottom:2px solid transparent;cursor:pointer;transition:color .25s,border-color .25s;}
.trend-section .sec-head .tab-row button:hover{color:var(--ink);}
.trend-section .sec-head .tab-row button.active{color:var(--ink);border-color:var(--gold);}
.dark .trend-section .sec-head .tab-row button.active{color:var(--gold);}
.trend-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;}
.t-card{background:var(--bg-panel);border:1px solid var(--line);border-radius:var(--product-radius);overflow:hidden;transition:box-shadow .3s;cursor:pointer;display:flex;flex-direction:column;}
.t-card:hover{box-shadow:0 4px 16px rgba(0,0,0,.1);}
.dark .t-card{border-color:var(--line-dark);}
.t-card .t-img{aspect-ratio:1/1;overflow:hidden;background:var(--bg);position:relative;}
.t-card .t-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s;}
.t-card:hover .t-img img{transform:scale(1.05);}
.t-card .t-body{padding:6px 8px 8px;display:flex;flex-direction:column;gap:2px;flex:1;}
.t-card .t-body .t-tag{font-size:.55rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--gold);}
.t-card .t-body h4{font-family:var(--font-sans);font-size:.72rem;font-weight:500;margin:0;line-height:1.25;color:var(--ink);overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;}
.t-card .t-body .t-price{font-weight:700;font-size:.8rem;color:var(--royal-blue);margin-top:auto;}
.t-card .t-body .t-stars{color:var(--gold-dark);font-size:.58rem;letter-spacing:.5px;}
.t-card .t-hover{position:absolute;inset:0;background:rgba(0,0,0,.45);display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .3s;color:#fff;font-size:.78rem;font-weight:600;gap:6px;}
.t-card:hover .t-hover{opacity:1;}

@media(max-width:1080px){.trend-grid{grid-template-columns:repeat(3,1fr);}}
@media(max-width:768px){.trend-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:480px){.trend-grid{grid-template-columns:repeat(2,1fr);gap:8px;}}

/* ── Discount Banner ── */
.discount-banner{padding:20px 0;}
.discount-banner .db-inner{position:relative;border-radius:0;overflow:hidden;min-height:260px;display:flex;align-items:center;padding:2rem 3rem;background:var(--navy-deep);}
.discount-banner .db-inner::before{content:"";position:absolute;inset:0;background:repeating-linear-gradient(45deg,rgba(255,255,255,.02) 0 1px,transparent 1px 30px);pointer-events:none;}
.discount-banner .db-inner img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.25;mix-blend-mode:overlay;}
.discount-banner .db-copy{position:relative;z-index:2;color:#fff;max-width:460px;}
.discount-banner .db-copy .db-tag{font-size:.65rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);}
.discount-banner .db-copy h2{font-family:var(--font-serif);font-size:clamp(1.2rem,2.5vw,1.8rem);line-height:1.15;margin:6px 0 12px;}
.discount-banner .db-copy p{font-size:.82rem;opacity:.8;margin-bottom:16px;}

/* ── Gallery / Category Strip ── */
.gallery-section{padding:20px 0 40px;}
.gallery-section .sec-head{border-bottom:1px solid var(--line);padding-bottom:10px;margin-bottom:14px;}
.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;}
.gallery-grid figure{position:relative;border-radius:var(--product-radius);overflow:hidden;cursor:pointer;aspect-ratio:1/1;margin:0;}
.gallery-grid figure img{width:100%;height:100%;object-fit:cover;transition:transform .5s;}
.gallery-grid figure:hover img{transform:scale(1.06);}
.gallery-grid figure .g-overlay{position:absolute;inset:0;background:linear-gradient(transparent 40%,rgba(0,0,0,.85));display:flex;flex-direction:column;justify-content:flex-end;padding:10px;opacity:0;transition:opacity .3s;color:#fff;}
.gallery-grid figure:hover .g-overlay,.gallery-grid figure:focus .g-overlay{opacity:1;}
.gallery-grid figure .g-overlay strong{font-size:.78rem;font-weight:700;}
.gallery-grid figure .g-overlay span{font-size:.65rem;opacity:.7;}
.gallery-grid figure:focus-visible{outline:2px solid var(--gold);outline-offset:2px;}

/* ── Responsive ── */
@media (max-width:980px){
  .hero-section .hero-banner{grid-template-columns:1fr;text-align:center;padding:1.5rem 1.25rem;min-height:auto;}
  .hero-section .hero-banner .hero-visual{order:-1;}
  .hero-section .hero-banner .hero-visual img{max-height:180px;}
  .hero-section .hero-copy p{margin-left:auto;margin-right:auto;}
  .promo-grid{grid-template-columns:1fr;}
  .trend-grid{grid-template-columns:repeat(2,1fr);}
  .gallery-grid{grid-template-columns:repeat(2,1fr);}
  .cat-circles-grid{grid-template-columns:repeat(4,1fr);}
  .hero-she .hero-she-thumbs{grid-template-columns:repeat(2,1fr);max-width:240px;margin-top:12px;}
  .hero-she{grid-template-columns:1fr;text-align:center;padding:1.25rem;}
  .hero-she .hero-she-copy p{margin-left:auto;margin-right:auto;}
}
@media (max-width:768px){
  .deals-section .sec-head .nav-arrows{display:none;}
  .trend-section .sec-head .tab-row{gap:8px;}
  .trend-section .sec-head .tab-row button{font-size:.62rem;}
  .p-card{width:170px;flex:0 0 170px;}
  .deals-grid{gap:8px;}
  .cat-circles-grid{grid-template-columns:repeat(4,1fr);gap:14px 8px;}
  .benefits-row{grid-template-columns:1fr;}
  .register-strip-inner{flex-direction:column;gap:8px;text-align:center;align-items:stretch;}
  .register-strip-close{position:absolute;top:6px;left:6px;}
  .register-strip-text{font-size:.78rem;}
}
@media (max-width:640px){
  .hero-section .hero-banner{padding:1rem 1rem;}
  .hero-section .hero-ctrl button{width:28px;height:28px;font-size:.75rem;}
  .discount-banner .db-inner{padding:1.5rem 1.25rem;min-height:200px;}
  .gallery-grid{grid-template-columns:repeat(2,1fr);gap:8px;}
  .p-card{width:155px;flex:0 0 155px;}
  .hero-she{min-height:auto;padding:1rem;}
  .hero-she .hero-she-title{font-size:1.4rem;}
  .hero-she .hero-she-thumbs{gap:6px;}
  .hero-she .hero-she-thumb{padding:6px;}
  .cat-circles-grid{grid-template-columns:repeat(4,1fr);gap:12px 6px;}
  .cat-circle{width:60px;height:60px;}
  .cat-circle img{max-width:36px;max-height:36px;}
  .cat-circle-name{font-size:.6rem;}
}
@media (max-width:420px){
  .cat-circles-grid{grid-template-columns:repeat(4,1fr);gap:10px 4px;}
  .cat-circle{width:54px;height:54px;}
  .cat-circle img{max-width:32px;max-height:32px;}
}

/* ============================================================
   SHEIN-STYLE HERO BANNER (band + 2 product thumbs to the right)
   ============================================================ */
.hero-she-wrap{padding:14px 0 0;background:var(--bg);}
.hero-she{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  align-items:center;
  gap:14px;
  padding:1.5rem 2rem;
  min-height:280px;
  background:linear-gradient(135deg,var(--navy-deep) 0%,var(--royal-blue) 100%);
  border-radius:var(--radius-lg);
  position:relative;
  overflow:hidden;
  color:#fff;
  max-width:1280px;
  margin:0 auto;
}
.hero-she::before{
  content:"";
  position:absolute;
  inset:0;
  background:repeating-linear-gradient(115deg,rgba(255,255,255,.04) 0 2px,transparent 2px 60px);
  pointer-events:none;
}
.hero-she-copy{position:relative;z-index:1;}
.hero-she-eyebrow{
  display:inline-block;
  font-size:.65rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold);
  background:rgba(227,189,116,.12);
  padding:4px 10px;
  border-radius:20px;
  margin-bottom:10px;
}
.hero-she-title{
  font-family:var(--font-serif);
  font-size:clamp(1.5rem,3vw,2.2rem);
  line-height:1.1;
  margin:0 0 8px;
  color:#fff;
}
.hero-she-title .gold{color:var(--gold);}
.hero-she-sub{
  font-size:.88rem;
  opacity:.88;
  margin:0 0 14px;
  max-width:380px;
  line-height:1.45;
}
.hero-she-discount{
  display:inline-flex;
  align-items:baseline;
  gap:6px;
  font-family:var(--font-serif);
  margin-bottom:14px;
}
.hero-she-discount .pct{
  font-size:1.6rem;
  font-weight:700;
  color:var(--gold);
}
.hero-she-discount .lbl{
  font-size:.7rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
}
.hero-she-cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 18px;
  background:var(--gold);
  color:var(--navy-deep);
  font-weight:700;
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.05em;
  border-radius:var(--radius);
  text-decoration:none;
  transition:background .25s,transform .25s;
}
.hero-she-cta:hover{background:var(--gold-dark);color:#fff;transform:translateY(-1px);}

/* Right side: 2 product thumbs */
.hero-she-thumbs{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  max-width:340px;
  justify-self:end;
}
.hero-she-thumb{
  background:#fff;
  border-radius:var(--radius);
  padding:8px;
  text-align:center;
  text-decoration:none;
  color:var(--navy-deep);
  transition:transform .25s,box-shadow .25s;
  box-shadow:0 4px 14px rgba(0,0,0,.15);
}
.hero-she-thumb:hover{transform:translateY(-3px);box-shadow:0 8px 20px rgba(0,0,0,.22);}
.hero-she-thumb img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:contain;
  border-radius:var(--radius-sm);
  background:#f5f3ec;
  margin-bottom:4px;
}
.hero-she-thumb .tname{
  font-size:.65rem;
  font-weight:600;
  line-height:1.2;
  display:-webkit-box;
  -webkit-line-clamp:1;
  -webkit-box-orient:vertical;
  overflow:hidden;
  margin-bottom:2px;
}
.hero-she-thumb .tprice{
  font-size:.72rem;
  font-weight:700;
  color:var(--royal-blue);
}
.dark .hero-she-thumb{background:#2a2d38;color:#e8e8e8;}
.dark .hero-she-thumb img{background:#1a1a2e;}

/* ============================================================
   BENEFITS ROW (compact, 2 blocks side by side)
   ============================================================ */
.benefits-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  background:var(--bg-panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  margin:10px auto 0;
  max-width:1280px;
  padding:10px 0;
}
.benefit-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:6px 12px;
  font-size:.78rem;
  color:var(--ink);
  font-weight:500;
  position:relative;
}
.benefit-item + .benefit-item::before{
  content:"";
  position:absolute;
  left:0;
  top:20%;
  bottom:20%;
  width:1px;
  background:var(--line);
}
.benefit-item i{
  font-size:1.1rem;
  color:var(--royal-blue);
  flex-shrink:0;
}
.benefit-item strong{color:var(--ink);font-weight:700;}
.dark .benefit-item{color:#e0e0e0;}
.dark .benefit-item i{color:var(--gold);}
.dark .benefits-row{background:var(--bg-panel);border-color:var(--line);}
.dark .benefit-item + .benefit-item::before{background:var(--line);}

/* ============================================================
   CIRCULAR CATEGORY GRID (5 cols)
   ============================================================ */
.cat-circles-section{padding:20px 0 8px;}
.cat-circles-section .sec-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:14px;
  border-bottom:1px solid var(--line);
  padding-bottom:10px;
}
.cat-circles-section .sec-head h2{
  font-family:var(--font-serif);
  font-size:1.2rem;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.cat-circles-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px 12px;
}
.cat-circle-link{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  text-decoration:none;
  color:var(--ink);
  text-align:center;
  transition:transform .25s;
}
.cat-circle-link:hover{transform:translateY(-2px);}
.cat-circle-link:hover .cat-circle{border-color:var(--gold);box-shadow:0 4px 14px rgba(227,189,116,.25);}
.cat-circle{
  width:78px;
  height:78px;
  border-radius:50%;
  background:var(--bg-panel);
  border:1.5px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  transition:border-color .25s,box-shadow .25s;
}
.cat-circle img{
  max-width:48px;
  max-height:48px;
  width:auto;
  height:auto;
  object-fit:contain;
  filter:var(--cat-img-filter, none);
}
.cat-circle i{
  font-size:1.6rem;
  color:var(--royal-blue);
}
.cat-circle-name{
  font-size:.7rem;
  font-weight:600;
  color:var(--ink);
  line-height:1.2;
  letter-spacing:.02em;
}
.dark .cat-circle{background:var(--bg-panel);border-color:var(--line);}
.dark .cat-circle i{color:var(--gold);}
.dark .cat-circle-name{color:#e0e0e0;}

/* ============================================================
   REGISTER / PROMO STRIP (dark band, X + text + CTA)
   ============================================================ */
.register-strip{
  background:linear-gradient(90deg,var(--navy-deep) 0%,#0c1a4d 50%,#0a1545 100%);
  color:#fff;
  border-radius:0;
  margin:18px 0 0;
  position:relative;
  overflow:hidden;
}
.register-strip::before{
  content:"";
  position:absolute;
  inset:0;
  background:repeating-linear-gradient(45deg,rgba(255,255,255,.03) 0 1px,transparent 1px 28px);
  pointer-events:none;
}
.register-strip.hidden{display:none;}
.register-strip-inner{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  gap:14px;
  max-width:1280px;
  margin:0 auto;
  padding:14px 20px 14px 48px;
}
.register-strip-close{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  width:26px;
  height:26px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.25);
  background:transparent;
  color:#fff;
  font-size:.78rem;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background .2s,border-color .2s;
  z-index:2;
}
.register-strip-close:hover{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.45);}
.register-strip-text{
  flex:1;
  font-size:.85rem;
  font-weight:500;
  line-height:1.4;
}
.register-strip-text strong{color:var(--gold);font-weight:700;}
.register-strip-cta{
  flex-shrink:0;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:9px 20px;
  background:var(--gold);
  color:var(--navy-deep);
  font-size:.78rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  border-radius:var(--radius);
  text-decoration:none;
  transition:background .2s,color .2s,transform .2s;
}
.register-strip-cta:hover{background:var(--gold-dark);color:#fff;transform:translateY(-1px);}
