/** Shopify CDN: Minification failed

Line 68:0 All "@import" rules must come first

**/
/* ═══════════════════════════════════════════════════════════════
   SEQUENCE — Premium Design System v2
   Inspired by ro.co + thorne.com — clinical, premium, elevated
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ──────────────────────────────────────────── */
:root {
  --seq-cream: #FAF7F2;
  --seq-ivory: #F5F0E8;
  --seq-linen: #EDE8DE;
  --seq-sand: #D4C9B8;
  --seq-taupe: #8A7E72;
  --seq-charcoal: #1A1A1A;
  --seq-espresso: #2E2620;
  --seq-gold: #C8A96E;
  --seq-gold-dark: #9E7E47;
  --seq-gold-light: #E8D5AB;
  --seq-text: #1A1A1A;
  --seq-text-secondary: #5C5549;
  --seq-white: #FFFFFF;

  /* Premium typography — Inter for body (cleaner than DM Sans), DM Serif for display */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-card: 16px;
  --radius-button: 8px;
  --radius-pill: 999px;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
}

/* ─── Announcement Bar ──────────────────────────────────────── */
.announcement-bar {
  background: var(--seq-charcoal);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 0.625rem 1rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.announcement-bar a {
  color: var(--seq-gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.announcement-bar strong {
  font-weight: 600;
  color: white;
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=DM+Serif+Display&display=swap');

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--seq-text);
  background: var(--seq-cream);
  line-height: 1.65;
  font-weight: 400;
  font-size: 15px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Remove Shopify defaults that leak through */
.shopify-section { }
.shopify-section + .shopify-section { }

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--seq-text);
}

.section-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  color: var(--seq-gold-dark);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.08;
  color: var(--seq-text);
}

/* Clean sans heading variant */
.section-title--sans {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1rem;
  color: var(--seq-text-secondary);
  font-weight: 400;
  max-width: 520px;
  line-height: 1.7;
}

/* ─── Layout ─────────────────────────────────────────────────── */
.container-seq {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: var(--space-2xl) 0;
}

@media (max-width: 768px) {
  .container-seq { padding: 0 1.25rem; }
  .section-padding { padding: var(--space-xl) 0; }
}

/* ─── Buttons — Ro/Thorne style ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: var(--radius-button);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--seq-charcoal);
  color: white;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-gold {
  background: var(--seq-gold);
  color: white;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.btn-gold:hover {
  background: var(--seq-gold-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,169,110,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--seq-espresso);
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  border: 1.5px solid var(--seq-espresso);
}
.btn-outline:hover {
  background: var(--seq-espresso);
  color: var(--seq-cream);
}

/* White outline variant for dark backgrounds */
.btn-outline-white {
  background: transparent;
  color: white;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.btn-large {
  padding: 1rem 2.75rem;
  font-size: 0.9rem;
}

.btn-small {
  padding: 0.625rem 1.25rem;
  font-size: 0.8rem;
}

/* ─── Cards — Premium elevated ──────────────────────────────── */
.card {
  background: var(--seq-white);
  border-radius: var(--radius-card);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

/* ─── Product Card — Cleaner, more premium ──────────────────── */
.product-card { display: block; }

.product-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--seq-ivory);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-card__body { padding: 1.25rem 1.5rem 1.5rem; }

.product-card__category {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--seq-gold-dark);
  display: inline-block;
  margin-bottom: 0.625rem;
}

.product-card__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.product-card__dosage {
  font-size: 0.75rem;
  color: var(--seq-taupe);
  margin-bottom: 0.5rem;
}

.product-card__desc {
  font-size: 0.85rem;
  color: var(--seq-text-secondary);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-weight: 600;
  color: var(--seq-text);
  font-size: 0.95rem;
}

.product-card__arrow {
  width: 20px;
  height: 20px;
  color: var(--seq-taupe);
  transition: color 0.2s;
}

.product-card:hover .product-card__arrow {
  color: var(--seq-gold);
}

/* ─── Assay Badge ────────────────────────────────────────────── */
.assay-badge {
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--seq-gold-dark);
  font-weight: 600;
  background: rgba(200,169,110,0.1);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}

/* ─── Filter Pills ───────────────────────────────────────────── */
.filter-pill {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s;
  border: 1.5px solid rgba(0,0,0,0.08);
  background: transparent;
  color: var(--seq-text-secondary);
}

.filter-pill:hover {
  border-color: rgba(0,0,0,0.15);
  color: var(--seq-text);
}

.filter-pill.active {
  background: var(--seq-charcoal);
  color: white;
  border-color: var(--seq-charcoal);
}

/* ─── Trust Bar ──────────────────────────────────────────────── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--seq-text-secondary);
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--seq-gold);
}

/* ─── Grid ───────────────────────────────────────────────────── */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ─── Header — Clean, Ro-inspired ───────────────────────────── */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 1rem 0;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.header.scrolled {
  padding: 0.65rem 0;
  box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo — Premium wordmark with gold accent dot */
.header__logo {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--seq-text);
  position: relative;
}

.header__logo-dot {
  color: var(--seq-gold);
  font-size: 1.5em;
  line-height: 0;
  vertical-align: middle;
}

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

.header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--seq-text);
  transition: all 0.2s;
}
.header__icon:hover {
  background: rgba(0,0,0,0.04);
  color: var(--seq-gold-dark);
}
.header__icon svg { width: 18px; height: 18px; }

.header__nav {
  display: none;
  gap: 2.25rem;
  align-items: center;
}

@media (min-width: 768px) {
  .header__nav { display: flex; }
}

.header__link {
  font-size: 0.825rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--seq-text-secondary);
  transition: color 0.2s;
  position: relative;
  padding: 0.25rem 0;
}

.header__link:hover {
  color: var(--seq-text);
}

.header__link.active {
  color: var(--seq-text);
}
.header__link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--seq-gold);
  border-radius: 1px;
}

/* Mobile menu */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--seq-cream);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu__link {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--seq-text);
  letter-spacing: 0.02em;
}

.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Footer — Refined ──────────────────────────────────────── */
.footer {
  background: var(--seq-charcoal);
  color: rgba(255,255,255,0.6);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer__brand {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1rem;
}

.footer__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  line-height: 1.7;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer__link {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.footer__link:hover { color: white; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.82) 0%, rgba(20,18,15,0.55) 50%, rgba(30,25,20,0.35) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.hero__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: var(--seq-gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.05;
  color: white;
  margin-top: 0.75rem;
}
.hero__title em {
  font-style: normal;
  color: var(--seq-gold-light);
}

.hero__desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-top: 1.25rem;
  max-width: 460px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.hero__stat {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.5);
  background: rgba(250,247,242,0.08);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-pill);
}

/* ─── How It Works ───────────────────────────────────────────── */
.step-card {
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: var(--seq-white);
  border-radius: var(--radius-card);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.step-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.step-card__number {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--seq-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.02em;
}

.step-card__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}

.step-card__desc {
  font-size: 0.875rem;
  color: var(--seq-text-secondary);
  font-weight: 400;
  line-height: 1.65;
}

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonial-card {
  background: var(--seq-white);
  border-radius: var(--radius-card);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 2.25rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.testimonial-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.testimonial-card__star {
  width: 14px;
  height: 14px;
  color: var(--seq-gold);
}

.testimonial-card__text {
  font-size: 0.925rem;
  color: var(--seq-text);
  font-weight: 400;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--seq-text);
}

.testimonial-card__meta {
  font-size: 0.75rem;
  color: var(--seq-taupe);
  margin-top: 0.125rem;
}

/* ─── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--seq-charcoal);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: white;
  margin-bottom: 0.75rem;
}

.cta-banner__desc {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ─── Product Page ───────────────────────────────────────────── */
.product-page {
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.product-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .product-page__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.product-page__image {
  aspect-ratio: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--seq-ivory);
}

.product-page__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-page__info { padding-top: 1rem; }

.product-page__category {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--seq-gold-dark);
}

.product-page__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.product-page__price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--seq-text);
  margin-bottom: 1.5rem;
}

.product-page__desc {
  font-size: 0.95rem;
  color: var(--seq-text-secondary);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.product-page__benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.product-page__benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--seq-text);
  font-weight: 400;
  margin-bottom: 0.625rem;
}

.product-page__benefit svg {
  width: 16px;
  height: 16px;
  color: var(--seq-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── Variant Selector ───────────────────────────────────────── */
.variant-selector {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.variant-btn {
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-button);
  font-size: 0.83rem;
  font-weight: 500;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: var(--seq-white);
  color: var(--seq-text);
  transition: all 0.2s;
}

.variant-btn:hover {
  border-color: rgba(0,0,0,0.2);
}

.variant-btn.selected {
  background: var(--seq-charcoal);
  color: white;
  border-color: var(--seq-charcoal);
}

/* ─── Collection Page ────────────────────────────────────────── */
.collection-hero {
  position: relative;
  padding: 6rem 0 3rem;
  padding-top: 8rem;
  overflow: hidden;
}

.collection-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--seq-espresso) 0%, var(--seq-charcoal) 100%);
}

.collection-hero__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

/* ─── Animations — Smoother, more premium ────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Utilities ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-top: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.bg-white { background: var(--seq-white); }
.bg-cream { background: var(--seq-cream); }
.bg-ivory { background: var(--seq-ivory); }
.bg-espresso { background: var(--seq-espresso); }
.rounded-card { border-radius: var(--radius-card); }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.w-full { width: 100%; }

/* ─── Value Props (Thorne-style) ─────────────────────────────── */
.value-props {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .value-props { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
.value-prop {
  text-align: center;
}
.value-prop__image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.value-prop__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.value-prop:hover .value-prop__image img {
  transform: scale(1.04);
}
.value-prop__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--seq-text);
  letter-spacing: -0.01em;
}
.value-prop__desc {
  font-size: 0.85rem;
  color: var(--seq-text-secondary);
  font-weight: 400;
  line-height: 1.65;
}

/* ─── Category Browse ────────────────────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}
.category-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-card:hover img { transform: scale(1.06); }
.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}
.category-card__label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: white;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.category-card__count {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
}

/* ─── Product Scroll (Ro-style carousel) ─────────────────────── */
.product-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: none;
}
.product-scroll::-webkit-scrollbar { display: none; }
.product-scroll .product-card {
  min-width: 280px;
  max-width: 300px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* ─── Availability Badge ─────────────────────────────────────── */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: #e8f5e9;
  color: #2e7d32;
}
.availability-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4caf50;
}

/* ─── Dual CTA Buttons ───────────────────────────────────────── */
.btn-duo {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.btn-duo .btn {
  flex: 1;
  font-size: 0.8rem;
  padding: 0.625rem 1rem;
  text-align: center;
  justify-content: center;
}
.btn-secondary {
  background: transparent;
  color: var(--seq-text);
  padding: 0.625rem 1rem;
  font-size: 0.8rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-button);
  font-weight: 500;
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: rgba(0,0,0,0.25);
  background: rgba(0,0,0,0.02);
}

/* ─── Stats Row ─────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 3.5rem 0;
}
@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
.stat__number {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--seq-text);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: 0.82rem;
  color: var(--seq-text-secondary);
  font-weight: 400;
}

/* ─── DARK BACKGROUND TEXT CONTRAST FIXES ────────────────────── */
/* Any text on espresso/charcoal/dark backgrounds needs high contrast */

/* On espresso backgrounds — ensure readable text */
.bg-espresso .section-label,
.bg-espresso .section-title,
.bg-espresso h2,
.bg-espresso h3 {
  color: var(--seq-cream);
}

.bg-espresso .section-desc,
.bg-espresso p {
  color: rgba(250,247,242,0.75);
}

/* Subscription section dark card text improvements */
.starter-kit-content .item-label {
  color: var(--seq-cream);
  font-weight: 500;
}

.starter-kit-content .item-desc {
  color: rgba(250,247,242,0.65);
}

/* ─── Premium Divider ────────────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.08), transparent);
  margin: 0;
}

/* ─── Shopify overrides — remove default Shopify UI elements ── */
/* Hide Shopify branding and default elements */
.shopify-section--header { }
#shopify-section-header { }

/* Override Shopify checkout button styles if they leak */
.cart__checkout-button,
.cart__submit-button {
  background: var(--seq-charcoal) !important;
  color: white !important;
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  border-radius: var(--radius-button) !important;
  letter-spacing: 0.01em !important;
}

/* ─── Page-level refinements ─────────────────────────────────── */
/* Smoother page transitions */
main {
  min-height: 60vh;
}

/* Better focus styles */
:focus-visible {
  outline: 2px solid var(--seq-gold);
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background: rgba(200,169,110,0.2);
  color: var(--seq-text);
}

/* Smooth image loading */
img {
  opacity: 1;
  transition: opacity 0.3s ease;
}

img[loading="lazy"] {
  opacity: 0;
}

img[loading="lazy"].loaded,
img[loading="lazy"][complete] {
  opacity: 1;
}

/* ─── Premium scrollbar (desktop) ────────────────────────────── */
@media (min-width: 768px) {
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: var(--seq-cream);
  }
  ::-webkit-scrollbar-thumb {
    background: var(--seq-sand);
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--seq-taupe);
  }
}
