/** Shopify CDN: Minification failed

Line 542:18 Unexpected "{"
Line 542:27 Expected ":"
Line 551:18 Unexpected "{"
Line 551:27 Expected ":"
Line 569:18 Unexpected "{"
Line 569:27 Expected ":"
Line 579:18 Unexpected "{"
Line 579:27 Expected ":"
Line 589:18 Unexpected "{"
Line 589:27 Expected ":"
... and 153 more hidden warnings

**/
/* =========================================================
   SpotoMates — FULL FILE (deduped)
   - Exact template typography for HERO
   - High-contrast STORIES strip
   - Device mock styles
   - Trust stats (inline)
   ========================================================= */

/* ---------- Base ---------- */
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { background:#f5f0ea; font-size:16px; line-height:1.6; }

/* ---------- Hero background & layout ---------- */
.hero { padding:140px 40px 100px; min-height:100vh; background:#f5f0ea; position:relative; }
.hero::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(ellipse at top right, rgba(230,220,210,.4) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(220,210,200,.3) 0%, transparent 50%);
  pointer-events:none;
}
.hero-container{
  max-width:1600px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr;
  gap:100px; align-items:center; position:relative; z-index:1;
}

/* ---------- Hero EXACT template typography ---------- */
/* H1 */
.hero-title{
  font-size:clamp(48px, 5vw, 72px);
  font-weight:300;
  line-height:1.1;
  margin:0 0 32px;
  color:#1a1a1a;
  letter-spacing:-2px;
}
.hero-title em{ font-style:italic; font-weight:400; }

/* Lead paragraph */
.hero-desc{
  font-size:20px;
  color:#666;
  margin:0 0 48px;
  line-height:1.7;
  font-weight:300;
  max-width:520px;
}

/* CTA buttons (scoped) */
.hero-buttons{ display:flex; gap:24px; }
.hero-buttons .btn{
  padding:16px 48px;
  font-size:16px;
  border-radius:50px;
  font-weight:400;
  letter-spacing:.3px;
  border:none;
}
.hero-buttons .btn.btn--primary{ background:#1a1a1a; color:#fff; }
.hero-buttons .btn.btn--ghost{
  color:#666; background:transparent; border:1px solid rgba(0,0,0,.1);
}
.hero-buttons .btn.btn--ghost:hover{
  color:#1a1a1a; border-color:rgba(0,0,0,.2); background:rgba(255,255,255,.5);
}

/* ---------- Device mock (glass card with inner screen) ---------- */
.hero__device{ background:transparent; box-shadow:none; }
.device-mockup{
  width:100%; max-width:500px; height:600px;
  background:linear-gradient(145deg, rgba(255,255,255,.9), rgba(255,255,255,.6));
  backdrop-filter:blur(20px);
  border-radius:40px;
  box-shadow:0 60px 120px rgba(0,0,0,.12), 0 30px 60px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.9);
  display:flex; align-items:center; justify-content:center;
  transform:perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition:transform .6s cubic-bezier(.4,0,.2,1);
  margin-inline:auto;
}
.device-mockup:hover{ transform:perspective(1000px) rotateY(5deg) rotateX(-5deg); }
.device-screen{
  width:90%; height:90%; background:rgba(255,255,255,.5);
  border-radius:32px; padding:32px; display:flex; flex-direction:column; gap:24px;
}
.spot-preview{
  background:#fff; padding:24px; border-radius:20px;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
  transition:transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s cubic-bezier(.4,0,.2,1);
  cursor:pointer;
}
.spot-preview:hover{ transform:translateX(8px); box-shadow:0 12px 32px rgba(0,0,0,.1); }
.spot-icon{
  width:48px; height:48px; border-radius:12px; margin-bottom:12px;
  background:linear-gradient(135deg,#1a1a1a 0%, #4a4a4a 100%);
}

/* ---------- Trust (inline stats like comp) ---------- */
.trust--inline .trust__row{
  display:flex; gap:100px; justify-content:center; align-items:center; flex-wrap:wrap;
}
.trust--inline .trust__item{ background:transparent; box-shadow:none; padding:0; text-align:center; }
.trust--inline .trust__item h4{ font-weight:300; font-size:24px; margin-bottom:4px; color:#1a1a1a; }
.trust--inline .trust__item p{ color:#999; font-size:15px; }

/* ---------- Stories (High Contrast) ---------- */
.stories-section{
  padding:120px 20px; background:#f5f0ea; position:relative; overflow:hidden;
}
.stories-container{ max-width:1600px; margin:0 auto; }
.stories-head{ text-align:center; margin-bottom:48px; }
.stories-title{
  font-size:clamp(40px, 4vw, 56px); font-weight:300; letter-spacing:-1px;
  color:#1a1a1a; margin:0;
}
.stories-sub{ margin-top:10px; color:#4b5563; font-size:18px; }

.stories-row{
  display:flex; gap:20px; transition:transform .4s ease; align-items:stretch;
}
.story-card{ flex:1; min-width:0; cursor:pointer; transition:flex .55s cubic-bezier(.4,0,.2,1); }
.story-card.is-expanded{ flex:3.4; }
.story-card.is-collapsed{ flex:.75; filter:saturate(.7) brightness(.85); opacity:.85; }

.story-image{
  position:relative; height:560px; border-radius:24px; overflow:hidden;
  color:#fff; background-size:cover; background-position:center;
  box-shadow:0 24px 60px rgba(0,0,0,.20);
  transition:transform .35s ease, box-shadow .35s ease;
}
.story-image:after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(255,255,255,.14) 0%, transparent 28%);
  mix-blend-mode:soft-light; pointer-events:none;
}
.story-card:hover .story-image{ transform:translateY(-3px); box-shadow:0 36px 80px rgba(0,0,0,.28); }

.story-top{
  position:absolute; top:20px; left:22px; display:flex; align-items:center; gap:10px;
  font-size:13px; letter-spacing:1.6px; text-transform:uppercase; font-weight:600; opacity:.95;
}
.story-emoji{ font-size:20px; filter:drop-shadow(0 1px 3px rgba(0,0,0,.35)); }
.story-label{ opacity:.95; }

.story-content{
  position:absolute; left:22px; right:22px; bottom:22px;
  transform:translateY(14px); transition:transform .35s ease, opacity .35s ease;
}
.story-headline{
  font-size:40px; line-height:1.15; font-weight:300; letter-spacing:-.5px; margin:0 0 14px;
  text-shadow:0 1px 2px rgba(0,0,0,.45), 0 6px 30px rgba(0,0,0,.35);
}
.story-headline em{ font-style:italic; font-weight:400; }
.story-desc{
  font-size:16px; line-height:1.65; max-width:560px; margin:0 0 18px;
  opacity:.95; text-shadow:0 1px 2px rgba(0,0,0,.35);
}
.story-cta{
  display:inline-block; background:#fff; color:#111; border-radius:999px; padding:12px 28px;
  font-size:15px; font-weight:500; letter-spacing:.2px; text-decoration:none;
  transform:translateY(8px); opacity:0; transition:transform .35s ease, opacity .35s ease, box-shadow .25s ease;
}
.story-card.is-expanded .story-cta{ opacity:1; transform:translateY(0); }
.story-cta:hover{ box-shadow:0 16px 36px rgba(0,0,0,.25); }

.story-expand{
  position:absolute; top:18px; right:18px; width:42px; height:42px; border-radius:50%;
  background:rgba(255,255,255,.18); backdrop-filter:blur(14px); border:1px solid rgba(255,255,255,.35);
  color:#fff; font-size:24px; display:grid; place-items:center; cursor:pointer; transition:transform .25s ease;
}
.story-card.is-expanded .story-expand{ transform:rotate(45deg); }

/* ---------- Responsive ---------- */
@media (max-width: 1200px){
  .hero-container{ grid-template-columns:1fr; text-align:center; gap:60px; }
  .device-mockup{ height:480px; }
  .stories-row{ flex-direction:column; }
  .story-card, .story-card.is-expanded, .story-card.is-collapsed{ flex:1; }
  .story-image{ height:440px; }
  .story-cta{ opacity:1; transform:none; }
}
/* Additional styles for complete alignment */

/* Features Section */
.features {
  padding: 120px 40px;
  background: white;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.features-container {
  max-width: 1600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 100px;
}

.section-header h2 {
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 300;
  margin-bottom: 24px;
  color: #1a1a1a;
  letter-spacing: -1.5px;
}

.section-header p {
  font-size: 20px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
}

.feature-card {
  background: #fafaf8;
  padding: 48px;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #1a1a1a 0%, #666 100%);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  background: white;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
  border-radius: 16px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
  transform: rotate(-5deg) scale(1.05);
}

.feature-card h3 {
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 16px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
  font-size: 16px;
}

.feature-link {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
}

.feature-link:hover {
  gap: 14px;
}

/* Testimonials */
.testimonials {
  padding: 120px 40px;
  background: #f5f0ea;
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-top: 80px;
}

.testimonial-card {
  background: white;
  padding: 48px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a1a 0%, #666 100%);
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 17px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.author-info p {
  font-size: 14px;
  color: #999;
  font-weight: 300;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 140px 40px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 48px;
  opacity: 0.9;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.btn-white {
  background: white;
  color: #1a1a1a;
  padding: 18px 48px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
/* --- Tighten Spot Hero bottom space --- */
.hero.spot-hero{
  /* stop forcing full-screen height */
  min-height: clamp(560px, 72vh, 860px);
  /* keep roomy top, trim bottom */
  padding-top: clamp(80px, 8vh, 120px);
  padding-bottom: 32px;
}

/* If another rule still forces 100vh, this ensures our override wins */
.hero.spot-hero{ min-height: auto; }
@media (min-width: 1201px){
  .hero.spot-hero{ min-height: 72vh; }
}

/* If How-It-Works follows the hero, pull it up a bit */
.hero.spot-hero + .how-it-works{ padding-top: 64px; }

/* Mobile: a touch tighter */
@media (max-width: 1200px){
  .hero.spot-hero{
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 24px;
  }
}
/* --- Cinematic hero media layer --- */
.hero-bg-wrap{position:absolute; inset:0; overflow:hidden; z-index:0;}
.hero-bg{width:100%; height:100%; object-fit:cover; object-position:center; filter:saturate(.95) contrast(1.05) brightness(.98);}
.hero-bg-img{width:100%; height:100%; object-fit:cover; object-position:center; display:block; filter:saturate(.95) contrast(1.05) brightness(.98);}
.hero-grain{position:absolute; inset:-20%; pointer-events:none; background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/><feComponentTransfer><feFuncA type='table' tableValues='0 0 .06 0'/></feComponentTransfer></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size:160px 160px; mix-blend-mode:multiply; opacity:.45;}
.hero-vignette{position:absolute; inset:0; background:radial-gradient(75% 75% at 70% 40%, transparent 0%, transparent 60%, rgba(0,0,0,.18) 100%); pointer-events:none;}

.hero-container{ position:relative; z-index:1; }

/* --- Headline flourishes to mimic Oura --- */
.hero-kicker{letter-spacing:.18em; text-transform:uppercase; font-size:12px; color:#6b7280; margin:0 0 8px;}
.hero-title em{font-style:italic; font-weight:400; background:linear-gradient(180deg,#8d6f3b, #bba170); -webkit-background-clip:text; background-clip:text; color:transparent;}
@media (max-width: 800px){ .hero-title br{display:none;} }

/* --- Product figure (tilt + floating) --- */
.product-hero{position:relative; width:min(760px, 48vw); margin:0 auto;}
.product-asset{width:100%; height:auto; transform:perspective(1200px) rotateY(-18deg) rotateX(6deg) rotateZ(-2deg) translateY(0); transform-origin:60% 55%;
  will-change:transform; transition:transform .8s cubic-bezier(.2,.6,.2,1), filter .4s;}
.product-hero:hover .product-asset{transform:perspective(1200px) rotateY(-8deg) rotateX(2deg) rotateZ(-1deg) translateY(-6px);}
.product-shadow{position:absolute; inset:auto 10% -4% 10%; height:18%; background:radial-gradient(50% 50% at 50% 50%, rgba(0,0,0,.28) 0%, rgba(0,0,0,0) 70%); filter:blur(14px);}

/* --- Badge under CTAs --- */
.hero-badges{margin-top:18px;}
.hero-badge{display:inline-flex; align-items:center; gap:8px; padding:8px 14px; border-radius:999px; font-size:12px; color:#111; background:rgba(255,255,255,.7); border:1px solid rgba(0,0,0,.08); backdrop-filter:blur(6px);}
@media (prefers-reduced-motion: reduce){
  .product-asset{transition:none; transform:none;}
  .hero-bg, .hero-bg-img{filter:none;}
}
/* Remove the heavy overlay - use a subtle gradient only where text sits */
#shopify-section-{{ section.id }} .hero-content {
  /* Remove any background colors previously added */
  background: none;
  padding: 0;
  max-width: 600px;
  position: relative;
}

/* Add a subtle gradient ONLY behind the text area */
#shopify-section-{{ section.id }} .hero-content::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  right: -40px;
  bottom: -40px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 80%
  );
  z-index: -1;
  pointer-events: none;
}

/* Lighter vignette for subtlety */
#shopify-section-{{ section.id }} .hero-vignette {
  background: radial-gradient(
    100% 100% at 50% 50%, 
    transparent 0%, 
    transparent 70%, 
    rgba(0, 0, 0, 0.15) 100%
  );
}

/* Only slightly darken images */
#shopify-section-{{ section.id }} .hero-bg-img {
  filter: brightness(0.85) saturate(1) contrast(1.05);
}

/* =========================================================
   SPOT HERO OVERLAY FIX - Subtle Oura-Style Enhancement
   Add this AFTER removing the old overlay styles
   ========================================================= */

/* --- SUBTLE GRADIENT SCRIM (Desktop Only) --- */
#shopify-section-{{ section.id }} .hero-bg-wrap::after {
  display: none;
}

/* --- LIGHTER VIGNETTE --- */
#shopify-section-{{ section.id }} .hero-vignette {
  background: radial-gradient(
    ellipse 120% 120% at 50% 50%,
    transparent 0%,
    transparent 65%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

/* --- SUBTLE IMAGE DARKENING --- */
#shopify-section-{{ section.id }} .hero-bg-img,
#shopify-section-{{ section.id }} .hero-bg {
  filter: brightness(0.88) saturate(1.02) contrast(1.04);
}

/* --- TEXT STYLES FOR CLARITY --- */
#shopify-section-{{ section.id }} .hero-content {
  position: relative;
  background: none;
  padding: 0;
  max-width: 600px;
  backdrop-filter: none;
  border-radius: 0;
}

#shopify-section-{{ section.id }} .hero-kicker {
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  margin: 0 0 12px;
}

#shopify-section-{{ section.id }} .hero-title {
  color: #2B2A28;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  font-weight: 300;
  letter-spacing: -1.5px;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.1;
  margin: 0 0 24px;
}

#shopify-section-{{ section.id }} .hero-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, #d4af37, #f4e4c1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

#shopify-section-{{ section.id }} .hero-desc {
  color: #2B2A28 ;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  font-size: 19px;
  line-height: 1.6;
  font-weight: 300;
  margin: 0 0 40px;
  max-width: 540px;
}

/* --- ENHANCED BUTTON STYLES --- */
#shopify-section-{{ section.id }} .btn--primary {
  background: #ffffff;
  color: #1a1a1a;
  font-weight: 500;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 16px 48px;
}

#shopify-section-{{ section.id }} .btn--primary:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

#shopify-section-{{ section.id }} .btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#shopify-section-{{ section.id }} .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

/* --- BADGE ENHANCEMENT --- */
#shopify-section-{{ section.id }} .hero-badge {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #1a1a1a;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* =========================================================
   MOBILE OPTIMIZATION (Oura-style)
   ========================================================= */
@media (max-width: 1023px) {
  /* Full-height mobile hero */
  #shopify-section-{{ section.id }} .spot-hero {
    min-height: 100vh;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  /* Remove background gradient on mobile */
  #shopify-section-{{ section.id }} .hero-bg-wrap::after {
    display: none;
  }

  /* Slightly darker images on mobile for better contrast */
  #shopify-section-{{ section.id }} .hero-bg-img,
  #shopify-section-{{ section.id }} .hero-bg {
    filter: brightness(0.82) saturate(1) contrast(1.05);
  }

  /* Position content at TOP on mobile */
  #shopify-section-{{ section.id }} .hero-container {
    min-height: 100vh;
    padding: 60px 0 0 0;
    margin: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 100%;
  }

  #shopify-section-{{ section.id }} .hero-content {
    padding: 28px 24px;
    max-width: 320px;
    width: 90%;
    border-radius: 16px;
  }

  /* Tighter mobile typography */
  #shopify-section-{{ section.id }} .hero-kicker {
    font-size: 10px;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
  }

  #shopify-section-{{ section.id }} .hero-title {
    font-size: 40px;
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: -1px;
  }

  #shopify-section-{{ section.id }} .hero-desc {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 32px;
    max-width: 100%;
  }

  /* Full-width stacked buttons */
  #shopify-section-{{ section.id }} .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  #shopify-section-{{ section.id }} .hero-buttons .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    justify-content: center;
  }

  /* Center badge on mobile */
  #shopify-section-{{ section.id }} .hero-badges {
    margin-top: 24px;
    display: flex;
    justify-content: center;
  }

  #shopify-section-{{ section.id }} .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
  }
}

/* Tighter mobile typography */
  #shopify-section-{{ section.id }} .hero-kicker {
    font-size: 9px;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
  }

  #shopify-section-{{ section.id }} .hero-title {
    font-size: 32px;
    line-height: 1.0;
    margin-bottom: 8px;
    letter-spacing: -1px;
  }

  #shopify-section-{{ section.id }} .hero-desc {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 100%;
  }

  /* Compact stacked buttons */
  #shopify-section-{{ section.id }} .hero-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 16px;
  }

  #shopify-section-{{ section.id }} .hero-buttons .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    justify-content: center;
  }

  /* Smaller badge on mobile */
  #shopify-section-{{ section.id }} .hero-badges {
    margin-top: 16px;
    display: flex;
    justify-content: center;
  }

  #shopify-section-{{ section.id }} .hero-badge {
    font-size: 10px;
    padding: 4px 10px;
  }
/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1200px) {
  #shopify-section-{{ section.id }} .hero-bg-wrap::after {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.2) 45%,
      transparent 70%
    );
  }
}

/* High-res displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  #shopify-section-{{ section.id }} .hero-title,
  #shopify-section-{{ section.id }} .hero-desc {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Accessibility - Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  #shopify-section-{{ section.id }} .btn--primary,
  #shopify-section-{{ section.id }} .btn--ghost {
    transition: none;
  }
}

/* =========================================================
   SPOT HERO - OURA-STYLE TEXT HIERARCHY
   ========================================================= */

/* --- MAIN HEADLINE (like "Sleeker. Smarter.") --- */
#shopify-section-{{ section.id }} .hero-title {
  color: #2B2A28;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  font-weight: 400; /* Slightly heavier than before */
  letter-spacing: -1.5px;
  font-size: clamp(52px, 5.5vw, 78px); /* Slightly larger */
  line-height: 1.05; /* Tighter line height */
  margin: 0 0 16px; /* Reduced bottom margin */
}

#shopify-section-{{ section.id }} .hero-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, #d4af37, #f4e4c1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* --- SUBHEADING (like "Made for you.") --- */
#shopify-section-{{ section.id }} .hero-desc {
  color: #2B2A28 ;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  font-size: 32px; /* Much larger than before */
  line-height: 1.2;
  font-weight: 300;
  font-style: italic; /* Italic like Oura */
  margin: 0 0 48px; /* Increased spacing before buttons */
  max-width: 540px;
  letter-spacing: -0.5px;
}

/* --- KICKER (small text above title) --- */
#shopify-section-{{ section.id }} .hero-kicker {
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  margin: 0 0 20px; /* Increased spacing */
}

/* --- ENHANCED BUTTON STYLES --- */
#shopify-section-{{ section.id }} .hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

#shopify-section-{{ section.id }} .btn--primary {
  background: #ffffff;
  color: #1a1a1a;
  font-weight: 500;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 18px 48px; /* Slightly larger */
  font-size: 16px;
  border-radius: 50px;
  border: none;
}

#shopify-section-{{ section.id }} .btn--primary:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

#shopify-section-{{ section.id }} .btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 18px 48px;
  font-size: 16px;
  border-radius: 50px;
}

#shopify-section-{{ section.id }} .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

/* --- BADGE ENHANCEMENT --- */
#shopify-section-{{ section.id }} .hero-badge {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #1a1a1a;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 999px;
}

#shopify-section-{{ section.id }} .hero-container {
  min-height: 100vh;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 100%;
  padding-top: 120px;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

#shopify-section-{{ section.id }} .hero-content {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.35) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 32px 28px;
  max-width: 420px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
/* =========================================================
   MOBILE OPTIMIZATION
   ========================================================= */


/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1200px) {
  #shopify-section-{{ section.id }} .hero-title {
    font-size: 58px;
  }
  
  #shopify-section-{{ section.id }} .hero-desc {
    font-size: 28px;
  }
}

/* === Spot Hero fixes === */

/* Remove the outer gradient box around the card */
#shopify-section-{{ section.id }} .hero-content::before{
  content: none !important;
}

/* Keep the inner card, but tighten vertical space under the buttons */
#shopify-section-{{ section.id }} .hero-buttons{
  margin-bottom: 8px !important;   /* was ~28px */
}
#shopify-section-{{ section.id }} .hero-content{
  padding-bottom: 16px !important; /* trims extra space under CTAs */
}

/* Mobile: position the card toward the top-middle */
@media (max-width: 1023px){
  #shopify-section-{{ section.id }} .spot-hero{
    min-height: 70vh;
    padding: 0;
  }
  #shopify-section-{{ section.id }} .hero-container{
    min-height: 70vh;
    display: flex !important;
    align-items: flex-start !important;  /* top */
    justify-content: center !important;  /* middle horizontally */
    padding-top: 56px !important;
  }
  #shopify-section-{{ section.id }} .hero-content{
    margin-top: 0;
    transform: none !important; /* guard against any accidental offsets */
  }
}

<!-- Add this CSS to your spot-hero.liquid file's <style> section -->
<style>
/* =========================================================
   OURA-STYLE TYPOGRAPHY & SUBTLE BACKGROUND
   ========================================================= */

/* --- REMOVE/REDUCE BACKGROUND BOX --- */
#shopify-section-{{ section.id }} .hero-content {
  background: none !important; /* Remove the dark gradient box */
  backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* --- KICKER (SPOTOMATES) --- */
#shopify-section-{{ section.id }} .hero-kicker {
  font-size: 13px !important;
  letter-spacing: 0.15em !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  text-transform: uppercase !important;
  margin: 0 0 16px !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

/* --- MAIN HEADLINE --- */
#shopify-section-{{ section.id }} .hero-title {
  font-size: clamp(56px, 6vw, 88px) !important;
  font-weight: 200 !important; /* Extra light like Oura */
  line-height: 1.05 !important;
  letter-spacing: -2px !important;
  color: #2B2A28 !important;
  margin: 0 0 20px !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

/* --- SUBHEADING (Italic style like "Made for you") --- */
#shopify-section-{{ section.id }} .hero-desc {
  font-size: clamp(28px, 3vw, 42px) !important; /* Larger like Oura */
  font-weight: 300 !important;
  font-style: italic !important; /* Italic like Oura */
  line-height: 1.2 !important;
  letter-spacing: -0.5px !important;
  color: #2B2A28  !important;
  margin: 0 0 48px !important;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3) !important;
  max-width: 600px !important;
}

/* --- BUTTON STYLING (Bigger text) --- */
#shopify-section-{{ section.id }} .hero-buttons .btn {
  font-size: 18px !important; /* Increased from 16px */
  padding: 18px 52px !important; /* Slightly more padding */
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  border-radius: 50px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#shopify-section-{{ section.id }} .btn--primary {
  background: rgba(255, 255, 255, 0.95) !important;
  color: #1a1a1a !important;
  border: none !important;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2) !important;
}

#shopify-section-{{ section.id }} .btn--primary:hover {
  background: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
}

/* --- SUBTLE GRADIENT BEHIND TEXT ONLY (Optional) --- */
#shopify-section-{{ section.id }} .hero-content::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -60px;
  right: -60px;
  bottom: -40px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    transparent 70%
  );
  z-index: -1;
  pointer-events: none;
}

/* =========================================================
   MOBILE ADJUSTMENTS
   ========================================================= */
@media (max-width: 1023px) {
  /* Keep text readable on mobile */
  #shopify-section-{{ section.id }} .hero-content {
    padding: 20px !important; /* Add some padding back on mobile */
  }
  
  #shopify-section-{{ section.id }} .hero-kicker {
    font-size: 15px !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 12px !important;
  }
  
  #shopify-section-{{ section.id }} .hero-title {
    font-size: 50px !important;
    font-weight: 300 !important; /* Slightly heavier on mobile */
    line-height: 1.05 !important;
    margin-bottom: 16px !important;
  }
  
  #shopify-section-{{ section.id }} .hero-desc {
    font-size: 32px !important;
    font-style: italic !important;
    line-height: 1.25 !important;
    margin-bottom: 32px !important;
  }
  
  #shopify-section-{{ section.id }} .hero-buttons .btn {
    font-size: 25px !important;
    padding: 16px 32px !important;
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
  }
  
  /* Add subtle dark overlay for mobile readability */
  #shopify-section-{{ section.id }} .hero-content::before {
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.25) 100%
    );
    border-radius: 20px;
  }
}

/* =========================================================
   TABLET ADJUSTMENTS
   ========================================================= */
@media (min-width: 769px) and (max-width: 1200px) {
  #shopify-section-{{ section.id }} .hero-title {
    font-size: 68px !important;
  }
  
  #shopify-section-{{ section.id }} .hero-desc {
    font-size: 32px !important;
  }
  
  #shopify-section-{{ section.id }} .hero-buttons .btn {
    font-size: 17px !important;
  }
}
/* ===============================
   Premium Gradient System (Home)
   =============================== */

/* Color tokens for easy tweaking */
:root{
  --sm-bg-0: #faf8f5;
  --sm-bg-1: #f9f7f4;
  --sm-bg-2: #f5ede4;
  --sm-bg-3: #f0e6da;
  --sm-bg-4: #ede3d6;
}

/* 2A) Global base (non-home pages keep simple background) */
body{
  background: var(--sm-bg-1);
  min-height: 100vh;
}

/* 2B) Homepage wrapper with flowing vertical gradient */
.spotomates-page-wrapper{
  background: linear-gradient(
    180deg,
    var(--sm-bg-0) 0%,
    var(--sm-bg-2) 20%,
    var(--sm-bg-4) 40%,
    var(--sm-bg-3) 60%,
    var(--sm-bg-2) 80%,
    var(--sm-bg-0) 100%
  );
  position: relative;
}

/* 2C) Animated premium option (comment out if you prefer static) */
@keyframes smGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.spotomates-page-wrapper.is-animated{
  background: linear-gradient(270deg,
    var(--sm-bg-1),
    var(--sm-bg-2),
    var(--sm-bg-3),
    var(--sm-bg-2)
  );
  background-size: 400% 400%;
  animation: smGradientShift 20s ease infinite;
}
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .spotomates-page-wrapper.is-animated{
    animation: none;
    background-size: auto;
    background: linear-gradient(
      180deg,
      var(--sm-bg-0) 0%,
      var(--sm-bg-2) 20%,
      var(--sm-bg-4) 40%,
      var(--sm-bg-3) 60%,
      var(--sm-bg-2) 80%,
      var(--sm-bg-0) 100%
    );
  }
}

/* 2D) Make sections translucent so the wrapper gradient flows through */
.spot-stories,
.how-it-works,
.spot-features,
.spot-what-you-need {
  background: transparent !important;
}

/* 2E) Soft depth per section (radial “bloom” overlays)
   You can keep any section’s own images; these are subtle glows. */

/* spot-stories */
.stories-section{
  position: relative;
  padding: 100px 20px;
  background: radial-gradient(ellipse at 50% 0%,
    rgba(245, 240, 234, 0.90) 0%,
    rgba(249, 247, 244, 0.95) 50%,
    transparent 100%
  ) !important;
}
@supports (backdrop-filter: blur(10px)){
  .stories-section{
    backdrop-filter: blur(10px);
  }
}

/* spot-how-it-works */
.how-it-works{
  position: relative;
  background: radial-gradient(circle at 30% 50%,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.80) 40%,
    transparent 70%
  ) !important;
}

/* spot-features */
.spot-features{
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(249, 247, 244, 0.95) 0%,
    rgba(245, 237, 228, 0.90) 50%,
    rgba(249, 247, 244, 0.95) 100%
  ) !important;
}

/* spot-what-you-need */
.spot-what-you-need{
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
  background: radial-gradient(ellipse at top left,
    rgba(249, 247, 244, 1) 0%,
    rgba(245, 240, 234, 0.95) 30%,
    rgba(240, 230, 218, 0.90) 60%,
    rgba(249, 247, 244, 0.95) 100%
  ) !important;
}
/* If that section used a ::before overlay previously, neutralize it
   so it doesn’t fight the new gradient. */
.spot-what-you-need::before{
  content: none !important;
}

/* 2F) Hero/other sections that had hard backgrounds—neutralize if needed */
.spot-hero,
.hero,
.stories,
.stories-section,
.spot-features,
.how-it-works,
#stories,
#features{
  /* Ensure no solid fills from older CSS trump the gradient */
  background-color: transparent !important;
}

/* 2G) Mobile tuning: keep gradients soft for performance */
@media (max-width: 1023px){
  .stories-section{ padding: 72px 16px; }
  .spot-what-you-need{ padding: 72px 0 96px; }
}

/* Remove any top margin/padding from the first section */
.shopify-section:first-of-type,
#shopify-section-template--23283219079480__spot_hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Reset hero container positioning */
#shopify-section-template--23283219079480__spot_hero .hero.spot-hero {
  margin-top: 0 !important;
  padding-top: clamp(60px, 10vh, 100px) !important; /* Space for content, not gap */
}

/* Ensure hero background starts at top */
#shopify-section-template--23283219079480__spot_hero .hero-bg-wrap {
  top: 0 !important;
}

/* Remove any wrapper spacing that might cause gap */
.spotomates-page-wrapper > .shopify-section:first-child {
  margin-top: 0 !important;
}
/* ===============================
   Premium Gradient System (Supplement Page)
   =============================== */

/* Supplement page wrapper with flowing vertical gradient */
.supplement-page-wrapper{
  background: linear-gradient(
    180deg,
    var(--sm-bg-0) 0%,
    var(--sm-bg-2) 20%,
    var(--sm-bg-4) 40%,
    var(--sm-bg-3) 60%,
    var(--sm-bg-2) 80%,
    var(--sm-bg-0) 100%
  );
  position: relative;
  min-height: 100vh;
}

/* Animated option (optional) */
@keyframes smGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.supplement-page-wrapper.is-animated{
  background: linear-gradient(270deg,
    var(--sm-bg-1),
    var(--sm-bg-2),
    var(--sm-bg-3),
    var(--sm-bg-2)
  );
  background-size: 400% 400%;
  animation: smGradientShift 20s ease infinite;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .supplement-page-wrapper.is-animated{
    animation: none;
    background-size: auto;
    background: linear-gradient(
      180deg,
      var(--sm-bg-0) 0%,
      var(--sm-bg-2) 20%,
      var(--sm-bg-4) 40%,
      var(--sm-bg-3) 60%,
      var(--sm-bg-2) 80%,
      var(--sm-bg-0) 100%
    );
  }
}
/* ===============================
   Premium Gradient System (Supplement Page)
   =============================== */

.supplement-page-wrapper{
  background: linear-gradient(
    180deg,
    var(--sm-bg-0) 0%,
    var(--sm-bg-2) 20%,
    var(--sm-bg-4) 40%,
    var(--sm-bg-3) 60%,
    var(--sm-bg-2) 80%,
    var(--sm-bg-0) 100%
  );
  position: relative;
  min-height: 100vh;
}

/* Animated option (optional) */
@keyframes smGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.supplement-page-wrapper.is-animated{
  background: linear-gradient(270deg,
    var(--sm-bg-1),
    var(--sm-bg-2),
    var(--sm-bg-3),
    var(--sm-bg-2)
  );
  background-size: 400% 400%;
  animation: smGradientShift 20s ease infinite;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .supplement-page-wrapper.is-animated{
    animation: none;
    background-size: auto;
    background: linear-gradient(
      180deg,
      var(--sm-bg-0) 0%,
      var(--sm-bg-2) 20%,
      var(--sm-bg-4) 40%,
      var(--sm-bg-3) 60%,
      var(--sm-bg-2) 80%,
      var(--sm-bg-0) 100%
    );
  }
}

/* Make supplement sections transparent */
.supplement-cost,
.supplement-solution,
.supplement-how,
.supplement-compare,
.supplement-product,
.supplement-final {
  background: transparent !important;
}

/* Add subtle depth overlays */
.supplement-cost {
  position: relative;
  background: radial-gradient(ellipse at 50% 0%,
    rgba(245, 240, 234, 0.90) 0%,
    rgba(249, 247, 244, 0.95) 50%,
    transparent 100%
  ) !important;
}

.supplement-solution {
  position: relative;
  background: radial-gradient(circle at 30% 50%,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.80) 40%,
    transparent 70%
  ) !important;
}

.supplement-how {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(249, 247, 244, 0.95) 0%,
    rgba(245, 237, 228, 0.90) 50%,
    rgba(249, 247, 244, 0.95) 100%
  ) !important;
}

.supplement-compare {
  position: relative;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(255,255,255,0.90) 0%,
    rgba(249, 247, 244, 0.85) 50%,
    transparent 100%
  ) !important;
}

.supplement-product {
  position: relative;
  background: radial-gradient(ellipse at top left,
    rgba(249, 247, 244, 1) 0%,
    rgba(245, 240, 234, 0.95) 30%,
    rgba(240, 230, 218, 0.90) 60%,
    rgba(249, 247, 244, 0.95) 100%
  ) !important;
}

.supplement-final {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(249, 247, 244, 0.90) 0%,
    rgba(245, 240, 234, 0.95) 100%
  ) !important;
}

.buy-corner-badge {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.badge-trigger {
  width: 64px;
  height: 64px;
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
}

.badge-trigger::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.badge-trigger:hover::before {
  opacity: 1;
}

.badge-trigger:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.badge-icon {
  font-size: 24px;
  color: white;
  line-height: 1;
}

.badge-price {
  font-size: 11px;
  color: white;
  font-weight: 700;
  margin-top: 2px;
}

.badge-menu {
  position: absolute;
  bottom: 80px;
  right: 0;
  background: white;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom right;
}

.buy-corner-badge.is-expanded .badge-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.buy-corner-badge.is-expanded .badge-trigger {
  background: white;
  border: 2px solid #1a1a1a;
}

.buy-corner-badge.is-expanded .badge-trigger .badge-icon {
  color: #1a1a1a;
  transform: rotate(45deg);
}

.buy-corner-badge.is-expanded .badge-trigger .badge-price {
  color: #1a1a1a;
}

.badge-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  margin-bottom: 8px;
  border: 2px solid transparent;
}

.badge-menu-item:last-child {
  margin-bottom: 0;
}

.badge-menu-item:hover {
  transform: translateX(-4px);
}

.badge-menu-item--primary {
  background: #1a1a1a;
  color: white;
}

.badge-menu-item--primary:hover {
  background: #000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.badge-menu-item--secondary {
  background: #f5f0ea;
  color: #1a1a1a;
  border-color: #FF9900;
}

.badge-menu-item--secondary:hover {
  background: #FF9900;
  color: white;
}

.badge-menu-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.badge-menu-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.badge-menu-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-menu-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.badge-menu-sublabel {
  font-size: 11px;
  opacity: 0.7;
  line-height: 1.2;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); }
  50% { transform: scale(1.1); box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3); }
}

.badge-trigger.pulse {
  animation: badgePulse 2s ease-in-out infinite;
}

@media (max-width: 640px) {
  .buy-corner-badge {
    bottom: 16px;
    right: 16px;
  }
  
  .badge-trigger {
    width: 56px;
    height: 56px;
  }
  
  .badge-icon {
    font-size: 20px;
  }
  
  .badge-price {
    font-size: 10px;
  }
  
  .badge-menu {
    bottom: 72px;
    min-width: 180px;
  }
  
  .badge-menu-item {
    padding: 12px 14px;
  }
  
  .badge-menu-label {
    font-size: 13px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .badge-trigger {
    width: 60px;
    height: 60px;
  }
}

.buy-corner-badge.hide-at-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
</style>