/* ============================================================
   SILKSLIDE — STYLESHEET v2
   Modern DTC brand aesthetic. Mobile-first. No frameworks.
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --black:     #111111;
  --charcoal:  #1C1C1C;
  --gold:      #C6A975;
  --gold-lt:   #D4BC8E;
  --gold-pale: rgba(198,169,117,0.12);
  --white:     #FFFFFF;
  --off-white: #F7F7F7;
  --light:     #EFEFEF;
  --muted:     #888888;
  --border:    #E5E5E5;
  --border-dark: rgba(255,255,255,0.1);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;

  --transition: 0.2s ease;
  --transition-md: 0.35s ease;

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, picture { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, select { font-family: inherit; }

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ---- Typography ---- */
h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.3;
}
p { line-height: 1.7; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.text-white { color: var(--white); }

/* ---- Announcement Bar ---- */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 10px 20px;
  overflow: hidden;
  white-space: nowrap;
}
.announcement-bar a { color: var(--gold); text-decoration: underline; margin-left: 4px; }

/* Ticker/marquee */
.ticker-wrap {
  overflow: hidden;
  width: 100%;
}
.ticker {
  display: inline-flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  padding: 0 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker { animation: none; }
}

/* ---- Navigation ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) { .nav-inner { padding: 0 40px; } }

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--black);
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  color: var(--charcoal);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 20px 1.5rem;
  gap: 0;
}
.mobile-menu.open { display: flex; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }
.mobile-menu a {
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn-primary { margin-top: 1rem; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--black);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-lt);
  box-shadow: 0 6px 20px rgba(198,169,117,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  box-shadow: none;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow: none;
}

.btn-lg {
  font-size: 1rem;
  padding: 1.1rem 2.5rem;
}

.btn-full { width: 100%; }

/* ---- Hero ---- */
.hero {
  background: var(--black);
  min-height: 95svh;
  min-height: 95vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  overflow: hidden;
  position: relative;
}
@media (min-width: 900px) {
  .hero { grid-template-columns: 1fr 1fr; min-height: 85vh; }
}

.hero-content {
  padding: 5rem 20px 3rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) { .hero-content { padding: 5rem 40px 5rem; } }
@media (min-width: 900px) { .hero-content { padding: 5rem 40px 5rem 60px; max-width: 640px; } }

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.hero-trust-item svg {
  width: 14px; height: 14px;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 320px;
  overflow: hidden;
}
@media (max-width: 899px) {
  .hero-visual { margin: 0 20px 3rem; border-radius: var(--radius-lg); min-height: 260px; }
}
@media (min-width: 900px) { .hero-visual { min-height: 100%; border-radius: 0; } }

.hero-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  min-height: 320px;
}
.hero-half {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  background: #2a2a2a;
  overflow: hidden;
}
.hero-half:first-child { border-right: 1px solid rgba(255,255,255,0.08); }
.hero-half img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.hero-half-label {
  position: relative;
  z-index: 1;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  color: var(--white);
  width: fit-content;
}
.hero-half-label.after { background: var(--gold); color: var(--black); }

/* ---- Trust Strip ---- */
.trust-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
@media (min-width: 768px) { .trust-strip-inner { padding: 0 40px; } }
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  padding: 14px 1.25rem;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.trust-strip-item:last-child { border-right: none; }
.trust-strip-item svg {
  width: 16px; height: 16px;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---- Section Layouts ---- */
.section { padding: 5rem 20px; }
@media (min-width: 768px) { .section { padding: 6rem 40px; } }

.section-dark { background: var(--black); color: var(--white); }
.section-dark .eyebrow { color: var(--gold); }
.section-dark .eyebrow::before { background: var(--gold); }
.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.6); }

.section-light { background: var(--white); }
.section-gray { background: var(--off-white); }

.section-header {
  max-width: 680px;
  margin-bottom: 3rem;
}
.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header.centered .eyebrow { justify-content: center; }
.section-header.centered .eyebrow::before { display: none; }
.section-header.centered::after {
  display: block;
  content: '';
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto 0;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1rem; color: var(--muted); line-height: 1.7; }
.section-dark .section-header p { color: rgba(255,255,255,0.55); }

/* ---- Problem Section ---- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 640px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }

.problem-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background var(--transition);
}
.problem-card:hover { background: var(--off-white); }

.problem-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.25rem;
}
.problem-icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.problem-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}
.problem-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ---- Fix / Feature Cards ---- */
.fix-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .fix-grid { grid-template-columns: 1fr 1fr; } }

.fix-card {
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.fix-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}
.fix-card .eyebrow { color: rgba(198,169,117,0.7); margin-bottom: 0.75rem; }
.fix-card .eyebrow::before { background: rgba(198,169,117,0.4); }
.fix-card h3 { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.fix-card p { color: rgba(255,255,255,0.55); font-size: 0.95rem; }

/* ---- How It Works ---- */
.hiw-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 640px) { .hiw-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.hiw-step { display: flex; flex-direction: column; gap: 1rem; }

.hiw-step-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--off-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.hiw-step-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hiw-step-img-wrap .placeholder-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--muted);
}

.hiw-step-num {
  position: absolute; top: 12px; left: 12px;
  width: 32px; height: 32px;
  background: var(--black); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  z-index: 1;
}

.hiw-step h3 { font-size: 1.05rem; font-weight: 700; color: var(--black); }
.hiw-step p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

.hiw-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--gold); font-size: 0.875rem; font-weight: 600;
  transition: gap var(--transition);
}
.hiw-link:hover { gap: 0.6rem; }

/* ---- Pricing Cards ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: box-shadow var(--transition-md), transform var(--transition-md), border-color var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.pricing-card.featured {
  border-color: var(--black);
  border-width: 2px;
}

.pricing-badge {
  position: absolute; top: -13px; left: 1.5rem;
  background: var(--black); color: var(--white);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
}

.pricing-name { font-size: 1rem; font-weight: 700; color: var(--black); }
.pricing-clips { font-size: 0.8rem; color: var(--muted); }

.pricing-price {
  display: flex; align-items: baseline; gap: 2px;
}
.pricing-price .currency { font-size: 1.25rem; font-weight: 600; color: var(--black); }
.pricing-price .amount { font-size: 2.75rem; font-weight: 700; color: var(--black); line-height: 1; }

.pricing-use { font-size: 0.875rem; color: var(--muted); line-height: 1.6; flex: 1; }
.pricing-note {
  font-size: 0.75rem; color: var(--muted);
  text-align: center; margin-top: 1.5rem;
  letter-spacing: 0.02em;
}

/* ---- Review Cards ---- */
.review-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 640px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: box-shadow var(--transition-md);
}
.review-card:hover { box-shadow: var(--shadow-md); }

.review-stars { display: flex; gap: 3px; }
.review-stars svg { width: 14px; height: 14px; fill: var(--gold); }
.review-text { font-size: 0.9rem; color: var(--charcoal); line-height: 1.75; flex: 1; }
.review-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--muted);
  flex-shrink: 0; overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-size: 0.825rem; font-weight: 700; color: var(--black); }
.review-location { font-size: 0.75rem; color: var(--muted); }

.stars-header {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem;
}
.stars-header .stars { display: flex; gap: 3px; }
.stars-header .stars svg { width: 18px; height: 18px; fill: var(--gold); }
.stars-header span { font-size: 0.875rem; color: var(--muted); }

/* ---- Final CTA ---- */
.section-cta {
  background: var(--black);
  text-align: center;
  padding: 6rem 20px;
}
@media (min-width: 768px) { .section-cta { padding: 8rem 40px; } }
.section-cta h2 { color: var(--white); margin-bottom: 1rem; }
.section-cta p { color: rgba(255,255,255,0.5); max-width: 480px; margin: 0 auto 2rem; }
.section-cta .cta-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

.trust-badges {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem 2rem; margin-top: 2.5rem;
}
.trust-badge {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 500;
  color: rgba(255,255,255,0.4); letter-spacing: 0.04em;
}
.trust-badge svg {
  width: 14px; height: 14px;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---- Footer ---- */
.site-footer {
  background: #0A0A0A;
  color: rgba(255,255,255,0.45);
  padding: 5rem 20px 2rem;
}
@media (min-width: 768px) { .site-footer { padding: 5rem 40px 2rem; } }

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 768px) { .footer-top { grid-template-columns: 1.75fr 1fr 1fr; } }

.footer-logo {
  font-size: 1.5rem; font-weight: 700;
  letter-spacing: -0.04em; color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 0.8rem; line-height: 1.7; max-width: 280px; }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.footer-social a:hover { border-color: var(--gold); background: var(--gold-pale); }
.footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.6); }

.footer-col h4 {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex; flex-direction: column; gap: 0.75rem;
  align-items: flex-start; padding-top: 2rem;
  font-size: 0.75rem;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   HOW IT WORKS PAGE
   ============================================================ */
.page-hero {
  background: var(--black);
  padding: 5rem 20px 4rem;
  text-align: center;
}
@media (min-width: 768px) { .page-hero { padding: 6rem 40px 5rem; } }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.55); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.hiw-full-steps { max-width: 800px; margin: 0 auto; }
.hiw-full-step {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
@media (min-width: 640px) {
  .hiw-full-step { grid-template-columns: 1fr 1fr; }
  .hiw-full-step:nth-child(even) .hiw-step-text { order: -1; }
}
.hiw-full-step:last-child { border-bottom: none; }

.hiw-step-media {
  width: 100%; aspect-ratio: 4/3;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--muted);
  overflow: hidden; position: relative;
}
.hiw-step-media img { width: 100%; height: 100%; object-fit: cover; }

.step-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--black); color: var(--white);
  font-size: 1.1rem; font-weight: 700; border-radius: 50%;
  margin-bottom: 1rem;
}
.hiw-step-text h3 { font-size: 1.5rem; font-weight: 700; color: var(--black); margin-bottom: 0.75rem; }
.hiw-step-text p { color: var(--muted); font-size: 0.95rem; }
.hiw-step-text p + p { margin-top: 0.75rem; }

/* Compatibility ---- */
.compat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; max-width: 680px; margin: 2.5rem auto 0;
}
@media (max-width: 520px) { .compat-grid { grid-template-columns: 1fr; } }
.compat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.compat-card.yes { border-top: 3px solid var(--gold); }
.compat-card h3 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.compat-card.yes h3 { color: var(--gold); }
.compat-card.no h3 { color: var(--muted); }
.compat-list { display: flex; flex-direction: column; gap: 0.5rem; }
.compat-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.875rem; color: var(--charcoal); line-height: 1.5;
}
.compat-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; fill: none; stroke-width: 2.5; stroke-linecap: round; }
.compat-item.yes svg { stroke: var(--gold); }
.compat-item.no svg { stroke: var(--muted); }

/* ---- FAQ ---- */
.faq-section { background: var(--off-white); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.25rem 0; text-align: left;
  font-size: 1rem; font-weight: 600; color: var(--black);
  background: none; border: none; cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease, background var(--transition), border-color var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; stroke: var(--charcoal); fill: none; stroke-width: 2.5; stroke-linecap: round; transition: stroke var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--black); border-color: var(--black); }
.faq-item.open .faq-icon svg { stroke: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding-bottom: 1.25rem; font-size: 0.925rem; color: var(--muted); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 600px; }

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-hero {
  background: var(--off-white);
  padding: 3rem 20px 2.5rem;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .shop-hero { padding: 3.5rem 40px 3rem; } }
.shop-hero h1 { color: var(--black); margin-bottom: 0.5rem; }
.shop-hero p { color: var(--muted); }

.shop-main { padding: 3rem 20px 4rem; }
@media (min-width: 768px) { .shop-main { padding: 4rem 40px 5rem; } }
.shop-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: start;
  max-width: 1100px; margin: 0 auto;
}
@media (min-width: 900px) { .shop-grid { grid-template-columns: 1fr 1fr; } }

.product-gallery {}
.product-main-img {
  width: 100%; aspect-ratio: 1;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--muted);
  margin-bottom: 0.75rem;
  border: 1.5px solid var(--border);
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs { display: flex; gap: 0.5rem; }
.product-thumb {
  width: 70px; height: 70px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  overflow: hidden; cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--muted);
  transition: border-color var(--transition);
}
.product-thumb:hover, .product-thumb.active { border-color: var(--black); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-details {}
.product-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.5rem;
}
.product-details h1 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: 0.75rem; }

.product-rating {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem;
}
.product-rating .stars { display: flex; gap: 2px; }
.product-rating .stars svg { width: 13px; height: 13px; fill: var(--gold); }
.product-rating span { font-size: 0.8rem; color: var(--muted); }

.product-price-display {
  font-size: 2.25rem; font-weight: 700; color: var(--black);
  margin-bottom: 0.25rem; line-height: 1;
}
.product-shipping { font-size: 0.775rem; color: var(--muted); }

.selector-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--black); margin-bottom: 0.6rem;
}
.selector-group { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.selector-btn {
  padding: 0.6rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.825rem; font-weight: 600; color: var(--charcoal);
  background: var(--white); cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  text-align: center; line-height: 1.4;
}
.selector-btn:hover { border-color: var(--black); }
.selector-btn.active { border-color: var(--black); background: var(--black); color: var(--white); }

.quantity-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.qty-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.qty-control {
  display: flex; align-items: center;
  border: 1.5px solid var(--border); border-radius: var(--radius-pill); overflow: hidden;
}
.qty-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--black);
  background: var(--white); border: none; cursor: pointer;
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--off-white); }
.qty-input {
  width: 44px; text-align: center; font-size: 0.95rem; font-weight: 600;
  border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border);
  padding: 0.25rem; background: var(--white); color: var(--black);
}

.add-to-cart-btn {
  width: 100%;
  background: var(--black); color: var(--white);
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem;
  padding: 1.1rem; border-radius: var(--radius-pill); border: none; cursor: pointer;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition);
  margin-bottom: 0.75rem;
}
.add-to-cart-btn:hover { background: var(--charcoal); transform: translateY(-1px); }
.add-to-cart-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.product-features { margin-top: 1.75rem; border-top: 1px solid var(--border); padding-top: 1.75rem; }
.product-features h3 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--black); margin-bottom: 1rem; }
.feature-list { display: flex; flex-direction: column; gap: 0.6rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem; color: var(--charcoal); line-height: 1.5;
}
.feature-list li::before {
  content: ''; width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C6A975' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
}

.shop-below { padding: 4rem 20px; background: var(--white); }
@media (min-width: 768px) { .shop-below { padding: 5rem 40px; } }
.shop-below-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  max-width: 1100px; margin: 0 auto;
}
@media (min-width: 768px) { .shop-below-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story-content {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  max-width: 900px; margin: 0 auto;
  align-items: start;
}
@media (min-width: 640px) { .about-story-content { grid-template-columns: 1fr 1fr; } }

.about-founder-img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.about-founder-img img { width: 100%; height: auto; display: block; }
.about-founder-img span {
  display: block;
  text-align: center;
  font-size: .72rem;
  color: var(--muted);
  font-style: italic;
  padding: .6rem 1rem;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.about-text { display: flex; flex-direction: column; gap: 1rem; }
.about-text .lede {
  font-size: 1.15rem; font-family: 'Lora', serif;
  font-style: italic; line-height: 1.7; color: var(--black);
  border-left: 3px solid var(--gold); padding-left: 1.25rem;
}
.about-text p { font-size: 0.95rem; color: var(--charcoal); line-height: 1.85; }

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(255,255,255,0.08);
  max-width: 640px; margin: 3rem auto 0;
  border-radius: var(--radius-lg); overflow: hidden;
}
.about-stat {
  background: rgba(255,255,255,0.04);
  padding: 2rem; text-align: center;
}
.about-stat .num { font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.about-stat .desc { font-size: 0.775rem; color: rgba(255,255,255,0.45); margin-top: 0.25rem; }

.values-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem; border: 1.5px solid var(--border);
  transition: box-shadow var(--transition-md);
}
.value-card:hover { box-shadow: var(--shadow-md); }
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--black); }
.value-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   UTILITIES
   ============================================================ */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mt-sm { margin-top: 0.75rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 3rem; }
.mb-md { margin-bottom: 1.5rem; }

/* Scroll fade */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Nav-aware page padding */
.has-announcement body { padding-top: 0; }

/* ============================================================
   CART DRAWER
   ============================================================ */

/* Body lock when drawer open */
body.cart-open { overflow: hidden; }

/* Nav cart icon */
.cart-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  flex-shrink: 0;
}
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--gold);
  color: var(--black);
  font-size: .6rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: inherit;
}

/* Overlay backdrop */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 500;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Drawer panel */
.cart-drawer {
  background: var(--white);
  width: 100%;
  max-width: 400px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
  box-shadow: -4px 0 40px rgba(0,0,0,0.12);
}
.cart-overlay.open .cart-drawer {
  transform: translateX(0);
}

/* Header */
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-drawer-title {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.cart-drawer-count {
  background: var(--black);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}
.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  padding: .35rem;
  display: flex;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.cart-close:hover { background: var(--off-white); }

/* Body */
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Empty state */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1rem;
  color: var(--muted);
  text-align: center;
  font-size: .9rem;
}
.cart-empty-cta {
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  padding: .75rem 2rem;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: opacity var(--transition);
}
.cart-empty-cta:hover { opacity: .8; }

/* Line items */
.cart-line {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.cart-line:last-of-type { border-bottom: none; padding-bottom: 0; }
.cart-line-info { flex: 1; min-width: 0; }
.cart-line-title {
  font-size: .875rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-line-meta {
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: .3rem;
}
.cart-line-price {
  font-size: .875rem;
  font-weight: 700;
  color: var(--black);
}
.cart-line-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}
.cart-qty {
  display: flex;
  align-items: center;
  gap: .25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: .2rem .4rem;
}
.cart-qty-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .95rem;
  color: var(--black);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  border-radius: 50%;
  transition: background var(--transition);
}
.cart-qty-btn:hover { background: var(--off-white); }
.cart-qty-num {
  font-size: .8rem;
  font-weight: 600;
  min-width: 18px;
  text-align: center;
}
.cart-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .25rem;
  border-radius: 4px;
  transition: color var(--transition);
}
.cart-remove:hover { color: var(--black); }

/* Footer */
.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex-shrink: 0;
}
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .95rem;
  font-weight: 600;
}
.cart-subtotal-amt { font-weight: 700; }
.cart-footer-note {
  font-size: .75rem;
  color: var(--muted);
  text-align: center;
}
.cart-continue-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
  font-family: inherit;
  text-decoration: underline;
  padding: .25rem;
  transition: color var(--transition);
}
.cart-continue-btn:hover { color: var(--black); }

/* ============================================================
   CLIPS CANVAS (Three.js multi-clip visualiser)
   ============================================================ */

#clips-canvas {
  display: block;
  width: 100%;
  height: 480px;
  /* No background, no border — transparent over page */
}

@media (max-width: 480px) {
  #clips-canvas { height: 320px; }
}

/* ============================================================
   DEMO CANVAS (how-it-works Three.js demo)
   ============================================================ */

.demo-section .section-header { margin-bottom: 2rem; }

.demo-stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

#demo-root {
  display: block;
  width: 100%;
  height: 560px;
  cursor: grab;
  touch-action: none;   /* let OrbitControls capture touch */
  background: linear-gradient(180deg, #f7f4ee 0%, #efeae0 100%);
  border-radius: 12px;
  overflow: hidden;
}
#demo-root:active { cursor: grabbing; }
#demo-root canvas { display: block; width: 100% !important; height: 100% !important; }

.demo-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(17, 17, 17, 0.82);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  white-space: nowrap;
}
.demo-hint.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 640px) {
  #demo-root { height: 340px; }
  .demo-hint { font-size: 0.72rem; padding: 0.45rem 0.85rem; white-space: normal; max-width: calc(100% - 2rem); text-align: center; }
  .hiw-full-step { padding: 2rem 0; }
}
@media (max-width: 480px) {
  #demo-root { height: 260px; }
}

/* ============================================================
   PHOTO GALLERY SECTION
   ============================================================ */

.photo-gallery-section { padding-top: 5rem; padding-bottom: 5rem; }

.photo-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 12px;
  margin-top: 3rem;
}

.gallery-main {
  grid-row: 1 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-main:hover img { transform: scale(1.03); }

.gallery-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 768px) {
  .photo-gallery {
    grid-template-columns: 1fr;
  }
  .gallery-main {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
  .gallery-side {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item { aspect-ratio: 1 / 1; }
}

@media (max-width: 480px) {
  .gallery-side { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   HERO PHOTO STYLES — fit real photos
   ============================================================ */

.hero-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Nudge "The Clip" hero photo so the clips stay in frame */
.hero-half:first-child img {
  object-position: 95% center;
}

/* ============================================================
   SHOP PAGE — PRODUCT THUMBNAILS & LIFESTYLE STRIP
   ============================================================ */

.product-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.product-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  border: 2px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: .6rem;
  color: var(--muted);
  font-weight: 500;
  transition: border-color var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.product-thumb:hover { border-color: var(--gold); transform: scale(1.04); }
.product-thumb.active { border-color: var(--black); border-width: 2px; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.thumb-img-display {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  z-index: 5;
}

.thumb-close-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(17,17,17,0.82);
  color: #fff;
  border: none;
  padding: .5rem 1.25rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: .04em;
  transition: background var(--transition);
}
.thumb-close-btn:hover { background: var(--black); }

.product-gallery { position: relative; }

/* Lifestyle strip */
.shop-lifestyle-strip {
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.lifestyle-strip-inner {
  display: flex;
  gap: 0;
  height: 280px;
}
.lifestyle-strip-inner img {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: flex 0.4s ease, filter 0.3s ease;
  filter: brightness(0.92);
}
.lifestyle-strip-inner img:hover {
  flex: 2 1 0;
  filter: brightness(1);
}

@media (max-width: 640px) {
  .lifestyle-strip-inner { height: 180px; }
  .product-thumbnails { gap: 6px; }
  .product-thumb { width: 52px; height: 52px; }
}

/* ============================================================
   ROD SIZE GUIDE PAGE
   ============================================================ */

/* Hero jump-links */
.rsg-hero { padding-bottom: 4rem; }
.rsg-hero-jumps {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.rsg-jump-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
  min-width: 140px;
  text-align: center;
}
.rsg-jump-btn:hover {
  background: rgba(198,169,117,0.15);
  border-color: var(--gold);
}
.rsg-jump-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.rsg-jump-sub {
  font-size: .7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
}

/* Section spacing */
.rsg-section { scroll-margin-top: 80px; }

/* ---- Coin Test Cards ---- */
.rsg-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3rem;
}
@media (max-width: 900px) { .rsg-cards { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }

.rsg-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-md), box-shadow var(--transition-md);
  position: relative;
}
.rsg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.rsg-card-featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-sm);
}
.rsg-card-featured:hover {
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
}

.rsg-card-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  white-space: nowrap;
  z-index: 2;
}

.rsg-card-visual {
  padding: 1.5rem 1.5rem 0;
  background: var(--off-white);
}
.rsg-card-featured .rsg-card-visual { background: var(--gold-pale); }
.rsg-card-visual svg { width: 100%; max-width: 200px; margin: 0 auto; display: block; }

.rsg-card-body {
  padding: 1.25rem 1.5rem 1.75rem;
}
.rsg-card-label {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--black);
  margin-bottom: .5rem;
}
.rsg-card-featured .rsg-card-label { color: var(--gold); }
.rsg-card-desc {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.rsg-card-desc strong { color: var(--charcoal); }

.rsg-shop-link {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1.5px solid var(--border);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}
.rsg-shop-link:hover { color: var(--gold); border-color: var(--gold); }
.rsg-shop-link-featured { color: var(--gold); border-color: var(--gold); }
.rsg-shop-link-featured:hover { color: var(--black); border-color: var(--black); }

.rsg-footnote {
  margin-top: 2.5rem;
  text-align: center;
  font-size: .8rem;
  color: var(--muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Fun fact callout */
.rsg-fun-fact {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: .75rem 1rem;
  font-size: .78rem;
  color: var(--charcoal);
  line-height: 1.5;
  margin-top: 1rem;
}
.rsg-fun-fact svg { flex-shrink: 0; margin-top: 1px; color: var(--gold); }

/* ---- String Calculator ---- */
.rsg-calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) { .rsg-calc-layout { grid-template-columns: 1fr; gap: 2.5rem; } }

.rsg-calc-steps { display: flex; flex-direction: column; gap: 1.75rem; }
.rsg-calc-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.rsg-step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rsg-step-text { font-size: .9rem; line-height: 1.6; padding-top: 6px; }
.rsg-step-text strong { display: block; margin-bottom: .25rem; color: var(--black); }
.rsg-step-text p { color: var(--muted); font-size: .85rem; }

/* Widget */
.rsg-calc-widget {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.rsg-calc-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .75rem;
}
.rsg-calc-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: .5rem;
}
.rsg-calc-input {
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: inherit;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color var(--transition);
  -moz-appearance: textfield;
}
.rsg-calc-input::-webkit-outer-spin-button,
.rsg-calc-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.rsg-calc-input:focus { border-color: var(--gold); }
.rsg-calc-unit {
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.rsg-calc-hint {
  font-size: .72rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.rsg-calc-btn {
  width: 100%;
  height: 48px;
  background: var(--black);
  color: var(--white);
  font-family: inherit;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition);
}
.rsg-calc-btn:hover { background: var(--charcoal); transform: translateY(-1px); }
.rsg-calc-btn:active { transform: translateY(0); }

/* Result */
.rsg-calc-result {
  margin-top: 1.5rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}
.rsg-result-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .75rem;
  background: rgba(198,169,117,0.15);
  color: var(--gold);
  transition: background .3s, color .3s;
}
.rsg-result-size {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--black);
  margin-bottom: .25rem;
}
.rsg-result-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Reference table */
.rsg-ref-table {
  margin-top: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem;
  border: 1px solid var(--border);
}
.rsg-ref-header {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .75rem;
}
.rsg-ref-row {
  display: grid;
  grid-template-columns: 72px 1fr 40px;
  gap: 8px;
  align-items: center;
  margin-bottom: .5rem;
}
.rsg-ref-row:last-child { margin-bottom: 0; }
.rsg-ref-size { font-size: .8rem; font-weight: 600; color: var(--charcoal); }
.rsg-ref-val { font-size: .8rem; color: var(--muted); text-align: right; }
.rsg-ref-bar-wrap {
  background: var(--light);
  border-radius: 100px;
  height: 6px;
  overflow: hidden;
}
.rsg-ref-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 100px;
}

/* ---- Printable Gauge Section ---- */
.rsg-print-preview {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  margin-top: 3rem;
}
@media (max-width: 768px) { .rsg-print-preview { grid-template-columns: 1fr; } }

.rsg-gauge-preview {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.rsg-gauge-preview-inner {
  padding: 2rem;
}
.rsg-gauge-preview svg { width: 100%; }
.rsg-gauge-note {
  text-align: center;
  font-size: .72rem;
  color: var(--muted);
  margin-top: .75rem;
  font-style: italic;
}

.rsg-print-instructions { min-width: 280px; }
.rsg-print-instructions h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.rsg-print-steps {
  list-style: none;
  counter-reset: print-step;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.rsg-print-steps li {
  counter-increment: print-step;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .875rem;
  line-height: 1.5;
  color: var(--charcoal);
}
.rsg-print-steps li::before {
  content: counter(print-step);
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  font-size: .72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.rsg-print-note {
  font-size: .75rem;
  color: var(--muted);
  margin-top: .75rem;
  line-height: 1.5;
}

/* ============================================================
   PRINTABLE GAUGE — screen hidden, print shown
   ============================================================ */

/* Hide gauge from screen */
.print-gauge { display: none; }

/* Hide everything else when printing, show gauge */
@media print {
  .no-print { display: none !important; }
  main { display: none !important; }

  .print-gauge {
    display: block;
    padding: 0.75in 1in;
    font-family: 'Poppins', Arial, sans-serif;
  }

  .print-gauge-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    border-bottom: 1.5pt solid #111;
    padding-bottom: 0.2in;
    margin-bottom: 0.3in;
  }
  .print-gauge-logo {
    font-size: 22pt;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #111;
  }
  .print-gauge-logo span { color: #C6A975; }
  .print-gauge-header p {
    font-size: 9pt;
    color: #666;
    line-height: 1.4;
  }

  .print-gauge-verify {
    background: #FFFDF7;
    border: 1pt solid #C6A975;
    border-radius: 4pt;
    padding: 0.12in 0.2in;
    font-size: 8.5pt;
    margin-bottom: 0.4in;
    color: #444;
  }

  .print-gauge-circles {
    display: flex;
    align-items: flex-end;
    gap: 0.6in;
    padding: 0.2in 0;
  }

  .print-gauge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15in;
  }

  .print-gauge-circle {
    border-radius: 50%;
    border: 1.5pt solid #111;
    background: rgba(198,169,117,0.06);
    display: block;
  }
  .print-gauge-circle-featured {
    border-color: #C6A975;
    border-width: 2pt;
    background: rgba(198,169,117,0.12);
  }

  .print-gauge-item-label {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2pt;
  }
  .print-gauge-item-label strong { font-size: 11pt; color: #111; }
  .print-gauge-item-label span { font-size: 7.5pt; color: #888; }

  .print-gauge-item-result {
    width: 0.5in;
    height: 0.18in;
    border: 1pt solid #ccc;
    border-radius: 2pt;
    margin-top: 0.05in;
  }

  .print-gauge-instructions {
    margin-top: 0.5in;
    border-top: 1pt solid #ccc;
    padding-top: 0.2in;
    font-size: 8.5pt;
    color: #555;
    line-height: 1.6;
  }
  .print-gauge-instructions strong { color: #111; }
}

/* ============================================================
   GLOBAL MOBILE POLISH
   ============================================================ */

/* Prevent iOS auto-zoom on focused inputs */
@media (max-width: 767px) {
  input[type="number"],
  input[type="text"],
  input[type="email"],
  select,
  textarea {
    font-size: max(16px, 1em);
  }
}

/* Tap-target improvements */
@media (max-width: 640px) {
  .selector-btn {
    min-height: 44px;
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
  }
  .faq-question { padding: 1rem 0; }
  .qty-btn { min-width: 40px; min-height: 40px; }
  .add-to-cart-btn { font-size: 1.05rem; }
  .btn-primary, .btn-outline-white { min-height: 48px; }
}

/* Page hero — tighter on very small phones */
@media (max-width: 400px) {
  .page-hero { padding: 3.5rem 20px 3rem; }
  .page-hero h1 { font-size: 2.25rem; }
}

/* Rod size guide — jump buttons on small screens */
@media (max-width: 480px) {
  .rsg-jump-btn { min-width: 0; flex: 1 1 calc(50% - 6px); }
}
@media (max-width: 340px) {
  .rsg-jump-btn { flex: 1 1 100%; }
}

/* Rod size guide string calculator on mobile */
@media (max-width: 480px) {
  .rsg-calc-input { font-size: 1.1rem; }
  .rsg-calc-btn { width: 100%; }
}

/* Section CTA — tighter padding on mobile */
@media (max-width: 640px) {
  .section-cta { padding: 3.5rem 20px; }
  .trust-badges { flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
}

/* Shop below grid — single column on mobile */
@media (max-width: 640px) {
  .shop-below-grid { grid-template-columns: 1fr; }
}

/* About page — prevent overflow of wide elements */
@media (max-width: 640px) {
  .footer-top { gap: 2rem; }
}

/* ============================================================
   SHOP PAGE — sticky mobile Add-to-Cart bar
   ============================================================ */
.shop-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.06);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 90;
  display: none;
}
.shop-sticky-cta.show { transform: translateY(0); }
.shop-sticky-inner {
  display: flex; align-items: center; gap: 12px;
  max-width: 480px; margin: 0 auto;
}
.shop-sticky-info { flex-shrink: 0; line-height: 1.2; }
.shop-sticky-info strong { display: block; font-size: 0.85rem; font-weight: 600; }
.shop-sticky-info span { font-size: 0.95rem; font-weight: 700; color: var(--black); }
.shop-sticky-btn {
  flex: 1;
  background: var(--black); color: var(--white);
  font-family: inherit; font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 14px; border: none; border-radius: var(--radius-pill, 100px);
  cursor: pointer; min-height: 48px;
  transition: background var(--transition, 0.2s ease);
}
.shop-sticky-btn:hover { background: var(--charcoal); }
@media (max-width: 899px) {
  .shop-sticky-cta { display: block; }
}
/* Keep the bar out of the way while the cart drawer is open */
body.cart-open .shop-sticky-cta { display: none; }

/* Ensure no horizontal overflow site-wide */
body { overflow-x: hidden; }
main { overflow-x: hidden; }
