/** Shopify CDN: Minification failed

Line 55:0 Unexpected "}"

**/
/* ================================================
   SPRILLOW — Main Stylesheet
   File: assets/sprillow.css
   ================================================ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

/* ── Tokens ── */
:root {
  --sp-dark:    #011C27;
  --sp-dark2:   #032333;
  --sp-mint:    #DAF0DF;
  --sp-mint2:   #c4e8cb;
  --sp-purple:  #6A72AB;
  --sp-cream:   #F7F3ED;
  --sp-white:   #ffffff;
  --sp-text:    #011C27;
  --sp-muted:   #4a6170;
  --sp-serif:   'Cormorant Garamond', Georgia, serif;
  --sp-sans:    'Inter', system-ui, sans-serif;
  --sp-radius:  16px;
  --sp-transition: 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Base ── */
body {
  font-family: var(--sp-sans);
  color: var(--sp-text);
  background: var(--sp-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Scroll Reveal ── */
.sp-reveal {
  opacity: 1;
  transform: none;
  transition: opacity var(--sp-transition), transform var(--sp-transition);
}
.sp-reveal.sp-animate-out {
  opacity: 0;
  transform: translateY(32px);
}
}
.sp-reveal--delay  { transition-delay: 0.12s; }
.sp-reveal--delay2 { transition-delay: 0.24s; }
.sp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Layout helpers ── */
.sp-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.sp-container--narrow {
  max-width: 680px;
  text-align: center;
}

/* ── Section backgrounds ── */
.sp-section--dark  { background: var(--sp-dark); }
.sp-section--light { background: var(--sp-cream); }
.sp-section--mint  { background: var(--sp-mint); }

/* ── Typography ── */
.sp-eyebrow {
  font-family: var(--sp-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sp-purple);
  margin-bottom: 20px;
}
.sp-eyebrow--dark { color: var(--sp-muted); }

.sp-section-title {
  font-family: var(--sp-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--sp-dark);
  margin-bottom: 56px;
}
.sp-section-title--light { color: var(--sp-white); }

/* ── Buttons ── */
.sp-btn {
  display: inline-block;
  font-family: var(--sp-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.sp-btn:hover { transform: translateY(-2px); }

.sp-btn--mint {
  background: var(--sp-mint);
  color: var(--sp-dark);
  border-color: var(--sp-mint);
}
.sp-btn--mint:hover { background: var(--sp-mint2); box-shadow: 0 8px 24px rgba(218,240,223,0.3); }

.sp-btn--dark {
  background: var(--sp-dark);
  color: var(--sp-white);
  border-color: var(--sp-dark);
}
.sp-btn--dark:hover { box-shadow: 0 8px 24px rgba(1,28,39,0.25); }

.sp-btn--outline {
  background: transparent;
  color: var(--sp-mint);
  border-color: rgba(218,240,223,0.4);
}
.sp-btn--outline:hover { border-color: var(--sp-mint); background: rgba(218,240,223,0.08); }

/* ================================================
   HERO
   ================================================ */
.sp-hero {
  min-height: 100svh;
  background-color: var(--sp-dark);
  background-size: cover;
  background-position: 35% 60%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Dark overlay so text is always readable */
.sp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(1, 28, 39, 0.55) 0%,
    rgba(1, 28, 39, 0.35) 40%,
    rgba(1, 28, 39, 0.65) 100%
  );
  pointer-events: none;
}

.sp-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.sp-hero .sp-eyebrow {
  color: rgba(218,240,223,0.7);
  margin-bottom: 24px;
}

.sp-hero__h1 {
  font-family: var(--sp-serif);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--sp-white);
  margin-bottom: 28px;
  text-shadow: 0 2px 40px rgba(1,28,39,0.4);
}
.sp-hero__h1 em {
  font-style: italic;
  color: #a8aed4;
}

.sp-hero__sub {
  font-family: var(--sp-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 44px;
}

/* Responsive background position */
@media (max-width: 768px) {
  .sp-hero {
    background-position: 50% 65%;
    min-height: 100svh;
    padding: 120px 24px 80px;
  }
  .sp-hero__h1 { font-size: clamp(2.8rem, 10vw, 4rem); }
  .sp-hero__sub { font-size: 15px; }
}

@media (max-width: 480px) {
  .sp-hero { background-position: 55% 65%; }
  .sp-hero__h1 { font-size: 2.6rem; }
}

/* ================================================
   MARQUEE
   ================================================ */
.sp-marquee {
  background: var(--sp-dark2);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(218,240,223,0.08);
  border-bottom: 1px solid rgba(218,240,223,0.08);
}

.sp-marquee__track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: sp-marquee 28s linear infinite;
  width: max-content;
}

.sp-marquee__track span {
  font-family: var(--sp-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(218,240,223,0.7);
}

.sp-marquee__dot { color: var(--sp-purple) !important; }

@keyframes sp-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================
   FEATURES
   ================================================ */
.sp-features {
  padding: 120px 24px;
  text-align: center;
}

.sp-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.sp-feature { padding: 0 16px; }

.sp-feature__icon {
  width: 56px;
  height: 56px;
  background: var(--sp-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--sp-dark);
}

.sp-feature h3 {
  font-family: var(--sp-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--sp-dark);
  margin-bottom: 12px;
}

.sp-feature p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--sp-muted);
}

/* ================================================
   SLEEP QUIZ
   ================================================ */
.sp-quiz {
  padding: 120px 24px;
  text-align: center;
}

.sp-quiz .sp-eyebrow--dark { color: rgba(1,28,39,0.5); }

.sp-quiz__title {
  font-family: var(--sp-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--sp-dark);
  margin-bottom: 20px;
}

.sp-quiz__sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--sp-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ================================================
   PRODUCT LINEUP
   ================================================ */
.sp-lineup {
  padding: 120px 24px;
}

.sp-lineup__sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--sp-muted);
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 64px;
  margin-top: -40px;
}

.sp-lineup__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.sp-product-card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: #EEEAE2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.sp-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(1,28,39,0.12);
}

.sp-product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--sp-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.85);
  color: var(--sp-dark);
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 1;
  backdrop-filter: blur(4px);
}

.sp-product-card__badge--soon {
  background: rgba(1,28,39,0.15);
  color: var(--sp-dark);
}

.sp-product-card__img {
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sp-product-card:hover .sp-product-card__img img {
  transform: scale(1.04);
}

.sp-product-card__img--soon img { opacity: 0.6; }

.sp-product-card__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--sp-cream);
}

.sp-product-card__name {
  font-family: var(--sp-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--sp-dark);
}

.sp-product-card__price {
  font-family: var(--sp-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--sp-muted);
}

/* ================================================
   APP SECTION
   ================================================ */
.sp-app {
  padding: 120px 24px;
}

.sp-app__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.sp-app__phone {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-app__phone img {
  max-width: 300px;
  filter: drop-shadow(0 40px 80px rgba(106,114,171,0.3));
}

.sp-app .sp-eyebrow { color: rgba(218,240,223,0.5); }

.sp-app__title {
  font-family: var(--sp-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--sp-white);
  margin-bottom: 24px;
}

.sp-app__sub {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}

.sp-app__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.sp-app__pills span {
  font-family: var(--sp-sans);
  font-size: 12px;
  font-weight: 400;
  color: rgba(218,240,223,0.8);
  border: 1px solid rgba(218,240,223,0.2);
  padding: 8px 18px;
  border-radius: 100px;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.sp-testimonials {
  padding: 120px 24px;
  border-top: 1px solid rgba(218,240,223,0.06);
}

.sp-testimonials .sp-eyebrow { color: rgba(218,240,223,0.4); }

.sp-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.sp-testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(218,240,223,0.08);
  border-radius: 20px;
  padding: 36px 32px;
}

.sp-testimonial__stars {
  color: var(--sp-purple);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.sp-testimonial__quote {
  font-family: var(--sp-serif);
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

.sp-testimonial__author {
  font-family: var(--sp-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(218,240,223,0.35);
}

/* ================================================
   EMAIL SIGNUP
   ================================================ */
.sp-email {
  padding: 120px 24px;
  border-top: 1px solid rgba(218,240,223,0.06);
}

.sp-email__title {
  font-family: var(--sp-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--sp-white);
  margin-bottom: 16px;
}

.sp-email__sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
}

.sp-email__row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.sp-email__input {
  font-family: var(--sp-sans);
  font-size: 14px;
  font-weight: 300;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(218,240,223,0.15);
  border-radius: 100px;
  padding: 14px 24px;
  color: var(--sp-white);
  outline: none;
  width: 300px;
  transition: border-color 0.2s;
}
.sp-email__input::placeholder { color: rgba(255,255,255,0.3); }
.sp-email__input:focus { border-color: rgba(218,240,223,0.4); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
  .sp-app__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .sp-app__pills { justify-content: center; }
  .sp-app__phone { order: -1; }
  .sp-app__phone img { max-width: 220px; }

  .sp-features { padding: 80px 24px; }
  .sp-lineup   { padding: 80px 24px; }
  .sp-quiz     { padding: 80px 24px; }
  .sp-app      { padding: 80px 24px; }
  .sp-testimonials { padding: 80px 24px; }
  .sp-email    { padding: 80px 24px; }

  .sp-lineup__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (prefers-reduced-motion: reduce) {
  .sp-reveal { opacity: 1; transform: none; transition: none; }
  .sp-marquee__track { animation: none; }
}/* ================================================
   SPRILLOW — PRODUCT PAGE
   Append this to the END of sprillow.css
   ================================================ */

/* ── Layout ── */
.sp-product {
  background: var(--sp-cream);
  padding-top: 48px;
}

.sp-product__wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  padding-bottom: 80px;
}

/* ── Gallery ── */
.sp-product__gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-product__main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: #EEEAE2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-product__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-product__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--sp-muted);
  text-align: center;
}
.sp-product__placeholder p {
  font-family: var(--sp-sans);
  font-size: 13px;
  font-weight: 300;
}

.sp-product__thumbs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sp-product__thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid transparent;
  cursor: pointer;
  background: #EEEAE2;
  padding: 0;
  transition: border-color 0.2s ease;
}
.sp-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-product__thumb.is-active {
  border-color: var(--sp-purple);
}

/* ── Product Info ── */
.sp-product__info {
  padding-top: 8px;
}

.sp-product__info .sp-eyebrow--dark {
  color: var(--sp-purple);
}

.sp-product__title {
  font-family: var(--sp-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--sp-dark);
  margin-bottom: 16px;
}

.sp-product__price {
  font-family: var(--sp-sans);
  font-size: 22px;
  font-weight: 500;
  color: var(--sp-dark);
  margin-bottom: 28px;
}

.sp-product__desc {
  font-family: var(--sp-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--sp-muted);
  margin-bottom: 36px;
}
.sp-product__desc p { margin-bottom: 12px; }
.sp-product__desc p:last-child { margin-bottom: 0; }

/* ── Variant options ── */
.sp-product__option {
  margin-bottom: 24px;
}

.sp-product__option-label {
  display: block;
  font-family: var(--sp-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sp-muted);
  margin-bottom: 12px;
}

.sp-product__option-values {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sp-option-btn {
  font-family: var(--sp-sans);
  font-size: 13px;
  font-weight: 400;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid rgba(1,28,39,0.12);
  background: transparent;
  color: var(--sp-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}
.sp-option-btn.is-active,
.sp-option-btn:hover {
  border-color: var(--sp-dark);
  background: var(--sp-dark);
  color: var(--sp-white);
}

/* ── Purchase row ── */
.sp-product__purchase-row {
  display: flex;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 36px;
}

.sp-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(1,28,39,0.12);
  border-radius: 100px;
  overflow: hidden;
}

.sp-qty__btn {
  width: 44px;
  height: 100%;
  border: none;
  background: transparent;
  font-size: 18px;
  color: var(--sp-dark);
  cursor: pointer;
  transition: background 0.2s;
}
.sp-qty__btn:hover { background: rgba(1,28,39,0.06); }

.sp-qty__input {
  width: 44px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--sp-sans);
  font-size: 15px;
  color: var(--sp-dark);
  -moz-appearance: textfield;
}
.sp-qty__input::-webkit-outer-spin-button,
.sp-qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.sp-product__add-btn {
  flex: 1;
  border: none;
  font-size: 14px;
  padding: 16px 32px;
}
.sp-product__add-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

/* ── Trust badges ── */
.sp-product__badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid rgba(1,28,39,0.08);
}

.sp-product__badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sp-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--sp-muted);
}
.sp-product__badge svg {
  flex-shrink: 0;
  color: var(--sp-purple);
}

/* ================================================
   TABS
   ================================================ */
.sp-product__tabs-wrap {
  padding-bottom: 100px;
}

.sp-tabs__nav {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(1,28,39,0.1);
  margin-bottom: 36px;
}

.sp-tab-btn {
  font-family: var(--sp-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: transparent;
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  color: var(--sp-muted);
  position: relative;
  transition: color 0.2s ease;
}
.sp-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sp-dark);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.sp-tab-btn.is-active {
  color: var(--sp-dark);
}
.sp-tab-btn.is-active::after {
  transform: scaleX(1);
}

.sp-tab-panel {
  display: none;
  max-width: 680px;
}
.sp-tab-panel.is-active {
  display: block;
  animation: sp-fade-in 0.4s ease;
}

@keyframes sp-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sp-tab-panel p {
  font-family: var(--sp-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--sp-muted);
  margin-bottom: 16px;
}
.sp-tab-panel p:last-child { margin-bottom: 0; }
.sp-tab-panel strong {
  font-weight: 500;
  color: var(--sp-dark);
}

/* ================================================
   RELATED PRODUCTS
   ================================================ */
.sp-related {
  padding: 100px 24px;
  text-align: center;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
  .sp-product__wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .sp-product { padding-top: 24px; }
}

@media (max-width: 600px) {
  .sp-product__title { font-size: 2rem; }
  .sp-product__price { font-size: 19px; }
  .sp-tabs__nav { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .sp-tab-btn { padding: 12px 18px; white-space: nowrap; }
  .sp-related { padding: 60px 24px; }
  .sp-product__tabs-wrap { padding-bottom: 60px; }
}