/**
 * SoFlo Drip Theme Main Stylesheet
 * Matching Figma UI Design: SOFLO DRIP - UI
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Urbanist:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --color-primary: #00A8A8;
  --color-primary-dark: #008787;
  --color-primary-light: #E6F8F8;
  --color-primary-subtle: #F0FDFD;
  --color-accent: #00C2CB;
  --color-accent-soft: rgba(0, 168, 168, 0.08);
  
  --color-navy: #0D2230;
  --color-navy-light: #162E40;
  --color-slate: #2C3E50;
  --color-text-body: #4A5D6E;
  --color-text-muted: #748899;
  
  --color-surface: #FFFFFF;
  --color-bg-alt: #F4FAFA;
  --color-bg-page: #FAFDFD;
  --color-border: #E1EBEB;
  --color-border-subtle: #EEF4F4;
  
  --color-gold: #F59E0B;
  --color-gold-bg: #FEF3C7;
  
  --color-brand-green: #7EC242;
  --color-brand-green-dark: #68A832;
  --color-brand-green-subtle: rgba(126, 194, 66, 0.12);
  
  --shadow-xs: 0 1px 3px rgba(13, 34, 48, 0.05);
  --shadow-sm: 0 4px 12px rgba(13, 34, 48, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 168, 168, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 168, 168, 0.12);
  --shadow-hover: 0 14px 32px rgba(0, 168, 168, 0.16);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   CSS Reset & Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-body);
  background-color: var(--color-bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: 2.75rem; letter-spacing: -0.02em; }
h2 { font-size: 2.15rem; letter-spacing: -0.015em; }
h3 { font-size: 1.5rem; letter-spacing: -0.01em; }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-narrow {
  max-width: 920px;
}

/* ==========================================================================
   Utility Classes & Badges
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.section-padding {
  padding: 80px 0;
}

.section-padding-lg {
  padding: 100px 0;
}

.bg-light-tint {
  background-color: var(--color-bg-alt);
}

.bg-primary-tint {
  background-color: var(--color-primary-subtle);
}

.bg-white {
  background-color: var(--color-surface);
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid rgba(0, 168, 168, 0.15);
}

.pill-badge::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.section-subtitle {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  line-height: 1.3;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 168, 168, 0.28);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 168, 168, 0.35);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--color-navy);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(13, 34, 48, 0.2);
}

.btn-dark:hover {
  background-color: var(--color-navy-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 15px 36px;
  font-size: 1.08rem;
}

/* ==========================================================================
   Site Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--color-border-subtle);
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background-color: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo img {
  height: 48px;
  width: auto;
}

.site-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.site-logo-text span {
  color: var(--color-primary);
}

.main-navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 26px;
}

.nav-menu a {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--color-slate);
  padding: 6px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current-page-item > a {
  color: var(--color-primary);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after,
.nav-menu .current-page-item > a::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-navy);
}

.header-phone svg {
  color: var(--color-primary);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-navy);
}

/* ==========================================================================
   Desktop Mega Menu
   ========================================================================== */
.main-navigation .menu-item-has-children {
  position: relative;
}

.main-navigation .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-chevron {
  transition: transform var(--transition-fast);
}

.main-navigation .menu-item-has-children:hover > a .dropdown-chevron,
.main-navigation .menu-item-has-children.is-active > a .dropdown-chevron {
  transform: rotate(180deg);
}

.main-navigation .menu-item-has-children.has-mega-menu {
  position: static;
}

.header-inner {
  position: relative;
}

.mega-menu-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 960px;
  max-width: 95vw;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(13, 34, 48, 0.14), 0 0 0 1px rgba(0, 168, 168, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1000;
  overflow: hidden;
  transform: translateY(10px);
}

.main-navigation .menu-item-has-children:hover .mega-menu-dropdown,
.main-navigation .menu-item-has-children:focus-within .mega-menu-dropdown,
.main-navigation .menu-item-has-children.is-active .mega-menu-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Invisible hover bridge between navigation bar and mega menu */
.mega-menu-dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
  display: block;
}

/* 3-Category Grid Mega Menu for Drip Menu */
.treatments-mega-menu {
  width: 840px;
  max-width: 92vw;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.mega-category-grid-wrap {
  display: flex;
  flex-direction: column;
}

.mega-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 22px;
}

.mega-category-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--color-border);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mega-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 168, 168, 0.15);
  border-color: var(--color-primary);
}

.mega-card-img-wrap {
  position: relative;
  width: 100%;
  height: 155px;
  overflow: hidden;
  background-color: var(--color-navy);
}

.mega-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.mega-category-card:hover .mega-card-img {
  transform: scale(1.05);
}

.mega-card-body {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
}

.mega-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0;
  transition: color var(--transition-fast);
}

.mega-category-card:hover .mega-card-title {
  color: var(--color-primary);
}

/* Generic Mega Menu Columns (Locations & Explore) */
.locations-mega-menu .mega-menu-inner,
.explore-mega-menu .mega-menu-inner {
  display: flex;
  gap: 24px;
  padding: 24px;
}

.mega-menu-col {
  flex: 1;
}

.mega-col-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-border-subtle);
}

.mega-sub-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mega-sub-list li a {
  display: flex;
  flex-direction: column;
  padding: 6px 8px;
  border-radius: 6px;
  text-decoration: none;
  transition: background var(--transition-fast);
}

.mega-sub-list li a:hover {
  background: var(--color-primary-light);
}

.mega-sub-list strong {
  font-size: 0.92rem;
  color: var(--color-navy);
}

.mega-sub-list span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.mega-menu-featured-col {
  width: 240px;
}

.mega-featured-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-subtle);
  border-radius: 10px;
  padding: 16px;
}

.mega-featured-card h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-navy);
  margin: 8px 0 6px 0;
}

.mega-featured-card p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin-bottom: 10px;
}

.mega-phone-link {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.9rem;
}

/* ==========================================================================
   Mobile Drawer & Accordion Navigation (Full-Height, Accessible Touch Targets)
   ========================================================================== */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(13, 34, 48, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer-content {
  background-color: #ffffff;
  width: 85%;
  max-width: 380px;
  height: 100%;
  margin-left: auto;
  padding: 24px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
}

.mobile-drawer.is-open .mobile-drawer-content {
  transform: translateX(0);
}

.mobile-drawer-close {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  border: none;
  background: transparent;
  color: var(--color-navy);
  cursor: pointer;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  border-bottom: 1px solid var(--color-border-subtle);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  flex: 1;
  min-height: 48px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
}

.mobile-submenu-toggle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-sub-menu {
  list-style: none;
  padding-left: 14px;
  border-left: 2px solid var(--color-primary-light);
  margin: 6px 0 10px 8px;
}

.mobile-sub-menu li a {
  display: flex;
  align-items: center;
  min-height: 48px;
  font-size: 0.95rem;
  color: var(--color-slate);
  text-decoration: none;
}

/* ==========================================================================
   Hero Banners
   ========================================================================== */
.hero-page {
  padding: 70px 0 50px 0;
  background: linear-gradient(180deg, var(--color-primary-subtle) 0%, rgba(240, 253, 253, 0) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-page .section-title {
  margin-bottom: 12px;
}

.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background-color: #ffffff;
  padding: 24px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: 40px;
  border: 1px solid var(--color-border-subtle);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-slate);
}

/* ==========================================================================
   Home Hero
   ========================================================================== */
.hero-home {
  padding: 70px 0 90px 0;
  background: linear-gradient(135deg, #F0FDFD 0%, #FFFFFF 60%, #E6F8F8 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.hero-content h1 {
  font-size: 3.3rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--color-primary);
}

.hero-lead {
  font-size: 1.22rem;
  color: var(--color-text-body);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-features-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--color-slate);
}

.hero-feat-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.hero-image-card {
  position: relative;
}

.hero-main-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
   Section: See what's Trending (Popular Drips Grid)
   ========================================================================== */
.section-trending {
  background-color: #ffffff;
}

.drip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card-drip {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.card-drip:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary);
}

.drip-card-header {
  margin-bottom: 20px;
}

.drip-badge-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.drip-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.drip-duration {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.drip-title {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.drip-tagline {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin-bottom: 16px;
}

.drip-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border-subtle);
}

.drip-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-navy);
}

.drip-price-period {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.drip-ingredients-box {
  background-color: var(--color-bg-alt);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.drip-ingredients-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 4px;
}

.drip-ingredients-text {
  font-size: 0.86rem;
  color: var(--color-slate);
  margin-bottom: 0;
  line-height: 1.4;
}

.drip-benefits-list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drip-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--color-text-body);
}

.drip-benefit-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.drip-card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================================
   Section: Group / Event Discounts
   ========================================================================== */
.section-group-discounts {
  padding: 70px 0;
}

.discount-banner-card {
  background: linear-gradient(135deg, #0D2230 0%, #17364D 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.discount-img-wrap {
  height: 100%;
  min-height: 380px;
  position: relative;
}

.discount-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discount-content {
  padding: 50px 60px;
  color: #ffffff;
}

.discount-content .pill-badge {
  background-color: rgba(0, 168, 168, 0.2);
  color: #5EEAD4;
  border-color: rgba(94, 234, 212, 0.3);
}

.discount-content h2 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.discount-content p {
  color: #94A3B8;
  font-size: 1.05rem;
  margin-bottom: 26px;
  line-height: 1.6;
}

.discount-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.discount-perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #E2E8F0;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   FAQ Accordion (Figma Frame 359:9562)
   ========================================================================== */
.section-faqs {
  padding: 80px 0;
  background-color: #FAFDFD;
}

.faq-search-box {
  max-width: 600px;
  margin: 0 auto 40px auto;
  position: relative;
}

.faq-search-input {
  width: 100%;
  padding: 14px 22px 14px 48px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
  font-size: 1rem;
  outline: none;
  transition: all var(--transition-fast);
}

.faq-search-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 168, 168, 0.15);
}

.faq-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
}

.faq-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.faq-tab-btn {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  color: var(--color-slate);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq-tab-btn:hover,
.faq-tab-btn.active {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 168, 168, 0.25);
}

.faq-accordion-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-accordion-item {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-xs);
}

.faq-accordion-item:hover {
  border-color: rgba(0, 168, 168, 0.4);
}

.faq-accordion-item.is-open {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.faq-question-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 26px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
  transition: color var(--transition-fast);
}

.faq-accordion-item.is-open .faq-question-btn {
  color: var(--color-primary);
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-bg-alt);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-normal), background-color var(--transition-fast);
}

.faq-accordion-item.is-open .faq-toggle-icon {
  transform: rotate(180deg);
  background-color: var(--color-primary);
  color: #ffffff;
}

.faq-answer-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.faq-accordion-item.is-open .faq-answer-collapse {
  max-height: 500px;
  transition: max-height 0.4s ease-in-out;
}

.faq-answer-inner {
  padding: 0 26px 24px 26px;
  color: var(--color-text-body);
  font-size: 1.02rem;
  line-height: 1.65;
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 16px;
}

/* ==========================================================================
   Section: Book Us (Lead & Appointment Form)
   ========================================================================== */
.section-book-us {
  padding: 85px 0;
  background: linear-gradient(180deg, #E6F8F8 0%, #D8F3F3 100%);
  position: relative;
}

.book-us-container {
  max-width: 880px;
  margin: 0 auto;
}

.book-us-card {
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 45px 50px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 168, 168, 0.15);
}

.book-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.book-form-grid .full-width {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-navy);
}

.form-control {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-page);
  font-size: 0.96rem;
  color: var(--color-slate);
  outline: none;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 168, 168, 0.12);
}

.form-notice {
  display: none;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-notice.is-success {
  display: block;
  background-color: #D1FAE5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

/* ==========================================================================
   Ingredients Grid (Ingredients Page)
   ========================================================================== */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card-ingredient {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-normal);
}

.card-ingredient:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.ingredient-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.ingredient-title {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.ingredient-tagline {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.ingredient-benefits {
  font-size: 0.92rem;
  color: var(--color-text-body);
  line-height: 1.5;
  margin-bottom: 16px;
}

.ingredient-price-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-navy);
  font-size: 1.05rem;
}

/* ==========================================================================
   Service Areas Grid (Service Areas Page)
   ========================================================================== */
.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.card-service-area {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-normal);
}

.card-service-area:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.area-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.area-response-badge {
  background-color: #DCFCE7;
  color: #166534;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.area-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.area-neighborhoods {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 22px;
  line-height: 1.6;
}

.area-contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--color-border-subtle);
}

.area-phone-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.area-phone-link:hover {
  color: var(--color-primary);
}

.interactive-map-frame {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 50px;
  overflow: hidden;
}

/* ==========================================================================
   Testimonials Grid (Testimonials Page)
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card-testimonial {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.card-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.star-rating {
  color: var(--color-gold);
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.testimonial-quote {
  font-size: 1.02rem;
  color: var(--color-slate);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-subtle);
}

.testimonial-author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-navy);
}

.testimonial-location {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.verified-tag {
  background-color: rgba(126, 194, 66, 0.16);
  color: #3d7911;
  border: 1px solid rgba(126, 194, 66, 0.35);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   Team Members Grid (About Us Page)
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card-team {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-normal);
}

.card-team:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.team-avatar-wrap {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}

.team-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.team-title {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.team-exp {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
  background-color: var(--color-navy);
  color: #94A3B8;
  padding: 80px 0 30px 0;
  font-size: 0.94rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--color-primary);
}

.footer-brand p {
  line-height: 1.65;
  margin-bottom: 20px;
  color: #94A3B8;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #94A3B8;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-social-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
}

.footer-disclaimer {
  max-width: 850px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
  color: #64748B;
  font-size: 0.82rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-cta-group, .hero-features-list {
    justify-content: center;
  }
  .hero-floating-card {
    left: 20px;
    bottom: 20px;
  }
  .drip-grid, .ingredients-grid, .testimonials-grid, .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .discount-banner-card {
    grid-template-columns: 1fr;
  }
  .discount-img-wrap {
    min-height: 260px;
  }
  .discount-content {
    padding: 36px 30px;
  }
}

@media (max-width: 850px) {
  .main-navigation, .header-phone {
    display: none;
  }
  .mobile-menu-toggle, .mobile-drawer {
    display: block;
  }
  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .service-areas-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .section-padding { padding: 50px 0; }
  .drip-grid, .ingredients-grid, .testimonials-grid, .team-grid {
    grid-template-columns: 1fr;
  }
  .book-form-grid {
    grid-template-columns: 1fr;
  }
  .book-us-card {
    padding: 28px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-stats-bar {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   EXACT UPDATED UI DESIGN STYLES
   Matching: Updated Home page UI, Sevice Areas Updated UI, Testimonials - Updated UI, ingredient page
   ========================================================================== */

/* Header updates */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.site-logo-img,
.custom-logo,
.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 1px #000000) drop-shadow(0 0 1.5px #000000);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.main-navigation .nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 12px;
  border: 1.5px solid #111827;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  transition: all 0.2s ease;
}
.header-contact-btn:hover {
  background-color: #111827;
  color: #ffffff;
}
.btn-arrow-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #47bcd3;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-icon-btn {
  background: none;
  border: none;
  color: #111827;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.header-icon-btn:hover {
  color: #47bcd3;
}

/* Hero Updated */
.hero-updated {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-updated-overlay {
  width: 100%;
  padding: 85px 0;
  background: linear-gradient(90deg, rgba(13, 34, 48, 0.45) 0%, rgba(13, 34, 48, 0.20) 45%, rgba(13, 34, 48, 0) 75%);
}
.hero-updated-content {
  max-width: 680px;
}
.hero-updated-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
.title-gold {
  color: #f6b729;
}
.title-white {
  color: #ffffff;
}
.hero-updated-subtitle {
  font-size: 1.15rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 580px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
.hero-updated-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-teal-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #47bcd3;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 9999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(71, 188, 211, 0.35);
  transition: transform 0.2s, background-color 0.2s;
}
.btn-teal-pill:hover {
  background-color: #35a5bc;
  transform: translateY(-2px);
  color: #ffffff;
}
.btn-outline-white-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(13, 34, 48, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff !important;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-outline-white-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  color: #ffffff !important;
  transform: translateY(-2px);
}
.btn-outline-white-pill svg {
  stroke: #ffffff;
}
.btn-arrow-circle-inline {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-white-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  color: #111827;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}
.btn-white-pill:hover {
  transform: translateY(-2px);
  color: #47bcd3;
}
.btn-phone-icon {
  display: flex;
  align-items: center;
}

/* Simple Steps 4 Cards */
.section-simple-steps {
  background: #ffffff;
}
.steps-grid-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step-teal-card {
  background-color: #47bcd3;
  border-radius: 24px;
  padding: 24px 20px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(71, 188, 211, 0.18);
  transition: transform 0.25s ease;
}
.step-teal-card:hover {
  transform: translateY(-5px);
}
.step-badge-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #47bcd3;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-bottom: 12px;
}
.step-card-title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  line-height: 1.3;
}
.step-card-desc {
  font-size: 0.88rem;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}
.step-card-image-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.step-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.btn-step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #ffffff;
  color: #47bcd3;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 24px;
  border-radius: 9999px;
  text-decoration: none;
  width: 80%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background-color 0.2s, color 0.2s;
}
.btn-step-pill:hover {
  background-color: #111827;
  color: #ffffff;
}
.step-arrow-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #47bcd3;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Who We Are */
.who-we-are-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 40px;
}
.who-we-are-image-wrap {
  position: relative;
}
.founders-img {
  width: 100%;
  max-width: 588px;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
  display: block;
}
.who-we-are-heading {
  font-size: 2.1rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
  margin: 12px 0 16px 0;
}
.who-we-are-desc {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.65;
}
.btn-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #47bcd3;
  font-size: 1rem;
  text-decoration: none;
}
.link-arrow-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #47bcd3;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.who-stats-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 30px 24px;
  background: #f9fafb;
  border-radius: 20px;
  border: 1px solid #f0f2f5;
  align-items: center;
}
.who-stat-item {
  text-align: center;
}
.who-stat-icon {
  margin: 0 auto 10px auto;
  color: #111827;
}
.who-stat-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.4;
}
.who-stat-big-num {
  font-size: 1.65rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}
.who-stat-num-label {
  font-size: 0.84rem;
  color: #6b7280;
}

/* Trending Drips */
.section-trending {
  background: radial-gradient(circle at 10% 50%, rgba(71, 188, 211, 0.12) 0%, rgba(255, 255, 255, 0) 60%),
              radial-gradient(circle at 90% 50%, rgba(71, 188, 211, 0.12) 0%, rgba(255, 255, 255, 0) 60%);
}
.section-title-large {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
}
.title-sub-text {
  font-size: 1.8rem;
  font-weight: 700;
}
.trending-drips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.card-trending-item {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #eef2f6;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-trending-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(71, 188, 211, 0.15);
}
.trending-card-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #f3f4f6;
}
.trending-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trending-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.trending-title-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.trending-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}
.trending-item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  flex-shrink: 0;
}
.trending-price-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  line-height: 1.2;
}
.trending-price-amount {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}
.trending-item-desc {
  font-size: 0.92rem;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}
.trending-action-row {
  display: flex;
  justify-content: flex-end;
}
.btn-circle-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #47bcd3;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-circle-arrow:hover {
  background-color: #111827;
  transform: scale(1.08);
  color: #ffffff;
}

/* Locations Section */
.city-filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0 20px 0;
}
.city-pill-btn {
  background-color: #111827;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.city-pill-btn.active,
.city-pill-btn:hover {
  background-color: #47bcd3;
  color: #ffffff;
}
.locations-lead-text {
  font-size: 1rem;
  color: #4b5563;
  max-width: 650px;
  margin: 0 auto;
}
.locations-feature-card {
  margin-top: 36px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.location-city-name {
  font-size: 1.85rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}
.location-city-desc {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.55;
  margin-bottom: 24px;
}
.location-meta-boxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.location-info-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.loc-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  flex-shrink: 0;
}
.meta-sub {
  font-size: 0.88rem;
  color: #6b7280;
}
.meta-sub a {
  color: inherit;
  text-decoration: none;
}
.btn-teal-full {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #47bcd3;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.2s;
}
.btn-teal-full:hover {
  background-color: #35a5bc;
  color: #ffffff;
}
.locations-card-right {
  border-radius: 18px;
  overflow: hidden;
}
.locations-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* Group Discounts */
.group-discounts-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 50px;
  align-items: center;
}
.group-discounts-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}
.squiggle-underline {
  display: block;
  margin-top: 4px;
}
.group-discounts-lead {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 28px;
}
.group-discounts-right {
  position: relative;
  display: flex;
  align-items: center;
}
.group-quote-card {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 52%;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  z-index: 2;
  border: 1px solid #f0f0f0;
}
.group-quote-card p {
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 12px;
}
.group-quote-card p:last-child {
  margin-bottom: 0;
}
.group-image-wrap {
  width: 68%;
  margin-left: auto;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.group-photo-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Accordion */
.section-faqs-home {
  background: #ffffff;
}
.faqs-lead-text {
  font-size: 0.98rem;
  color: #6b7280;
  max-width: 820px;
  margin-top: 14px;
  line-height: 1.6;
}
.soflo-accordion {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f9fafb;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: #111827;
  text-align: left;
  cursor: pointer;
}
.faq-toggle-icon {
  font-size: 1.4rem;
  color: #47bcd3;
  font-weight: 400;
}
.faq-answer {
  padding: 0 24px 18px 24px;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Google Reviews Slider */
.google-review-slider-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 36px 0 20px 0;
}
.slider-nav-arrow {
  background: none;
  border: 1px solid #d1d5db;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
}
.slider-nav-arrow:hover {
  background-color: #111827;
  color: #ffffff;
  border-color: #111827;
}
.google-review-card {
  background: #f3f4f6;
  border-radius: 20px;
  padding: 32px 40px;
  max-width: 680px;
  text-align: center;
}
.google-avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #6b21a8;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
}
.google-reviewer-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
}
.google-review-time {
  font-size: 0.82rem;
  color: #9ca3af;
  margin-bottom: 8px;
}
.google-stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}
.star-rating {
  color: #f59e0b;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.google-review-quote {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}
.google-score-row {
  font-size: 0.95rem;
  color: #4b5563;
  margin-top: 16px;
}

/* Book Us Turquoise Banner */
.section-book-us-banner {
  background-color: #47bcd3;
  padding: 80px 0;
  color: #ffffff;
}
.book-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.book-us-badge {
  display: inline-block;
  margin-bottom: 8px;
}
.badge-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
}
.badge-brush {
  display: block;
  margin-top: -4px;
}
.book-us-heading {
  font-size: 2.85rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 24px;
}
.form-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row-single {
  margin-bottom: 16px;
}
.book-input, .book-textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.95rem;
  color: #111827;
  outline: none;
}
.book-input::placeholder, .book-textarea::placeholder {
  color: #9ca3af;
}
.sms-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
}
.sms-checkbox {
  margin-top: 4px;
  accent-color: #111827;
}
.sms-label {
  font-size: 0.76rem;
  color: #111827;
  line-height: 1.45;
}
.sms-label a {
  color: #111827;
  text-decoration: underline;
}
.btn-submit-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  color: #111827;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 12px 26px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.btn-submit-white:hover {
  background-color: #111827;
  color: #ffffff;
}

.fruit-bag-frame {
  position: relative;
  border-radius: 28px;
  overflow: visible;
}
.fruit-bag-img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.fruit-bag-overlay-card {
  position: absolute;
  bottom: -40px;
  left: 24px;
  right: 24px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.overlay-card-text {
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 10px;
}
.overlay-card-text:last-child {
  margin-bottom: 0;
}

/* Service Areas Master Container */
.subpage-cityscape-banner, .subpage-ingredients-banner, .subpage-banner-frame {
  width: 100%;
  overflow: hidden;
  background-color: #f8fafc;
}
.cityscape-banner-img, .ingredients-banner-img, .subpage-banner-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.subpage-banner-frame {
  position: relative;
}
.subpage-banner-title-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.15);
}
.subpage-banner-heading {
  font-size: 3rem;
  font-weight: 800;
  color: #111827;
}

.service-areas-master-container {
  background: #f3f4f6;
  border-radius: 28px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
}
.service-map-col {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.service-google-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-hq-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.hq-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 18px;
}
.hq-card-item, .hq-email-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hq-email-row {
  margin-bottom: 22px;
}
.hq-icon-wrap {
  margin-top: 2px;
  color: #111827;
}
.hq-item-title {
  display: block;
  font-size: 0.96rem;
  color: #111827;
  font-weight: 700;
}
.hq-item-sub {
  font-size: 0.86rem;
  color: #6b7280;
  line-height: 1.4;
}
.hq-item-sub a {
  color: inherit;
  text-decoration: none;
}

.service-cities-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  flex-grow: 1;
}
.cities-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.city-bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.city-name-text {
  font-size: 0.98rem;
  font-weight: 600;
  color: #111827;
}

/* Ingredients Page */
.ingredients-safety-badges {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.safety-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}
.dot-teal {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #47bcd3;
}
.micronutrients-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
}
.micronutrients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
.micro-card {
  background: #ffffff;
  border: 1.5px solid #eef2f6;
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: all 0.2s;
  cursor: pointer;
}
.micro-card:hover, .micro-card.active {
  border-color: #47bcd3;
  box-shadow: 0 6px 18px rgba(71, 188, 211, 0.12);
}
.micro-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}
.micro-sub {
  font-size: 0.88rem;
  color: #6b7280;
}
.micro-card-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.micro-num-badge {
  background-color: #47bcd3;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
}
.micro-arrow {
  font-size: 1.3rem;
  color: #9ca3af;
}

.ingredient-detail-container {
  max-width: 980px;
  margin: 36px auto 0 auto;
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.ingredient-detail-cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 28px;
}
.detail-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}
.detail-text {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}
.contains-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}
.contains-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  font-size: 0.9rem;
  color: #374151;
}
.detail-benefits-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.benefit-pill {
  background-color: #67cfdd;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 9999px;
}
.detail-supports-line {
  padding-top: 18px;
  border-top: 1px solid #f0f2f5;
  font-size: 0.88rem;
  color: #4b5563;
  text-align: center;
}
.fda-disclaimer-box {
  max-width: 980px;
  margin: 30px auto 0 auto;
  font-size: 0.82rem;
  color: #9ca3af;
  line-height: 1.5;
  text-align: center;
}

/* Testimonials Page 2x2 Grid */
.testimonials-two-by-two-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.review-card-modern {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.03);
}
.review-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.review-quote-mark {
  font-size: 2.2rem;
  line-height: 1;
  color: #47bcd3;
  font-family: serif;
}
.review-stars-gold {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.review-body-text {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 20px;
}
.review-author-box {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.author-name {
  display: block;
  font-size: 0.98rem;
  color: #111827;
}
.author-sub {
  font-size: 0.84rem;
  color: #9ca3af;
}

/* White 4-Column Footer */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid #eef2f6;
  padding: 70px 0 30px 0;
}
.footer-top-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1.1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid #f0f2f5;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  margin-bottom: 18px;
}
.footer-brand-desc {
  font-size: 0.92rem;
  color: #4b5563;
  line-height: 1.6;
}
.footer-col-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 18px;
}
.footer-nav-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-list a {
  font-size: 0.92rem;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-list a:hover {
  color: #47bcd3;
}
.footer-hq-block {
  margin-bottom: 16px;
}
.footer-hq-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.footer-hq-address {
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.45;
}
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #4b5563;
  text-decoration: none;
}
.footer-contact-link:hover {
  color: #47bcd3;
}
.footer-insta-link {
  display: inline-flex;
  color: #111827;
  transition: color 0.2s;
}
.footer-insta-link:hover {
  color: #47bcd3;
}
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.88rem;
  color: #6b7280;
}
.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-links a {
  color: inherit;
  text-decoration: none;
}
.footer-legal-links a:hover {
  color: #111827;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .steps-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }
  .who-stats-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .trending-drips-grid {
    grid-template-columns: 1fr;
  }
  .locations-feature-card, .service-areas-master-container, .book-us-grid, .who-we-are-grid, .group-discounts-layout {
    grid-template-columns: 1fr;
  }
  .group-quote-card {
    position: static;
    transform: none;
    width: 100%;
    margin-bottom: 20px;
  }
  .group-image-wrap {
    width: 100%;
  }
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .steps-grid-four, .micronutrients-grid, .testimonials-two-by-two-grid, .footer-top-grid, .who-stats-strip {
    grid-template-columns: 1fr;
  }
  .hero-updated-title {
    font-size: 2.1rem;
  }
  .fruit-bag-overlay-card {
    position: static;
    margin-top: 16px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Hero Interactive Hotspots & Clean Display */
.hero-updated {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 520px;
  width: 100%;
}
@media (max-width: 991px) {
  .hero-updated {
    background-position: 70% center;
    min-height: 480px;
  }
  .hero-updated-overlay {
    background: linear-gradient(180deg, rgba(13, 34, 48, 0.60) 0%, rgba(13, 34, 48, 0.35) 60%, rgba(13, 34, 48, 0.20) 100%);
    padding: 60px 0;
  }
}
@media (max-width: 640px) {
  .hero-updated {
    background-position: 72% center;
  }
  .hero-updated-overlay {
    padding: 45px 0;
  }
}
.hero-container-interactive {
  position: relative;
  height: 520px;
}
.hero-cta-hotspots {
  position: absolute;
  bottom: 80px;
  left: 30px;
  display: flex;
  gap: 16px;
}
.hero-hotspot-link {
  display: inline-block;
  height: 48px;
  border-radius: 9999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-hotspot-link:first-child {
  width: 220px;
}
.hero-hotspot-link:last-child {
  width: 180px;
}
.hero-hotspot-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* 4 Steps Exact 2-Column Inside Teal Card */
.step-teal-card {
  background-color: #47bcd3;
  border-radius: 24px;
  padding: 24px 18px 20px 18px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(71, 188, 211, 0.18);
  transition: transform 0.25s ease;
}
.step-card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.step-card-title {
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.25;
  text-align: left;
}
.step-badge-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #47bcd3;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-card-middle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-grow: 1;
}
.step-card-thumb {
  width: 82px;
  height: 135px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.step-card-desc {
  font-size: 0.82rem;
  color: #ffffff;
  line-height: 1.45;
  text-align: left;
  margin: 0;
}
.step-card-bottom-row {
  display: flex;
  justify-content: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Mega Menu System (Desktop)
   ========================================================================== */
.main-navigation .nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation .nav-menu > li {
  position: relative;
}

.main-navigation .nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #111827;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 18px 0;
  transition: color 0.2s ease;
  text-decoration: none;
}

.main-navigation .nav-menu > li > a:hover,
.main-navigation .nav-menu > li.current-menu-item > a {
  color: #00A8A8;
}

.dropdown-chevron {
  transition: transform 0.25s ease;
}

.has-mega-menu:hover .dropdown-chevron,
.has-mega-menu:focus-within .dropdown-chevron {
  transform: rotate(180deg);
}

/* Mega Menu Dropdown Container */
.mega-menu-dropdown {
  position: absolute;
  top: 100%;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px -10px rgba(0, 40, 50, 0.14), 0 0 0 1px rgba(0, 168, 168, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1000;
  min-width: 720px;
  padding: 28px;
}

.treatments-mega-menu {
  min-width: 800px;
  max-width: 840px;
  left: -40px;
  padding: 22px;
  transform: translateY(12px);
}
.treatments-mega-menu .mega-menu-inner {
  display: block;
  width: 100%;
}
.treatments-mega-menu .mega-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0;
}

.locations-mega-menu {
  min-width: 760px;
  left: -180px;
  transform: translateY(12px);
}

.explore-mega-menu {
  min-width: 580px;
  left: -120px;
  transform: translateY(12px);
}

.has-mega-menu:hover .mega-menu-dropdown,
.has-mega-menu:focus-within .mega-menu-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.mega-col-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #00A8A8;
  margin-bottom: 14px;
  font-weight: 800;
  border-bottom: 2px solid rgba(0, 168, 168, 0.15);
  padding-bottom: 6px;
}

.mega-sub-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-sub-list li {
  margin-bottom: 12px;
}

.mega-sub-list a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background-color 0.18s ease;
}

.mega-sub-list a:hover {
  background-color: rgba(0, 168, 168, 0.06);
}

.mega-sub-list a strong {
  display: block;
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
}

.mega-sub-list a span {
  display: block;
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.35;
  margin-top: 3px;
}

.mega-view-all {
  margin-top: 8px;
  color: #00A8A8 !important;
  font-weight: 700;
}

/* Featured Card in Mega Menu */
.mega-featured-card {
  background: linear-gradient(135deg, #f0fdfa, #e6fffa);
  border: 1px solid rgba(0, 168, 168, 0.2);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pill-badge-sm {
  align-self: flex-start;
  background: #00A8A8;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.mega-featured-card h5 {
  font-size: 1.05rem;
  color: #0f172a;
  margin: 0 0 6px 0;
  font-weight: 800;
}

.mega-featured-card p {
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.4;
  margin: 0 0 14px 0;
}

.mega-cta-link,
.mega-phone-link {
  font-size: 0.85rem;
  font-weight: 800;
  color: #00A8A8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dispatch-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #059669;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-brand-green, #7EC242);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(126, 194, 66, 0.28);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Header Action Buttons */
.header-icon-btn.phone-btn {
  background: rgba(0, 168, 168, 0.1);
  color: #00A8A8;
  text-decoration: none;
  display: none; /* Hidden on desktop per requirement 4 */
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.header-icon-btn.phone-btn:hover {
  background: #00A8A8;
  color: #ffffff;
}

/* ==========================================================================
   Multi-Design Testimonial Variants (Designs 1, 2, 3, 4)
   ========================================================================== */

/* Design 2: Horizontal Carousel Track */
.soflo-reviews-carousel-wrapper {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px 0;
}

.soflo-reviews-carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 15px 4px 25px 4px;
  -webkit-overflow-scrolling: touch;
}

.soflo-reviews-carousel-track::-webkit-scrollbar {
  height: 6px;
}

.soflo-reviews-carousel-track::-webkit-scrollbar-thumb {
  background: rgba(0, 168, 168, 0.3);
  border-radius: 10px;
}

.soflo-carousel-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef4f6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.soflo-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.soflo-author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.soflo-avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #00A8A8;
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.soflo-author-name {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.soflo-meta-badge {
  font-size: 0.75rem;
  color: #64748b;
}

.soflo-review-text {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 16px;
  flex-grow: 1;
}

.soflo-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
}

.treatment-tag {
  color: #00A8A8;
  font-weight: 700;
}

.review-date {
  color: #94a3b8;
}

.soflo-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 15px;
}

.carousel-prev,
.carousel-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #00A8A8;
  background: #ffffff;
  color: #00A8A8;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: #00A8A8;
  color: #ffffff;
}

/* Design 3: Featured Story Layout */
.soflo-featured-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  max-width: 1140px;
  margin: 0 auto;
}

.soflo-featured-card {
  background: #ffffff;
  border: 1px solid #eef4f6;
  border-radius: 20px;
  padding: 38px;
  box-shadow: 0 10px 30px rgba(0, 168, 168, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-badge {
  color: #00A8A8;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.featured-quote {
  font-size: 1.35rem;
  line-height: 1.5;
  color: #0f172a;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 24px;
}

.featured-author-row {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
}

.soflo-avatar-circle.large {
  width: 52px;
  height: 52px;
  font-size: 1.3rem;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
}

.author-meta {
  font-size: 0.82rem;
  color: #64748b;
}

.soflo-supporting-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.supporting-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #eef4f6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.supporting-text {
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.45;
  margin: 8px 0;
  font-style: italic;
}

.supporting-author {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
}

/* Design 4: Compact Grid */
.soflo-compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
  max-width: 1140px;
  margin: 0 auto;
}

.soflo-compact-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid #e2ecee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.compact-text {
  font-size: 0.84rem;
  color: #334155;
  line-height: 1.4;
  margin: 8px 0;
}

.soflo-avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #00A8A8;
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.soflo-author-name {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.soflo-meta-badge {
  font-size: 0.75rem;
  color: #64748b;
}

.soflo-review-text {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 16px;
  flex-grow: 1;
}

.soflo-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
}

.treatment-tag {
  color: #00A8A8;
  font-weight: 700;
}

.review-date {
  color: #94a3b8;
}

.soflo-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 15px;
}

.carousel-prev,
.carousel-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #00A8A8;
  background: #ffffff;
  color: #00A8A8;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: #00A8A8;
  color: #ffffff;
}

/* Design 3: Featured Story Layout */
.soflo-featured-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  max-width: 1140px;
  margin: 0 auto;
}

.soflo-featured-card {
  background: #ffffff;
  border: 1px solid #eef4f6;
  border-radius: 20px;
  padding: 38px;
  box-shadow: 0 10px 30px rgba(0, 168, 168, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-badge {
  color: #00A8A8;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.featured-quote {
  font-size: 1.35rem;
  line-height: 1.5;
  color: #0f172a;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 24px;
}

.featured-author-row {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
}

.soflo-avatar-circle.large {
  width: 52px;
  height: 52px;
  font-size: 1.3rem;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
}

.author-meta {
  font-size: 0.82rem;
  color: #64748b;
}

.soflo-supporting-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.supporting-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #eef4f6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.supporting-text {
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.45;
  margin: 8px 0;
  font-style: italic;
}

.supporting-author {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
}

/* Design 4: Compact Grid */
.soflo-compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
  max-width: 1140px;
  margin: 0 auto;
}

.soflo-compact-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid #e2ecee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.compact-text {
  font-size: 0.84rem;
  color: #334155;
  line-height: 1.4;
  margin: 8px 0;
}

.compact-author {
  font-size: 0.78rem;
  color: #64748b;
}

/* Mobile Responsiveness for Mega Menu & Cards */
@media (max-width: 1024px) {
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .header-icon-btn.phone-btn {
    display: inline-flex !important; /* Visible on mobile per requirement 4 */
  }
  .header-contact-btn {
    display: none !important; /* Managed within mobile drawer */
  }
  .soflo-featured-layout {
    grid-template-columns: 1fr;
  }
}

/* Phase 3: Global Header, Sticky & Mobile Drawer Accessibility */
.site-header {
  transition: all 0.25s ease;
}
.site-header.is-sticky-enabled {
  position: sticky;
  top: 0;
  z-index: 1000;
}
.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #0D2230;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
.mobile-drawer-close:hover,
.mobile-drawer-close:focus {
  background-color: #f0f8f8;
  outline: none;
}
.mobile-nav-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
}
.mobile-nav-link {
  flex-grow: 1;
  display: flex;
  align-items: center;
  min-height: 48px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0D2230;
  text-decoration: none;
  padding: 4px 0;
}
.mobile-submenu-toggle {
  background: none;
  border: 1px solid #e2ecee;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #00A8A8;
  cursor: pointer;
  margin-left: 8px;
}
.mobile-sub-menu {
  list-style: none;
  padding-left: 18px;
  margin: 0;
  display: none;
  border-left: 2px solid #00A8A8;
}
.mobile-sub-menu li a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.95rem;
  color: #4A5D6E;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid #00A8A8;
  outline-offset: 3px;
}

/* ==========================================================================
   FINAL CLIENT UPDATES & MOBILE OPTIMIZATIONS (iPhone 16 / 17 Standards)
   ========================================================================== */

/* 1. Hero Experience Banner & Enhanced Contrast */
.hero-experience-banner {
  margin-bottom: 24px;
}
.hero-experience-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(13, 34, 48, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.12rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 9999px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.01em;
}
.experience-badge-star {
  color: var(--color-brand-green, #7EC242);
  font-size: 1.15rem;
}
.hero-updated-title {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}
.title-gold {
  color: #f6b729 !important;
}
.title-white {
  color: #ffffff !important;
}

/* 2. About Us: Miami's At-Home IV Specialists */
.section-about-specialists {
  background-color: #ffffff;
}
.about-lead-block {
  text-align: center;
  margin-bottom: 36px;
}
.about-lead-tagline {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0D2230;
  line-height: 1.35;
  margin-bottom: 16px;
}
.about-divider-accent {
  width: 64px;
  height: 3px;
  background-color: #00A8A8;
  margin: 0 auto;
  border-radius: 2px;
}
.about-content-body {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #2D3E4E;
}
.about-content-body p {
  margin-bottom: 22px;
}
.about-summary-lead {
  font-weight: 600;
  color: #0D2230;
  background: #F4FBFC;
  border-left: 4px solid #00A8A8;
  padding: 18px 24px;
  border-radius: 0 12px 12px 0;
  margin-top: 28px !important;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}
.about-founders-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2ecee;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.about-founders-img-wrap {
  width: 100%;
  overflow: hidden;
  background-color: #f8fafc;
}
.about-founders-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.about-founders-caption {
  padding: 24px;
}
.founders-caption-text {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.55;
  margin-bottom: 20px;
}
.founders-pills-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.founder-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f4fbfc;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid #e0f2f5;
}
.founder-initials {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #47bcd3;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.founder-pill-info {
  display: flex;
  flex-direction: column;
}
.founder-pill-info strong {
  font-size: 0.95rem;
  color: #0d2230;
}
.founder-pill-info span {
  font-size: 0.78rem;
  color: #64748b;
}
@media (max-width: 991px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }
}

/* 3. The SoFloDrip Standard Section */
.section-soflodrip-standard {
  background: linear-gradient(135deg, #F4FBFC 0%, #FFFFFF 100%);
  border-top: 1px solid #E2ECEE;
  border-bottom: 1px solid #E2ECEE;
}
.standard-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.standard-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #2D3E4E;
}
.standard-text p {
  margin-bottom: 18px;
}
.standard-quote {
  margin: 24px 0;
  padding: 16px 20px;
  background: #ffffff;
  border-left: 4px solid #00A8A8;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  font-size: 1.12rem;
  color: #0D2230;
}
.standard-cta-note {
  font-weight: 700;
  color: #00A8A8;
  font-size: 1.1rem;
}
.standard-img-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(13, 34, 48, 0.08);
  border: 1px solid #E2ECEE;
}
.standard-cleanroom-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.standard-img-caption {
  padding: 16px 20px;
  background: #0D2230;
  color: #ffffff;
}
.standard-img-caption strong {
  display: block;
  font-size: 1rem;
  color: #5EEAD4;
}
.standard-img-caption span {
  font-size: 0.88rem;
  color: #A0B2C0;
}

/* 4. Leadership & Medical Director Team Cards */
.team-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 36px;
}
.card-team-leadership {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #E2ECEE;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-team-leadership:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: #00A8A8;
}
.team-avatar-wrap {
  width: 130px;
  height: 130px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #E2ECEE;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: #F4FBFC;
}
.team-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-avatar-fallback {
  width: 100%;
  height: 100%;
  background: #00A8A8;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
}
.card-team-leadership .team-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0D2230;
  margin-bottom: 6px;
}
.card-team-leadership .team-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: #00A8A8;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.card-team-leadership .team-exp {
  font-size: 0.92rem;
  color: #5D7182;
  line-height: 1.5;
}

/* 5. What You Need to Know (Tight Spacing & Sequential 1-5) */
.section-need-to-know {
  background: #ffffff;
}
.need-to-know-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
  margin: 36px auto 0 auto;
}
.know-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #F8FCFD;
  border: 1px solid #E2ECEE;
  border-radius: 14px;
  padding: 20px 24px;
  transition: border-color 0.2s, background-color 0.2s;
}
.know-card:hover {
  background: #ffffff;
  border-color: #00A8A8;
}
.know-card-number {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-heading, sans-serif);
  background: #00A8A8;
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.know-card-body {
  flex: 1;
}
.know-card-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: #0D2230;
  margin-bottom: 4px;
}
.know-card-text {
  font-size: 0.98rem;
  color: #4A5D6E;
  line-height: 1.55;
  margin-bottom: 0;
}

/* 6. Hydration Options & Treatment Single UI */
.hydration-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0;
}
.hydration-bubble {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F0F9FB;
  border: 1.5px solid #00A8A8;
  color: #0D2230;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 6px 14px;
  border-radius: 9999px;
}
.drop-icon {
  color: #00A8A8;
}

/* Orange Best Seller Bubble Only for Immune Booster */
.badge-orange-bestseller {
  background-color: #FF8A00 !important;
  color: #ffffff !important;
  border-color: #FF8A00 !important;
  font-weight: 700;
}

/* Glutathione Real Clickable Link Banner */
.glutathione-addon-banner {
  background: linear-gradient(135deg, #0D2230 0%, #16364D 100%);
  color: #ffffff;
  border-radius: 14px;
  padding: 20px 24px;
  margin: 36px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 4px 16px rgba(13, 34, 48, 0.12);
}
.glutathione-addon-text {
  font-size: 1.05rem;
  font-weight: 600;
}
.glutathione-addon-text strong {
  color: #5EEAD4;
}
.glutathione-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #00A8A8;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
  transition: background-color 0.2s, transform 0.2s;
}
.glutathione-link-btn:hover {
  background-color: #008787;
  transform: translateY(-2px);
  color: #ffffff;
}

/* High-res Treatment Hero Image */
.drip-single-hero-img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* 7. Mobile Viewport Refinements (iPhone 16 / 17: 430px, 390px, 375px) */
@media (max-width: 768px) {
  .standard-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .standard-cleanroom-img {
    height: 240px;
  }
  .team-grid-three {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .card-team-leadership {
    padding: 24px 18px;
  }
  .about-lead-tagline {
    font-size: 1.45rem;
  }
  .about-content-body {
    font-size: 1rem;
    line-height: 1.7;
  }
  .glutathione-addon-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .glutathione-link-btn {
    width: 100%;
    justify-content: center;
  }
  .hero-updated-title {
    font-size: 2.15rem;
  }
  .hero-experience-text {
    font-size: 0.98rem;
    padding: 8px 16px;
  }
  .know-card {
    padding: 16px;
    gap: 14px;
  }
  .know-card-number {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }
  .know-card-title {
    font-size: 1.05rem;
  }
  .know-card-text {
    font-size: 0.92rem;
  }
}

/* Scannable Ingredients Grid (Clean & Modern, No Bubble Clutter) */
.scannable-ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 24px;
}
.ingredient-scannable-card {
  background: #ffffff;
  border: 1px solid #E2ECEE;
  border-radius: 16px;
  padding: 30px 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.ingredient-scannable-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  border-color: #00A8A8;
}
.ing-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.ing-badge-number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: #F0F9FB;
  color: #00A8A8;
  font-family: var(--font-heading, sans-serif);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid #00A8A8;
}
.ing-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0D2230;
  margin-bottom: 2px;
}
.ing-card-subtitle {
  font-size: 0.92rem;
  font-weight: 600;
  color: #00A8A8;
}
.ing-card-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #4A5D6E;
  margin-bottom: 20px;
}
.ing-contains-box {
  background: #F8FCFD;
  border: 1px solid #E6EFF1;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.ing-contains-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0D2230;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.ing-contains-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ing-tag-pill {
  background: #ffffff;
  border: 1px solid #D2E4E8;
  border-radius: 9999px;
  padding: 4px 10px;
  font-size: 0.84rem;
  color: #2D3E4E;
  font-weight: 500;
}
.ing-benefits-box {
  margin-bottom: 20px;
  flex-grow: 1;
}
.ing-benefits-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0D2230;
  margin-bottom: 10px;
}
.ing-benefits-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ing-benefits-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: #2D3E4E;
  line-height: 1.45;
}
.ing-benefits-checklist svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.ing-card-footer {
  border-top: 1px solid #EBF1F3;
  padding-top: 14px;
  font-size: 0.88rem;
  color: #5D7182;
  line-height: 1.5;
}
.ing-card-footer strong {
  color: #0D2230;
  margin-right: 4px;
}

@media (max-width: 900px) {
  .scannable-ingredients-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ingredient-scannable-card {
    padding: 22px 18px;
  }
}

/* ==========================================================================
   APPROVED UI REFERENCE IMPLEMENTATION: DRIP MENU UI.JPG & INGREDIENTS.JPG
   ========================================================================== */

/* 1. Global Navigation Active State */
.main-navigation .nav-menu li.current-menu-item > a,
.main-navigation .nav-menu li.current_page_item > a,
.main-navigation .nav-menu li.active > a,
body.page-template-page-drip-menu .main-navigation .nav-menu li a[href*="drip-menu"],
body.single-drip .main-navigation .nav-menu li a[href*="drip-menu"],
body.page-template-page-ingredients .main-navigation .nav-menu li a[href*="ingredients"] {
  background-color: #47bcd3;
  color: #ffffff !important;
  border-radius: 9999px;
  padding: 7px 18px !important;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(71, 188, 211, 0.35);
  transition: all 0.2s ease;
}
.main-navigation .nav-menu li.current-menu-item > a:hover,
.main-navigation .nav-menu li.active > a:hover,
body.page-template-page-drip-menu .main-navigation .nav-menu li a[href*="drip-menu"]:hover,
body.page-template-page-ingredients .main-navigation .nav-menu li a[href*="ingredients"]:hover {
  background-color: #35a5bc;
  color: #ffffff !important;
}

/* 2. Drip Menu Hero & Filter Section */
.section-drip-menu-hero {
  padding: 60px 0 20px 0;
  background: linear-gradient(180deg, #F4FAFB 0%, #FFFFFF 100%);
  position: relative;
}
.drip-menu-main-title {
  font-size: 3rem;
  font-weight: 800;
  color: #0E1E2D;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}
.squiggle-underline-center {
  display: block;
  margin: 6px auto 0 auto;
  line-height: 1;
}
.drip-menu-subtitle {
  font-size: 1.15rem;
  color: #5D7182;
  margin-bottom: 32px;
  font-weight: 400;
}
.drip-filter-pills-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.drip-filter-pill {
  background: #FFFFFF;
  border: 1.5px solid #DBE7EB;
  color: #4A5D6E;
  border-radius: 9999px;
  padding: 9px 24px;
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}
.drip-filter-pill:hover {
  border-color: #47BCD3;
  color: #47BCD3;
}
.drip-filter-pill.active {
  background: #47BCD3;
  border-color: #47BCD3;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(71, 188, 211, 0.35);
}

/* 3. Drip Cards 3-Column Grid */
.section-drip-menu-grid {
  padding: 20px 0 80px 0;
  background: #FFFFFF;
}
.drip-cards-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.card-drip-item {
  background: #FFFFFF;
  border: 1px solid #EEF3F6;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(13, 34, 48, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card-drip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(71, 188, 211, 0.16);
  border-color: #D2EBF0;
}
.card-drip-img-wrap {
  padding: 14px 14px 0 14px;
  position: relative;
}
.card-drip-img-link {
  display: block;
  overflow: hidden;
  border-radius: 14px;
}
.card-drip-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  transition: transform 0.3s ease;
}
.card-drip-item:hover .card-drip-img {
  transform: scale(1.03);
}
.card-drip-badge-bestseller {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #EA580C;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.4);
  z-index: 2;
  pointer-events: none;
}
.card-drip-content {
  padding: 18px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card-drip-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0E1E2D;
  margin-bottom: 8px;
  line-height: 1.3;
}
.card-drip-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.card-drip-title-link:hover {
  color: #47BCD3;
}
.card-drip-desc {
  font-size: 0.92rem;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.9em;
}
.card-drip-bottom-row {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #F1F5F8;
}
.card-drip-price-block {
  display: flex;
  flex-direction: column;
}
.card-drip-price-label {
  font-size: 0.75rem;
  color: #8E9BA5;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.card-drip-price-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0E1E2D;
  font-family: var(--font-heading);
  line-height: 1.1;
}
.card-drip-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #47BCD3;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(71, 188, 211, 0.35);
  transition: transform 0.2s ease, background-color 0.2s ease;
  flex-shrink: 0;
}
.card-drip-arrow-btn:hover {
  background-color: #35A5BC;
  transform: scale(1.1);
  color: #FFFFFF;
}
.drip-filter-empty-msg {
  text-align: center;
  padding: 40px;
  color: #5D7182;
  font-size: 1.1rem;
}

/* 4. Ingredients Page UI Reference */
.section-ingredients-hero-banner {
  width: 100%;
  background: #EAF4F6;
  position: relative;
  overflow: hidden;
}
.ingredients-hero-image-wrap {
  position: relative;
  width: 100%;
  height: 240px;
}
.ingredients-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.ingredients-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ingredients-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #0E1E2D;
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
}

.section-ingredients-intro {
  padding: 50px 0 20px 0;
  background: #FFFFFF;
}
.ingredients-intro-heading {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0E1E2D;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}
.ingredients-intro-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: #008787;
  margin-bottom: 12px;
}
.ingredients-intro-desc {
  max-width: 720px;
  margin: 0 auto 24px auto;
  font-size: 1rem;
  color: #5D7182;
  line-height: 1.65;
}
.ingredients-safety-pills-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.safety-tag-pill {
  background: #FFFFFF;
  border: 1.5px solid #D4EBF0;
  color: #008787;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 6px 16px;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0, 168, 168, 0.06);
}
.ingredients-grid-prompt {
  font-size: 0.95rem;
  color: #748899;
  margin-top: 16px;
}

.section-ingredients-content {
  padding: 10px 0 70px 0;
  background: #FFFFFF;
}
.ingredients-category-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}
.ingredient-category-card {
  background: #FFFFFF;
  border: 1.5px solid #E2ECEE;
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(13, 34, 48, 0.03);
}
.ingredient-category-card:hover {
  border-color: #47BCD3;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(71, 188, 211, 0.15);
}
.ingredient-category-card.active {
  border-color: #47BCD3;
  background: #F8FCFD;
  box-shadow: 0 6px 20px rgba(71, 188, 211, 0.22);
}
.ing-card-info {
  display: flex;
  flex-direction: column;
}
.ing-card-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #0E1E2D;
  margin-bottom: 2px;
  line-height: 1.3;
}
.ing-card-sub {
  font-size: 0.88rem;
  color: #64748B;
  margin-bottom: 0;
}
.ing-number-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #47BCD3;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(71, 188, 211, 0.35);
  transition: transform 0.2s ease;
}
.ingredient-category-card:hover .ing-number-badge {
  transform: scale(1.08);
}

/* Ingredient Detail Panel */
.ingredient-detail-panel {
  max-width: 960px;
  margin: 36px auto 0 auto;
  background: #FFFFFF;
  border: 1.5px solid #E2ECEE;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(13, 34, 48, 0.05);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}
.detail-panel-left {
  display: flex;
  flex-direction: column;
}
.detail-panel-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0E1E2D;
  margin-bottom: 12px;
}
.detail-panel-desc {
  font-size: 1.02rem;
  color: #4A5D6E;
  line-height: 1.65;
  margin-bottom: 20px;
}
.detail-panel-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.detail-cyan-tag {
  background: #E6F6F8;
  color: #008787;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.84rem;
  font-weight: 600;
  border: 1px solid #D2ECF0;
}
.detail-panel-footnote {
  margin-top: auto;
  font-size: 0.9rem;
  color: #748899;
}
.detail-panel-footnote a {
  color: #00A8A8;
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
}
.detail-panel-footnote a:hover {
  text-decoration: underline;
}
.detail-panel-right {
  background: #F8FCFD;
  border: 1px solid #E2ECEE;
  border-radius: 14px;
  padding: 24px 28px;
}
.constituents-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0E1E2D;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E2ECEE;
}
.constituents-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.constituent-item {
  font-size: 0.95rem;
  color: #2D3E4E;
  font-weight: 500;
  display: flex;
  align-items: center;
  line-height: 1.4;
}

.ingredients-disclaimer-card {
  max-width: 860px;
  margin: 36px auto 0 auto;
  padding: 18px 24px;
  background: #FBFDFE;
  border: 1px solid #E5EDF0;
  border-radius: 12px;
  text-align: center;
  font-size: 0.86rem;
  color: #748899;
  line-height: 1.6;
}

/* 5. Standardized Single Drip Template UI */
.single-drip-hero {
  padding: 50px 0 24px 0;
  background: linear-gradient(180deg, #F4FAFB 0%, #FFFFFF 100%);
}
.single-drip-badges-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.single-drip-category-pill {
  background: #FFFFFF;
  border: 1.5px solid #DBE7EB;
  color: #008787;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 4px 14px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.single-drip-title {
  font-size: 2.85rem;
  font-weight: 800;
  color: #0E1E2D;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  display: inline-block;
  position: relative;
}
.single-drip-subtitle {
  font-size: 1.15rem;
  color: #5D7182;
  max-width: 720px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
}
.single-drip-pricing-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  background: #FFFFFF;
  padding: 12px 28px;
  border-radius: 9999px;
  border: 1.5px solid #E2ECEE;
  box-shadow: 0 4px 16px rgba(13, 34, 48, 0.05);
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.single-drip-price {
  font-size: 2rem;
  font-weight: 800;
  color: #00A8A8;
  font-family: var(--font-heading);
}
.single-drip-period {
  color: #748899;
  font-size: 0.92rem;
}
.single-drip-duration {
  font-weight: 600;
  color: #2C3E50;
  font-size: 0.95rem;
}
.single-drip-hydration-wrap {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.single-drip-hydration-pill {
  background: #FFFFFF;
  border: 1.5px solid #D2ECF0;
  color: #008787;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 6px 16px;
  border-radius: 9999px;
  box-shadow: 0 2px 6px rgba(0, 168, 168, 0.06);
}
.container-single-drip {
  max-width: 860px;
  margin: 0 auto;
}
.single-drip-body-section {
  padding: 30px 0 70px 0;
  background: #FFFFFF;
}
.single-drip-image-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(13, 34, 48, 0.08);
  margin-bottom: 36px;
}
.single-drip-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.single-drip-formula-box {
  background: #F4FAFB;
  border: 1.5px solid #E2ECEE;
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 36px;
}
.formula-box-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0E1E2D;
  margin-bottom: 12px;
}
.formula-box-text {
  font-size: 1.05rem;
  color: #2C3E50;
  line-height: 1.65;
  margin-bottom: 0;
}
.single-drip-entry-content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4A5D6E;
  margin-bottom: 36px;
}
.single-drip-benefits-block {
  margin-bottom: 36px;
}
.benefits-block-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0E1E2D;
  margin-bottom: 20px;
}
.single-drip-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.single-drip-benefits-list .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.02rem;
  color: #2D3E4E;
  line-height: 1.5;
}
.single-drip-benefits-list .benefit-item svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.single-drip-info-callout {
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 28px;
}
.callout-amber {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
}
.callout-amber .callout-heading {
  color: #92400E;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.callout-amber .callout-text {
  color: #78350F;
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.6;
}
.callout-teal {
  background: #F4FBFC;
  border: 1px solid #E2ECEE;
  border-left: 4px solid #00A8A8;
}
.callout-teal .callout-heading {
  color: #0E1E2D;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.callout-teal .callout-text {
  color: #4A5D6E;
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.6;
}
.callout-rose {
  background: #FEF2F2;
  border: 1px solid #FECACA;
}
.callout-rose .callout-heading {
  color: #991B1B;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.callout-rose .callout-text {
  color: #7F1D1D;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}
.glutathione-addon-banner {
  background: linear-gradient(135deg, #F0FDFD 0%, #E6F8F8 100%);
  border: 1.5px solid #47BCD3;
  border-radius: 16px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 36px 0;
  box-shadow: 0 4px 18px rgba(71, 188, 211, 0.15);
}
.glutathione-addon-text {
  font-size: 1.05rem;
  color: #0E1E2D;
  font-weight: 500;
}
.glutathione-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #47BCD3;
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(71, 188, 211, 0.35);
  transition: transform 0.2s, background-color 0.2s;
}
.glutathione-link-btn:hover {
  background-color: #35A5BC;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.single-drip-actions-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid #0E1E2D;
  color: #0E1E2D;
  padding: 12px 26px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-outline-navy:hover {
  background: #0E1E2D;
  color: #FFFFFF;
}

/* 6. Mobile Adaptation & Breakpoints */
@media (max-width: 1024px) {
  .drip-cards-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .drip-menu-main-title,
  .ingredients-intro-heading,
  .ingredients-hero-title,
  .single-drip-title {
    font-size: 2.2rem;
  }
  .drip-cards-grid-3col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .drip-filter-pills-wrap {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .drip-filter-pills-wrap::-webkit-scrollbar {
    display: none;
  }
  .drip-filter-pill {
    white-space: nowrap;
    flex-shrink: 0;
  }
  .ingredients-category-grid-2col {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ingredient-detail-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }
  .glutathione-addon-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .single-drip-hero-img {
    height: 280px;
  }
  .single-drip-pricing-badge {
    border-radius: 20px;
    padding: 12px 18px;
  }
  .single-drip-actions-row .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .drip-menu-main-title,
  .ingredients-intro-heading,
  .ingredients-hero-title,
  .single-drip-title {
    font-size: 1.85rem;
  }
  .card-drip-img {
    height: 180px;
  }
  .card-drip-content {
    padding: 14px 16px 18px 16px;
  }
  .single-drip-hero-img {
    height: 230px;
  }
  .single-drip-formula-box {
    padding: 20px 18px;
  }
}

