/** Shopify CDN: Minification failed

Line 324:13 Unexpected "1"

**/
/* ============================================
   GLOWVA SKIN — Brand CSS v2 (Feminine Blush)
   ============================================
   REPLACE the previous glowva-custom.css
   with this file entirely.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── BRAND TOKENS ── */
:root {
  --gv-brand:       #C05272;   /* signature rose */
  --gv-brand-dark:  #8A3050;   /* hover / deep rose */
  --gv-brand-mid:   #D4728A;   /* mid rose */
  --gv-brand-light: #F9E0E8;   /* pale blush */
  --gv-blush:       #FDF5F7;   /* near-white blush */
  --gv-white:       #FFFFFF;
  --gv-text:        #2C1A1F;   /* warm near-black */
  --gv-charcoal:    #4A2A34;
  --gv-muted:       #8A6872;
  --gv-border:      #EECED6;
  --gv-gold:        #C9956A;   /* warm star/accent gold */
  --gv-success:     #2D6A4F;
  --gv-cream:       #FFFAF9;
  --gv-r:           4px;
  --gv-r-lg:        10px;
  --gv-serif:       'Cormorant Garamond', Georgia, serif;
  --gv-sans:        'DM Sans', sans-serif;
  --gv-shadow:      0 4px 24px rgba(192,82,114,0.12);

  /* Override theme variables */
  --color-base-accent-1:    192, 82, 114;
  --color-base-accent-2:    138, 48, 80;
}

/* ── GLOBAL ── */
body {
  font-family: var(--gv-sans);
  color: var(--gv-text);
  background: var(--gv-white);
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar,
.announcement,
[class*="announcement"] {
  background: var(--gv-brand) !important;
  color: #fff !important;
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* ── HEADER ── */
header, .header, .site-header {
  border-bottom: 1px solid var(--gv-border) !important;
  background: var(--gv-white) !important;
}

/* ── PRIMARY BUTTONS ── */
.btn-primary,
.button--primary,
.shopify-payment-button__button--unbranded,
.product-form__submit,
button[name="add"] {
  background: var(--gv-brand) !important;
  border-color: var(--gv-brand) !important;
  color: #fff !important;
  font-family: var(--gv-sans) !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  border-radius: var(--gv-r) !important;
  transition: background 0.2s !important;
}
.btn-primary:hover,
.button--primary:hover,
.product-form__submit:hover,
button[name="add"]:hover {
  background: var(--gv-brand-dark) !important;
}

/* ── SECONDARY BUTTONS ── */
.btn-secondary,
.button--secondary {
  background: var(--gv-text) !important;
  color: #fff !important;
  border-color: var(--gv-text) !important;
  border-radius: var(--gv-r) !important;
}

/* ── PRICE ── */
.price--sale .price__current,
.price-item--sale {
  color: var(--gv-brand) !important;
  font-weight: 600 !important;
}

/* ── LINKS ── */
a { color: var(--gv-text); }
a:hover { color: var(--gv-brand); }

/* ── STARS ── */
.gv-stars { color: var(--gv-gold); letter-spacing: 1px; }

/* ── TRUST BADGES ── */
.gv-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px 16px;
  background: var(--gv-blush);
  border-radius: var(--gv-r);
  border: 1px solid var(--gv-border);
  margin: 18px 0;
}
.gv-trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
.gv-trust-icon { font-size: 18px; }
.gv-trust-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gv-charcoal); line-height: 1.3; }

/* ── BENEFIT BULLETS ── */
.gv-benefits { margin: 20px 0; }
.gv-benefit { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; border-bottom: 1px solid var(--gv-brand-light); }
.gv-benefit:last-child { border-bottom: none; }
.gv-benefit-icon {
  width: 26px; height: 26px;
  background: var(--gv-brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff; font-size: 11px; font-weight: 700; margin-top: 2px;
}
.gv-benefit strong { display: block; font-size: 14px; font-weight: 600; color: var(--gv-text); }
.gv-benefit span { font-size: 13px; color: var(--gv-muted); }

/* ── SECTION TITLES ── */
.gv-title { font-family: var(--gv-serif); font-size: 36px; font-weight: 700; line-height: 1.15; }
.gv-subtitle { font-size: 15px; color: var(--gv-muted); line-height: 1.65; }

/* ── PRODUCT CARDS ── */
.gv-card {
  background: var(--gv-white);
  border: 1px solid var(--gv-border);
  border-radius: var(--gv-r-lg);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.gv-card:hover { box-shadow: var(--gv-shadow); transform: translateY(-2px); }
.gv-card-img { aspect-ratio: 1; background: var(--gv-blush); overflow: hidden; }
.gv-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gv-card:hover .gv-card-img img { transform: scale(1.04); }
.gv-card-body { padding: 16px 18px 20px; }
.gv-card-title { font-size: 15px; font-weight: 600; color: var(--gv-text); margin-bottom: 4px; }
.gv-card-price { font-size: 20px; font-weight: 600; color: var(--gv-brand); margin-bottom: 12px; }
.gv-card-btn {
  display: block; width: 100%; padding: 12px;
  background: var(--gv-brand); color: #fff !important;
  text-align: center; font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em; text-decoration: none;
  border-radius: var(--gv-r); transition: background 0.2s;
}
.gv-card-btn:hover { background: var(--gv-brand-dark); }

/* ── FAQ ── */
.gv-faq-item { border-bottom: 1px solid var(--gv-border); }
.gv-faq-q {
  padding: 16px 0; font-size: 15px; font-weight: 600;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  color: var(--gv-text); background: none; border: none; width: 100%; text-align: left;
  font-family: var(--gv-sans);
}
.gv-faq-q::after { content: '+'; font-size: 20px; font-weight: 300; color: var(--gv-brand); }
.gv-faq-q.open::after { content: '−'; }
.gv-faq-a { font-size: 14px; color: #5A4A44; padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s; line-height: 1.7; }
.gv-faq-a.open { max-height: 300px; padding: 0 0 16px; }

/* ── SOCIAL PROOF TICKER ── */
.gv-ticker { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: #EEF7F2; border: 1px solid #A8D5BA; border-radius: var(--gv-r); font-size: 13px; margin-top: 16px; }
.gv-ticker-dot { width: 8px; height: 8px; background: var(--gv-success); border-radius: 50%; flex-shrink: 0; animation: gv-pulse 2s infinite; }
@keyframes gv-pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ── HERO (homepage) ── */
.gv-hero {
  background: linear-gradient(135deg, #FFF5F8 0%, #FDE8EE 50%, #F9D8E5 100%);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gv-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 25%, rgba(192,82,114,0.07) 0%, transparent 55%),
              radial-gradient(ellipse at 20% 80%, rgba(192,82,114,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.gv-hero-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gv-brand); border: 1px solid rgba(192,82,114,0.3);
  padding: 5px 16px; border-radius: 20px; margin-bottom: 20px;
  background: rgba(255,255,255,0.7);
}
.gv-hero-title {
  font-family: var(--gv-serif);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700; color: var(--gv-text);
  line-height: 1.1; margin-bottom: 18px;
}
.gv-hero-title em { color: var(--gv-brand); font-style: normal; }
.gv-hero-sub { font-size: 17px; color: var(--gv-muted); max-width: 520px; margin: 0 auto 32px; line-height: 1.65; }
.gv-hero-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 40px; background: var(--gv-brand); color: #fff !important;
  font-weight: 700; font-size: 15px; letter-spacing: 0.04em;
  text-decoration: none; border-radius: var(--gv-r);
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(192,82,114,0.3);
}
.gv-hero-cta:hover { background: var(--gv-brand-dark); transform: translateY(-1px); }
.gv-hero-trust { margin-top: 24px; font-size: 12px; color: var(--gv-muted); letter-spacing: 0.05em; }
.gv-hero-trust span { margin: 0 10px; }

/* ── HOW IT WORKS ── */
.gv-how { padding: 70px 40px; background: var(--gv-brand); }
.gv-how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; max-width: 860px; margin: 0 auto; }
.gv-step { text-align: center; }
.gv-step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--gv-serif); font-size: 22px; font-weight: 700; color: #fff;
}
.gv-step h4 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.gv-step p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* ── FINAL CTA BANNER ── */
.gv-final-cta { background: var(--gv-brand-light); padding: 60px 40px; text-align: center; border-top: 1px solid var(--gv-border); }
.gv-guarantee { display: flex; justify-content: center; gap: 32px; margin-top: 24px; flex-wrap: wrap; }
.gv-guarantee-item { font-size: 13px; color: var(--gv-muted); display: flex; align-items: center; gap: 6px; }
.gv-guarantee-item::before { content: '✓'; color: var(--gv-brand); font-weight: 600; }

/* ── FOOTER ── */
footer, .footer, .site-footer { background: var(--gv-text) !important; color: #fff !important; }
footer a, .footer a { color: #ccc !important; }
footer a:hover, .footer a:hover { color: var(--gv-brand-mid) !important; }

/* ── PRODUCT FORM VARIANTS ── */
.gv-variant-btn {
  padding: 10px 16px;
  border: 1.5px solid var(--gv-border);
  background: var(--gv-white);
  color: var(--gv-text);
  border-radius: var(--gv-r);
  font-size: 13px; font-weight: 500;
  cursor: pointer; font-family: var(--gv-sans);
  transition: all 0.15s;
}
.gv-variant-btn:hover { border-color: var(--gv-brand-mid); }
.gv-variant-btn.selected { border-color: var(--gv-brand); background: var(--gv-brand); color: #fff; }

/* ── PRODUCT PAGE SPECIFIC ── */
.gv-product-title { font-family: var(--gv-serif); }
.gv-price-sale { color: var(--gv-brand) !important; }
.gv-badge { background: var(--gv-brand) !important; color: #fff !important; }
.gv-save-badge { background: var(--gv-brand) !important; color: #fff !important; }
.gv-review-count { color: var(--gv-brand) !important; }
.gv-tab.active { color: var(--gv-text); border-bottom-color: var(--gv-brand) !important; }
.gv-btn-primary { background: var(--gv-brand) !important; color: #fff !important; }
.gv-btn-primary:hover { background: var(--gv-brand-dark) !important; }
.gv-btn-secondary { background: var(--gv-text) !important; color: #fff !important; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .gv-hero { padding: 50px 20px; }
  .gv-how { padding: 50px 20px; }
  .gv-how-grid { grid-template-columns: 1fr; gap: 28px; }
  .gv-trust { grid-template-columns: repeat(2,1fr); }
  .gv-guarantee { gap: 16px; }
  .gv-final-cta { padding: 40px 20px; }
}

/* ── FIX 5: HOW IT WORKS SECTION ──
   Ensure the rose background section
   text is always readable                     */
 
.gv-how .gv-title,
.gv-how h2 {
  color: #fff !important;
}
.gv-how p,
.gv-how .gv-subtitle {
  color: rgba(255,255,255,0.78) !important;
}
 
 
/* ── FIX 6: HERO SECTION on Homepage ──
   Ensure hero section always has
   correct text color on blush gradient        */
 
.gv-hero .gv-title,
.gv-hero .gv-hero-title {
  color: #2C1A1F !important;
}
.gv-hero .gv-hero-sub {
  color: #8A6872 !important;
}
.gv-hero .gv-hero-trust {
  color: #8A6872 !important;
}
 
 
/* ── FIX 7: SECTION BACKGROUNDS ──
   Even sections white, odd sections
   soft blush — consistent alternation         */
 
.gv-section-blush { background: #FDF5F7 !important; }
.gv-section-white { background: #fff !important; }

* ── FIX 1: SAVE BADGE ON PRODUCT CARDS ──
   The Dawn theme renders its own "SAVE" badge
   using its color scheme. Override fully.     */

.badge--sale,
.badge[style*="sale"],
.card__badge .badge,
.price__badge-sale,
[class*="badge"][class*="sale"],
.product-card .badge,
.card-information .badge {
  background: #C05272 !important;
  color: #fff !important;
  border-color: #C05272 !important;
}


/* Also override the gv-card save badge */
.gv-card .gv-save-badge,
.gv-save-badge {
  background: #C05272 !important;
  color: #fff !important;
}


/* ── FIX 2: FOOTER — DEEP OVERRIDE ──
   Dawn theme uses CSS color scheme variables
   that are very deeply nested. This targets
   every known footer class Dawn uses.         */

.footer,
footer,
.site-footer,
#shopify-section-footer,
#shopify-section-footer > div,
.footer__content-top,
.footer__content-bottom,
.footer__content-bottom-wrapper,
.footer-section {
  background-color: #2C1A1F !important;
  color: #FAF7F2 !important;
}

/* Dawn uses color scheme data attributes */
[data-section-type="footer"],
.color-scheme-1 footer,
.color-scheme-2 footer,
.color-background-1.footer,
.color-background-2.footer,
.gradient.footer {
  background: #2C1A1F !important;
}

/* Footer text and links */
.footer h2,
.footer h3,
.footer .h4,
.footer-block__heading,
.footer__heading {
  color: #FAF7F2 !important;
  opacity: 1 !important;
}

.footer p,
.footer li,
.footer span:not([class*="icon"]) {
  color: rgba(250,247,242,0.65) !important;
}

.footer a,
.footer__list-item a,
.footer-block__list-item a {
  color: rgba(250,247,242,0.65) !important;
  text-decoration: none !important;
}

.footer a:hover,
.footer__list-item a:hover {
  color: #E8A0B4 !important;
}

/* Footer bottom copyright strip */
.footer__content-bottom,
.footer__copyright,
.footer__copyright li,
.footer__copyright a {
  color: rgba(250,247,242,0.4) !important;
  border-top-color: rgba(250,247,242,0.1) !important;
}

/* Trust strip that sits above footer */
.footer .list-social,
.footer .list-social__link {
  color: rgba(250,247,242,0.5) !important;
  border-color: rgba(250,247,242,0.2) !important;
}

/* Social icons */
.footer .list-social__link svg,
.footer .icon {
  fill: rgba(250,247,242,0.6) !important;
  color: rgba(250,247,242,0.6) !important;
}


/* ── FIX 3: HOW IT WORKS — CHANGE TO BLUSH ──
   Currently both "How It Works" and the CTA
   are dark rose. Switch "How It Works" to the
   same blush gradient as the hero section so
   they alternate: blush → rose → blush → rose */

.gv-how {
  background: linear-gradient(135deg, #FFF5F8 0%, #FDE8EE 50%, #F9D8E5 100%) !important;
  padding: 70px 40px;
}

/* Update text colors for light background */
.gv-how .gv-title,
.gv-how h2 {
  color: #2C1A1F !important;
}

.gv-how p,
.gv-how .gv-subtitle,
.gv-how .gv-step p {
  color: #8A6872 !important;
}

.gv-how .gv-step h4 {
  color: #2C1A1F !important;
}

.gv-step-num {
  background: rgba(192,82,114,0.12) !important;
  border: 1px solid rgba(192,82,114,0.3) !important;
  color: #C05272 !important;
}


/* ── FIX 4: BRAND STRIP (stats section) ──
   Ensure the "Trusted by SA Women" stats
   strip between sections has correct colors  */

.gv-brand-strip {
  background: #fff !important;
}


/* ── FIX 5: PRODUCT CARD SAVE BADGE ──
   The homepage product cards render a
   "SAVE R251.00" badge from the liquid.
   Ensure it's always rose-colored.           */

.gv-card [style*="background:#1A0D12"],
.gv-card [style*="background: #1A0D12"] {
  background: #C05272 !important;
  color: #fff !important;
}


/* ── FIX 6: SECTION BREATHING ROOM ──
   Add a subtle white divider between
   the How It Works and CTA sections        */

.gv-how + .gv-final-cta,
.gv-how + [style*="background:#C05272"] {
  border-top: 4px solid #fff !important;
}

/* ============================================
   GLOWVA SKIN — Mobile Fixes
   APPEND to bottom of glowva-custom-v2.css
   ============================================ */

@media (max-width: 749px) {

  /* ── FIX 1: HOMEPAGE — WHY GLOWVA SKIN
     4-column grid is too cramped on mobile.
     Switch to 2x2 grid.                       */

  .gv-why-grid,
  section > div > div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  /* Also target inline-style 4-col grids */
  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }


  /* ── FIX 2: HOMEPAGE — PRODUCT CARDS
     3 product cards stack to single column.
     Text no longer truncates.                 */

  section > div > div[style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .gv-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .gv-card-title {
    font-size: 16px !important;
    white-space: normal !important;
    overflow: visible !important;
  }

  .gv-card-price {
    font-size: 18px !important;
  }


  /* ── FIX 3: PRODUCT PAGE — RIGHT PADDING
     The product page hero grid loses its
     right padding on mobile due to the image
     gallery thumbs row overflowing.           */

  .gv-product-hero {
    padding: 20px 16px !important;
    gap: 24px !important;
  }

  .gv-info {
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Prevent thumb row from overflowing */
  .gv-thumbs {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 4px !important;
    scrollbar-width: none !important;
  }
  .gv-thumbs::-webkit-scrollbar { display: none !important; }

  .gv-thumb {
    flex-shrink: 0 !important;
    width: 60px !important;
    height: 60px !important;
  }

  /* All elements inside .gv-info must respect container width */
  .gv-info * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .gv-product-title {
    font-size: 26px !important;
    word-break: break-word !important;
  }

  .gv-pricing {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .gv-price-sale {
    font-size: 26px !important;
  }

  .gv-stock-row {
    flex-wrap: wrap !important;
    gap: 6px !important;
  }

  .gv-cta-stack {
    width: 100% !important;
  }

  .gv-btn-primary,
  .gv-btn-secondary {
    width: 100% !important;
    padding: 15px 12px !important;
    font-size: 14px !important;
  }

  .gv-trust {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .gv-section-wrap {
    padding: 0 16px 40px !important;
  }

  /* Tabs scroll on mobile */
  .gv-tabs {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  .gv-tabs::-webkit-scrollbar { display: none !important; }

  .gv-tab {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    padding: 12px 16px !important;
  }

  .gv-breadcrumb {
    padding: 10px 16px !important;
    font-size: 11px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }


  /* ── FIX 4: ABOUT PAGE — WHAT WE STAND FOR
     3-column grid with long text is unreadable
     on mobile. Stack to single column.        */

  section > div[style*="grid-template-columns:repeat(3"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  /* Target the values cards specifically */
  [style*="padding:28px"][style*="background:#fff"][style*="border-radius:10px"] {
    width: 100% !important;
    box-sizing: border-box !important;
  }


  /* ── FIX 5: ABOUT PAGE — MISSION SECTION
     2-col grid with stats should stack        */

  section > div[style*="grid-template-columns:1fr 1fr"] {
    display: block !important;
  }

  section > div[style*="grid-template-columns:1fr 1fr"] > div:first-child {
    margin-bottom: 28px !important;
  }

  /* Stats 2x2 grid stays as 2x2 on mobile */
  div[style*="grid-template-columns:1fr 1fr"] > div[style*="background:#FDF5F7"] {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }


  /* ── FIX 6: HOMEPAGE HERO ── */
  .gv-hero {
    padding: 48px 20px !important;
  }

  .gv-hero-title {
    font-size: 38px !important;
    line-height: 1.15 !important;
  }

  .gv-hero-sub {
    font-size: 15px !important;
  }

  .gv-hero-cta {
    padding: 14px 28px !important;
    font-size: 14px !important;
  }

  .gv-hero-trust {
    font-size: 11px !important;
    line-height: 1.8 !important;
  }

  .gv-hero-trust span {
    display: block !important;
    margin: 0 !important;
  }


  /* ── FIX 7: HOW IT WORKS — mobile ── */
  .gv-how-grid,
  section[style*="grid-template-columns:repeat(3,1fr)"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
  }


  /* ── FIX 8: BRAND STATS STRIP ── */
  [style*="display:flex"][style*="justify-content:center"][style*="gap:40px"] {
    gap: 20px !important;
    flex-wrap: wrap !important;
  }

  /* Hide vertical divider lines on mobile */
  [style*="width:1px"][style*="height:50px"] {
    display: none !important;
  }


  /* ── FIX 9: FAQ PAGE ── */
  .gv-faq-hero {
    padding: 40px 20px !important;
  }

  .gv-faq-wrap {
    padding: 32px 16px 56px !important;
  }

  .gv-faq-help {
    padding: 24px 20px !important;
  }


  /* ── FIX 10: FOOTER MOBILE ── */
  .cvf-top {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .cvf-footer {
    padding: 36px 20px 24px !important;
  }

  .cvf-trust-strip {
    gap: 14px !important;
    padding: 14px 16px !important;
    justify-content: flex-start !important;
  }

  .cvf-bottom {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .cvf-bottom-links {
    gap: 16px !important;
  }

}

/* ── SMALL PHONES (under 400px) ── */
@media (max-width: 399px) {

  .gv-hero-title {
    font-size: 32px !important;
  }

  .gv-product-title {
    font-size: 22px !important;
  }

  .gv-price-sale {
    font-size: 22px !important;
  }

  .gv-trust {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
  }

  .gv-trust-label {
    font-size: 9px !important;
  }

}

.gv-sticky-atc {
  padding-right: 75px !important;
}

