/** Shopify CDN: Minification failed

Line 370:0 Unexpected "100"

**/
/* =====================================================
   ERWEIT NUTRITION — Master Custom CSS
   Brand: Gold #4E8C6E | Charcoal #373435 | Cream #FBF4E4
   Fonts: Geologica (headings) | Cabin (body)
   ===================================================== */

/* ---- Base Font Override (prevents browser Times fallback) ---- */
html, body, input, textarea, select, button {
  font-family: 'Cabin', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Geologica', sans-serif;
}
/* Override Horizon theme Inter/GTStandard fonts */
.skip-to-content-link,
.shopify-section,
[class*="horizon"] {
  font-family: 'Cabin', sans-serif !important;
}

/* ---- Design Tokens ---- */
:root {
  --ew-gold: #4E8C6E;
  --ew-gold-hover: #3D7259;
  --ew-gold-light: #E6F4EC;
  --ew-charcoal: #2D3D35;
  --ew-white: #FFFFFF;
  --ew-cream: #EFF7F3;
  --ew-offwhite: #F7F7F7;
  --ew-dark: #1F3B2E;
  --ew-green: #4E8C6E;
  --ew-green-bg: #E6F4EC;
  --ew-border: #C8DED4;
  --ew-error: #CF2E2E;
  --ew-text-muted: #5A7268;
  --ew-shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --ew-shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --ew-shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --ew-radius: 8px;
  --ew-radius-sm: 4px;
  --ew-radius-lg: 16px;
  --ew-radius-pill: 999px;
  --ew-section-pad: 80px;
  --ew-section-pad-mobile: 48px;
  --ew-max-width: 1280px;
  --ew-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Typography Base ---- */
.ew-display {
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ew-charcoal);
}
.ew-h1 { font-family: 'Geologica', sans-serif; font-weight: 700; font-size: clamp(32px, 4vw, 56px); line-height: 1.15; letter-spacing: -0.02em; color: var(--ew-charcoal); }
.ew-h2 { font-family: 'Geologica', sans-serif; font-weight: 600; font-size: clamp(26px, 3vw, 40px); line-height: 1.2; letter-spacing: -0.01em; color: var(--ew-charcoal); }
.ew-h3 { font-family: 'Geologica', sans-serif; font-weight: 600; font-size: clamp(20px, 2.2vw, 28px); line-height: 1.3; color: var(--ew-charcoal); }
.ew-h4 { font-family: 'Geologica', sans-serif; font-weight: 500; font-size: clamp(17px, 1.8vw, 22px); line-height: 1.4; color: var(--ew-charcoal); }
.ew-body { font-family: 'Cabin', sans-serif; font-weight: 400; font-size: 16px; line-height: 1.7; color: var(--ew-charcoal); }
.ew-body-sm { font-family: 'Cabin', sans-serif; font-weight: 400; font-size: 14px; line-height: 1.6; color: var(--ew-text-muted); }
.ew-label { font-family: 'Cabin', sans-serif; font-weight: 600; font-size: 12px; line-height: 1; letter-spacing: 0.1em; text-transform: uppercase; }
.ew-gold-word { color: var(--ew-gold); }

/* ---- Layout Utilities ---- */
.ew-container { max-width: var(--ew-max-width); margin: 0 auto; padding: 0 24px; }
@media(min-width: 768px) { .ew-container { padding: 0 40px; } }
@media(min-width: 1280px) { .ew-container { padding: 0 60px; } }

.ew-section { padding: var(--ew-section-pad) 0; }
@media(max-width: 767px) { .ew-section { padding: var(--ew-section-pad-mobile) 0; } }

.ew-section--cream { background-color: var(--ew-cream); }
.ew-section--offwhite { background-color: var(--ew-offwhite); }
.ew-section--dark { background-color: var(--ew-dark); }
.ew-section--white { background-color: var(--ew-white); }
.ew-section--green { background-color: var(--ew-green-bg); }

.ew-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.ew-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ew-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media(max-width: 1023px) { .ew-grid-4 { grid-template-columns: repeat(2, 1fr); } .ew-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 600px) { .ew-grid-2 { grid-template-columns: 1fr; } .ew-grid-3 { grid-template-columns: 1fr; } .ew-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ---- Buttons ---- */
.ew-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Cabin', sans-serif; font-weight: 600; font-size: 15px; letter-spacing: 0.02em; padding: 0 28px; height: 48px; border-radius: var(--ew-radius-sm); cursor: pointer; transition: var(--ew-transition); text-decoration: none; border: 2px solid transparent; white-space: nowrap; }
.ew-btn--primary { background: var(--ew-gold); color: #ffffff !important; border-color: var(--ew-gold); }
.ew-btn--primary:hover { background: var(--ew-gold-hover); border-color: var(--ew-gold-hover); color: #ffffff !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(78,140,110,0.35); }
.ew-btn--secondary { background: transparent; color: var(--ew-charcoal); border-color: var(--ew-charcoal); }
.ew-btn--secondary:hover { background: var(--ew-charcoal); color: var(--ew-white); }
.ew-btn--outline-gold { background: transparent; color: var(--ew-gold); border-color: var(--ew-gold); }
.ew-btn--outline-gold:hover { background: var(--ew-gold); color: var(--ew-dark); }
.ew-btn--white { background: var(--ew-white); color: var(--ew-dark); border-color: var(--ew-white); }
.ew-btn--white:hover { background: var(--ew-cream); }
.ew-btn--lg { height: 56px; padding: 0 36px; font-size: 16px; }
.ew-btn--sm { height: 38px; padding: 0 18px; font-size: 13px; }

.ew-link-arrow { display: inline-flex; align-items: center; gap: 6px; font-family: 'Cabin', sans-serif; font-weight: 600; font-size: 14px; color: var(--ew-charcoal); text-decoration: none; transition: var(--ew-transition); }
.ew-link-arrow:hover { color: var(--ew-gold); gap: 10px; }
.ew-link-arrow::after { content: '→'; font-size: 16px; }
.ew-link-arrow--gold { color: var(--ew-gold); }
.ew-link-arrow--white { color: var(--ew-white); }
.ew-link-arrow--white:hover { color: var(--ew-gold); }

/* ---- Section Headers ---- */
.ew-section-header { margin-bottom: 48px; }
.ew-section-header--center { text-align: center; }
.ew-section-header .ew-label { color: var(--ew-gold); margin-bottom: 12px; display: block; }
.ew-section-header .ew-h2 { margin-bottom: 16px; }
.ew-section-header .ew-body { max-width: 560px; color: var(--ew-text-muted); }
.ew-section-header--center .ew-body { margin: 0 auto; }

/* ---- Gold Divider ---- */
.ew-gold-line { width: 48px; height: 2px; background: var(--ew-gold); display: block; margin-bottom: 20px; }
.ew-gold-line--center { margin-left: auto; margin-right: auto; }

/* ---- Cards ---- */
.ew-card { background: var(--ew-white); border-radius: var(--ew-radius); border: 1px solid var(--ew-border); transition: var(--ew-transition); }
.ew-card:hover { transform: translateY(-3px); box-shadow: var(--ew-shadow-md); border-color: transparent; }
.ew-card--cream { background: var(--ew-cream); border-color: transparent; }

/* ---- Star Rating ---- */
.ew-stars { display: inline-flex; gap: 2px; color: var(--ew-gold); font-size: 14px; }
.ew-stars-row { display: flex; align-items: center; gap: 8px; }
.ew-stars-row .ew-label { color: var(--ew-text-muted); }

/* ---- Badge ---- */
.ew-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: var(--ew-radius-pill); font-family: 'Cabin', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.ew-badge--gold { background: var(--ew-gold-light); color: #2A6B4A; }
.ew-badge--green { background: var(--ew-green-bg); color: var(--ew-green); }
.ew-badge--dark { background: var(--ew-charcoal); color: var(--ew-white); }
.ew-badge--coming { background: var(--ew-offwhite); color: var(--ew-text-muted); border: 1px solid var(--ew-border); }

/* ---- Product Card ---- */
.ew-product-card { background: var(--ew-cream); border-radius: var(--ew-radius); overflow: hidden; transition: var(--ew-transition); position: relative; display: flex; flex-direction: column; }
.ew-product-card:hover { transform: translateY(-4px); box-shadow: var(--ew-shadow-lg); }
.ew-product-card__image-wrap { position: relative; background: var(--ew-white); aspect-ratio: 1; overflow: hidden; }
.ew-product-card__image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s ease; }
.ew-product-card__image-wrap .img-secondary { position: absolute; inset: 0; opacity: 0; }
.ew-product-card:hover .img-secondary { opacity: 1; }
.ew-product-card__badge { position: absolute; top: 12px; left: 12px; z-index: 2; }
.ew-product-card__body { padding: 16px 20px 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.ew-product-card__rating { display: flex; align-items: center; gap: 6px; }
.ew-product-card__name { font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 16px; color: var(--ew-charcoal); line-height: 1.3; }
.ew-product-card__tagline { font-family: 'Cabin', sans-serif; font-size: 13px; color: var(--ew-text-muted); line-height: 1.4; }
.ew-product-card__pack-selector { display: flex; gap: 6px; margin-top: 4px; }
.ew-pack-pill { padding: 5px 12px; border-radius: var(--ew-radius-pill); border: 1.5px solid var(--ew-border); font-family: 'Cabin', sans-serif; font-size: 12px; font-weight: 600; color: var(--ew-text-muted); cursor: pointer; transition: var(--ew-transition); background: var(--ew-white); }
.ew-pack-pill.active, .ew-pack-pill:hover { border-color: var(--ew-gold); color: var(--ew-charcoal); background: var(--ew-gold-light); }
.ew-product-card__price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }
.ew-product-card__price { font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 20px; color: var(--ew-charcoal); }
.ew-product-card__price-compare { font-family: 'Cabin', sans-serif; font-size: 14px; color: var(--ew-text-muted); text-decoration: line-through; }
.ew-product-card__per-day { font-family: 'Cabin', sans-serif; font-size: 12px; color: var(--ew-green); font-weight: 600; background: var(--ew-green-bg); padding: 2px 8px; border-radius: var(--ew-radius-pill); margin-left: auto; }
.ew-product-card__cta { margin-top: auto; padding-top: 12px; }
.ew-product-card--coming { opacity: 0.85; }
.ew-product-card--coming .ew-product-card__image-wrap::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.5); backdrop-filter: blur(3px); z-index: 1; }

/* ---- Pillar Card ---- */
.ew-pillar-card { padding: 32px 28px; border-radius: var(--ew-radius); background: var(--ew-white); border: 1px solid var(--ew-border); transition: var(--ew-transition); }
.ew-pillar-card:hover { border-color: var(--ew-gold-light); box-shadow: var(--ew-shadow-sm); }
.ew-pillar-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--ew-gold-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.ew-pillar-icon svg { width: 26px; height: 26px; color: var(--ew-gold); fill: var(--ew-gold); }

/* ---- Ingredient Card ---- */
.ew-ingredient-card { background: var(--ew-white); border-radius: var(--ew-radius); border: 1px solid var(--ew-border); overflow: hidden; transition: var(--ew-transition); cursor: pointer; }
.ew-ingredient-card:hover { border-color: var(--ew-gold); transform: translateY(-2px); box-shadow: var(--ew-shadow-sm); }
.ew-ingredient-card__image { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--ew-cream); }
.ew-ingredient-card__body { padding: 14px 16px; }
.ew-ingredient-card__name { font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 14px; color: var(--ew-charcoal); margin-bottom: 4px; }
.ew-ingredient-card__benefit { font-family: 'Cabin', sans-serif; font-size: 12px; color: var(--ew-text-muted); line-height: 1.4; }
.ew-ingredient-card__origin { display: flex; align-items: center; gap: 5px; margin-top: 8px; font-family: 'Cabin', sans-serif; font-size: 11px; font-weight: 600; color: var(--ew-gold); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---- Testimonial Card ---- */
.ew-testimonial-card { background: var(--ew-white); border-radius: var(--ew-radius-lg); padding: 28px 32px; border: 1px solid var(--ew-border); position: relative; }
.ew-testimonial-card::before { content: '"'; position: absolute; top: 20px; left: 28px; font-family: Georgia, serif; font-size: 64px; line-height: 1; color: var(--ew-gold-light); }
.ew-testimonial-card__quote { font-family: 'Cabin', sans-serif; font-size: 15px; line-height: 1.7; color: var(--ew-charcoal); padding-top: 24px; margin-bottom: 20px; }
.ew-testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.ew-testimonial-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--ew-cream); display: flex; align-items: center; justify-content: center; font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 16px; color: var(--ew-gold); flex-shrink: 0; overflow: hidden; }
.ew-testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.ew-testimonial-card__name { font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 14px; color: var(--ew-charcoal); }
.ew-testimonial-card__meta { font-family: 'Cabin', sans-serif; font-size: 12px; color: var(--ew-text-muted); }
.ew-testimonial-card__product { display: inline-flex; align-items: center; gap: 5px; margin-top: 8px; font-size: 12px; font-family: 'Cabin', sans-serif; font-weight: 600; color: var(--ew-gold); }

/* ---- Trust Badge Row ---- */
.ew-trust-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.ew-trust-badge { display: flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--ew-radius-pill); border: 1.5px solid var(--ew-border); background: var(--ew-white); font-family: 'Cabin', sans-serif; font-weight: 600; font-size: 12px; color: var(--ew-charcoal); }
.ew-trust-badge svg { width: 16px; height: 16px; color: var(--ew-gold); flex-shrink: 0; }
.ew-trust-badge--nabl { border-color: var(--ew-green); color: var(--ew-green); }
.ew-trust-badge--nabl svg { color: var(--ew-green); }

/* ---- NABL Badge ---- */
.ew-nabl-badge { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: var(--ew-radius); border: 2px solid var(--ew-green); background: var(--ew-green-bg); }
.ew-nabl-badge__icon { width: 32px; height: 32px; background: var(--ew-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.ew-nabl-badge__icon svg { width: 18px; height: 18px; color: white; }
.ew-nabl-badge__text .ew-nabl-badge__title { font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 14px; color: var(--ew-green); }
.ew-nabl-badge__text .ew-nabl-badge__sub { font-family: 'Cabin', sans-serif; font-size: 11px; color: var(--ew-green); opacity: 0.8; }

/* ---- NABL Trust Section ---- */
.ew-nabl-section { background: #EFF7F3; position: relative; overflow: hidden; }
.ew-nabl-section::before { content: ''; position: absolute; top: -50%; left: -20%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(90,140,110,0.08) 0%, transparent 70%); pointer-events: none; }
.ew-nabl-section::after { content: ''; position: absolute; bottom: -30%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(90,140,110,0.06) 0%, transparent 70%); pointer-events: none; }
.ew-nabl-section .ew-h2 { color: #373435; }
.ew-nabl-section .ew-body { color: #5A7268; }
.ew-nabl-section .ew-label { color: #3D6B52; }
.ew-batch-input-wrap { display: flex; gap: 0; max-width: 460px; margin-top: 32px; }
.ew-batch-input { flex: 1; padding: 0 18px; height: 52px; border: 2px solid rgba(0,0,0,0.15); border-right: none; border-radius: var(--ew-radius-sm) 0 0 var(--ew-radius-sm); background: #fff; color: #373435; font-family: 'Cabin', sans-serif; font-size: 15px; outline: none; transition: border-color 0.2s; }
.ew-batch-input::placeholder { color: rgba(0,0,0,0.35); }
.ew-batch-input:focus { border-color: #5A8C6E; }
.ew-batch-btn { height: 52px; padding: 0 24px; background: #5A8C6E; border: none; border-radius: 0 var(--ew-radius-sm) var(--ew-radius-sm) 0; font-family: 'Cabin', sans-serif; font-weight: 600; font-size: 14px; color: #fff; cursor: pointer; transition: var(--ew-transition); white-space: nowrap; }
.ew-batch-btn:hover { background: #2E5445; }
.ew-nabl-cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
@media(max-width: 767px) { .ew-nabl-cert-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } .ew-batch-input-wrap { flex-direction: column; } .ew-batch-input { border-right: 2px solid rgba(0,0,0,0.15); border-bottom: none; border-radius: var(--ew-radius-sm) var(--ew-radius-sm) 0 0; } .ew-batch-btn { border-radius: 0 0 var(--ew-radius-sm) var(--ew-radius-sm); height: 46px; } }
.ew-nabl-cert-item { background: rgba(90,140,110,0.06); border: 1px solid rgba(90,140,110,0.15); border-radius: var(--ew-radius); padding: 16px 18px; display: flex; align-items: center; gap: 12px; transition: var(--ew-transition); }
.ew-nabl-cert-item:hover { background: rgba(90,140,110,0.12); border-color: rgba(90,140,110,0.30); }
.ew-nabl-cert-item svg { width: 22px; height: 22px; color: #3D6B52; flex-shrink: 0; }
.ew-nabl-cert-item span { font-family: 'Cabin', sans-serif; font-weight: 600; font-size: 13px; color: #373435; }

/* ---- Stat Counter ---- */
.ew-stats-strip { background: #F0F8F4; padding: 40px 0; }
.ew-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
@media(max-width: 767px) { .ew-stats-grid { grid-template-columns: repeat(2, 1fr); } }
.ew-stat-item { text-align: center; padding: 20px; border-right: 1px solid rgba(0,0,0,0.08); }
.ew-stat-item:last-child, .ew-stat-item:nth-child(2):last-child { border-right: none; }
@media(max-width: 767px) { .ew-stat-item:nth-child(2) { border-right: none; } .ew-stat-item:nth-child(3) { border-top: 1px solid rgba(0,0,0,0.08); } .ew-stat-item:nth-child(4) { border-top: 1px solid rgba(0,0,0,0.08); border-right: none; } }
.ew-stat-number { font-family: 'Geologica', sans-serif; font-weight: 700; font-size: clamp(28px, 4vw, 44px); color: #2E5D4B; line-height: 1; margin-bottom: 6px; }
.ew-stat-label { font-family: 'Cabin', sans-serif; font-size: 13px; color: #5A7268; font-weight: 500; }

/* ---- Upcoming Launches ---- */
.ew-upcoming-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media(max-width: 1023px) { .ew-upcoming-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 600px) { .ew-upcoming-grid { grid-template-columns: 1fr; } }
.ew-upcoming-card { background: var(--ew-white); border-radius: var(--ew-radius); border: 1px solid var(--ew-border); overflow: hidden; position: relative; }
.ew-upcoming-card__image { position: relative; aspect-ratio: 1; background: var(--ew-cream); overflow: hidden; }
.ew-upcoming-card__image img { width: 100%; height: 100%; object-fit: cover; filter: blur(6px); transform: scale(1.05); transition: filter 0.4s; }
.ew-upcoming-card:hover .ew-upcoming-card__image img { filter: blur(3px); }
.ew-upcoming-card__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: rgba(251,244,228,0.6); z-index: 2; }
.ew-upcoming-card__lock { width: 36px; height: 36px; background: var(--ew-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.ew-upcoming-card__lock svg { width: 18px; height: 18px; color: white; }
.ew-upcoming-card__body { padding: 16px 18px 20px; }
.ew-upcoming-card__name { font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 15px; color: var(--ew-charcoal); margin-bottom: 6px; }
.ew-upcoming-card__desc { font-family: 'Cabin', sans-serif; font-size: 13px; color: var(--ew-text-muted); line-height: 1.5; margin-bottom: 14px; }

/* ---- Newsletter ---- */
.ew-newsletter { background: var(--ew-cream); text-align: center; }
.ew-newsletter-form { display: flex; gap: 0; max-width: 440px; margin: 24px auto 0; }
.ew-newsletter-input { flex: 1; padding: 0 18px; height: 50px; border: 1.5px solid var(--ew-border); border-right: none; border-radius: var(--ew-radius-sm) 0 0 var(--ew-radius-sm); background: var(--ew-white); font-family: 'Cabin', sans-serif; font-size: 14px; color: var(--ew-charcoal); outline: none; transition: border-color 0.2s; }
.ew-newsletter-input:focus { border-color: var(--ew-gold); }
.ew-newsletter-btn { height: 50px; padding: 0 24px; background: var(--ew-gold); border: none; border-radius: 0 var(--ew-radius-sm) var(--ew-radius-sm) 0; font-family: 'Cabin', sans-serif; font-weight: 600; font-size: 14px; color: var(--ew-dark); cursor: pointer; transition: var(--ew-transition); }
.ew-newsletter-btn:hover { background: var(--ew-gold-hover); }
@media(max-width: 600px) { .ew-newsletter-form { flex-direction: column; } .ew-newsletter-input { border-right: 1.5px solid var(--ew-border); border-bottom: none; border-radius: var(--ew-radius-sm) var(--ew-radius-sm) 0 0; } .ew-newsletter-btn { border-radius: 0 0 var(--ew-radius-sm) var(--ew-radius-sm); height: 46px; } }

/* ---- PDP Styles ---- */
.ew-pdp { padding: 48px 0 80px; }
.ew-pdp__layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 64px; align-items: start; }
@media(max-width: 1023px) { .ew-pdp__layout { grid-template-columns: minmax(0,1fr); gap: 32px; } }
.ew-pdp__gallery { position: sticky; top: 90px; min-width: 0; max-width: 100%; }
@media(max-width: 1023px) { .ew-pdp__gallery { position: static; top: auto; } }
.ew-pdp__main-image { aspect-ratio: 1; background: var(--ew-white); border-radius: var(--ew-radius-lg); overflow: hidden; border: 1px solid var(--ew-border); margin-bottom: 12px; max-width: 100%; }
.ew-pdp__main-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ew-pdp__thumbs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.ew-pdp__thumb { width: 72px; height: 72px; flex-shrink: 0; border-radius: var(--ew-radius-sm); overflow: hidden; border: 2px solid transparent; cursor: pointer; transition: var(--ew-transition); }
.ew-pdp__thumb.active, .ew-pdp__thumb:hover { border-color: var(--ew-gold); }
.ew-pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }

.ew-pdp__info { }
.ew-pdp__breadcrumb { font-family: 'Cabin', sans-serif; font-size: 13px; color: var(--ew-text-muted); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.ew-pdp__breadcrumb a { color: var(--ew-text-muted); text-decoration: none; }
.ew-pdp__breadcrumb a:hover { color: var(--ew-gold); }
.ew-pdp__title { font-family: 'Geologica', sans-serif; font-weight: 700; font-size: clamp(24px, 3vw, 36px); line-height: 1.15; color: var(--ew-charcoal); margin-bottom: 8px; }
.ew-pdp__tagline { font-family: 'Cabin', sans-serif; font-size: 15px; color: var(--ew-text-muted); margin-bottom: 16px; }
.ew-pdp__rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--ew-border); }
.ew-pdp__rating-score { font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 15px; color: var(--ew-charcoal); }
.ew-pdp__rating-count { font-family: 'Cabin', sans-serif; font-size: 13px; color: var(--ew-text-muted); text-decoration: underline; cursor: pointer; }

.ew-pdp__price-row { margin-bottom: 24px; }
.ew-pdp__price { font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 32px; color: var(--ew-charcoal); }
.ew-pdp__price-compare { font-family: 'Cabin', sans-serif; font-size: 16px; color: var(--ew-text-muted); text-decoration: line-through; margin-left: 10px; }
.ew-pdp__per-day { display: inline-flex; align-items: center; gap: 5px; margin-top: 6px; font-family: 'Cabin', sans-serif; font-size: 13px; font-weight: 600; color: var(--ew-green); background: var(--ew-green-bg); padding: 4px 10px; border-radius: var(--ew-radius-pill); }

.ew-pdp__pack-label { font-family: 'Cabin', sans-serif; font-weight: 600; font-size: 13px; color: var(--ew-charcoal); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.ew-pdp__pack-options { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.ew-pack-option { padding: 10px 18px; border-radius: var(--ew-radius-sm); border: 2px solid var(--ew-border); cursor: pointer; transition: var(--ew-transition); background: var(--ew-white); text-align: center; flex: 1; min-width: 120px; }
.ew-pack-option.active { border-color: var(--ew-gold); background: var(--ew-gold-light); }
.ew-pack-option:hover { border-color: var(--ew-gold); }
.ew-pack-option__label { font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 14px; color: var(--ew-charcoal); }
.ew-pack-option__price { font-family: 'Cabin', sans-serif; font-size: 13px; color: var(--ew-text-muted); margin-top: 2px; }
.ew-pack-option__save { font-family: 'Cabin', sans-serif; font-size: 11px; font-weight: 600; color: var(--ew-green); margin-top: 2px; }
.ew-pack-option__per-day { font-family: 'Cabin', sans-serif; font-size: 11px; color: var(--ew-text-muted); margin-top: 2px; }

.ew-pdp__atc-row { display: flex; gap: 10px; margin-bottom: 20px; }
.ew-pdp__qty { display: flex; align-items: center; border: 1.5px solid var(--ew-border); border-radius: var(--ew-radius-sm); overflow: hidden; }
.ew-pdp__qty button { width: 44px; height: 52px; border: none; background: transparent; font-size: 18px; cursor: pointer; color: var(--ew-charcoal); transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.ew-pdp__qty button:hover { background: var(--ew-cream); }
.ew-pdp__qty input { width: 44px; height: 52px; border: none; border-left: 1.5px solid var(--ew-border); border-right: 1.5px solid var(--ew-border); text-align: center; font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 16px; color: var(--ew-charcoal); background: transparent; }
.ew-pdp__atc-btn { flex: 1; }

.ew-pdp__trust { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--ew-border); }
.ew-pdp__trust-item { display: flex; align-items: center; gap: 6px; font-family: 'Cabin', sans-serif; font-size: 12px; font-weight: 600; color: var(--ew-charcoal); }
.ew-pdp__trust-item svg { width: 15px; height: 15px; color: var(--ew-gold); flex-shrink: 0; }
.ew-pdp__trust-item--green svg { color: var(--ew-green); }
.ew-pdp__trust-item--green { color: var(--ew-green); }

/* ---- PDP Tabs ---- */
.ew-pdp-tabs { margin-top: 64px; border-top: 1px solid var(--ew-border); padding-top: 0; }
.ew-tab-nav { display: flex; gap: 0; overflow-x: auto; border-bottom: 2px solid var(--ew-border); margin-bottom: 40px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.ew-tab-nav::-webkit-scrollbar { display: none; }
.ew-tab-btn { padding: 16px 24px; font-family: 'Cabin', sans-serif; font-weight: 600; font-size: 14px; color: var(--ew-text-muted); border: none; background: transparent; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; white-space: nowrap; transition: var(--ew-transition); letter-spacing: 0.02em; }
.ew-tab-btn.active { color: var(--ew-charcoal); border-bottom-color: var(--ew-gold); }
.ew-tab-btn:hover { color: var(--ew-charcoal); }
.ew-tab-panel { display: none; }
.ew-tab-panel.active { display: block; animation: fadeInUp 0.3s ease; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ---- Benefits Grid ---- */
.ew-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media(max-width: 767px) { .ew-benefits-grid { grid-template-columns: repeat(2, 1fr); } }
.ew-benefit-item { padding: 20px; background: var(--ew-cream); border-radius: var(--ew-radius); text-align: center; }
.ew-benefit-icon { width: 48px; height: 48px; background: var(--ew-gold-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.ew-benefit-icon svg { width: 24px; height: 24px; color: var(--ew-gold); }
.ew-benefit-title { font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 14px; color: var(--ew-charcoal); margin-bottom: 6px; }
.ew-benefit-desc { font-family: 'Cabin', sans-serif; font-size: 13px; color: var(--ew-text-muted); line-height: 1.5; }

/* ---- Ingredients Tab ---- */
.ew-ingredient-detail { display: flex; gap: 24px; padding: 20px; background: var(--ew-white); border: 1px solid var(--ew-border); border-radius: var(--ew-radius); margin-bottom: 16px; transition: var(--ew-transition); }
.ew-ingredient-detail:hover { border-color: var(--ew-gold-light); background: var(--ew-cream); }
.ew-ingredient-detail__image { width: 80px; height: 80px; border-radius: var(--ew-radius-sm); overflow: hidden; flex-shrink: 0; background: var(--ew-cream); }
.ew-ingredient-detail__image img { width: 100%; height: 100%; object-fit: cover; }
.ew-ingredient-detail__name { font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 16px; color: var(--ew-charcoal); margin-bottom: 4px; }
.ew-ingredient-detail__origin { font-family: 'Cabin', sans-serif; font-size: 12px; font-weight: 600; color: var(--ew-gold); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.ew-ingredient-detail__desc { font-family: 'Cabin', sans-serif; font-size: 14px; color: var(--ew-charcoal); line-height: 1.6; }

/* ---- FAQ ---- */
.ew-faq-item { border-bottom: 1px solid var(--ew-border); }
.ew-faq-item:first-child { border-top: 1px solid var(--ew-border); }
.ew-faq-question { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; cursor: pointer; font-family: 'Geologica', sans-serif; font-weight: 500; font-size: 16px; color: var(--ew-charcoal); gap: 16px; }
.ew-faq-question:hover { color: var(--ew-gold); }
.ew-faq-toggle { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--ew-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--ew-transition); }
.ew-faq-toggle svg { width: 14px; height: 14px; color: var(--ew-charcoal); transition: transform 0.3s; }
.ew-faq-item.open .ew-faq-toggle { background: var(--ew-gold); border-color: var(--ew-gold); }
.ew-faq-item.open .ew-faq-toggle svg { color: var(--ew-dark); transform: rotate(45deg); }
.ew-faq-answer { font-family: 'Cabin', sans-serif; font-size: 15px; color: var(--ew-text-muted); line-height: 1.7; padding-bottom: 18px; display: none; }
.ew-faq-item.open .ew-faq-answer { display: block; animation: fadeInUp 0.2s ease; }

/* ---- Lab Reports Tab ---- */
.ew-lab-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media(max-width: 600px) { .ew-lab-grid { grid-template-columns: 1fr; } }
.ew-lab-card { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: var(--ew-white); border: 1px solid var(--ew-border); border-radius: var(--ew-radius); text-decoration: none; transition: var(--ew-transition); }
.ew-lab-card:hover { border-color: var(--ew-gold); background: var(--ew-cream); }
.ew-lab-card__icon { width: 44px; height: 44px; border-radius: var(--ew-radius-sm); background: var(--ew-green-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ew-lab-card__icon svg { width: 22px; height: 22px; color: var(--ew-green); }
.ew-lab-card__title { font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 14px; color: var(--ew-charcoal); margin-bottom: 3px; }
.ew-lab-card__meta { font-family: 'Cabin', sans-serif; font-size: 12px; color: var(--ew-green); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.ew-lab-card__meta::before { content: '✓'; }

/* ---- Is It For Me Tab ---- */
.ew-personas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media(max-width: 600px) { .ew-personas-grid { grid-template-columns: 1fr; } }
.ew-persona-card { padding: 20px; background: var(--ew-cream); border-radius: var(--ew-radius); border: 1.5px solid transparent; transition: var(--ew-transition); }
.ew-persona-card:hover { border-color: var(--ew-gold); }
.ew-persona-card__icon { font-size: 28px; margin-bottom: 10px; }
.ew-persona-card__title { font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 15px; color: var(--ew-charcoal); margin-bottom: 6px; }
.ew-persona-card__desc { font-family: 'Cabin', sans-serif; font-size: 13px; color: var(--ew-text-muted); line-height: 1.5; }
.ew-persona
100 48377    0 48377    0     0  83345      0 --:--:-- --:--:-- --:--:-- 83408
* Connection #0 to host erweit-nutrition.myshopify.com left intact
-card--no { background: var(--ew-offwhite); }
.ew-not-for-header { font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 15px; color: var(--ew-charcoal); margin: 24px 0 12px; }

/* ---- Sticky ATC Bar ---- */
.ew-sticky-atc { position: fixed; bottom: 0; left: 0; right: 0; background: var(--ew-white); border-top: 1px solid var(--ew-border); padding: 12px 24px; z-index: 100; transform: translateY(100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 -4px 20px rgba(0,0,0,0.1); }
.ew-sticky-atc.visible { transform: translateY(0); }
.ew-sticky-atc__inner { max-width: var(--ew-max-width); margin: 0 auto; display: flex; align-items: center; gap: 16px; justify-content: space-between; }
.ew-sticky-atc__product { display: flex; align-items: center; gap: 12px; }
.ew-sticky-atc__thumb { width: 44px; height: 44px; border-radius: var(--ew-radius-sm); overflow: hidden; border: 1px solid var(--ew-border); }
.ew-sticky-atc__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ew-sticky-atc__name { font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 15px; color: var(--ew-charcoal); }
.ew-sticky-atc__rating { display: flex; align-items: center; gap: 4px; font-family: 'Cabin', sans-serif; font-size: 12px; color: var(--ew-text-muted); }
.ew-sticky-atc__right { display: flex; align-items: center; gap: 12px; }
.ew-sticky-atc__price { font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 20px; color: var(--ew-charcoal); }
@media(max-width: 600px) { .ew-sticky-atc__product .ew-sticky-atc__name { display: none; } .ew-sticky-atc__inner { gap: 10px; } }

/* ---- Collection Page ---- */
.ew-collection-header { background: var(--ew-cream); padding: 48px 0 40px; text-align: center; }
.ew-collection-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.ew-filter-pill { padding: 8px 16px; border-radius: var(--ew-radius-pill); border: 1.5px solid var(--ew-border); font-family: 'Cabin', sans-serif; font-weight: 600; font-size: 13px; color: var(--ew-text-muted); background: var(--ew-white); cursor: pointer; transition: var(--ew-transition); }
.ew-filter-pill.active, .ew-filter-pill:hover { border-color: var(--ew-gold); color: var(--ew-charcoal); background: var(--ew-gold-light); }

/* ---- How-To-Take ---- */
.ew-how-to-steps { counter-reset: step-counter; }
.ew-how-to-step { display: flex; gap: 20px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--ew-border); }
.ew-how-to-step:last-child { border-bottom: none; }
.ew-how-to-step__num { width: 36px; height: 36px; border-radius: 50%; background: var(--ew-gold); color: var(--ew-dark); font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; counter-increment: step-counter; }
.ew-how-to-step__title { font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 15px; color: var(--ew-charcoal); margin-bottom: 4px; }
.ew-how-to-step__desc { font-family: 'Cabin', sans-serif; font-size: 14px; color: var(--ew-text-muted); line-height: 1.6; }

/* ---- Reviews Section ---- */
.ew-reviews-summary { display: flex; align-items: center; gap: 40px; padding: 28px; background: var(--ew-cream); border-radius: var(--ew-radius-lg); margin-bottom: 32px; }
@media(max-width: 600px) { .ew-reviews-summary { flex-direction: column; gap: 20px; } }
.ew-reviews-summary__big-score { font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 64px; color: var(--ew-charcoal); line-height: 1; }
.ew-reviews-summary__stars { display: flex; gap: 4px; color: var(--ew-gold); font-size: 20px; margin-bottom: 4px; }
.ew-reviews-summary__count { font-family: 'Cabin', sans-serif; font-size: 14px; color: var(--ew-text-muted); }
.ew-rating-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.ew-rating-bar__label { font-family: 'Cabin', sans-serif; font-size: 13px; color: var(--ew-text-muted); width: 30px; text-align: right; }
.ew-rating-bar__track { flex: 1; height: 6px; background: var(--ew-border); border-radius: 3px; overflow: hidden; }
.ew-rating-bar__fill { height: 100%; background: var(--ew-gold); border-radius: 3px; }
.ew-rating-bar__pct { font-family: 'Cabin', sans-serif; font-size: 12px; color: var(--ew-text-muted); width: 32px; }

/* ---- Page-level: About ---- */
.ew-about-hero { background: var(--ew-cream); padding: 80px 0; }
.ew-about-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
@media(max-width: 767px) { .ew-about-pillars { grid-template-columns: 1fr; gap: 20px; } }
.ew-about-pillar { text-align: center; padding: 32px 24px; background: var(--ew-white); border-radius: var(--ew-radius-lg); border: 1px solid var(--ew-border); }
.ew-about-pillar__num { font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 48px; color: var(--ew-gold-light); line-height: 1; margin-bottom: 8px; }
.ew-about-pillar__title { font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 18px; color: var(--ew-charcoal); margin-bottom: 10px; }
.ew-about-pillar__desc { font-family: 'Cabin', sans-serif; font-size: 14px; color: var(--ew-text-muted); line-height: 1.6; }

/* ---- NABL Batch Lookup page ---- */
.ew-nabl-lookup { max-width: 640px; margin: 0 auto; text-align: center; padding: 80px 0; }
.ew-nabl-result { background: var(--ew-white); border: 2px solid var(--ew-green); border-radius: var(--ew-radius-lg); padding: 32px; margin-top: 32px; display: none; text-align: left; }
.ew-nabl-result.visible { display: block; animation: fadeInUp 0.4s ease; }
.ew-nabl-result__header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--ew-border); }
.ew-nabl-result__status { display: flex; align-items: center; gap: 6px; font-family: 'Cabin', sans-serif; font-weight: 600; font-size: 14px; color: var(--ew-green); }
.ew-nabl-result__status::before { content: '✓'; font-size: 16px; }

/* ---- Marquee / Announcement ---- */
.ew-marquee-wrap { background: #5A8C6E; padding: 11px 0; overflow: hidden; position: relative; }
.ew-marquee-track { display: flex; gap: 0; white-space: nowrap; animation: marquee-scroll 30s linear infinite; }
.ew-marquee-track:hover { animation-play-state: paused; }
.ew-marquee-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 32px; font-family: 'Cabin', sans-serif; font-size: 13px; font-weight: 600; color: #fff; white-space: nowrap; }
.ew-marquee-item .ew-marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.6); flex-shrink: 0; margin-right: -4px; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- Scroll Animations ---- */
.ew-fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.ew-fade-in.visible { opacity: 1; transform: translateY(0); }
@media(max-width: 768px) { .ew-fade-in { opacity: 1; transform: none; transition: none; } }
.ew-fade-in-delay-1 { transition-delay: 0.1s; }
.ew-fade-in-delay-2 { transition-delay: 0.2s; }
.ew-fade-in-delay-3 { transition-delay: 0.3s; }
.ew-fade-in-delay-4 { transition-delay: 0.4s; }

/* ---- Blog Card ---- */
.ew-blog-card { background: var(--ew-white); border-radius: var(--ew-radius); overflow: hidden; border: 1px solid var(--ew-border); transition: var(--ew-transition); text-decoration: none; display: block; }
.ew-blog-card:hover { transform: translateY(-3px); box-shadow: var(--ew-shadow-md); }
.ew-blog-card__image { aspect-ratio: 16/9; overflow: hidden; background: var(--ew-cream); }
.ew-blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.ew-blog-card:hover .ew-blog-card__image img { transform: scale(1.03); }
.ew-blog-card__body { padding: 20px 22px; }
.ew-blog-card__cat { font-family: 'Cabin', sans-serif; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ew-gold); margin-bottom: 8px; }
.ew-blog-card__title { font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 16px; color: var(--ew-charcoal); line-height: 1.4; margin-bottom: 8px; }
.ew-blog-card__excerpt { font-family: 'Cabin', sans-serif; font-size: 13px; color: var(--ew-text-muted); line-height: 1.6; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ew-blog-card__meta { font-family: 'Cabin', sans-serif; font-size: 12px; color: var(--ew-text-muted); }

/* ---- Ingredients Library Page ---- */
.ew-ingredients-header { background: var(--ew-cream); padding: 64px 0 48px; text-align: center; }
.ew-ingredients-search { display: flex; gap: 0; max-width: 400px; margin: 24px auto 0; }
.ew-ingredients-search input { flex: 1; padding: 0 18px; height: 48px; border: 1.5px solid var(--ew-border); border-right: none; border-radius: var(--ew-radius-sm) 0 0 var(--ew-radius-sm); font-family: 'Cabin', sans-serif; font-size: 14px; outline: none; }
.ew-ingredients-search input:focus { border-color: var(--ew-gold); }
.ew-ingredients-search button { height: 48px; padding: 0 20px; background: var(--ew-gold); border: none; border-radius: 0 var(--ew-radius-sm) var(--ew-radius-sm) 0; font-family: 'Cabin', sans-serif; font-weight: 600; font-size: 14px; color: var(--ew-dark); cursor: pointer; }
.ew-ingredient-filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.ew-ingredients-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media(max-width: 1023px) { .ew-ingredients-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width: 600px) { .ew-ingredients-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ---- Customer Stories Page ---- */
.ew-stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media(max-width: 1023px) { .ew-stories-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 600px) { .ew-stories-grid { grid-template-columns: 1fr; } }
.ew-story-card { background: var(--ew-white); border-radius: var(--ew-radius-lg); overflow: hidden; border: 1px solid var(--ew-border); transition: var(--ew-transition); }
.ew-story-card:hover { transform: translateY(-4px); box-shadow: var(--ew-shadow-lg); border-color: var(--ew-gold-light); }
.ew-story-card__header { background: var(--ew-cream); padding: 20px 24px; display: flex; align-items: center; gap: 14px; }
.ew-story-card__avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--ew-gold-light); display: flex; align-items: center; justify-content: center; font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 20px; color: var(--ew-gold); flex-shrink: 0; overflow: hidden; }
.ew-story-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.ew-story-card__name { font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 15px; color: var(--ew-charcoal); }
.ew-story-card__location { font-family: 'Cabin', sans-serif; font-size: 12px; color: var(--ew-text-muted); margin-top: 2px; }
.ew-story-card__body { padding: 20px 24px; }
.ew-story-card__outcome { font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 15px; color: var(--ew-charcoal); margin-bottom: 10px; }
.ew-story-card__quote { font-family: 'Cabin', sans-serif; font-size: 14px; color: var(--ew-text-muted); line-height: 1.7; margin-bottom: 14px; }
.ew-story-card__product { display: inline-flex; align-items: center; gap: 6px; font-family: 'Cabin', sans-serif; font-size: 12px; font-weight: 600; color: var(--ew-gold); background: var(--ew-gold-light); padding: 4px 10px; border-radius: var(--ew-radius-pill); text-decoration: none; }

/* ---- Pair It With (PDP Cross-sell) ---- */
.ew-pair-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media(max-width: 600px) { .ew-pair-grid { grid-template-columns: 1fr; } }
.ew-pair-card { display: flex; gap: 14px; align-items: center; padding: 16px; background: var(--ew-cream); border-radius: var(--ew-radius); border: 1.5px solid transparent; transition: var(--ew-transition); cursor: pointer; }
.ew-pair-card:hover { border-color: var(--ew-gold); }
.ew-pair-card__image { width: 64px; height: 64px; border-radius: var(--ew-radius-sm); overflow: hidden; flex-shrink: 0; border: 1px solid var(--ew-border); background: var(--ew-white); }
.ew-pair-card__image img { width: 100%; height: 100%; object-fit: cover; }
.ew-pair-card__name { font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 13px; color: var(--ew-charcoal); margin-bottom: 3px; }
.ew-pair-card__price { font-family: 'Cabin', sans-serif; font-size: 13px; color: var(--ew-text-muted); margin-bottom: 6px; }

/* ---- Footer ---- */
.ew-footer { background: #1F3B2E; padding-top: 64px; }
.ew-footer__main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.10); }
@media(max-width: 1023px) { .ew-footer__main { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media(max-width: 600px) { .ew-footer__main { grid-template-columns: 1fr; gap: 28px; } }
.ew-footer__brand { }
.ew-footer__logo { font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 22px; color: var(--ew-white); margin-bottom: 14px; }
.ew-footer__tagline { font-family: 'Cabin', sans-serif; font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 20px; max-width: 280px; }
.ew-footer__socials { display: flex; gap: 10px; }
.ew-footer__social { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: var(--ew-transition); }
.ew-footer__social svg { width: 16px; height: 16px; color: rgba(255,255,255,0.6); }
.ew-footer__social:hover { border-color: var(--ew-gold); background: rgba(78,140,110,0.10); }
.ew-footer__social:hover svg { color: var(--ew-gold); }
.ew-footer__col-title { font-family: 'Geologica', sans-serif; font-weight: 600; font-size: 14px; color: var(--ew-white); margin-bottom: 16px; letter-spacing: 0.02em; }
.ew-footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ew-footer__links a { font-family: 'Cabin', sans-serif; font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.ew-footer__links a:hover { color: var(--ew-gold); }
.ew-footer__bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.ew-footer__copyright { font-family: 'Cabin', sans-serif; font-size: 12px; color: rgba(255,255,255,0.35); }
.ew-footer__payment { display: flex; align-items: center; gap: 8px; }
.ew-footer__payment-icon { background: rgba(255,255,255,0.1); border-radius: 4px; padding: 4px 8px; font-family: 'Cabin', sans-serif; font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.6); }
.ew-footer__fssai { font-family: 'Cabin', sans-serif; font-size: 11px; color: rgba(255,255,255,0.3); }

/* ---- Responsive Helpers ---- */
@media(max-width: 767px) {
  .ew-hide-mobile { display: none !important; }
}
@media(min-width: 768px) {
  .ew-hide-desktop { display: none !important; }
}

/* ── Featured Blog Posts (News) — Center alignment ── */
.featured-blog-posts { text-align: center; }
.featured-blog-posts .section-header,
.featured-blog-posts .title-wrapper,
.featured-blog-posts [class*="title"],
.featured-blog-posts .blog-articles__title { text-align: center !important; }
.featured-blog-posts .card__content,
.featured-blog-posts .card__information { text-align: center; }
.featured-blog-posts h3,
.featured-blog-posts h4 { text-align: center; font-family: 'Geologica', sans-serif; font-weight: 600; }
.featured-blog-posts .card__heading { text-align: center !important; }
/* Center the section title "News" */
.featured-blog-posts .field__label,
.featured-blog-posts [class*="subtitle"],
.featured-blog-posts [class*="eyebrow"] { text-align: center !important; }



