/** Shopify CDN: Minification failed

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

**/
/* ==========================================================================
   NUEVA - Luxury Women's Health Brand
   Custom Brand Styles & CSS Variables
   ========================================================================== */

/* --------------------------------------------------------------------------
   Brand Color Palette
   -------------------------------------------------------------------------- */
:root {
  /* Primary - Burgundy Family */
  --nueva-burgundy: #722F37;
  --nueva-burgundy-dark: #4A1E23;
  --nueva-burgundy-light: #8B3D47;
  
  /* Secondary - Warm Pinks */
  --nueva-rose: #C4A4A7;
  --nueva-blush: #E8D5D5;
  --nueva-dusty-pink: #D4A5A5;
  
  /* Tertiary - Tans & Earthy */
  --nueva-terracotta: #C67D5E;
  --nueva-sand: #D4C5B5;
  --nueva-tan: #C9B8A8;
  --nueva-camel: #A68B6A;
  
  /* Neutrals */
  --nueva-cream: #FAF7F2;
  --nueva-ivory: #FFFEF9;
  --nueva-warm-white: #FDF9F3;
  --nueva-warm-gray: #8A837A;
  
  /* Darks */
  --nueva-charcoal: #2D2A26;
  --nueva-espresso: #3D3530;
  --nueva-black: #1A1714;
  
  /* Functional */
  --nueva-success: #7A9E7E;
  --nueva-warning: #D4A853;
  --nueva-error: #C45C5C;

  /* Product Category Colors */
  /* Vaginal Health - Warm Pink/Tan */
  --nueva-vaginal-primary: #D4A5A5;
  --nueva-vaginal-secondary: #C9B8A8;
  --nueva-vaginal-accent: #C4A4A7;
  
  /* Menopause Support - Serene Blue */
  --nueva-menopause-primary: #7B9BAE;
  --nueva-menopause-secondary: #B8C9D4;
  --nueva-menopause-accent: #5A7A8C;
  
  /* Fertility & Hormonal - Soft Green/Gold */
  --nueva-fertility-primary: #9CAF88;
  --nueva-fertility-secondary: #D4CBA5;
  --nueva-fertility-accent: #7A9E7E;

  /* Typography Scale */
  --nueva-text-xs: 0.75rem;
  --nueva-text-sm: 0.875rem;
  --nueva-text-base: 1rem;
  --nueva-text-lg: 1.125rem;
  --nueva-text-xl: 1.25rem;
  --nueva-text-2xl: 1.5rem;
  --nueva-text-3xl: 1.875rem;
  --nueva-text-4xl: 2.25rem;
  --nueva-text-5xl: 3rem;
  --nueva-text-6xl: 3.75rem;
  --nueva-text-7xl: 4.5rem;

  /* Spacing */
  --nueva-space-1: 0.25rem;
  --nueva-space-2: 0.5rem;
  --nueva-space-3: 0.75rem;
  --nueva-space-4: 1rem;
  --nueva-space-5: 1.25rem;
  --nueva-space-6: 1.5rem;
  --nueva-space-8: 2rem;
  --nueva-space-10: 2.5rem;
  --nueva-space-12: 3rem;
  --nueva-space-16: 4rem;
  --nueva-space-20: 5rem;
  --nueva-space-24: 6rem;

  /* Border Radius */
  --nueva-radius-sm: 0.125rem;
  --nueva-radius-md: 0.375rem;
  --nueva-radius-lg: 0.5rem;
  --nueva-radius-xl: 0.75rem;
  --nueva-radius-2xl: 1rem;
  --nueva-radius-full: 9999px;

  /* Shadows */
  --nueva-shadow-sm: 0 1px 2px 0 rgba(26, 23, 20, 0.05);
  --nueva-shadow-md: 0 4px 6px -1px rgba(26, 23, 20, 0.08), 0 2px 4px -1px rgba(26, 23, 20, 0.04);
  --nueva-shadow-lg: 0 10px 15px -3px rgba(26, 23, 20, 0.08), 0 4px 6px -2px rgba(26, 23, 20, 0.04);
  --nueva-shadow-xl: 0 20px 25px -5px rgba(26, 23, 20, 0.08), 0 10px 10px -5px rgba(26, 23, 20, 0.03);
  --nueva-shadow-glow: 0 0 40px rgba(114, 47, 55, 0.15);

  /* Transitions */
  --nueva-transition-fast: 150ms ease;
  --nueva-transition-base: 250ms ease;
  --nueva-transition-slow: 350ms ease;
  --nueva-transition-luxury: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

/* Import Cormorant Garamond for elegant headings */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2D2A26;
  background-color: #FAF7F2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   GLOBAL DAWN OVERRIDES FOR LUXURY FEEL
   ============================================ */

/* Buttons */
.button, .shopify-challenge__button, .customer button {
  font-family: 'Nunito Sans', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.button--primary {
  background: #722F37 !important;
  color: #FAF7F2 !important;
}

.button--primary:hover {
  background: #4A1E23 !important;
}

.button--secondary {
  background: transparent !important;
  color: #722F37 !important;
  border: 2px solid #722F37 !important;
}

.button--secondary:hover {
  background: #722F37 !important;
  color: #FAF7F2 !important;
}

/* Announcement bar */
.announcement-bar {
  background: #722F37 !important;
}

.announcement-bar__message {
  font-family: 'Nunito Sans', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  color: #FAF7F2 !important;
}

/* Product cards */
.card-wrapper {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 23, 20, 0.1);
}

.card__heading {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: 1.25rem !important;
}

.price {
  font-family: 'Nunito Sans', sans-serif !important;
  font-weight: 600 !important;
  color: #722F37 !important;
}

/* Badge styling */
.badge {
  font-family: 'Nunito Sans', sans-serif !important;
  font-weight: 600 !important;
  font-size: 10px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  background: #722F37 !important;
  color: #FAF7F2 !important;
  border-radius: 4px !important;
}

/* Section titles */
.title, .collection__title, h2.title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 400 !important;
  letter-spacing: -0.01em !important;
  color: #2D2A26 !important;
}

/* Form inputs */
.field__input {
  font-family: 'Nunito Sans', sans-serif !important;
  border-radius: 0 !important;
  border-color: #D4C5B5 !important;
  transition: border-color 0.3s ease !important;
}

.field__input:focus {
  border-color: #722F37 !important;
  box-shadow: 0 0 0 1px #722F37 !important;
}

/* Variant pills */
.variant-picker__button,
.product-form__input input[type="radio"] + label {
  font-family: 'Nunito Sans', sans-serif !important;
  border-radius: 0 !important;
  border: 2px solid #D4C5B5 !important;
  transition: all 0.3s ease !important;
  background: #FAF7F2 !important;
  color: #2D2A26 !important;
}

.variant-picker__button:hover,
.variant-picker__button.selected,
.product-form__input input[type="radio"]:checked + label {
  border-color: #722F37 !important;
  background: #722F37 !important;
  color: #FAF7F2 !important;
}

.product-form__input input[type="radio"] + label:hover {
  border-color: #722F37 !important;
}

/* Quantity selector */
.quantity__button {
  border-radius: 0 !important;
}

/* Product page */
.product__title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 400 !important;
  font-size: 2.5rem !important;
  letter-spacing: -0.02em !important;
}

.product__text {
  font-family: 'Nunito Sans', sans-serif !important;
  line-height: 1.7 !important;
  color: #5A5550 !important;
}

/* Cart drawer */
.cart-drawer {
  background: #FAF7F2 !important;
}

.cart-drawer__heading {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 500 !important;
}

/* Newsletter */
.newsletter-form__field-wrapper .field__input {
  border-radius: 0 !important;
}

/* Rich text sections */
.rich-text__heading {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
}

/* Multicolumn */
.multicolumn-card__heading {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 500 !important;
}

/* Image with text */
.image-with-text__heading {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
}

/* Link styling */
a:not(.button) {
  transition: color 0.3s ease;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: rgba(114, 47, 55, 0.2);
  color: #2D2A26;
}

h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4, .h5, .h6,
.nueva-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--nueva-charcoal);
}

.nueva-display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: var(--nueva-text-6xl);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

@media screen and (min-width: 750px) {
  .nueva-display {
    font-size: var(--nueva-text-7xl);
  }
}

.nueva-subtitle {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 300;
  font-size: var(--nueva-text-lg);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--nueva-warm-gray);
}

.nueva-body {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--nueva-charcoal);
}

.nueva-caption {
  font-family: 'Nunito Sans', sans-serif;
  font-size: var(--nueva-text-sm);
  letter-spacing: 0.05em;
  color: var(--nueva-warm-gray);
}

/* --------------------------------------------------------------------------
   Luxury Button Styles
   -------------------------------------------------------------------------- */
.nueva-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--nueva-space-2);
  padding: var(--nueva-space-4) var(--nueva-space-8);
  font-family: 'Nunito Sans', sans-serif;
  font-size: var(--nueva-text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--nueva-transition-luxury);
  position: relative;
  overflow: hidden;
}

.nueva-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.nueva-btn:hover::before {
  left: 100%;
}

.nueva-btn--primary {
  background-color: var(--nueva-burgundy);
  color: var(--nueva-cream);
}

.nueva-btn--primary:hover {
  background-color: var(--nueva-burgundy-dark);
  transform: translateY(-2px);
  box-shadow: var(--nueva-shadow-lg);
}

.nueva-btn--secondary {
  background-color: transparent;
  color: var(--nueva-burgundy);
  border: 1px solid var(--nueva-burgundy);
}

.nueva-btn--secondary:hover {
  background-color: var(--nueva-burgundy);
  color: var(--nueva-cream);
}

.nueva-btn--ghost {
  background-color: transparent;
  color: var(--nueva-charcoal);
  border-bottom: 1px solid var(--nueva-charcoal);
  padding: var(--nueva-space-2) 0;
  border-radius: 0;
}

.nueva-btn--ghost:hover {
  color: var(--nueva-burgundy);
  border-bottom-color: var(--nueva-burgundy);
}

.nueva-btn--large {
  padding: var(--nueva-space-5) var(--nueva-space-12);
  font-size: var(--nueva-text-base);
}

/* --------------------------------------------------------------------------
   Card Styles
   -------------------------------------------------------------------------- */
.nueva-card {
  background-color: var(--nueva-warm-white);
  border: 1px solid var(--nueva-sand);
  border-radius: var(--nueva-radius-lg);
  overflow: hidden;
  transition: all var(--nueva-transition-luxury);
}

.nueva-card:hover {
  border-color: var(--nueva-rose);
  box-shadow: var(--nueva-shadow-xl);
  transform: translateY(-4px);
}

.nueva-card__image {
  aspect-ratio: 1;
  overflow: hidden;
}

.nueva-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--nueva-transition-luxury);
}

.nueva-card:hover .nueva-card__image img {
  transform: scale(1.05);
}

.nueva-card__content {
  padding: var(--nueva-space-6);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.nueva-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--nueva-cream) 0%, var(--nueva-blush) 50%, var(--nueva-cream) 100%);
  overflow: hidden;
}

.nueva-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(196, 164, 167, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(212, 165, 165, 0.2) 0%, transparent 40%);
  pointer-events: none;
}

.nueva-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: var(--nueva-space-8);
}

.nueva-hero__eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 300;
  font-size: var(--nueva-text-sm);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--nueva-burgundy);
  margin-bottom: var(--nueva-space-4);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.nueva-hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: var(--nueva-text-5xl);
  line-height: 1.1;
  color: var(--nueva-charcoal);
  margin-bottom: var(--nueva-space-6);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

@media screen and (min-width: 750px) {
  .nueva-hero__title {
    font-size: var(--nueva-text-7xl);
  }
}

.nueva-hero__description {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: var(--nueva-text-lg);
  line-height: 1.8;
  color: var(--nueva-warm-gray);
  max-width: 600px;
  margin: 0 auto var(--nueva-space-8);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.nueva-hero__cta {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

/* --------------------------------------------------------------------------
   Product Categories Badge
   -------------------------------------------------------------------------- */
.nueva-badge {
  display: inline-block;
  padding: var(--nueva-space-1) var(--nueva-space-3);
  font-family: 'Nunito Sans', sans-serif;
  font-size: var(--nueva-text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--nueva-radius-full);
}

.nueva-badge--vaginal {
  background-color: var(--nueva-vaginal-primary);
  color: var(--nueva-charcoal);
}

.nueva-badge--menopause {
  background-color: var(--nueva-menopause-primary);
  color: white;
}

.nueva-badge--fertility {
  background-color: var(--nueva-fertility-primary);
  color: white;
}

.nueva-badge--promo {
  background-color: var(--nueva-terracotta);
  color: var(--nueva-ivory);
}

/* --------------------------------------------------------------------------
   Product Detail Page Enhancements
   -------------------------------------------------------------------------- */
.nueva-pdp {
  background-color: var(--nueva-cream);
}

.nueva-pdp__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: var(--nueva-text-3xl);
  line-height: 1.2;
  color: var(--nueva-charcoal);
  margin-bottom: var(--nueva-space-4);
}

@media screen and (min-width: 750px) {
  .nueva-pdp__title {
    font-size: var(--nueva-text-4xl);
  }
}

.nueva-pdp__price {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: var(--nueva-text-xl);
  color: var(--nueva-burgundy);
}

.nueva-pdp__benefits {
  display: grid;
  gap: var(--nueva-space-4);
  padding: var(--nueva-space-6);
  background-color: var(--nueva-warm-white);
  border: 1px solid var(--nueva-sand);
  border-radius: var(--nueva-radius-lg);
  margin: var(--nueva-space-8) 0;
}

.nueva-pdp__benefit {
  display: flex;
  align-items: flex-start;
  gap: var(--nueva-space-4);
}

.nueva-pdp__benefit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--nueva-burgundy);
}

.nueva-pdp__benefit-text {
  font-size: var(--nueva-text-sm);
  color: var(--nueva-charcoal);
  line-height: 1.5;
}

.nueva-pdp__disclaimer {
  font-size: var(--nueva-text-xs);
  color: var(--nueva-warm-gray);
  line-height: 1.6;
  padding: var(--nueva-space-4);
  background-color: rgba(138, 131, 122, 0.1);
  border-radius: var(--nueva-radius-md);
  margin-top: var(--nueva-space-6);
}

.nueva-pdp__disclaimer::before {
  content: '*';
  margin-right: var(--nueva-space-1);
}

/* --------------------------------------------------------------------------
   Trust Indicators
   -------------------------------------------------------------------------- */
.nueva-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--nueva-space-6);
  justify-content: center;
  padding: var(--nueva-space-8) 0;
  border-top: 1px solid var(--nueva-sand);
  border-bottom: 1px solid var(--nueva-sand);
  margin: var(--nueva-space-12) 0;
}

.nueva-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--nueva-space-2);
  text-align: center;
}

.nueva-trust__icon {
  width: 40px;
  height: 40px;
  color: var(--nueva-burgundy);
}

.nueva-trust__text {
  font-size: var(--nueva-text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--nueva-charcoal);
}

/* --------------------------------------------------------------------------
   Footer FDA Disclaimer
   -------------------------------------------------------------------------- */
.nueva-fda-disclaimer {
  background-color: var(--nueva-burgundy-dark);
  color: var(--nueva-blush);
  padding: var(--nueva-space-6);
  font-size: var(--nueva-text-xs);
  line-height: 1.8;
  text-align: center;
}

.nueva-fda-disclaimer p {
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nueva-animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.nueva-animate-fade-up {
  animation: fadeInUp 0.6s ease forwards;
}

.nueva-animate-slide-in {
  animation: slideIn 0.6s ease forwards;
}

/* Staggered animation delays */
.nueva-delay-1 { animation-delay: 0.1s; }
.nueva-delay-2 { animation-delay: 0.2s; }
.nueva-delay-3 { animation-delay: 0.3s; }
.nueva-delay-4 { animation-delay: 0.4s; }
.nueva-delay-5 { animation-delay: 0.5s; }

/* --------------------------------------------------------------------------
   Header Luxury Overrides
   -------------------------------------------------------------------------- */
.nueva-header {
  background-color: var(--nueva-cream);
  border-bottom: 1px solid var(--nueva-sand);
}

.nueva-header .header__heading-link {
  color: var(--nueva-charcoal);
}

.nueva-header .list-menu__item {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: var(--nueva-text-sm);
  letter-spacing: 0.05em;
  color: var(--nueva-charcoal);
  transition: color var(--nueva-transition-base);
}

.nueva-header .list-menu__item:hover {
  color: var(--nueva-burgundy);
}

.nueva-header .header__icon {
  color: var(--nueva-charcoal);
  transition: color var(--nueva-transition-base);
}

.nueva-header .header__icon:hover {
  color: var(--nueva-burgundy);
}

/* --------------------------------------------------------------------------
   Footer Luxury Overrides
   -------------------------------------------------------------------------- */
.nueva-footer {
  background-color: var(--nueva-burgundy-dark);
  color: var(--nueva-cream);
}

.nueva-footer .footer-block__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  color: var(--nueva-cream);
  letter-spacing: 0.02em;
}

.nueva-footer a {
  color: var(--nueva-rose);
  transition: color var(--nueva-transition-base);
}

.nueva-footer a:hover {
  color: var(--nueva-cream);
}

.nueva-footer .newsletter-form__field-wrapper .field__input {
  background-color: transparent;
  border-color: var(--nueva-rose);
  color: var(--nueva-cream);
}

.nueva-footer .newsletter-form__field-wrapper .field__input::placeholder {
  color: var(--nueva-rose);
}

/* --------------------------------------------------------------------------
   Cart Drawer Luxury Overrides
   -------------------------------------------------------------------------- */
.nueva-cart-drawer .drawer__inner {
  background-color: var(--nueva-cream);
}

.nueva-cart-drawer .drawer__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  color: var(--nueva-charcoal);
}

.nueva-cart-drawer .cart__checkout-button {
  background-color: var(--nueva-burgundy);
  color: var(--nueva-cream);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--nueva-transition-luxury);
}

.nueva-cart-drawer .cart__checkout-button:hover {
  background-color: var(--nueva-burgundy-dark);
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.nueva-bg-cream { background-color: var(--nueva-cream); }
.nueva-bg-blush { background-color: var(--nueva-blush); }
.nueva-bg-burgundy { background-color: var(--nueva-burgundy); }
.nueva-bg-burgundy-dark { background-color: var(--nueva-burgundy-dark); }
.nueva-bg-warm-white { background-color: var(--nueva-warm-white); }

.nueva-text-burgundy { color: var(--nueva-burgundy); }
.nueva-text-charcoal { color: var(--nueva-charcoal); }
.nueva-text-cream { color: var(--nueva-cream); }
.nueva-text-warm-gray { color: var(--nueva-warm-gray); }

.nueva-border-sand { border-color: var(--nueva-sand); }
.nueva-border-rose { border-color: var(--nueva-rose); }

/* Section backgrounds with subtle patterns */
.nueva-section-pattern {
  position: relative;
}

.nueva-section-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(196, 164, 167, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(201, 184, 168, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Divider */
.nueva-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nueva-sand), transparent);
  margin: var(--nueva-space-12) 0;
}

/* Container */
.nueva-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--nueva-space-6);
  width: 100%;
}

@media screen and (min-width: 990px) {
  .nueva-container {
    padding: 0 var(--nueva-space-12);
  }
}

/* Ensure Dawn's page-width respects max-width if used */
.page-width {
  max-width: 1400px;
}

/* Aspect Ratios for Product Images */
.nueva-aspect-portrait { aspect-ratio: 3/4; }
.nueva-aspect-square { aspect-ratio: 1; }
.nueva-aspect-landscape { aspect-ratio: 4/3; }
.nueva-aspect-wide { aspect-ratio: 16/9; }

/* Health Claims Language Helper */
.nueva-health-claim {
  font-style: italic;
}

.nueva-health-claim::before {
  content: 'May support ';
}
