/** Shopify CDN: Minification failed

Line 48:3 Unexpected "("

**/
/* ===========================
   Yella Life Theme Stylesheet
   =========================== */

/* --- CSS Custom Properties ---
   NB: as cores e --color-cta/--color-cta-hover são injetadas pelo
   theme.liquid a partir das settings do admin. Estes valores aqui
   servem só como fallback caso o <style> do theme.liquid não carregue. */
:root {
  --color-primary: #CFAF70;
  --color-primary-dark: #855D42;
  --color-primary-light: #F5E7AA;
  --color-accent: #D98169;
  --color-cream: #F7F7F7;
  --color-coral: #D98169;
  --color-peach: #FDB9A7;
  --color-salmon: #FBA58F;
  --color-brown-gold: #B37E59;
  --color-green: #3C4B2A;
  --color-sand: #D6B98C;
  --color-warm-beige: #EAD7B7;
  --color-terracotta: #C97C5D;
  --color-cta: #FFAE33;
  --color-cta-hover: #1B312B;
  --color-cta-text: #ffffff;
  --button-radius: 9999px;
  --button-font-weight: 700;
  --button-padding-x: 32px;
  --button-padding-y: 14px;
  --font-heading: 'Julius Sans One', sans-serif;
  --font-cta: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --heading-letter-spacing: 0.05em;
  --card-radius: 16px;
  --card-padding: 24px;
  --card-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
}

/* --- CTA Buttons ---
   Cor: editável via Theme settings → Botões / CTA.
   Radius/padding/font-weight ficam por conta das classes Tailwind nos botões;
   as settings button_radius/button_padding_*/button_font_weight criam vars
   (--button-radius etc.) que podem ser usadas por seções/snippets que
   queiram opt-in. Aplicar aqui no .btn-cta sobrescreveria as classes
   Tailwind atuais. Liberação ampla: Fase 2. */
.btn-cta {
  background: var(--color-cta);
  color: var(--color-cta-text);
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-cta:hover {
  background: var(--color-cta-hover);
  color: var(--color-cta-text);
}

/* --- Typography --- */
h1, h2, h3, .font-heading { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: var(--heading-letter-spacing); }
button, .btn, [class*="cta"], .font-cta { font-family: var(--font-cta); }

/* --- Base --- */
@media (prefers-reduced-motion: no-preference) and (min-width: 768px) {
  html { scroll-behavior: smooth; }
}
body { overflow-x: clip; }

/* --- Keyframes --- */
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes subtlePulseOpacity {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* --- Marquee --- */
.marquee-track { animation: marquee 20s linear infinite; will-change: transform; backface-visibility: hidden; }
.marquee-track:hover { animation-play-state: paused; }

/* --- Fade In --- */
.fade-in { animation: fadeIn 0.6s ease-out forwards; }

/* --- Bundle Cards --- */
.bundle-card { transition: border-color 0.3s ease, background 0.3s ease; }
@media (min-width: 768px) {
  .bundle-card { transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease, background 0.3s ease; }
}
@media (min-width: 768px) {
  .md\:overflow-y-auto::-webkit-scrollbar { width: 4px; }
  .md\:overflow-y-auto::-webkit-scrollbar-track { background: transparent; }
  .md\:overflow-y-auto::-webkit-scrollbar-thumb { background: rgba(207,175,112,0.2); border-radius: 4px; }
  .md\:overflow-y-auto::-webkit-scrollbar-thumb:hover { background: rgba(207,175,112,0.4); }
}
@media (hover: hover) {
  .bundle-card:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.08); transform: translateY(-2px); }
}
.bundle-card.active {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
  box-shadow: 0 4px 20px rgba(207,175,112,0.15); /* rgba – can't use var() */
}

/* --- FAQ --- */
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer.open { padding-bottom: 20px; }
.faq-chevron { transition: transform 0.3s ease; }
.faq-chevron.open { transform: rotate(180deg); }
.faq-item { transition: none; box-shadow: none; }

/* --- Tabs --- */
.tab-btn.active { color: var(--color-primary); border-bottom: 2px solid var(--color-primary); }

/* --- Info Tabs --- */
.info-tab { transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease; }
.info-tab.info-tab-active { background: var(--color-primary); color: black; border-color: var(--color-primary); }

/* --- Before/After Tabs (CyperSilk) --- */
.ba-tab { transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease; cursor: pointer; }
.ba-tab.ba-tab-active { background: var(--color-primary); color: black; border-color: var(--color-primary); }

/* --- Sticky Bar --- */
.sticky-bar { transform: translateY(100%); transition: transform 0.3s ease; will-change: transform; }
.sticky-bar.visible { transform: translateY(0); }

/* --- Reveal Animations --- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible { opacity: 1; transform: translateY(0) translateX(0) scale(1); will-change: opacity, transform; }
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }

/* --- CTA Pulse --- */
.cta-pulse { position: relative; box-shadow: 0 4px 15px rgba(60,75,42,0.3); }
@media (min-width: 768px) {
  .cta-pulse::after {
    content: ''; position: absolute; inset: 0; border-radius: inherit;
    box-shadow: 0 4px 30px rgba(207,175,112,0.5);
    opacity: 0; transition: opacity .35s ease;
    pointer-events: none; will-change: opacity;
  }
  /* Pulse aparece so ao passar o mouse */
  .cta-pulse:hover::after { animation: subtlePulseOpacity 2.5s ease-in-out infinite; }
}
/* CTAs com pulse: sem troca de cor no hover */
.btn-cta.cta-pulse:hover { background: var(--color-cta); color: var(--color-cta-text); }

/* --- Header --- */
header { transition: box-shadow 0.3s ease; will-change: transform; }
header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.15); }

/* --- Mobile Menu --- */
.mobile-menu { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.mobile-menu.open { max-height: 400px; }

/* --- Cart Drawer --- */
.cart-drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 60; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-drawer-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 400px; max-width: 85vw; background: #fff;
  z-index: 61; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}
.cart-drawer.open { transform: translateX(0); }
#cartDrawerScroll { min-height: 0; padding-bottom: 8px; flex: 1 1 0%; overflow-y: auto; }
#cartDrawerFooter { flex-shrink: 0; }
.cart-drawer-item { display: flex; gap: 0.85rem; padding: 0.95rem 0; border-bottom: 1px solid #f1efea; }
.cart-drawer-item:last-child { border-bottom: 0; }
.cart-drawer-item img { width: 66px; height: 66px; object-fit: cover; border-radius: 10px; flex-shrink: 0; border: 1px solid #eee7df; background: #faf7f2; }
.cart-drawer-qty { display: inline-flex; align-items: center; border: 1px solid #e7e1d8; border-radius: 999px; overflow: hidden; }
.cart-drawer-qty button {
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  background: #fff; border: none; cursor: pointer; font-size: 16px; line-height: 1; font-weight: 600; color: #374151;
  transition: background .15s ease, color .15s ease;
}
.cart-drawer-qty button:hover { background: #f3f4f6; color: #111827; }
.cart-drawer-qty span { width: 34px; text-align: center; font-size: 14px; font-weight: 600; color: #374151; }
/* Footer / totais */
#cartDrawerFooter .cart-total-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: #9b8e80; }
#cartDrawerFooter .cart-total-value { font-size: 1.4rem; font-weight: 700; color: #2b2b2b; letter-spacing: -0.01em; }
#cartDrawerFooter .cart-total-tag { font-size: 0.85rem; font-weight: 500; color: #9b8e80; }
#cartDrawerSavings { display: inline-block; background: rgba(22,163,74,0.10); border-radius: 999px; padding: 3px 12px; }
#cartDrawerFooter .btn-cta { text-transform: uppercase; letter-spacing: 0.08em; background: #d98169; color: #f7f7f7; }
#cartDrawerFooter .btn-cta:hover { background: #d98169; color: #f7f7f7; }
.cart-fs-bar { height: 7px; background: #eee7df; border-radius: 999px; overflow: hidden; }
.cart-fs-fill { height: 100%; background: linear-gradient(90deg, #16a34a, #22c55e); border-radius: 999px; transition: width .4s ease; }
.payment-icons { display: flex; align-items: center; justify-content: center; gap: 8px; }
.payment-icons img { height: 22px; width: auto; object-fit: contain; opacity: 0.85; }

/* --- Video Story Ring --- */
.video-story-btn .rounded-full:first-child { position: relative; }

/* --- Dosage Cards --- */
.dosage-card { transition: none; }
@media (min-width: 768px) { .dosage-card { transition: box-shadow 0.3s ease, transform 0.3s ease; } }
@media (hover: hover) {
  .dosage-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.1); transform: translateY(-4px); }
  .dosage-card:hover .dosage-icon { background: var(--color-primary); border-color: var(--color-primary); }
  .dosage-card:hover .dosage-icon svg { color: white; }
}

/* --- Client Photo --- */
.client-photo { overflow: hidden; }
@media (min-width: 768px) {
  .client-photo { transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .client-photo img { transition: transform 0.4s ease; }
}
@media (hover: hover) {
  .client-photo:hover { transform: scale(1.03); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
  .client-photo:hover img { transform: scale(1.05); }
}

/* --- Testimonial Image --- */
.testimonial-img { }
@media (min-width: 768px) { .testimonial-img { transition: transform 0.3s ease, box-shadow 0.3s ease; } }
@media (hover: hover) {
  .testimonial-img:hover { transform: scale(1.03); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
}

/* --- Focus States (Accessibility) --- */
button:focus-visible,
a:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --- Comparison Pills --- */
.comp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
.comp-pill-brand {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  background: var(--color-primary); color: #000;
  padding: 0.875rem 1.25rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 600;
  box-shadow: 0 2px 8px rgba(207,175,112,0.25); /* rgba – can't use var() */
}
.comp-pill-other {
  display: flex; align-items: center; gap: 0.75rem;
  background: white; border: 1px solid #e5e7eb;
  padding: 0.875rem 1.25rem; border-radius: 9999px;
  font-size: 0.875rem; color: #6b7280;
}
.comp-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.75rem; height: 1.75rem; min-width: 1.75rem;
  border-radius: 50%; background: rgba(255,255,255,0.35); flex-shrink: 0;
}
.comp-check svg { width: 1rem; height: 1rem; color: #fff; stroke: #fff; }
.comp-x {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.75rem; height: 1.75rem; min-width: 1.75rem;
  border-radius: 50%; background: #FDB9A7; flex-shrink: 0;
}
.comp-x svg { width: 1rem; height: 1rem; color: #ef4444; }

@media (max-width: 640px) {
  .comp-row { grid-template-columns: 1fr; gap: 0.375rem; margin-bottom: 0.5rem; }
}

/* --- Section Title Decorated --- */
.section-title-decorated { position: relative; display: inline-block; }
.section-title-decorated::before {
  content: ''; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  border-radius: 2px;
}

/* --- Stats Section --- */
.stats-section { position: relative; overflow: hidden; }
.stats-section::before,
.stats-section::after { content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,0.05); }
.stats-section::before { width: 300px; height: 300px; top: -100px; left: -100px; }
.stats-section::after { width: 200px; height: 200px; bottom: -60px; right: -60px; }

/* --- Problem Carousel --- */
.problem-carousel { scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.problem-carousel > * { scroll-snap-align: center; }

/* --- How It Works Dynamic Grid --- */
.hiw-grid { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .hiw-grid { grid-template-columns: repeat(var(--hiw-cols, 3), 1fr); }
}

/* --- Line Clamp --- */
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* --- Announcement Bar --- */
.announcement-bar { position: relative; z-index: 51; }
.announcement-msg { transition: opacity 0.3s ease; will-change: opacity; }

/* --- Trust Badges --- */
.trust-badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: var(--color-cream); color: var(--color-primary-dark);
  padding: 0.375rem 0.75rem; border-radius: 9999px;
  font-size: 0.7rem; font-weight: 600; white-space: nowrap;
}

/* --- Countdown Timer --- */
.countdown-timer {
  color: var(--color-primary); font-variant-numeric: tabular-nums;
}

/* --- Social Proof Toast --- */
.social-proof-toast {
  position: fixed; bottom: 20px; left: 20px; z-index: 55;
  background: white; border-radius: 12px; padding: 14px 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  max-width: 340px; width: calc(100vw - 40px);
  transform: translateY(20px); opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  will-change: transform, opacity;
}
.social-proof-toast.visible { transform: translateY(0); opacity: 1; }

/* --- Cart Shipping Progress Bar --- */
.shipping-progress-bar { height: 6px; background: #f3f4f6; border-radius: 3px; overflow: hidden; }
.shipping-progress-fill {
  height: 100%; border-radius: 3px; transition: width 0.5s ease;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

/* --- Cart Free Shipping Celebration Bar --- */
.cart-fs-bar {
  width: 100%; height: 6px; background: #e5e7eb;
  border-radius: 9999px; overflow: hidden;
}
.cart-fs-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #34d399, #10b981);
  border-radius: 9999px;
  transition: width 0.6s ease;
  box-shadow: 0 0 8px rgba(16,185,129,0.4);
}

/* --- Cart Discount Field --- */
.discount-toggle { cursor: pointer; }

/* --- Cart Upsell --- */
.cart-upsell-card {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--color-cream); border-radius: 12px; padding: 0.75rem;
}
.cart-upsell-card img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }

/* --- Popup Modal --- */
.popup-modal-overlay {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(0,0,0,0.5); display: flex;
  align-items: center; justify-content: center;
  padding: 1rem; opacity: 0; transition: opacity 0.3s ease;
}
.popup-modal-overlay.visible { opacity: 1; }
.popup-modal {
  background: white; border-radius: 1rem; overflow: hidden;
  max-width: 560px; width: 100%; position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s ease;
}
.popup-modal-overlay.visible .popup-modal { transform: scale(1) translateY(0); }

/* --- Back to Top --- */
.back-to-top {
  position: fixed; bottom: 80px; right: 20px; z-index: 45;
  width: 44px; height: 44px; border-radius: 50%;
  background: white; border: none; cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.18); }

/* --- Image Zoom (desktop only) --- */
@media (min-width: 768px) { .hero-gallery img { transition: transform 0.15s ease; } }

/* --- Page Transitions --- */
.page-transition { opacity: 1; transition: opacity 0.3s ease; }
.page-transition.fade-out { opacity: 0; }

/* --- Skeleton Loading --- */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton-loader {
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 1rem;
}

/* --- Cart Drawer Trust Badges --- */
.cart-trust-badges {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding-top: 0.75rem;
}
.cart-trust-badges .payment-icons { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.cart-trust-badges .payment-icons img { height: 24px; width: auto; opacity: 0.7; }

/* --- Tailwind JIT Fallbacks --- */
/* Font sizes */
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }

/* Sizing */
.w-\[72px\] { width: 72px; }
.h-\[72px\] { height: 72px; }
.h-\[400px\] { height: 400px; }
.h-\[500px\] { height: 500px; }
.min-h-\[450px\] { min-height: 450px; }
.min-h-\[500px\] { min-height: 500px; }
.min-h-\[550px\] { min-height: 550px; }
.min-h-\[600px\] { min-height: 600px; }
.max-w-\[200px\] { max-width: 200px; }
.w-\[280px\] { width: 280px; }
.w-\[320px\] { width: 320px; }
.w-\[220px\] { width: 220px; }
.w-\[260px\] { width: 260px; }
.max-w-\[280px\] { max-width: 280px; }
.h-\[300px\] { height: 300px; }
.h-\[450px\] { height: 450px; }

/* Position & z-index */
.top-\[49px\] { top: 49px; }
.z-\[100\] { z-index: 100; }

/* Background colors */
.bg-\[\#EAD7B7\] { background-color: #EAD7B7; }

/* Aspect ratio */
.aspect-\[4\/3\] { aspect-ratio: 4/3; }
.aspect-\[4\/5\] { aspect-ratio: 4/5; }

/* Hover scale */
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }

/* Shadow arbitrary */
.shadow-\[0_-4px_20px_rgba\(0\2c 0\2c 0\2c 0\.1\)\] { box-shadow: 0 -4px 20px rgba(0,0,0,0.1); }

/* Opacity modifiers - white */
.text-white\/60 { color: rgba(255,255,255,0.6); }
.text-white\/70 { color: rgba(255,255,255,0.7); }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.text-white\/90 { color: rgba(255,255,255,0.9); }
.bg-white\/80 { background-color: rgba(255,255,255,0.8); }

/* Opacity modifiers - black */
.bg-black\/20 { background-color: rgba(0,0,0,0.2); }
.bg-black\/50 { background-color: rgba(0,0,0,0.5); }
.bg-black\/60 { background-color: rgba(0,0,0,0.6); }
.bg-black\/70 { background-color: rgba(0,0,0,0.7); }
.bg-black\/80 { background-color: rgba(0,0,0,0.8); }

/* Opacity modifiers - primary */
.bg-primary\/5 { background-color: rgba(207,175,112,0.05); }
.text-primary\/70 { color: rgba(207,175,112,0.7); }
.border-primary\/30 { border-color: rgba(207,175,112,0.3); }
.hover\:border-primary\/30:hover { border-color: rgba(207,175,112,0.3); }
.border-primary\/40 { border-color: rgba(207,175,112,0.4); }

/* Opacity modifiers - border white */
.border-white\/20 { border-color: rgba(255,255,255,0.2); }

/* --- Yella Extended Palette Utilities --- */
.bg-coral { background-color: var(--color-coral); }
.bg-peach { background-color: var(--color-peach); }
.bg-salmon { background-color: var(--color-salmon); }
.bg-brown-gold { background-color: var(--color-brown-gold); }
.bg-green { background-color: var(--color-green); }
.bg-sand { background-color: var(--color-sand); }
.bg-warm-beige { background-color: var(--color-warm-beige); }
.bg-terracotta { background-color: var(--color-terracotta); }
.text-coral { color: var(--color-coral); }
.text-peach { color: var(--color-peach); }
.text-salmon { color: var(--color-salmon); }
.text-brown-gold { color: var(--color-brown-gold); }
.text-green { color: var(--color-green); }
.text-sand { color: var(--color-sand); }
.text-warm-beige { color: var(--color-warm-beige); }
.text-terracotta { color: var(--color-terracotta); }
.border-coral { border-color: var(--color-coral); }
.border-sand { border-color: var(--color-sand); }
.border-warm-beige { border-color: var(--color-warm-beige); }

/* --- Product Hero Grid --- */
.product-hero-grid { max-width: 100%; }
.product-hero-grid > * { min-width: 0; }

/* --- Mobile Overflow Fixes --- */
@media (max-width: 767px) {
  .trust-badge { padding: 0.25rem 0.5rem; font-size: 0.65rem; }
  .social-proof-toast { max-width: 280px; bottom: 80px; left: 12px; }
  .back-to-top { bottom: 90px; }
  .video-testimonials-scroll { scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .video-testimonials-scroll > * { scroll-snap-align: start; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { transition: opacity 0.3s ease; transform: none; }
  .reveal-stagger > * { transition: opacity 0.3s ease; transform: none; }
}

/* Responsive overrides for JIT */
@media (min-width: 768px) {
  .md\:h-\[500px\] { height: 500px; }
  .md\:min-h-\[600px\] { min-height: 600px; }
  .md\:max-h-\[85vh\] { max-height: 85vh; }
  .md\:overflow-y-auto { overflow-y: auto; }
  .md\:pr-1 { padding-right: 0.25rem; }
  .md\:w-20 { width: 5rem; }
  .md\:h-20 { height: 5rem; }
}

/* --- Content Visibility (skip layout/paint for off-screen sections) --- */
section { content-visibility: auto; contain-intrinsic-size: auto 500px; }

/* --- Announcement Bar fade class (avoids inline style repaints) --- */
.announcement-msg.announcement-fade-out { opacity: 0; }

/* --- Policy Pages --- */
.shopify-policy__container { max-width: 48rem; margin: 0 auto; padding: 3rem 1.5rem; }
.shopify-policy__title { font-size: 2rem; font-weight: 700; color: #1f2937; margin-bottom: 2rem; text-align: center; }
.shopify-policy__body h2 { font-size: 1.5rem; font-weight: 700; color: #1f2937; margin-top: 2.5rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--color-primary-light); }
.shopify-policy__body h3 { font-size: 1.25rem; font-weight: 600; color: #374151; margin-top: 2rem; margin-bottom: 0.75rem; }
.shopify-policy__body p { margin-bottom: 1rem; line-height: 1.7; color: #4b5563; }
.shopify-policy__body ul, .shopify-policy__body ol { margin-bottom: 1rem; padding-left: 1.5rem; color: #4b5563; }
.shopify-policy__body li { margin-bottom: 0.5rem; line-height: 1.7; }
.shopify-policy__body strong { color: #1f2937; }

/* --- ParcelPanel Track Order Page --- */
#pp-tracking-page-app input,
.pp_Dawn_input,
.pp_Craft_input,
.pp_Ride_input,
.pp_Venture_input {
  border: 1px solid #d1d5db !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.875rem !important;
  background: #f9fafb !important;
  transition: border-color 0.2s !important;
}
#pp-tracking-page-app input:focus,
.pp_Dawn_input:focus {
  border-color: var(--color-primary) !important;
  outline: none !important;
  background: white !important;
}
#pp-tracking-page-app button,
#pp-tracking-page-app [class*="btn"] {
  background: var(--color-primary) !important;
  color: white !important;
  border: none !important;
  border-radius: 9999px !important;
  padding: 0.75rem 2rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}
#pp-tracking-page-app button:hover,
#pp-tracking-page-app [class*="btn"]:hover {
  background: var(--color-primary-dark) !important;
}
#pp-tracking-page-app h1 {
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
  margin-bottom: 1.5rem !important;
}
