.elementor-1835 .elementor-element.elementor-element-67c29d3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1835 .elementor-element.elementor-element-67c29d3.e-con{--flex-grow:0;--flex-shrink:0;}:root{--page-title-display:none;}@media(min-width:480px){.elementor-1835 .elementor-element.elementor-element-67c29d3{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-8ebbab6 *//* ========== GLOBAL THEME TOKENS – LIGHT VERSION ========== */
:root {
  /* Page backgrounds */
  --bg: #fbf9f6;
  --background: #fbf9f6;
  --foreground: #1f2933;

  /* Surfaces */
  --card: #ffffff;
  --card-foreground: #1f2933;

  /* Muted UI */
  --muted: #efe8e2;
  --muted-foreground: #6b5f57;

  /* Primary — DULL CORAL / CLAY */
  --primary: #c98f72;              /* main coral tone */
  --primary-soft: #f2e2d9;         /* soft clay wash */
  --primary-foreground: #ffffff;

  /* Secondary — warm neutral (not orange) */
  --secondary: #f6eee8;
  --secondary-foreground: #6b5f57;

  /* Borders + focus */
  --border: #e6d8cf;
  --ring: rgba(201, 143, 114, 0.35);

  /* CTA */
  --cta: #c98f72;
  --cta-hover: #b97f64;
  --cta-foreground: #ffffff;

  /* Links */
  --link: #c98f72;
  --link-hover: #b97f64;

  /* Radius */
  --radius-lg: 18px;
  --radius-xl: 24px;
  
  /* Section backgrounds */
--bg-soft: #f6eee8;
--bg-elevated: #ffffff;
--bg-muted: #efe8e2;

/* Text */
--text-main: var(--foreground);
--text-muted: var(--muted-foreground);
--text-accent: var(--primary);

/* UI elements */
--chip-bg: var(--primary-soft);
--chip-text: var(--primary);
--icon-bg: var(--primary-soft);
--icon-fg: var(--primary);

/* Gradients / overlays */
--hero-grad-start: #ffffff;
--hero-grad-end: var(--bg);
--hero-accent: rgba(201, 143, 114, 0.18);

/* Borders */
--border-soft: var(--border);

/* Footer */
--footer-bg: var(--bg);
--footer-text: var(--foreground);

  /* Shadows */
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.08);
  --shadow-med:  0 20px 45px rgba(15, 23, 42, 0.12);

  /* CTA shadows (tinted by brand) */
  --cta-shadow:       0 18px 40px rgba(201, 143, 114, 0.28);
  --cta-shadow-hover: 0 12px 20px rgba(201, 143, 114, 0.35);

  /* Rings / outlines */
  --ring-soft: rgba(201, 143, 114, 0.15);
  --ring-med:  rgba(201, 143, 114, 0.25);
  --ring-strong: rgba(201, 143, 114, 0.50);

  /* Hover wash (replaces minty teals) */
  --hover-wash: #f7ebe3;
  --hover-wash-strong: #f2dfd5;

  /* Accent glows / blobs */
  --glow-accent: rgba(201, 143, 114, 0.22);

  /* Promo gradients */
  --promo-grad-start: #ffffff;
  --promo-grad-end: var(--bg);

  /* Layout */
  --container-width: 1120px;
}


/* Basic reset */
.oxx-yerba-page * {
  box-sizing: border-box;
}

.oxx-yerba-page {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--foreground);
  background: var(--bg);
}

/* Layout */
.oxx-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.oxx-section {
  padding: 4rem 0;
}

.oxx-section-lg {
  padding: 5rem 0;
}

/* Utilities */
.oxx-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-size: .75rem;
  box-shadow: 0 8px 18px rgba(15,23,42,.05);
}

.oxx-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .35rem .85rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--chip-bg);
  color: var(--chip-text);
}

/* Buttons */
.oxx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
}

.oxx-btn-primary {
  background: var(--cta);
  color: var(--cta-foreground);
  border-color: transparent;
  box-shadow: var(--cta-shadow);
}

.oxx-btn-primary:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  box-shadow: var(--cta-shadow-hover);
  color: var(--cta-foreground);
}

.oxx-btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--primary);
}

.oxx-btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

/* Cards */
.oxx-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

/* Animations */
@keyframes oxx-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes oxx-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.oxx-animate-fade-in { animation: oxx-fade-in .8s ease forwards; }
.oxx-animate-float { animation: oxx-float 4s ease-in-out infinite; }

/* ========== HEADER ========== */
.oxx-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #e2e8d8;
}

.oxx-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 0;
}

.oxx-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.oxx-logo img {
  height: 2.5rem;
  width: auto;
}

/* Desktop nav */
.oxx-nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.oxx-nav-link {
  font-size: 1.125rem;
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s ease;
}

.oxx-nav-link:hover {
  color: var(--primary);
}

/* Mobile nav toggle */
.oxx-nav-toggle {
  display: none;
  padding: .4rem;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #4b5563;
}

/* Mobile nav menu (hidden by default; JS toggles this) */
/* Mobile nav – show links across instead of stacked */
.oxx-nav-mobile {
  display: none;              /* JS toggles to flex */
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;  /* or center if you prefer */
  gap: 1.25rem;
  padding: 0.6rem 0 0.9rem;
}

/* Links inside mobile nav */
.oxx-nav-mobile a {
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
}

/* Make the “Shop Now” button not full-width on mobile menu */
.oxx-nav-mobile .oxx-btn {
  width: auto !important;             /* override inline width:100% */
  justify-content: center !important;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
}


/* ========== HERO ========== */
/* updated */
.oxx-hero {
  /* let height be based on content instead of forcing full-screen */
  min-height: auto;
  padding: 4rem 0 5rem;  /* slightly tighter top/bottom */
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    var(--hero-grad-start),
    var(--hero-grad-end)
  );
}

.oxx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
   background:
    radial-gradient(circle at top left, var(--hero-accent), transparent 55%),
    radial-gradient(circle at bottom right, var(--hero-accent), transparent 55%);
  opacity: .9;
  pointer-events: none;
}

.oxx-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.oxx-hero-kicker {
  margin-bottom: 1.5rem;
  background: var(--primary-soft);

}

.oxx-hero-stars {
  display: flex;
  gap: 2px;
  color: var(--primary);
  font-size: 15px
}

.oxx-hero-title {
  font-size: clamp(2.5rem, 3vw + 1rem, 3.5rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 1rem;
  color: #111827;
}

.oxx-hero-title span {
  display: block;
  color: var(--primary);
}

.oxx-hero-subtitle {
  font-size: 1.05rem;
  max-width: 34rem;
  color: #4b5563;
  margin-bottom: 1.75rem;
}

.oxx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.oxx-hero-quick-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.oxx-hero-quick-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #4b5563;
}

.oxx-hero-quick-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: .9rem;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
}

/* Hero image */
.oxx-hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.oxx-hero-image-inner {
  position: relative;
  max-width: 550px;
}

.oxx-hero-image-inner::before {
  content: "";
  position: absolute;
  inset: 8%;
 background: radial-gradient(circle, var(--glow-accent), transparent 60%);
  filter: blur(10px);
  opacity: .9;
}

.oxx-hero-image-inner img {
  position: relative;
  width: 100%;
  display: block;
  border-radius: 32px;
  box-shadow: 0 35px 80px rgba(15, 23, 42, .18);
}

/* floating badge */
.oxx-hero-badge {
  position: absolute;
  right: -8px;
  bottom: 32%;
  background: #ffffff;
  border-radius: 18px;
  padding: .6rem .85rem;
  display: flex;
  align-items: center;
  gap: .55rem;
  border: 1px solid var(--border);
  box-shadow: 0 20px 45px rgba(15,23,42,.12);
}

.oxx-hero-badge-circle {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

/* ========== FLAVORS ========== */
.oxx-flavors-section {
  background: #ffffff;
  padding: 4rem 0 4rem;
}

.oxx-section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.oxx-section-heading h2 {
  font-size: clamp(2rem, 2.3vw + 1rem, 2.7rem);
  color: #111827;
  margin-bottom: .6rem;
}

.oxx-section-heading p {
  color: #4b5563;
  max-width: 40rem;
  margin: 0 auto;
}

/* flavor cards */
.oxx-flavor-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .oxx-flavor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.oxx-flavor-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #ffffff;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease, background .3s ease;
}

.oxx-flavor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  transition: opacity .4s ease;
}

.oxx-flavor-card.matcha::before {
  background: radial-gradient(circle at top, #4ade80, transparent);
}
.oxx-flavor-card.lemon::before {
  background: radial-gradient(circle at top, #facc15, transparent);
}
.oxx-flavor-card.watermelon::before {
  background: radial-gradient(circle at top, #fb7185, transparent);
}

.oxx-flavor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(11, 127, 138, 0.5);
  background: #fbfeff;
}

.oxx-flavor-card:hover::before {
  opacity: .18;
}

.oxx-flavor-inner {
  position: relative;
  padding: 2rem 1.75rem 1.9rem;
}

.oxx-flavor-image {
  display: flex;
  justify-content: center;
  margin-bottom: 1.6rem;
}

.oxx-flavor-image img {
  max-height: 260px;
  width: auto;
  display: block;
  filter: drop-shadow(0 20px 35px rgba(15,23,42,.15));
  transition: transform .4s ease;
}

.oxx-flavor-card:hover img {
  transform: translateY(-6px);
}

.oxx-flavor-title {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.oxx-flavor-title.matcha { color: #15803d; }
.oxx-flavor-title.lemon { color: #d97706; }
.oxx-flavor-title.watermelon { color: #be123c; }

.oxx-flavor-desc {
  font-size: .95rem;
  color: #4b5563;
  text-align: center;
  margin-bottom: 1.1rem;
}

/* ========== CTA (SHOP) ========== */
.oxx-shop-section {
  background: #f8faf7;
  padding: 4.5rem 0;
}

.oxx-shop-grid {
  display: grid;
  gap: 2.5rem;
  /* make it a single column by default so mobile can't overflow */
  grid-template-columns: minmax(0, 1fr);
}


@media (min-width: 1024px) {
  .oxx-shop-grid {
    grid-template-columns: 1.05fr 1fr;
    align-items: flex-start;
  }
}

/* Gallery */
.oxx-gallery-main {
  position: relative;
  border-radius: 26px;
  padding: 1.8rem;
  background: #ffffff;
  border: 1px solid var(--border);
  height: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15,23,42,.06);
}

.oxx-gallery-main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.oxx-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: var(--bg-elevated);
  border-color: var(--border-soft);
  color: var(--text-muted);
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.oxx-gallery-arrow:hover {
  background: var(--bg-elevated);
  transform: translateY(-50%) translateY(-1px);
  box-shadow: 0 10px 20px rgba(15,23,42,.12);
}

.oxx-gallery-arrow.left { left: 1rem; }
.oxx-gallery-arrow.right { right: 1rem; }

.oxx-gallery-thumbs {
  display: flex;
  gap: .65rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: .35rem;
}

.oxx-gallery-thumb {
  width: 4.1rem !important;
  height: 4.1rem !important;
  flex: 0 0 4.1rem !important;
  border-radius: 1rem;
  border: 2px solid var(--border);
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  padding: 0px;
}

.oxx-gallery-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: .1rem;
    border-radius: 1rem;
}

.oxx-gallery-thumb.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(11, 127, 138, .25);
}

/* Right column purchase options */
.oxx-shop-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.oxx-shop-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: .3rem;
}

.oxx-shop-rating {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
}

.oxx-stars {
  display: flex;
  gap: 2px;
  color: var(--primary);
  font-size: 25px
  border
}

/* Pricing blocks */
.oxx-shop-block {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 1.1rem 1rem 1.2rem;
  box-shadow: 0 12px 30px rgba(15,23,42,.06);
}

.oxx-shop-block-title {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: .7rem;
}

/* purchase type cards */
.oxx-purchase-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem .9rem;
  border-radius: 16px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all .2s ease;
  margin-bottom: .6rem;
  background: #ffffff;
  color: #111827;
}

.oxx-purchase-option.active {
  border-color: var(--primary);
  background: var(--primary-soft);
  box-shadow: 0 0 0 1px rgba(11, 127, 138, .25);
}

.oxx-radio-circle {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: .55rem;
}

.oxx-radio-circle-inner {
  width: .6rem;
  height: .6rem;
  border-radius: 999px;
  background: var(--primary);
}

/* flavor pills inside shop */
.oxx-flavor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .6rem;
}

.oxx-flavor-pill {
  text-align: left;
  padding: .7rem .8rem;
  border-radius: 16px;
  border: 2px solid var(--border);
  background: #ffffff;
  color: #374151;
  cursor: pointer;
  transition: all .2s ease;
  font-size: .8rem;
}

.oxx-flavor-pill.active {
  border-color: var(--primary);
  background: var(--primary-soft);
}

/* Flavors section – 1 column on mobile, 3 on desktop */
.oxx-flavors-section .oxx-flavor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr); /* 1 column by default */
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .oxx-flavors-section .oxx-flavor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Shop panel flavor pills – keep 2 columns there only */
.oxx-shop-panel .oxx-flavor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
}


/* quantity buttons */
.oxx-qty-row {
  display: flex;
  gap: .7rem;
}

.oxx-qty-card {
  position: relative;
  flex: 1;
  padding: .7rem .7rem .65rem;
  border-radius: 16px;
  border: 2px solid var(--border);
  background: #ffffff;
  color: #374151;
  text-align: left;
  cursor: pointer;
  transition: all .2s ease;
  font-size: .8rem;
}

.oxx-qty-card.active {
  border-color: var(--primary);
  background: var(--primary-soft);
  box-shadow: 0 0 0 1px rgba(11, 127, 138, .25);
}

.oxx-qty-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: .15rem .5rem;
  border-radius: 999px;
  font-size: .65rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--primary);
  color: #f0fdf4;
}

/* Total + CTA */
.oxx-shop-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .8rem;
  font-size: .9rem;
  color: #374151;
}

.oxx-price-big {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

/* ========== INGREDIENTS ========== */
.oxx-ingredients-section {
  background: #ffffff;
  padding: 4rem 0;
}

.oxx-ingredients-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .oxx-ingredients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .oxx-ingredients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.oxx-ingredient-card {
  position: relative;
  padding: 1.5rem 1.4rem 1.4rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #ffffff;
  overflow: hidden;
  color: #111827;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.oxx-ingredient-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 100px;
  height: 100px;
  border-radius: 999px;
  background: var(--glow-accent);
  filter: blur(18px);
  opacity: .4;
}

.oxx-ingredient-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 20px 45px rgba(15,23,42,.12);
}

.oxx-ingredient-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 1.1rem;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .9rem;
  font-size: 1.2rem;
  color: var(--primary);
}

.oxx-ingredient-name {
  font-weight: 700;
  margin-bottom: .2rem;
  color: #000 !important;
}

.oxx-ingredient-benefit {
  font-size: .8rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: .4rem;
}

.oxx-ingredient-text {
  font-size: 1rem;
  color: #4b5563;
}

/* ========== FAQ ========== */
.oxx-faq-section {
  background: #ffffff;
  padding: 4.5rem 0;
}

.oxx-faq-list {
  max-width: 720px;
  margin: 2rem auto 0;
}

.oxx-faq-item {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #ffffff;
  margin-bottom: .75rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(15,23,42,.04);
}

.oxx-faq-header {
  padding: .9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.oxx-faq-question {
  font-size: .95rem;
  color: #111827;
  font-weight: 500;
}

.oxx-faq-icon {
  font-size: 1.2rem;
  color: #9ca3af;
}

.oxx-faq-body {
  padding: 0 1rem 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, padding-bottom .25s ease;
  font-size: .9rem;
  color: #4b5563;
}

.oxx-faq-item.active .oxx-faq-body {
  padding-bottom: .9rem;
}

/* ========== FOOTER ========== */
.oxx-footer {
  background: #ffffff;
  border-top: 1px solid #e2e8d8;
  padding: 3rem 0 2.2rem;
  color: #2f6b3f;
}

.oxx-footer-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .oxx-footer-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.oxx-footer-title {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  margin-bottom: .75rem;
  color: #9ca3af;
}

.oxx-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oxx-footer-links li + li {
  margin-top: .35rem;
}

.oxx-footer-links a {
  font-size: .8rem;
  color: #4b5563;
  text-decoration: none;
  transition: color .2s ease;
}

.oxx-footer-links a:hover {
  color: #111827;
}

/* ========== PROMO BANNER (GET THE VARIETY PACK — SAVE 15%) ========== */
.oxx-promo-banner {
  width: 100%;
  background: var(--primary-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .oxx-promo-banner {
    padding: 3rem 0;
  }
}

.oxx-promo-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.oxx-promo-title {
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  font-weight: 700;
  color: #000 !important;
}

.oxx-promo-label {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .75rem;
  padding-bottom: 2rem;
  color: var(--muted-foreground);
}

.oxx-countdown-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: nowrap;
  padding-bottom: 20px;
}

.oxx-countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.oxx-countdown-box {
  background: #ffffff;
  border: 2px solid var(--primary);
  border-radius: 1rem;
  padding: .8rem 1.3rem;
}

@media (min-width: 768px) {
  .oxx-countdown-box {
    padding: 1.1rem 1.6rem;
  }
}

.oxx-countdown-number {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--primary);
}

.oxx-countdown-label {
  margin-top: .5rem;
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted-foreground);
}

.oxx-countdown-separator {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .75rem;
}

/* === Mobile countdown sizing === */
@media (max-width: 480px) {
  .oxx-countdown-row {
    gap: 0.5rem;              /* tighter spacing */
    justify-content: center;  /* keep it centered */
  }

  .oxx-countdown-box {
    padding: 0.4rem 0.7rem;   /* smaller boxes */
    border-radius: 0.75rem;
  }

  .oxx-countdown-number {
    font-size: 1.5rem;        /* was 2.3–3.4rem */
  }

  .oxx-countdown-separator {
    font-size: 1.5rem;        /* shrink colons too */
    margin-bottom: 0.25rem;
  }

  .oxx-countdown-label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    padding-bottom: 0.5rem;
  }
  
    .oxx-promo-banner {
    padding: 1rem 0;
  }
}

.oxx-promo-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.oxx-promo-title {
  font-size: clamp(1.2rem, 2.2vw, 2.3rem);
  font-weight: 700;
  color: #000 !important;
}

.oxx-promo-label {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .75rem;
  padding-bottom: 1rem;
  color: var(--muted-foreground);
}


/* ========== QUALITY SECTION (cGMP + CERTS + STATS) ========== */
.oxx-quality-section {
  padding: 4.5rem 0;
  background: var(--background);
}

.oxx-quality-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .oxx-quality-section {
      padding-top: 1rem;
      padding-bottom: 1rem;
  }
}
@media (min-width: 1024px) {
  .oxx-quality-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  }
}

.oxx-quality-kicker {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .75rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: .5rem;
}

.oxx-quality-title {
  font-size: clamp(2rem, 2.6vw, 2.9rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.oxx-quality-copy {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.oxx-quality-highlight {
  display: flex;
  gap: 1rem;
  padding: 1.4rem 1.3rem;
  border-radius: 1.4rem;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid var(--border);
}

.oxx-quality-highlight-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(11, 127, 138, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
}

.oxx-quality-certs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.oxx-quality-cert-card {
  text-align: center;
  padding: 1.3rem 1.1rem;
  border-radius: 1.4rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all .25s ease;
}

.oxx-quality-cert-card:hover {
  border-color: var(--primary);
  box-shadow: 0 18px 40px rgba(15,23,42,.12);
  transform: translateY(-2px);
}

.oxx-quality-cert-icon {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 1.3rem;
  background: rgba(11, 127, 138, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .9rem;
  font-size: 1.4rem;
  color: var(--primary);
}

.oxx-quality-cert-name {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .25rem;
  color: var(--foreground);
}

.oxx-quality-cert-copy {
  font-size: .8rem;
  color: var(--muted-foreground);
}

/* stats bar */
.oxx-quality-stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

@media (min-width: 768px) {
  .oxx-quality-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.oxx-quality-stat {
  text-align: center;
  padding: 1.4rem 1.2rem;
  border-radius: 1.3rem;
  background: var(--bg-muted);
}

.oxx-quality-stat-value {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .2rem;
}

.oxx-quality-stat-label {
  font-size: 1.2rem;
  color: var(--muted-foreground);
}

/* ========== TESTIMONIALS ========== */
.oxx-testimonials-section {
  padding: 4.5rem 0;
  background: var(--bg-soft);
}

.oxx-testimonials-heading {
  max-width: 54rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.oxx-testimonials-stars {
  display: inline-flex;
  gap: .3rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 1.2rem;
}

.oxx-testimonials-title {
  font-size: clamp(2rem, 2.5vw, 2.7rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: .7rem;
}

.oxx-testimonials-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
}

/* scrolling gallery */
.oxx-testimonials-gallery {
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.oxx-gallery-strip {
  display: flex;
  gap: 1rem;
  animation: scroll-gallery 30s linear infinite;
}

.oxx-gallery-strip:hover {
  animation-play-state: paused;
}

.oxx-gallery-card {
  flex: 0 0 auto;
  width: 8rem;
  height: 8rem;
  border-radius: 1rem;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--muted-foreground);
  text-align: center;
  padding: .6rem;
}

@media (min-width: 768px) {
  .oxx-gallery-card {
    width: 10rem;
    height: 10rem;
  }
}

.oxx-gallery-fade-left,
.oxx-gallery-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4rem;
  pointer-events: none;
}

.oxx-gallery-fade-left {
  left: 0;
  background: linear-gradient(to right, rgba(242, 226, 217,1), transparent);
}

.oxx-gallery-fade-right {
  right: 0;
  background: linear-gradient(to left, rgba(242, 226, 217,1), transparent);
}

@keyframes scroll-gallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* testimonial cards */
.oxx-testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .oxx-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.oxx-testimonial-card {
  background: var(--bg);
  border-radius: 1.4rem;
  border: 1px solid var(--border);
  padding: 1.4rem 1.3rem;
  transition: all .25s ease;
}

.oxx-testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(15,23,42,.12);
}

.oxx-testimonial-stars {
  display: flex;
  gap: .15rem;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: .8rem;
}

.oxx-testimonial-text {
  font-size: .98rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.oxx-testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.oxx-testimonial-name {
  font-weight: 600;
  color: var(--foreground);
}

.oxx-testimonial-location {
  font-size: .8rem;
  color: var(--muted-foreground);
}

.oxx-testimonial-badge {
  font-size: .7rem;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 600;
}

/* ========== SPIN POPUP ========== */
.oxx-spin-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.oxx-spin-overlay.active {
  display: flex;
}

.oxx-spin-dialog {
  max-width: 900px;
  width: 100%;
  margin: 0 1rem;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(15,23,42,.35);
  position: relative;
}

.oxx-spin-close {
  position: absolute;
  top: .9rem;
  right: .9rem;
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 1.3rem;
  cursor: pointer;
}

.oxx-spin-grid {
  display: grid;
}

@media (min-width: 768px) {
  .oxx-spin-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

/* left – product image */
.oxx-spin-left {
  position: relative;
  background: var(--primary);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

@media (min-width: 768px) {
  .oxx-spin-left {
    min-height: 420px;
  }
}

.oxx-spin-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary));
}

.oxx-spin-left img {
  position: relative;
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(15,23,42,.5));
}

/* right – wheel */
.oxx-spin-right {
  background: #ffffff;
  padding: 2.2rem 2rem 2.4rem;
  text-align: center;
}

.oxx-spin-headline {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: .3rem;
}

@media (min-width: 768px) {
  .oxx-spin-headline {
    font-size: 2.6rem;
  }
}

.oxx-spin-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.oxx-spin-skip {
  font-size: .8rem;
  color: var(--muted-foreground);
  text-decoration: underline;
  cursor: pointer;
  margin-bottom: 1.2rem;
}

.oxx-spin-wheel-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .oxx-spin-wheel-wrap {
    width: 290px;
    height: 290px;
  }
}

.oxx-spin-pointer {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 25px solid #9ca3af;
  z-index: 3;
}

.oxx-spin-wheel {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: 0 14px 40px rgba(15,23,42,.18);
}

.oxx-spin-center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: none;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: var(--foreground);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(15,23,42,.2);
}

.oxx-spin-center-btn:disabled {
  opacity: .6;
  cursor: default;
}

.oxx-spin-result {
  margin-top: 1.4rem;
  font-size: 1.1rem;
  color: var(--primary);
}

.oxx-spin-result strong {
  font-size: 1.3rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .oxx-hero {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .oxx-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .oxx-hero-image-wrap {
    order: -1;
    justify-content: center;
  }
  .oxx-hero-quick-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  /* hide desktop nav, show hamburger, keep mobile menu hidden for JS */
  .oxx-nav-links {
    display: none;
  }
  .oxx-nav-toggle {
    display: inline-flex;
  }
  .oxx-nav-mobile {
    display: none;
  }
}

/* --- Mobile CTA header behavior --- */

/* hide duplicate header by default (desktop) */
.oxx-shop-header-mobile {
  display: none;
}

/* mobile / tablet */
@media (max-width: 1023px) {
  /* show the mobile header above the image */
  .oxx-shop-header-mobile {
    display: block;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .oxx-shop-header-mobile .oxx-shop-title {
    font-size: 1.75rem;
    margin-bottom: 0.4rem;
  }

  .oxx-shop-header-mobile .oxx-shop-subtitle {
    font-size: 0.95rem;
    color: #4b5563;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.5;
  }

  /* hide the title / stars / subtitle inside the right panel on mobile
     so you don't see them twice */
  .oxx-shop-panel .oxx-shop-title,
  .oxx-shop-panel .oxx-shop-rating,
  .oxx-shop-panel .oxx-shop-subtitle {
    display: none;
  }
}

/* ==== MOBILE FIXES FOR CTA SECTION ==== */
@media (max-width: 1023px) {
  /* 1) Mobile header styling */
  .oxx-shop-header-mobile {
    display: block;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .oxx-shop-header-mobile .oxx-shop-title {
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
  }

  .oxx-shop-header-mobile .oxx-shop-rating {
    display: flex;
    align-items: center;
    justify-content: center;   /* center ★★★★★ + "Customer Favorite" */
    gap: 0.4rem;
    margin-bottom: 0.35rem;
  }

  .oxx-shop-header-mobile .oxx-shop-subtitle {
    font-size: 0.95rem;
    color: #4b5563;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.45;
  }

  /* 2) Hide the original desktop header INSIDE the panel on mobile
        so it doesn't sit over the thumbnails */
  .oxx-shop-panel h2,
  .oxx-shop-panel .oxx-shop-rating,
  .oxx-shop-panel p:first-of-type {
    display: none;
  }
}

/* 3) Tighten gallery box + prevent horizontal overflow on small phones */
@media (max-width: 479px) {
  .oxx-shop-section {
    overflow-x: hidden;             /* no side-scroll from this section */
  }

  .oxx-gallery-main {
    padding: 1rem;                  /* a bit less padding = less width */
    border-radius: 20px;
    max-width: 100%;
  }

  .oxx-gallery-main img {
    max-width: 100%;
    height: auto;
  }
}

/* === Hard mobile layout clamp for CTA === */
@media (max-width: 479px) {
  /* keep this whole section inside the viewport */
  .oxx-shop-section {
    overflow-x: hidden;
  }

  .oxx-shop-section .oxx-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* gallery box smaller + no horizontal overflow */
  .oxx-gallery-main {
    padding: 0.75rem;
    min-height: 260px;
    max-width: 100%;
  }

  .oxx-gallery-main img {
    max-width: 100%;
    height: auto;
  }

  /* make sure thumbnails stay below and not “crushed” */
  .oxx-gallery-thumbs {
    margin-top: 0.75rem;
  }

  /* give space before the panel so it can't sit on top of thumbnails */
  .oxx-shop-panel {
    margin-top: 1.5rem;
  }

  /* prevent inner cards from forcing extra width */
  .oxx-shop-block,
  .oxx-purchase-option,
  .oxx-qty-row,
  .oxx-qty-card {
    max-width: 100%;
  }
}

/* 💚 FINAL MOBILE FIX FOR CTA STACKING */
@media (max-width: 767px) {
  /* stop using grid on tiny screens; just stack things */
  .oxx-shop-grid {
    display: block;
  }

  /* image box */
  .oxx-gallery-main {
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    min-height: 260px;
  }

  /* thumbnail row */
  .oxx-gallery-thumbs {
    margin-top: 0.75rem;
    margin-bottom: 1.5rem; /* space BEFORE the purchase box */
  }

  /* purchase panel sits clearly BELOW thumbnails */
  .oxx-shop-panel {
    margin-top: 0;
  }

  /* make sure nothing inside forces extra width */
  .oxx-shop-block,
  .oxx-purchase-option,
  .oxx-qty-row,
  .oxx-qty-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .oxx-gallery-thumbs {
    overflow-x: visible;
    flex-wrap: wrap;
    justify-content: center;
  }

  .oxx-gallery-thumb {
    flex: 0 1 22%;   /* tweak if needed */
  }
}

/* =========================================================
   Quantity Card Styles — Clean + Subtle Hover
   ========================================================= */

/* Base state */
.oxx-shop-section .oxx-qty-card {
  background: #ffffff;
  border: 2px solid var(--border);
  transition: all .2s ease;
  color: #374151;
}

/* Hover state — soft lift, subtle green border */
.oxx-shop-section .oxx-qty-card:hover {
  background: var(--primary-soft) !important;            /* MATCHES thumb hover */
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 1px rgba(11, 127, 138, .15);
}

/* Active selection */
.oxx-shop-section .oxx-qty-card.active {
  background: var(--primary-soft) !important;            /* your soft green */
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 1px rgba(11, 127, 138, .25);
  color: #374151;
}

/* Active + Hover (slightly stronger but not pink!) */
.oxx-shop-section .oxx-qty-card.active:hover {
  background: var(--primary-soft) !important;            /* tiny shade darker */
  border-color: var(--primary) !important;
}


/* ===== Fix magenta hover on gallery thumbnails ===== */
.oxx-shop-section .oxx-gallery-thumb:hover,
.oxx-shop-section .oxx-gallery-thumb:focus {
  background: #f0fbfb !important;          /* soft light green/gray */
  border-color: var(--primary) !important;
}

/* =========================================================
   Flavor Pill Styling (matches thumbnails + quantity hover)
   ========================================================= */

/* Base pill */
.oxx-shop-section .oxx-flavor-pill {
  background: #ffffff;
  border: 2px solid var(--border);
  color: #374151;
  transition: all .2s ease;
}

/* Hover state */
.oxx-shop-section .oxx-flavor-pill:hover {
  background: #f0fbfb !important;                     /* same as thumbnail hover */
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 1px rgba(11, 127, 138, .15);
  color: #374151;
}

/* Active flavor selection */
.oxx-shop-section .oxx-flavor-pill.active {
  background: var(--primary-soft) !important;                     /* soft green */
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 1px rgba(11, 127, 138, .25);
  color: #374151;
}

/* Active + Hover (slightly deeper green) */
.oxx-shop-section .oxx-flavor-pill.active:hover {
  background: #d9f2f2 !important;
  border-color: var(--primary) !important;
}

/* ===== Fix magenta gallery arrows ===== */
.oxx-gallery-arrow {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important; /* subtle gray border */
  color: #4b5563 !important;            /* medium gray icon */
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.oxx-gallery-arrow:hover,
.oxx-gallery-arrow:focus {
  background: #f1f5f9 !important;       /* soft gray hover */
  color: #374151 !important;            /* darker gray icon on hover */
  box-shadow: 0 10px 20px rgba(15,23,42,.12) !important;
  transform: translateY(-50%) translateY(-1px);
}

.oxx-gallery-arrow:active {
  background: #e2e8f0 !important;       /* pressed state */
  color: #111827 !important;
}

/* Force spacing between Features section and Quality section */
.oxx-features-section {
  padding-bottom: 4rem !important;
  margin-bottom: 0 !important;
}

.oxx-quality-section {
  margin-top: 4rem !important; /* ensures clean gap no matter what */
margin-bottom: 4rem !important; /* ensures clean gap no matter what */
}

/* ===== Tighter vertical spacing on mobile ===== */
@media (max-width: 640px) {

  /* Hero */
  .oxx-hero {
    padding: 2.75rem 0 3.25rem;
  }

  /* Global generic section wrapper */
  .oxx-section {
    padding: 2.5rem 0;
  }

  /* Main page sections */
  .oxx-promo-banner,
  .oxx-shop-section,
  .oxx-flavors-section,
  .oxx-ingredients-section,
  .oxx-faq-section,
  .oxx-quality-section,
  .oxx-testimonials-section {
    padding: 2.5rem 0;
  }
}

/* ✅ Mobile-specific spacing for Quality */
@media (max-width: 640px) {
  .oxx-quality-section {
    padding: 2.25rem 0 2.25rem !important;   /* smaller inner padding */
    margin-top: 1.5rem !important;           /* reduce big margins */
    margin-bottom: 1.5rem !important;
  }

  .oxx-quality-grid {
    gap: 1.6rem;
  }

  .oxx-quality-title {
    margin-bottom: 0.65rem;
  }

  .oxx-quality-copy {
    margin-bottom: 1.2rem;
  }
}

/* ===========================
   HERO GRID LAYOUT (DESKTOP)
=========================== */
.oxx-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  grid-template-areas:
    "top image"
    "bottom image";
  column-gap: 1rem;
  row-gap: 1.5rem;
  align-items: center;
}

.oxx-hero-top {
  grid-area: top;
}

.oxx-hero-bottom {
  grid-area: bottom;
}

.oxx-hero-image-wrap {
  grid-area: image;
  display: flex;
  justify-content: flex-end;
}

/* keep things tidy */
.oxx-hero-bottom .oxx-hero-actions {
  margin-top: 1.25rem;
  margin-bottom: 1.1rem;
}


/* ===========================
   HERO – MOBILE ORDER (≤768px)
   top text → image → buttons/benefits
=========================== */
@media (max-width: 768px) {
  .oxx-hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "top"
      "image"
      "bottom";
    text-align: center;
  }

  .oxx-hero-image-wrap {
    justify-content: center;
    margin-top: 0rem;
  }

  .oxx-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .oxx-hero-bottom .oxx-hero-actions {
    justify-content: center;
  }

  .oxx-hero-quick-benefits {
    justify-content: center;
  }
}

/* Step 3 quantity block spans full width under image + panel on desktop */
.oxx-shop-block-qty-full {
  margin-top: 0rem;
}

/* desktop: actually span both columns */
@media (min-width: 1024px) {
  .oxx-shop-grid > .oxx-shop-block-qty-full {
    grid-column: 1 / -1 !important;
    width: 100%;                /* your chosen width */
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;          /* optional – adjust if needed */
  }
}

.oxx-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* or 'contain' if you don’t want cropping */
  display: block;
  border-radius: inherit; /* so it matches the card’s rounded corners */
}

/* === FIX HAMBURGER HOVER – MATCH PAGE THEME === */
.oxx-nav-toggle:hover,
.oxx-nav-toggle:focus {
  background: #f1f5f9 !important;        /* soft neutral gray (matches arrows) */
  border-color: #cbd5e1 !important;      /* subtle border */
  color: #374151 !important;             /* darker gray icon */
  box-shadow: 0 10px 20px rgba(15,23,42,.12) !important;
  transform: translateY(-1px);           /* gentle lift */
}


/* ======================
   BENEFITS – CARD GRID
====================== */

.oxx-benefits-section {
  padding: 3rem 0;
  background: var(--bg); /* same soft background as page */
}

.oxx-benefits-section .oxx-section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.oxx-benefits-section .oxx-section-heading h2 {
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  color: var(--foreground);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.oxx-benefits-section .oxx-section-heading p {
  color: var(--muted-foreground);
  max-width: 40rem;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Grid layout */
.oxx-benefits-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .oxx-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .oxx-benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Card */
.oxx-benefit-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 1.2rem 1.3rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: .2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.oxx-benefit-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
}

/* Icon tile */
.oxx-benefit-icon-img{
  width:24px;
  height:24px;
  flex:0 0 44px;
  object-fit:contain;
  border-radius:12px;
  background: var(--secondary-soft); /* collagens-style tint */
  padding:10px;
}

/* Per-card pastel backgrounds (like screenshot) */
.oxx-benefit-icon-energy    { background: #fef6e7; } /* soft yellow */
.oxx-benefit-icon-brain     { background: #ecf7ec; } /* soft green */
.oxx-benefit-icon-mushroom  { background: #eaf4ff; } /* soft blue */
.oxx-benefit-icon-gut       { background: #fdeff3; } /* soft pink */
.oxx-benefit-icon-probiotic { background: #ecf7ec; } /* soft green */
.oxx-benefit-icon-immune    { background: #fef6e7; } /* soft yellow */

/* Title + text */
.oxx-benefit-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary) !important;
}

.oxx-benefit-text {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ==========================
    CLARITY IMAGE
========================== */

.oxx-morning-clarity {
  position: relative;
  background-image: url("https://lp.organixx.com/wp-content/uploads/2026/02/Collagens-Coffee-Banner.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  color: #2b2b2b;
  min-height: 550px;
  display: flex;
  align-items: center;
}

/* ===== MOBILE HERO IMAGE SWAP ===== */
@media (max-width: 768px) {
  .oxx-morning-clarity {
    background-image: url("https://lp.organixx.com/wp-content/uploads/2026/02/CSC-Coffee-Banner-MOBILE.png");
    
    background-position: center center; /* better for stacked crops */
    min-height: 620px; /* optional if you need more vertical room */
  }
}


/* subtle left-to-right fade so text stays readable */
.oxx-morning-clarity::before {
  content: "";
  position: absolute;
  inset: 0;
    background: linear-gradient(
      to right,
      rgba(255,255,255,0.8),
      rgba(255,255,255,0.8),
      rgba(255,255,255,0.45),
      rgba(255,255,255,0)
    );
  pointer-events: none;
}

/* FULL-WIDTH container for this hero only */
.oxx-morning-clarity .oxx-container {
  width: 90%;
  max-width: 1000px;   /* ✅ match other sections */
  margin: 0 auto;      /* center within the page */
  padding: 0 1.5rem;   /* same side padding as rest of site */
}


.oxx-morning-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 450px;
}

.oxx-morning-copy {
  width: 100%;       /* take the full width of the container */
  margin-left: 0;
}

/* HEADINGS / BODY */
.oxx-morning-heading {
  font-size: clamp(2.7rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: #000;
  margin: 0 0 1.2rem;
}

.oxx-morning-subheading {
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  line-height: 1.25;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  margin: 0 0 1.2rem;
}

.oxx-morning-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

/* ==========================
   RESPONSIVE TWEAKS
========================== */

/* Tablet-ish */
@media (max-width: 1024px) {
  .oxx-morning-clarity {
    background-position: center;
  }

  .oxx-morning-clarity .oxx-container {
    padding: 0 2rem;
  }

  .oxx-morning-copy {
    max-width: 32rem;
  }
  
.oxx-benefits-section .oxx-section-heading h2 {
  max-width: 800px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

}

/* Mobile */
@media (max-width: 768px) {
  .oxx-morning-clarity {
    align-items: flex-end;
    min-height: 220px !important; /* override the desktop min-height */
    max-height: 420px;
    background-position: center;
        align-items: center; /* ⬅️ center text vertically */
  }

  .oxx-morning-clarity::before {
    background: linear-gradient(
      to top,
      rgba(255,255,255,0.96),
      rgba(255,255,255,0.8),
      rgba(255,255,255,0.45),
      rgba(255,255,255,0)
    );
  }

  .oxx-morning-clarity .oxx-container {
    padding: 0 1.5rem;
  }

  .oxx-morning-inner {
    padding: 2.5rem 0 3rem;
  }

  .oxx-morning-copy {
    max-width: 100%;
  }

  .oxx-morning-heading {
    font-size: 2.1rem;
  }

  .oxx-morning-subheading {
    font-size: 1.05rem;
  }

  .oxx-morning-body {
    font-size: 0.98rem;
  }
}

/* Very small phones */
@media (max-width: 480px) {
      .oxx-morning-clarity {
    align-items: flex-end;
    min-height: 220px !important; /* override the desktop min-height */
    max-height: 520px;
    background-position: center top;
    align-items: flex-end; /* ⬅️ center text vertically */
        
  }
  
    .oxx-morning-clarity::before {
    background: linear-gradient(
      to top,
    rgba(255, 255,255, 0.85) 0%,    /* dark green bottom */
    rgba(255, 255,255, 0.65) 10%,   /* mid fade */
    rgba(255, 255,255, 0.25) 20%      /* transparent top */
    );
  }
  
  .oxx-morning-inner {
    padding: 2rem 0 2.5rem;
    display: center;
  }

  .oxx-morning-heading {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
  }
  
    .oxx-morning-body {
        color: #000;
  }
  
    .oxx-morning-heading {
    font-size: 1.1rem;
  }
}


/* Desktop and larger */
@media (min-width: 1024px) {
  
  .oxx-morning-clarity .oxx-container {
    padding-left: 3rem;   /* adjust 4–10rem depending on how far left you want it */
    padding-right: 0;
    max-width: 1400px;    /* keeps container from squeezing into the center */
  }

  .oxx-morning-copy {
    margin-left: 0 !important;  /* kill old left margins at desktop */
        max-width: 50rem;
  }
}

.oxx-gallery-thumbs {
  display: flex;
  gap: .65rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: .35rem;

  /* prevents blowing up the layout */
  max-width: 100%;
  flex-wrap: nowrap;

  /* OPTIONAL: smooth experience */
  scroll-snap-type: x mandatory;
}

.oxx-gallery-thumb {
  flex: 0 0 4.5rem; 
  width: 4.5rem;
  height: 4.5rem;
  scroll-snap-align: center;
}

/* Gallery thumbs: show ~5 at a time, scroll for the rest */
.oxx-gallery-thumbs {
  display: flex;
  gap: .65rem;
  margin-top: 1rem;
  padding-bottom: .35rem;

  overflow-x: auto;        /* horizontal scroll */
  max-width: 24rem;        /* ≈ 5 thumbs wide */
  margin-left: auto;       /* center under main image */
  margin-right: auto;
}

@media (max-width: 480px) {
  .oxx-gallery-thumbs {
    max-width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}

/* FOOTER – Dark Organixx style */
.oxx-footer {
  background: #538F24; /* dark green */
  color: #fff;
  padding: 3rem 0;
  font-size: 0.9rem;
}

.oxx-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.oxx-footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 3rem;
  margin-bottom: 2.5rem;
}

.oxx-footer-brand {
  grid-column: span 2;
}

.oxx-footer-logo {
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1); /* make logo white on dark bg */
}

/* Contact */
.oxx-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.oxx-footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(247, 249, 244, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.oxx-footer-contact-link:hover {
  color: var(--background, #f7f9f4);
}

.oxx-footer-contact-icon {
  font-size: 0.9rem;
}

/* Social icons */
.oxx-footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.oxx-footer-social-link {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 249, 244, 0.14);
  color: var(--background, #f7f9f4);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.oxx-footer-social-link:hover {
  background: rgba(247, 249, 244, 0.22);
  transform: translateY(-1px);
  color: #fff;
}

.oxx-footer-social-icon {
  width: 16px;
  height: 16px;
}

.oxx-footer-social-bbb {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
}

/* Columns */
.oxx-footer-column {
  min-width: 0;
}

.oxx-footer-heading {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.oxx-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
}

.oxx-footer-link {
  display: block;
  color: rgba(247, 249, 244, 0.7) !important;
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color 0.2s ease;
}

.oxx-footer-link:hover {
  color: #fff !important;
}

.oxx-footer-link-strong {
  font-weight: 600;
}

/* Bottom strip */
.oxx-footer-bottom {
  border-top: 1px solid rgba(247, 249, 244, 0.16);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(247, 249, 244, 0.6);
  font-size: 0.8rem;
}

/* Responsive */
@media (min-width: 768px) {
  .oxx-footer-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .oxx-footer-brand {
    grid-column: span 1;
  }
}


/* INGREDIENTS LIGHTBOX */
.oxx-ingredients-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.oxx-ingredients-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.oxx-ingredients-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.oxx-ingredients-dialog {
  position: relative;
  z-index: 1;

  /* let the dialog size itself around the image */
  width: auto;
  max-width: min(90vw, 760px);   /* keeps it responsive */
  max-height: 90vh;

  background: #ffffff;
  border-radius: 24px;
  padding: 1.5rem 1.5rem 1.25rem; /* slightly tighter padding */
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;              /* so zoomed img stays inside rounded corners */
}


.oxx-ingredients-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

/* make the image fill most of the dialog */
#oxx-ingredients-img {
  max-width: 100%;
  max-height: 100vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  display: block;
}

.oxx-ingredients-close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  border: none;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #0f172a;
  z-index: 3;
}

.oxx-ingredients-close:hover {
  background: var(--primary) !important;
  color: #ffffff !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(11, 127, 138, 0.18); /* soft green glow */
  border-radius: 100px;
}

/* FIX MAGENTA HOVER ON FLAVOR BUTTONS */
.oxx-ingredients-trigger,
.oxx-ingredients-trigger:visited {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
  background: #ffffff !important;
  transition: all .22s ease;
}

/* HOVER STATE – MATCHES REST OF SITE */
.oxx-ingredients-trigger:hover,
.oxx-ingredients-trigger:focus {
  background: var(--primary) !important;
  color: #ffffff !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(11, 127, 138, 0.18); /* soft green glow */
}

/* ACTIVE (CLICK) STATE */
.oxx-ingredients-trigger:active {
  transform: scale(0.97);
}

.oxx-qty-image {
  margin-top: 2rem;
  display: flex;
  justify-content: center !important;
}

.oxx-qty-image img {
  max-width: 460px;  /* tweak as needed */
  width: 100%;
  height: auto;
  display: block;
}

/* Lightbox container */
#oxx-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 9999;
  padding: 2rem;
  justify-content: center;
  align-items: center;
}

/* Make the image WAY larger on desktop */
#oxx-lightbox img {
  max-width: 90vw;   /* allow huge width */
  max-height: 90vh;  /* allow huge height */
  width: auto;
  height: auto;
  border-radius: 12px;
}

/* base image in lightbox */
#oxx-ingredients-img {
  max-width: 100%;
  max-height: calc(90vh - 4rem);
  width: auto;
  height: auto;
  border-radius: 16px;
  display: block;
  transition: transform .28s ease, box-shadow .28s ease;
  cursor: zoom-in;
  position: relative;
  z-index: 2; /* so it can sit on top if scaled */
}

/* CLICKED (zoomed) state */
#oxx-ingredients-img.zoomed {
  transform: scale(1.35);       /* big zoom */
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
  cursor: zoom-out;
}



/* MOBILE: make lightbox and image much larger */
@media (max-width: 768px) {

  .oxx-ingredients-dialog {
    width: 95vw !important;
    max-width: 95vw !important;
    padding: 1rem !important;
    border-radius: 16px !important;
  }

  #oxx-ingredients-img {
    max-width: 100% !important;
    max-height: 80vh !important; /* huge but still safe */
    width: 100% !important;
    height: auto !important;
  }
} /* closes the @media */

/* ----- Fix flavor pill wrapping in Step 2 on mobile & desktop ----- */
.oxx-shop-panel .oxx-flavor-pill {
  display: flex;                 /* stack the lines */
  flex-direction: column;
  align-items: flex-start;
  white-space: normal;           /* allow wrapping */
  overflow-wrap: anywhere;       /* break long phrases if needed */
}

/* Make text a bit smaller on small screens so it fits comfortably */
@media (max-width: 480px) {
  .oxx-shop-panel .oxx-flavor-pill {
    font-size: 0.75rem;
    line-height: 1.25;
  }
}

/* Price rows + strike-through variants */
.oxx-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.oxx-price-strike {
  font-size: 1rem;
  color: #9ca3af;
  text-decoration: line-through;
}

/* Main price inside cards (Step 1 + quantity) */
.oxx-price-main {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
}

.oxx-price-main-sm {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
}

.oxx-qty-price {
  display: flex;
  align-items: baseline;
  gap: 0.22rem;
  margin-top: 0.1rem;
}

.oxx-qty-per-box-label {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Quantity-only strike we can hide when needed */
.oxx-price-strike-qty {
  transition: opacity .15s ease;
}

.oxx-price-strike-qty.oxx-price-strike-hidden {
  opacity: 0;
  visibility: hidden;
}

/* FREE SHIPPING pill under total */
.oxx-free-shipping-label {
  margin-top: 0.2rem;
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: #fee2e2;   /* light red */
  color: #b91c1c;        /* deep red */
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* subscribe note wrapper – slightly tighter */
.oxx-subscribe-note-wrap {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Tighter Step 3 quantity block to reduce whitespace */
.oxx-shop-block-qty-full {
  padding: 0.9rem 1rem 1rem;
}

.oxx-shop-block-qty-full .oxx-shop-block-title {
  margin-bottom: 0.5rem;
}

.oxx-shop-block-qty-full .oxx-qty-row {
  margin-bottom: 0.25rem;
}

.oxx-shop-block-qty-full .oxx-qty-card {
  padding: 0.5rem 0.65rem 0.55rem;
  font-size: 0.8rem;
}

.oxx-shop-block-qty-full .oxx-shop-total {
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  /* Quantity cards container – tighter gap */
  .oxx-shop-block-qty-full .oxx-qty-row {
    gap: 0.5rem;
  }

  /* Each qty card */
  .oxx-shop-block-qty-full .oxx-qty-card {
    padding: 0.55rem 0.55rem 0.5rem;
    font-size: 0.78rem;
    /* DO NOT hide overflow or the badge gets chopped */
    overflow: visible;
  }

  /* The big “1 / 3 / 6” number */
  .oxx-shop-block-qty-full .oxx-qty-card span[style*="font-weight:700"] {
    font-size: 0.9rem !important;
  }

  /* Price stack inside qty cards */
  .oxx-shop-block-qty-full .oxx-qty-price {
    display: flex;
    flex-direction: column;      /* stack strike above main price */
    align-items: flex-start;
    gap: 0.05rem;
    margin-top: 0.15rem;
  }

  .oxx-shop-block-qty-full .oxx-price-strike {
    font-size: 0.75rem;
  }

  .oxx-shop-block-qty-full .oxx-price-main-sm {
    font-size: 0.85rem;
  }

  .oxx-shop-block-qty-full .oxx-qty-per-box-label {
    font-size: 0.7rem;
  }

  /* BEST VALUE pill – keep it closer to the top of the card */
  .oxx-shop-block-qty-full .oxx-qty-badge {
    top: -8px;
    padding: 0.12rem 0.45rem;
    font-size: 0.6rem;
  }
}


.oxx-qty-card { position: relative; }

.oxx-qty-savings-pill{
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: var(--muted);
  color: #var(--primary);
  letter-spacing: .02em;
  line-height: 1;
}

/* =========================
   <479px QUANTITY ROW – TIGHTEN + CENTER
   ========================= */
@media (max-width: 479px) {

  /* 1. Kill uneven container padding */
  .oxx-shop-block-qty-full,
  .oxx-shop-block-qty {
    padding-left: 6px !important;   /* was too big */
    padding-right: 6px !important;
  }

  /* 2. Tighten the row spacing (THIS is the main offender) */
  .oxx-qty-row,
  .oxx-qty-grid,
  .oxx-qty-cards {
    justify-content: center !important;
    gap: 6px !important;            /* reduce space BETWEEN cards */
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* 3. Remove hidden left bias coming from cards */
  .oxx-qty-card {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 10px !important;  /* equal internal padding */
    padding-right: 10px !important;
  }

  /* 4. Make sure nothing is offsetting the first card */
  .oxx-qty-card:first-child {
    margin-left: 0 !important;
  }

  /* 5. Ensure pills/badges aren’t forcing extra width */
  .oxx-qty-savings-pill,
  .oxx-best-value,
  .oxx-pill-best {
    left: auto !important;
    right: 8px !important;
  }
}

/* =========================
   <479px: lift SAVE % pill only
   ========================= */
@media (max-width: 479px) {
  .oxx-qty-savings-pill {
    transform: translateY(-20px) !important;
  }
}

/* =========================
   <479px: reduce purchase-type price sizing
   ========================= */
@media (max-width: 479px) {

  /* Main price number on purchase cards */
  .oxx-purchase-option .oxx-price,
  .oxx-purchase-option .oxx-price-now,
  .oxx-purchase-option .oxx-price-main,
  .oxx-purchase-option .oxx-price-value {
    font-size: 16px !important;   /* was ~18–20 */
    line-height: 1.1 !important;
  }

  /* Strikethrough price */
  .oxx-purchase-option .oxx-price-strike,
  .oxx-purchase-option .oxx-price-was {
    font-size: 12px !important;
    line-height: 1.1 !important;
  }

  /* "/box" or suffix text */
  .oxx-purchase-option .oxx-per-box,
  .oxx-purchase-option .oxx-price-suffix {
    font-size: 11px !important;
    line-height: 1.1 !important;
  }
}

/* Desktop header: centered above grid */
.oxx-shop-header-desktop { display: none; }

@media (min-width: 1024px) {
  .oxx-shop-header-mobile { display: none; }
  .oxx-shop-header-desktop {
    display: block;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 1.25rem;
  }
}

@media (min-width: 1024px){
  .oxx-qty-card .oxx-qty-price{
    margin-top: 0.45rem !important; /* was 0.15rem */
  }
}


/* =========================
   DESKTOP: show desktop header, hide mobile header
   ========================= */
.oxx-shop-header-desktop { display: none; }

@media (min-width: 1024px) {
  /* HARD HIDE mobile header (even if something else tries to show it) */
  .oxx-shop-header-mobile {
    display: none !important;
  }

  /* SHOW desktop header */
  .oxx-shop-header-desktop {
    display: block !important;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 22px;
  }
}
@media (min-width: 1024px) {
  .oxx-shop-header-desktop .oxx-shop-rating,
  .oxx-shop-header-desktop .oxx-stars {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 6px auto 8px !important;
  }
}

/* SHOP header visibility */
.oxx-shop-header-mobile { display: none; }
.oxx-shop-header-desktop { display: block; }

@media (max-width: 768px) {
  .oxx-shop-header-mobile { display: block; }
  .oxx-shop-header-desktop { display: none; }
}

/* Desktop: widen shop section for better balance */
@media (min-width: 1200px) {
  .oxx-shop-section .oxx-container {
    max-width: 1320px; /* try 1280–1360 if needed */
  }
}

/* ============================
   DESKTOP: Wider section + tighter 1/2/3 blocks
   ============================ */
@media (min-width: 1024px) {

  /* 1) Give the whole section more room */
  :root {
    --container-width: 1240px; /* was 1120px */
  }

  /* 2) Reduce the left/right gap slightly */
  .oxx-shop-grid {
    gap: 2rem; /* was 2.5rem */
    grid-template-columns: 1.08fr 1fr; /* tiny rebalance */
  }

  /* 3) Make the gallery a little tighter */
  .oxx-gallery-main {
    padding: 1.2rem;      /* was 1.8rem */
    min-height: 340px;    /* was 380px */
    border-radius: 22px;  /* optional: slightly tighter */
  }

  /* thumbs slightly smaller (optional) */
  .oxx-gallery-thumb {
    width: 3.75rem !important;
    height: 3.75rem !important;
    flex: 0 0 3.75rem !important;
  }

  /* 4) Reduce internal whitespace in the "blocks" themselves */
  .oxx-shop-block {
    padding: .85rem .85rem .95rem; /* was 1.1rem 1rem 1.2rem */
  }

  /* 5) Kill default margins inside cards (THIS is the big one) */
  .oxx-shop-block p,
  .oxx-shop-block h1,
  .oxx-shop-block h2,
  .oxx-shop-block h3,
  .oxx-shop-block h4,
  .oxx-shop-block h5,
  .oxx-shop-block h6 {
    margin: 0;
  }

  /* 6) Purchase type cards: tighter height */
  .oxx-purchase-option {
    padding: .7rem .8rem;  /* was .85rem .9rem */
    margin-bottom: .5rem;  /* was .6rem */
  }

  /* tighten text line-height inside purchase cards */
  .oxx-purchase-option * {
    line-height: 1.2;
  }

  /* 7) Flavor pills: tighter */
  .oxx-flavor-pill {
    padding: .6rem .7rem;  /* was .7rem .8rem */
  }

  .oxx-flavor-pill * {
    line-height: 1.2;
  }

  /* 8) Quantity cards: tighter */
  .oxx-qty-row {
    gap: .6rem; /* was .7rem */
  }

  .oxx-qty-card {
    padding: .6rem .65rem .55rem; /* was .7rem .7rem .65rem */
  }

  .oxx-qty-card * {
    line-height: 1.2;
  }
}

/* =========================
   GLOBAL SECTION HEADINGS – BIGGER
========================= */

.oxx-section-heading h2,
.oxx-shop-title,
.oxx-morning-subheading,
.oxx-promo-title {
  font-size: clamp(2.1rem, 3vw, 2.75rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0.85rem;
}

/* Subtext stays readable and balanced */
.oxx-section-heading p,
.oxx-shop-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 760px;
  margin-inline: auto;
}

/* =========================
   CTA / SHOP SECTION PADDING
========================= */
.oxx-shop-section {
  padding-top: 3rem;     /* was likely 4–6rem */
  padding-bottom: 3rem;
}

/* Make every row full-width so icon position is identical */
.oxx-benefit-row{
  width: 100%;
  display: grid;
  grid-template-columns: 52px 1fr; /* fixed icon lane */
  align-items: center;
  column-gap: 20px;
  justify-items: start;            /* keep content left-aligned */
}

/* Keep icon pinned to the same spot */
.oxx-benefit-icon-img{
  width: 64px;
  height: 64px;
  object-fit: contain;
  justify-self: start;
}

/* Make sure card never centers the row */
.oxx-benefit-card{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 26px;
}

/* Tablet & down: 2 x 3 layout */
@media (max-width: 768px) {
  .oxx-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px; /* adjust spacing if needed */
  }
  .oxx-benefit-card{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 20px;
}
}

/* MOBILE STACK (optional but recommended) */
@media (max-width: 479px) {
  .oxx-benefit-row {
    gap: 10px;
  }

  .oxx-benefit-icon-img {
    width: 48px;
    height: 48px;
  }
   .oxx-benefits-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 18px; /* adjust spacing if needed */
}
}

/* HERO QUICK BENEFITS — image icons */
.oxx-hero-quick-item{
  display: flex;
  align-items: center;
  gap: 10px;
}

.oxx-hero-quick-icon-img{
  width: 24px;     /* bump to 24–26 if you want louder */
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Optional: if your old emoji wrapper still exists, hide it */
.oxx-hero-quick-icon{
  display: none;
}

/* Anchor offset fix for mobile */
@media (max-width: 768px) {
  section[id] {
    scroll-margin-top: 96px; /* adjust to your header height */
  }
}

/* default */
.oxx-nav-mobile { display: none; }

/* only allow opening on mobile/tablet */
@media (max-width: 1023px) {
  .oxx-nav-mobile.is-open { display: flex; }
}

@media (max-width: 768px) {
    .oxx-footer-brand {
        width: 200px;
    }
}

/* Row layout */
.oxx-benefit-row{
  display:flex;
  align-items:flex-start;
  gap:16px;
}

/* Icon container (Collagens look) */
.oxx-benefit-icon{
  width:44px;
  height:44px;
  border-radius:12px;
  background: var(--primary-soft); /* soft peach */
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;

  /* This controls SVG stroke color */
  color: var(--primary);
}

/* SVG sizing */
.oxx-benefit-icon svg{
  width:22px;
  height:22px;
}

/* Text */
.oxx-benefit-text{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.oxx-benefit-title{
  margin:0;
  font-size:1.1rem;
  line-height:1.2;
  color: #000 !important;
}

.oxx-benefit-desc{
  margin:0;
  font-size:0.95rem;
  line-height:1.45;
  color: var(--muted-foreground);
}

/* ========== COLLAGEN TYPES SECTION ========== */
.oxx-collagen-types{
  padding: clamp(48px, 6vw, 84px) 0;
  background: #fff;
}

.oxx-types-heading{
  text-align:center;
  max-width: 860px;
  margin: 0 auto 34px;
}

.oxx-types-heading h2{
  margin:0 0 10px;
  font-size: clamp(2rem, 2.3vw + 1rem, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.oxx-types-heading p{
  margin:0 auto;
  color: var(--muted-foreground, #6b7280);
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 620px;
  padding-top: 15px;
}

.oxx-types-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.oxx-type-card{
  position:relative;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  padding: 34px 28px 28px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  text-align:center;
  overflow:hidden;
}

.oxx-type-pill{
  position:absolute;
  top: 10px;
  right: 16px;
  font-size: 0.82rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--secondary-foreground); /* soft orange */
  color: var(--secondary); /* warm icon/text tone */
  font-weight: 600;
}

.oxx-type-percent{
  margin-top: 12px;
  font-size: clamp(3.1rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.oxx-type-title{
  margin: 14px 0 10px;
  font-size: 1.45rem;
  font-weight: 700;
  color: #000 !important;
}

.oxx-type-desc{
  margin: 0 auto;
  max-width: 360px;
  color: var(--muted-foreground, #6b7280);
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 900px){
  .oxx-types-grid{ grid-template-columns: 1fr; }
  .oxx-type-card{ text-align:left; }
  .oxx-type-percent{ text-align:left; }
  .oxx-type-desc{ margin-left:0; }
  .oxx-type-pill{ right: 14px; }
}

/* ==============================
   CTA SPACING MATCH (Restore → Collagens)
   Requires: .oxx-shop-panel oxx-shop-panel--no-flavor
============================== */

/* overall stack spacing */
.oxx-shop-panel{
  gap: 1.1rem; /* match Restore */
}

/* Step cards get taller when no flavor step exists */
.oxx-shop-panel--no-flavor .oxx-shop-block{
  padding: 1.35rem 1.2rem 1.35rem;
}

.oxx-shop-panel--no-flavor .oxx-purchase-option{
  padding: 1rem 1rem;
  margin-bottom: .75rem;
}

/* Quantity container gets taller */
.oxx-shop-panel--no-flavor .oxx-shop-block-qty-full{
  padding: 1.25rem 1.5rem 1.25rem;
}

/* Quantity cards: taller + more breathing room */
.oxx-shop-panel--no-flavor .oxx-qty-card{
  padding: 1.15rem 1.1rem 1.05rem;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* If you're using the Restore-style inner layout */
.oxx-qty-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:.25rem;
}
.oxx-qty-num{ font-weight: 700; }

/* Selected state gets a touch more room */
.oxx-shop-panel--no-flavor .oxx-qty-card.active{
  padding: 1.25rem 1.2rem 1.15rem;
}

/* Total row: more separation + top divider */
.oxx-shop-total{
  margin-top: 10px !important;
  padding-top: 10px !important;
  gap: 15px !important;
  align-items: center !important;
  border-top: 1px solid #f1f5f9 !important;
}

/* Space under "Total Today" */
.oxx-shop-total > div:first-child > div:first-child{
  margin-bottom: 10px !important;
}

/* Price row spacing */
.oxx-price-row{
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  gap: 10px !important;
  align-items: baseline !important;
}

.oxx-price-big{
  font-size: 30px !important;
  line-height: 1.1 !important;
}

/* Free shipping pill spacing */
#oxx-free-shipping-label{
  margin-top: 6px !important;
  padding: 6px 14px !important;
}

/* Subscription note spacing */
.oxx-subscribe-note-wrap{
  margin-top: 16px !important;
  padding-top: 6px !important;
  line-height: 1.45 !important;
}

/* Fix ghost text under SAVE pills */
.oxx-qty-top {
  align-items: center;
  line-height: 1;
}

.oxx-qty-save {
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

/* Ensure price block owns vertical space */
.oxx-qty-card {
  overflow: hidden;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .oxx-shop-panel--no-flavor {
    margin-top: 90px !important;
  }
}

h1,h2,h3,h4,h5,h6 {
    font-family: Cormorant Garamond,serif;
    font-weight: 600;
    letter-spacing: -.025em
}



/* Hero pills */
.oxx-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.75rem;
  max-width: 40rem;
}

.oxx-hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.05);
  white-space: nowrap;
}

.oxx-shop-block-title {
    font-family: Cormorant Garamond,serif;
    font-weight: 600;
    font-size: 20px;
}

/* =========================
   SHOP HEADER — STARS + INLINE TEXT
========================= */

.oxx-shop-rating{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .25rem;
}

.oxx-stars{
  color: #FFB547; /* or your existing star color */
  font-size: 1rem;
  line-height: 1;
  letter-spacing: .05em;
}

.oxx-rating-text{
  font-size: .85rem;
  font-weight: 600;
  color: #6b7280; /* soft neutral */
  line-height: 1;
  white-space: nowrap;
}

.oxx-shop-rating{
  display: inline-flex !important;
  align-items: center;
  justify-content: center !important;
  width: fit-content !important;
  gap: .5rem;
  margin: .6rem auto 0;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.03);
}
/* =========================
   DESKTOP: FIX SHOP RATING BAR (STARS + TEXT STAY TOGETHER)
========================= */
@media (min-width: 1024px){
  .oxx-shop-header-desktop .oxx-shop-rating{
    display: inline-flex !important;
    align-items: center;
    justify-content: center !important;
    width: fit-content !important;   /* stop full-width bar */
    margin: 10px auto 12px !important;

    /* keep your pill look, but make it fit content */
    padding: .4rem 1rem;
    border-radius: 999px;
    background: rgba(0,0,0,0.03);
  }

  .oxx-shop-header-desktop .oxx-stars{
    display: inline-flex !important;
    width: auto !important;          /* stop stars being 100% width */
    margin: 0 !important;
  }

  .oxx-shop-header-desktop .oxx-rating-text{
    margin: 0 !important;
    white-space: nowrap;
  }
}

/* Mobile hero CTA alignment */
@media (max-width: 768px) {
  .oxx-hero-actions {
    display: flex;
    flex-direction: column; /* stack buttons */
    align-items: center;    /* center horizontally */
    gap: 12px;
    width: 100%;
  }
  
  .oxx-hero-pills {
    display: flex;
    justify-content: center; /* centers rows */
    align-items: center;
    flex-wrap: wrap;         /* allows 2x2 layout */
    gap: 10px 12px;
    text-align: center;
  }
  
  .oxx-hero-kicker {
    display: flex;
    justify-content: center; /* centers rows */
    text-align: center;
  }
  
  .oxx-hero-actions .oxx-btn {
    width: 100%;
    max-width: 280px; /* prevents mega-wide buttons */
    text-align: center;
  }
}

@media (max-width: 768px) {
  .oxx-hero-top { display: contents; } /* lets children participate in the grid */

  .oxx-hero-kicker   { grid-area: kicker; }
  .oxx-hero-title    { grid-area: title; }
  .oxx-hero-subtitle { grid-area: sub; }
  .oxx-hero-image-wrap { grid-area: image; }
  .oxx-hero-actions  { grid-area: actions; }
  .oxx-hero-pills    { grid-area: pills; }

  .oxx-hero-grid{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "sub"
      "image"
      "actions"
      "pills";
    gap: 5px;
  }
}

@media (max-width: 768px) {
  .oxx-hero-actions {
    margin-top: 32px; /* increase as needed */
  }
}

@media (max-width: 768px) {
  .oxx-hero-pills {
    margin-top: 0px; /* try 4–12px */
  }
}

/* =========================
   CTA THUMBNAILS — BIGGER
   Paste at END of CSS
========================= */

/* Bigger thumbs */
.oxx-gallery-thumb{
  width: 5rem !important;
  height: 5rem !important;
  flex: 0 0 5rem !important;
}

/* Let the thumb rail breathe more (still scrolls nicely) */
.oxx-gallery-thumbs{
  max-width: 40.5rem;           /* was 35rem in your file */
  gap: .85rem;                /* slightly more spacing */
  padding-bottom: .5rem;
}

/* Mobile: keep scroll, don’t force wrapping */
@media (max-width: 480px){
  .oxx-gallery-thumbs{
    max-width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
      gap: .5rem; 
  }

  .oxx-gallery-thumb{
    width: 3.75rem !important;
    height: 3.75rem !important;
    flex: 0 0 3.75rem !important;
  }
}

/* ✅ HERO KICKER: keep it content-width(not full-width) */
@media (max-width: 768px){
  .oxx-hero-kicker.oxx-badge{
    display: inline-flex !important;
    width: fit-content !important;
    margin: 0 auto 1rem !important; /* centers it */
  }
}

/* ✅ COLLAGEN TYPES: center cards up to 768px */
@media (max-width: 768px){
  .oxx-types-grid{
    grid-template-columns: 1fr !important;
    justify-items: center;          /* centers the cards */
  }

  .oxx-type-card{
    text-align: center !important;
    width: 100%;
    max-width: 560px;               /* nice centered card width */
  }

  .oxx-type-percent{
    text-align: center !important;
  }

  .oxx-type-desc{
    margin: 0 auto !important;
  }
}

/* ✅ SHOP RATING: prevent overflow on smaller widths */
@media (max-width: 1023px){
  .oxx-shop-rating{
    max-width: 100%;
    width: 100%;
    flex-wrap: wrap;          /* allow wrapping */
    justify-content: center;
    text-align: center;
    padding: .45rem .75rem;   /* keeps pill look */
    box-sizing: border-box;
  }

  .oxx-rating-text{
    white-space: normal !important; /* allow wrap */
    line-height: 1.2;
    max-width: 100%;
  }
}

/* Tiered Morning Clarity Heading */
.oxx-morning-heading.tiered {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  max-width: 100%;
}

.oxx-morning-heading .tier {
  display: block;
  width: 100%;
}

/* Alignment per line */
.oxx-morning-heading .tier.left {
  text-align: left;
}

.oxx-morning-heading .tier.center {
  text-align: center;
}

.oxx-morning-heading .tier.right {
  text-align: right;
}

.oxx-morning-clarity .oxx-container {
  max-width: 1480px; /* or 1360px */
}

@media (max-width: 768px) {
  .oxx-morning-heading.tiered .tier {
    text-align: left !important;
    font-size: 32px;
  }
}

/* Reserve consistent space inside qty cards (prevents OTP from looking “smaller”) */
.oxx-qty-savings-pill {
  min-height: 22px;          /* reserves “SAVE XX%” row */
  align-items: center;
}

.oxx-price-strike-qty {
  min-height: 18px;          /* reserves strike row */
  display: block;
}

.oxx-qty-card {
  padding: 1rem 1rem 0.95rem;  /* your consistent padding */
}

  /* ===== WHY ORGANIXX (scoped) ===== */
  .oxx-why {
    --oxx-green: #2f7d32;           /* brand-ish green */
    --oxx-cream: #e9e2d6;           /* warm beige panel */
    --oxx-card:  #ffffff;
    --oxx-text:  #3b3b3b;
    --oxx-muted: #5c5c5c;

    /* If Elementor adds weird spacing, this keeps it stable */
    margin: 0;
  }

  .oxx-why__frame {

    overflow: hidden;
    background: #fff;
    max-width: 1140px;  /* matches typical Elementor section width */
    margin: 0 auto;
    font-family: Lato;
  }

  .oxx-why__hero {
    display: block;
    width: 100%;
    height: auto;
  }

  /* Desktop vs mobile image swap */
  .oxx-why__hero--mobile { display: none; }
  @media (max-width: 767px) {
    .oxx-why__hero--desktop { display: none; }
    .oxx-why__hero--mobile  { display: block; }
  }

  .oxx-why__panel {
    background: var(--oxx-cream);
    padding: 26px;
  }

  .oxx-why__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .oxx-why__card {
    background: var(--oxx-card);
    border-radius: 18px;
    padding: 26px 26px 24px;
    text-align: center;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.03);
  }

  .oxx-why__icon {
    width: 120px;
    height: auto;
    margin: 0 auto 14px;
    display: block;
  }

  .oxx-why__title {
    margin: 0 0 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--oxx-green);
    font-size: 24px;
    line-height: 1.2;
    font-family: Lato;
  }

  .oxx-why__text {
    margin: 0;
    color: var(--oxx-muted);
    font-size: 18px;
    line-height: 1.55;
  }

  /* Tablet */
  @media (max-width: 1024px) {
    .oxx-why__panel { padding: 20px; }
    .oxx-why__grid  { gap: 18px; }
    .oxx-why__card  { padding: 22px; }
  }

  /* Mobile */
  @media (max-width: 767px) {
    .oxx-why__panel { padding: 18px; }
    .oxx-why__grid  { grid-template-columns: 1fr; }
    .oxx-why__icon  { width: 110px; }
    .oxx-why__title { font-size: 22px; }
    .oxx-why__text  { font-size: 18px; }
  }

  /* Small phones */
  @media (max-width: 450px) {
    .oxx-why__panel { padding: 14px; }
    .oxx-why__card  { padding: 18px; }
  }
  
    /* ===== FIX #1: Badge “float up” like the original ===== */
  .oxx-why .oxx-why__icon{
    /* pick ONE approach; translate feels closest to Elementor */
    transform: translateY(-88px);
    margin-bottom: -65px; /* helps keep spacing tight after moving up */
  }

  /* If your theme is also applying transforms, force it: */
  /* .oxx-why .oxx-why__icon{ transform: translateY(-18px) !important; } */

  /* Mobile tweak (often needs slightly less lift) */
  @media (max-width: 767px){
    .oxx-why .oxx-why__icon{
      transform: translateY(-14px);
      margin-bottom: 0;
    }
  }

  /* ===== FIX #2: Heading color getting overridden to white ===== */
  .oxx-why .oxx-why__card .oxx-why__title{
    color: var(--oxx-green) !important;
  }

  /* Optional: if you want the heading closer to your screenshot */
  .oxx-why .oxx-why__title{
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  
  /* Add vertical space to account for lifted badge */
.oxx-why .oxx-why__grid{
  row-gap: 86px;
}


/* Give the cream section breathing room from the hero image */
.oxx-why .oxx-why__panel{
  padding-top: 80px; /* key fix */
}

/* =========================
   MOBILE OPTIMIZATION OVERRIDES
   Paste at BOTTOM of CSS
   ========================= */
@media (max-width: 767px){

  /* Make the cream panel feel intentional (less dead space) */
  .oxx-why .oxx-why__panel{
    padding: 18px;
    padding-top: 34px;  /* was 80px — too much on mobile */
  }

  /* 1-column stack spacing */
  .oxx-why .oxx-why__grid{
    grid-template-columns: 1fr;
    row-gap: 26px;      /* was 86px — causes big gaps */
    gap: 50px;          /* keeps horizontal/vertical consistent */
  }

  /* Keep cards from touching screen edges + keep it pretty */
  .oxx-why .oxx-why__card{
    padding: 22px 18px 20px;
    max-width: 520px;   /* optional: prevents super-wide cards on tablets */
    margin: 0 auto;     /* centers the card */
  }

  /* Badge “overlap” on mobile (smaller + less aggressive lift) */
  .oxx-why .oxx-why__icon{
    width: 104px;                 /* slightly smaller */
    transform: translateY(-54px); /* keeps the overlap feel */
    margin-bottom: -28px;         /* pulls title upward */
  }

  /* Typography scale for mobile */
  .oxx-why .oxx-why__title{
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .oxx-why .oxx-why__text{
    font-size: 15.5px;
    line-height: 1.6;
  }
}

/* Small phones */
@media (max-width: 450px){
  .oxx-why .oxx-why__panel{
    padding: 14px;
    padding-top: 48px;
  }

  .oxx-why .oxx-why__card{
    padding: 20px 16px 18px;
  }

  .oxx-why .oxx-why__icon{
    width: 96px;
    transform: translateY(-50px);
    margin-bottom: -30px;
  }

  .oxx-why .oxx-why__title{ font-size: 19px; }
  .oxx-why .oxx-why__text{ font-size: 15px; }
}
@media (max-width: 1024px) {
    .oxx-testimonials-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media (max-width: 1024px) {
    .oxx-faq-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media (max-width: 1024px) {
    .oxx-ingredients-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* =========================
   FIX #2: Correct header switching + center it on tablet
   ========================= */

/* Default: show MOBILE header up to 1023 */
.oxx-shop-header-mobile { display: block !important; }
.oxx-shop-header-desktop { display: none !important; }

/* Desktop header only from 1024+ */
@media (min-width: 1024px) {
  .oxx-shop-header-mobile { display: none !important; }

  .oxx-shop-header-desktop{
    display: block !important;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 22px;
  }

  /* keep rating centered too */
  .oxx-shop-header-desktop .oxx-shop-rating{
    justify-content: center;
  }
}


/* =========================
   FIX: Force correct grid placement (prevents right panel dropping)
   ========================= */

@media (min-width: 1024px) {
  .oxx-shop-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr) !important;
    column-gap: 2.5rem;
    align-items: start;
  }

  /* Left column: gallery + thumbs stacked */
  .oxx-gallery-main {
    grid-column: 1;
    grid-row: 1;
  }

  .oxx-gallery-thumbs {
    grid-column: 1;
    grid-row: 2;
    margin-top: 1rem; /* optional spacing */
  }

  /* Right column: panel stays at the top and spans both rows */
  .oxx-shop-panel {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-top: 0 !important; /* just in case any breakpoint added it */
  }

  /* prevent shrink issues */
  .oxx-shop-grid > * { min-width: 0; }
}


/* =========================
   CTA Gallery image sizing (768px and below)
   ========================= */

@media (max-width: 768px) {
  /* Reduce the overall gallery footprint */
  .oxx-gallery-main {
    max-width: 82%;
    margin: 0 auto;
    padding: 0.75rem;
  }

  /* Scale image itself */
  .oxx-gallery-main img {
    max-height: 400px;
    width: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
  }
}

/* Extra-tight phones */
@media (max-width: 479px) {
  .oxx-gallery-main {
    max-width: 100%;
    padding: 0.5rem;
  }

  .oxx-gallery-main img {
    max-height: 340px;
  }
}


@media (max-width: 1024px) {
    /* =========================
   FIX: Quantity card clipping "/bottle"
   (override overflow:hidden on .oxx-qty-card)
   ========================= */

.oxx-shop-block-qty-full .oxx-qty-card{
  overflow: visible !important;     /* stop clipping the label */
  padding-bottom: 0.75rem;          /* give the bottom a little breathing room */
}

/* Make sure the price line can't get cropped by tight line-heights */
.oxx-shop-block-qty-full .oxx-qty-price{
  align-items: flex-start;          /* avoids baseline weirdness */
}

.oxx-shop-block-qty-full .oxx-price-main-sm{
  line-height: 1.2;
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
}

.oxx-shop-block-qty-full .oxx-qty-per-box-label{
  line-height: 1.1;
  display: inline-block;
  transform: translateY(1px);       /* tiny nudge down to avoid edge clipping */
}

}

/* Servings Step Layout */
.oxx-servings-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.oxx-servings-card {
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}

.oxx-servings-card:hover {
  border-color: #c79b7d;
  box-shadow: 0 0 0 2px rgba(199,155,125,0.15);
}

.oxx-servings-card.active {
  border-color: #c79b7d;
  background: #f8f3ef;
}

.oxx-servings-title {
  font-weight: 700;
  font-size: 15px;
}

.oxx-servings-sub {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 2px;
}

/* Mobile */
@media (max-width: 680px) {
  .oxx-servings-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Servings step uses the same pill system as flavors */
.oxx-servings-section {
  margin: 1rem 0 .75rem;
}

.oxx-step-label{
  font-weight: 700;
  font-size: .95rem;
  color: #111827;
  margin: 0 0 .6rem;
}

.oxx-servings-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .6rem;
}

/* identical “pill” feel to .oxx-flavor-pill */
.oxx-servings-pill{
  text-align: left;
  padding: .7rem .8rem;
  border-radius: 16px;
  border: 2px solid var(--border);
  background: #ffffff;
  color: #374151;
  cursor: pointer;
  transition: all .2s ease;
  font-size: .8rem;
}

/* Hover */
.oxx-servings-grid .oxx-servings-pill:hover {
  border-color: var(--primary) !important;
  background: var(--primary-soft) !important;
}

/* Active */
.oxx-servings-grid .oxx-servings-pill.active {
  border-color: var(--primary) !important;
  background: var(--primary-soft) !important;
}


.oxx-servings-pill.active{
  border-color: var(--primary);
  background: var(--primary-soft);
}

/* keep the two-line hierarchy clean */
.oxx-servings-title{
  font-weight: 700;
  color: #111827;
  line-height: 1.1;
}

.oxx-servings-sub{
  margin-top: .2rem;
  font-size: .75rem;
  color: #6b7280;
}

/* Responsive: 1 col on mobile, 3 on desktop */
.oxx-servings-grid{
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 768px){
  .oxx-servings-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* --- Servings step wrapper: make it look like the other white sections --- */
.oxx-servings-card-wrap,
.oxx-servings-step {
  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: 18px !important;
  padding: 14px !important;
  margin: 12px 10 !important;
}

/* If you don't want DOUBLE padding because you nested step-card inside step-card */
.oxx-servings-card-wrap {
  padding: 0 !important; /* outer wrapper */
  border: 0 !important;
  background: transparent !important;
}
.oxx-servings-step {
  padding: 25px !important; /* inner actual card */
 
}

/* --- Servings row layout (like flavor grid, 3 desktop / 1 mobile) --- */
.oxx-servings-row{
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important; /* 1 col by default */
  gap: .6rem !important;
  padding-top: 10px;
}

@media (min-width: 768px){
  .oxx-servings-row{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* --- Servings cards: same feel as flavor pills --- */
.oxx-servings-card{
  text-align: left !important;
  padding: .7rem .8rem !important;
  border-radius: 16px !important;
  border: 2px solid var(--border) !important;
  background: #ffffff !important;
  color: #374151 !important;
  cursor: pointer !important;
  transition: all .2s ease !important;
  size: .8rem !important;

  /* ensure hover actually registers */
  position: relative !important;
  z-index: 2 !important;
}

/* hover */
.oxx-servings-card:hover{
  border-color: var(--primary) !important;
  background: var(--primary-soft) !important;
}

/* active */
.oxx-servings-card.active{
  border-color: var(--primary) !important;
  background: var(--primary-soft) !important;
  box-shadow: 0 0 0 1px rgba(11, 127, 138, .25) !important;
}

/* title/sub hierarchy */
.oxx-servings-title{
  font-weight: 700 !important;
  color: #111827 !important;
  line-height: 1.1 !important;
}

.oxx-servings-sub{
  margin-top: .2rem !important;
  font-size: .75rem !important;
  color: #6b7280 !important;
}

/* Make Servings step title match other CTA section titles */
.oxx-servings-step .oxx-step-title{
  font-family: "Cormorant Garamond" !important;     /* same font as other steps */
  font-size: 1.25rem !important;          /* matches Purchase / Quantity */
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
}

/* Laptop breakpoint — shrink "/bag" text */
@media (min-width: 1024px) and (max-width: 1280px) {

  .oxx-qty-card small,
  .oxx-qty-card .per,
  .oxx-qty-card .unit,
  .oxx-qty-card span:last-child {
    font-size: 0.80rem !important;
  }

}/* End custom CSS */