/** Shopify CDN: Minification failed

Line 188:0 All "@import" rules must come first
Line 421:0 Expected "}" to go with "{"

**/
/* ============================================================
   Vyelle Design Tokens
   ============================================================ */

:root {
  /* Colors */
  --vy-terracotta: #B8654A;
  --vy-terracotta-deep: #8A4A35;
  --vy-sage: #7A8A6B;
  --vy-cream: #F5EFE6;
  --vy-cream-warm: #EDE3D0;
  --vy-charcoal: #2A2622;
  --vy-charcoal-soft: #5A5450;
  --vy-white: #FFFFFF;

  /* Spacing */
  --vy-spacing-xs: 4px;
  --vy-spacing-sm: 8px;
  --vy-spacing-md: 16px;
  --vy-spacing-lg: 24px;
  --vy-spacing-xl: 48px;
  --vy-spacing-2xl: 80px;
  --vy-spacing-3xl: 120px;

  /* Layout */
  --vy-container-max: 1280px;
  --vy-radius-btn: 999px;
}

/* ── Container ── */
.vy-container {
  max-width: var(--vy-container-max);
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) {
  .vy-container {
    padding: 0 24px;
  }
}

/* ── Buttons ── */
.vy-btn-primary {
  background: var(--vy-terracotta-deep);
  color: var(--vy-white);
  border-radius: var(--vy-radius-btn);
  padding: 18px 40px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 200ms ease-out;
  display: inline-block;
  text-decoration: none;
}

.vy-btn-primary:hover {
  background: #6e3a28;
}

.vy-btn-secondary {
  background: transparent;
  color: var(--vy-charcoal);
  border-radius: var(--vy-radius-btn);
  padding: 18px 40px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 14px;
  border: 1.5px solid var(--vy-charcoal);
  cursor: pointer;
  transition: all 200ms ease-out;
  display: inline-block;
  text-decoration: none;
}

.vy-btn-secondary:hover {
  background: rgba(42, 38, 34, 0.05);
}

/* ============================================================
   Horizon Header — Vyelle skin
   Overrides Horizon's scheme-1 header with Vyelle cream palette
   ============================================================ */

/* Force cream background on header */
#header-component,
.header-component,
[id^="header"],
header-component {
  background: var(--vy-cream) !important;
  border-bottom: 1px solid rgba(42,38,34,0.08) !important;
}

/* Header nav links — charcoal, Inter */
#header-component a,
.header-component a,
header-component a {
  color: var(--vy-charcoal) !important;
  font-family: Inter, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  text-decoration: none !important;
}

#header-component a:hover,
header-component a:hover {
  color: var(--vy-terracotta) !important;
}

/* Cart icon — charcoal */
#header-component .cart-count-bubble,
header-component .cart-count-bubble {
  background: var(--vy-terracotta-deep) !important;
  color: white !important;
}

/* ============================================================
   Horizon Footer — Vyelle skin
   ============================================================ */

footer-component,
#footer-component,
.footer-component,
[data-section-type="footer"],
footer {
  background: var(--vy-charcoal) !important;
  color: var(--vy-cream) !important;
}

footer-component a,
#footer-component a,
footer a {
  color: var(--vy-cream) !important;
  font-family: Inter, sans-serif !important;
  font-size: 14px !important;
  opacity: 0.8;
  text-decoration: none !important;
}

footer-component a:hover,
footer a:hover {
  opacity: 1 !important;
  color: var(--vy-terracotta) !important;
}

footer-component,
.footer-section {
  --color-foreground: 245, 239, 230 !important;
  --color-background: 42, 38, 34 !important;
}

/* ============================================================
   Global Vyelle typography overrides
   ============================================================ */

body {
  font-family: Inter, sans-serif;
  color: var(--vy-charcoal);
  background: var(--vy-cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  letter-spacing: -0.02em;
  color: var(--vy-charcoal);
}

p {
  line-height: 1.6;
  color: var(--vy-charcoal);
}

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

/* ============================================================
   Vyelle Animations
   ============================================================ */

/* Scroll reveal */
.vy-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.vy-reveal.vy-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .vy-reveal {/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--vy-terracotta);
  outline-offset: 2px;
}

/* Smooth hover transitions on all interactive elements */
a, button {
  transition: color 200ms ease-out, background 200ms ease-out, border-color 200ms ease-out, opacity 200ms ease-out;
}

/* ============================================================
   Mobile header — tighten vertical padding
   ============================================================ */
@media (max-width: 767px) {
  #header-component .header__row,
  #header-component .header__row--top,
  #header-component .header__row--bottom,
  header-component .header__row {
    padding-block-start: 8px !important;
    padding-block-end: 8px !important;
  }

  /* Ensure header height stays tap-friendly (~52px total) */
  #header-component {
/* ============================================================
   Horizon native hero — Vyelle brand token overrides
   Fonts, colours, button only. Zero layout changes.
   ============================================================ */

/* Scope all overrides to the native hero section */
.shopify-section:has(.hero-component),
.shopify-section:has([data-section-type="hero"]) {

  /* Headline — Fraunces */
  h1, h2, h3 {
    font-family: 'Fraunces', Georgia, serif !important;
    font-weight: 400 !important;
    letter-spacing: -0.02em !important;
    color: #2A2622 !important;
  }

  /* Body / sub — Inter */
  p {
    font-family: Inter, sans-serif !important;
    color: #2A2622 !important;
    line-height: 1.65 !important;
  }

  /* Eyebrow — Inter uppercase */
  p:first-child {
    font-family: Inter, sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: #5A5450 !important;
  }

  /* Primary CTA button — terracotta pill */
  .button, .button-primary, [class*="button"] {
    background: #8A4A35 !important;
    color: #F5EFE6 !important;
    border-radius: 999px !important;
    padding: 16px 32px !important;
    font-family: Inter, sans-serif !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    border: none !important;
    transition: background 200ms ease-out !important;
  }
  .button:hover, .button-primary:hover, [class*="button"]:hover {
    background: #6e3a28 !important;
    color: #F5EFE6 !important;
  }
}


/* ── Tier 1 PDP additions ─────────────────────────────────────────── */

/* 1. Flavour subtitle under product title */
.vyelle-flavour-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(42, 38, 34, 0.7);
  letter-spacing: 0.04em;
  margin: 4px 0 16px;
}

/* 2. Price-per-serving line */
.vyelle-per-serving {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: #7A8A6B;
  margin: 4px 0 0;
}
@media (max-width: 768px) {
  .vyelle-per-serving {
    font-size: 13px;
  }
}

/* 3. Subscription mechanics bullets */
.vyelle-sub-mechanics {
  list-style: none;
  padding: 0;
  margin: 12px 0 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(42, 38, 34, 0.8);
}
.vyelle-sub-mechanics li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 4px;
}
.vyelle-sub-mechanics li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 9px;
  width: 4px;
  height: 4px;
  background: #B8654A;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .vyelle-sub-mechanics {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* ── Tier 1 Tasks 4, 5, 7 ─────────────────────────────────────────── */

/* 4. Trust pills */
.vyelle-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.vyelle-trust-pills li {
  background: #F5EFE6;
  border: 1px solid rgba(122, 138, 107, 0.4);
  color: #2A2622;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 100px;
}

/* 5. Welcome kit card */
.vyelle-welcome-kit {
  background: #F5EFE6;
  border: 1px solid rgba(122, 138, 107, 0.2);
  border-radius: 4px;
  padding: 20px;
  margin-top: 16px;
}
.vyelle-welcome-kit__title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 17px;
  color: #2A2622;
  margin: 0 0 12px;
}
.vyelle-welcome-kit__item {
  margin-bottom: 12px;
}
.vyelle-welcome-kit__name {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #2A2622;
  margin: 0;
}
.vyelle-welcome-kit__desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(42, 38, 34, 0.7);
  font-style: italic;
  margin: 0;
}
.vyelle-welcome-kit__footer {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #7A8A6B;
  font-style: italic;
  margin: 0;
}
@media (max-width: 768px) {
  .vyelle-welcome-kit {
    padding: 16px;
  }
}

/* 7. CTA casing — ensure sentence case on all buy buttons */
.product-form__buttons .button,
.product-form__submit,
[class*="add-to-cart"],
[class*="buy-it-now"] {
  text-transform: none !important;
}
