/* ============================================================
   SYNAPTIC BIOTECH — Global Stylesheet (Light Clinical Theme)
   ============================================================
   Color Palette:
     --bg-primary:    #ffffff  (main white background)
     --bg-secondary:  #f8fafc  (off-white, section backgrounds)
     --bg-tertiary:   #f1f5f9  (subtle grey, cards hover)
     --bg-card:       #ffffff  (card white)
     --accent:        #0284c7  (medical blue — primary)
     --accent-hover:  #0369a1
     --accent-light:  #e0f2fe  (blue tint)
     --accent-green:  #059669  (trust/success)
     --accent-amber:  #d97706  (warning, stars)
     --accent-red:    #dc2626  (error)
     --text-primary:  #0f172a  (near-black, text)
     --text-secondary:#475569  (grey text)
     --text-muted:    #64748b  (lighter grey)
     --border:        #e5e7eb  (subtle borders)
     --border-strong: #cbd5e1
   ============================================================ */

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f4f6f9;
  --bg-tertiary: #e8ecf2;
  --bg-card: #ffffff;
  --accent: #0ea5e9;
  --accent-hover: #0284c7;
  --accent-light: #e0f2fe;
  --accent-green: #00a896;
  --accent-green-light: #e0f7f5;
  --accent-amber: #f0a500;
  --accent-amber-light: rgba(240, 165, 0, 0.15);
  --accent-red: #ef4444;
  --accent-red-light: rgba(239, 68, 68, 0.15);
  --text-primary: #0d1b2a;
  --text-secondary: #3a4f66;
  --text-muted: #6b829e;
  --border: #dce3ed;
  --border-strong: #bac7d5;
  --shadow-sm: 0 1px 2px rgba(13, 27, 42, 0.04);
  --shadow: 0 1px 3px rgba(13, 27, 42, 0.06), 0 1px 2px rgba(13, 27, 42, 0.04);
  --shadow-lg: 0 10px 20px -3px rgba(13, 27, 42, 0.08), 0 4px 6px -2px rgba(13, 27, 42, 0.04);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1280px;
  --utility-bar-height: 42px;
  --header-height: 76px;
  --transition: 0.25s ease;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

input,
select,
textarea {
  font-family: inherit;
  outline: none;
}

/* ---------- Mobile utilities ---------- */
@media (max-width: 768px) {
  .hidden-mobile {
    display: none !important;
  }
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

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

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

.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--border);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp .svg-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-whatsapp:hover {
  background: #1fb855;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-in-stock {
  background: var(--accent-green-light);
  color: var(--accent-green);
}

.badge-low-stock {
  background: var(--accent-amber-light);
  color: var(--accent-amber);
}

.badge-out-of-stock {
  background: var(--accent-red-light);
  color: var(--accent-red);
}

.badge-verified {
  background: var(--accent-light);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-discount {
  background: var(--accent-green);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.research-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--accent-amber);
  font-size: 0.9rem;
  line-height: 1;
}

.stars .empty {
  color: var(--border-strong);
}

/* ============================================================
   UTILITY TOP BAR
   ============================================================ */
.utility-bar {
  background: #0d1b2a;
  color: #aec4d8;
  height: var(--utility-bar-height);
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  position: sticky;
  top: 0;
  z-index: 1001;
}

.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.utility-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.utility-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.utility-bar a {
  color: #aec4d8;
  opacity: 0.95;
  transition: opacity var(--transition);
}

.utility-bar a:hover {
  opacity: 1;
  color: #ffffff;
}

.currency-selector {
  position: relative;
}

.currency-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.currency-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #fff;
  transform: translateY(-1px);
}

.currency-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 0, 0, 0.05);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.currency-selector.open .currency-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.currency-dropdown button {
  display: grid;
  grid-template-columns: 24px 40px 1fr;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text-primary);
  text-align: left;
  transition: background var(--transition);
}

.currency-dropdown button:hover {
  background: var(--bg-tertiary);
}

.currency-dropdown button.active {
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 600;
}

.currency-option-symbol {
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
}

.currency-option-code {
  font-weight: 600;
}

.currency-option-name {
  color: var(--text-muted);
  font-size: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.currency-dropdown button.active .currency-option-symbol,
.currency-dropdown button.active .currency-option-code,
.currency-dropdown button.active .currency-option-name {
  color: var(--accent);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: var(--utility-bar-height);
  z-index: 1000;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
}

.header .container {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--text-primary);
}

.logo-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

/* Logo text block: brand name + tagline stacked */
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-name {
  color: var(--text-primary);
  letter-spacing: 0.01em;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--text-primary);
  opacity: 0.75;
  text-transform: uppercase;
}


/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.nav a,
.nav-dropdown>span {
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.nav a:hover,
.nav-dropdown:hover>span {
  color: var(--accent);
  background: var(--bg-tertiary);
}

.nav a.active {
  color: var(--accent);
  font-weight: 600;
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.nav-dropdown-menu a:hover {
  background: var(--bg-tertiary);
  color: var(--accent);
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.header-search {
  position: relative;
}

.header-search input {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 12px 7px 34px;
  color: var(--text-primary);
  font-size: 0.84rem;
  width: 190px;
  transition: all var(--transition);
}

.header-search input::placeholder {
  color: var(--text-muted);
}

.header-search input:focus {
  border-color: var(--accent);
  background: var(--bg-card);
  width: 240px;
}

.header-search .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.header-search .search-icon::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.header-search .search-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  left: 11px;
  top: 11px;
  border-radius: 999px;
}

.search-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  max-height: 320px;
  overflow-y: auto;
  display: none;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

.search-results.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background var(--transition);
  color: var(--text-primary);
}

.search-result-item:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.search-result-item img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.search-result-item .sr-name {
  font-size: 0.85rem;
  font-weight: 600;
}

.search-result-item .sr-price {
  font-size: 0.8rem;
  color: var(--accent);
}

/* Authenticate Button */
.btn-auth {
  background: var(--accent-green);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-auth:hover {
  background: #047857;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
}

/* Cart */
.cart-toggle {
  position: relative;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 700;
  transition: all var(--transition);
}

.cart-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.cart-count.hidden {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all var(--transition);
}

@media (prefers-color-scheme: dark) {
  .hamburger span {
    background: #cbd5e1;
  }
}

/* Mobile nav */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: calc(var(--utility-bar-height) + var(--header-height));
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.4);
  z-index: 999;
}

.mobile-nav-overlay.active {
  display: block;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--utility-bar-height) + var(--header-height));
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 1000;
  flex-direction: column;
  gap: 4px;
  max-height: calc(100vh - var(--utility-bar-height) - var(--header-height));
  overflow-y: auto;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-weight: 500;
}

.mobile-nav a:hover {
  background: var(--bg-tertiary);
  color: var(--accent);
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100%;
  height: 100vh;
  background: var(--bg-card);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(15, 23, 42, 0.1);
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.cart-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.cart-close {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  font-size: 1.1rem;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.cart-close:hover {
  background: var(--accent-red-light);
  color: var(--accent-red);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
}

.cart-empty-icon {
  color: var(--accent);
  margin: 0 auto 12px;
}

.cart-empty-icon .svg-icon {
  width: 42px;
  height: 42px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.cart-item-dose {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.cart-qty button {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  width: 28px;
  height: 28px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.cart-qty button:hover {
  background: var(--accent);
  color: #fff;
}

.cart-qty span {
  padding: 0 10px;
  font-size: 0.85rem;
  font-weight: 600;
}

.cart-item-price {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
}

.cart-item-delete {
  flex-shrink: 0;
  align-self: center;
  color: var(--text-muted);
  padding: 6px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-delete:hover {
  color: var(--accent-red);
  background: var(--accent-red-light, #fff1f2);
}

.cart-item-delete .svg-icon {
  width: 16px;
  height: 16px;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 1rem;
  font-weight: 700;
}

.cart-total .price {
  color: var(--accent);
}

.cart-discount-note {
  background: var(--accent-green-light);
  color: var(--accent-green);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  margin-bottom: 12px;
  text-align: center;
  font-weight: 600;
}

.cart-footer .btn {
  width: 100%;
  padding: 13px;
  font-size: 0.95rem;
}

.cart-free-shipping {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-free-shipping-achieved {
  color: var(--accent-green);
  font-weight: 600;
  font-size: 0.82rem;
}

.cart-free-shipping-bar {
  height: 4px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.cart-free-shipping-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
  transition: width 0.4s ease;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 70px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  border: 1px solid rgba(2, 132, 199, 0.2);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 480px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-badges {
  padding: 50px 0;
  background: var(--bg-card);
}

.trust-badges .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-badge {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.trust-badge:hover {
  border-color: var(--accent);
  background: var(--bg-card);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.trust-badge .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.trust-badge h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.trust-badge p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   FEATURED SECTIONS
   ============================================================ */
.featured-products,
.categories-section,
.auth-section {
  padding: 70px 0;
}

.categories-section {
  background: var(--bg-secondary);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 16px;
  flex-wrap: wrap;
}

.section-header-text {
  flex: 1;
  min-width: 260px;
}

.section-header-text .section-subtitle {
  margin-bottom: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Featured grid — slightly smaller cards than store grid */
.featured-grid .product-card-image {
  aspect-ratio: 5 / 3;
}

.featured-grid .product-card-body {
  padding: 12px 14px 14px;
}

.featured-grid .product-card-name {
  font-size: 0.92rem;
}

.featured-grid .product-card-dose {
  font-size: 0.72rem;
}

.featured-grid .product-card-desc {
  font-size: 0.76rem;
  margin-bottom: 8px;
}

.featured-grid .product-card-price {
  font-size: 0.88rem;
}

.featured-grid .btn-add {
  padding: 6px 12px;
  font-size: 0.78rem;
}

/* Product Card */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.product-card:hover .product-card-image img {
  transform: scale(1.04);
}

.product-card-image .badge {
  position: absolute;
  top: 12px;
  right: 12px;
  backdrop-filter: blur(8px);
}

.product-card-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 6px;
}

.product-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.product-card-dose {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.product-card-doses-count {
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.product-card-oos {
  opacity: 0.7;
}

.product-card-oos .btn-add {
  opacity: 0.45;
  cursor: not-allowed;
}

.product-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.product-card-rating .count {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.product-card-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.product-card-price .from {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
}

.btn-add {
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-add:hover {
  background: var(--accent-hover);
}

.view-all-wrap {
  text-align: center;
  margin-top: 40px;
}

/* Categories grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-card {
  position: relative;
  padding: 30px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  transition: all var(--transition);
}

.category-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--text-primary);
}

.category-card .cat-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.category-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.category-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

.category-card .cat-count {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
}

/* Auth steps */
.auth-section .section-title {
  text-align: center;
}

.auth-section .section-subtitle {
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  text-align: center;
  padding: 30px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-green));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* About snippet */
.about-snippet {
  padding: 70px 0;
  border-top: 1px solid var(--border);
}

.about-snippet .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-snippet-content {
  flex: 1;
}

.about-snippet-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.about-snippet-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-snippet-content .btn {
  margin-top: 12px;
}

.about-snippet-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-snippet-image img {
  border-radius: 12px;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0d1b2a;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand .logo span {
  color: #ffffff;
}

.footer-brand p {
  font-size: 0.85rem;
  color: #8da3b8;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-links a {
  display: block;
  padding: 5px 0;
  color: #8da3b8;
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8da3b8;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #8da3b8;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: #8da3b8;
  opacity: 0.8;
}

/* ============================================================
   STORE PAGE
   ============================================================ */
.page-header {
  padding: 50px 0 40px;
  background: linear-gradient(135deg, #0d1b2a 0%, #0e2640 55%, #122e3e 100%);
  color: #ffffff;
  border-bottom: 1px solid #1e2f45;
}

.page-header h1 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.page-header p {
  color: #aec4d8;
}

.store-page {
  padding: 40px 0 70px;
}

.store-header {
  background: linear-gradient(135deg, #0d1b2a 0%, #0e2640 55%, #122e3e 100%);
  color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.store-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.store-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.store-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
}

.store-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  background: var(--bg-card);
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  gap: 16px;
  flex-wrap: wrap;
}

.store-search {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.store-search input {
  width: 100%;
  background: var(--bg-tertiary);
  border: 2px solid transparent;
  padding: 12px 16px 12px 44px;
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: all var(--transition);
}

.store-search input::placeholder {
  color: var(--text-muted);
}

.store-search input:focus {
  background: var(--bg-card);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-light);
}

.store-search::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  pointer-events: none;
  margin-top: -2px;
  margin-left: -2px;
}

.store-search::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  width: 6px;
  height: 2px;
  background: var(--text-muted);
  transform: rotate(45deg);
  pointer-events: none;
  margin-top: 5px;
}

.store-result-count {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Sort dropdown */
.store-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

.store-sort-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.store-sort-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.store-sort-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg-tertiary);
  border: 2px solid transparent;
  padding: 10px 38px 10px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  min-width: 180px;
}

.store-sort-select:hover {
  border-color: var(--accent);
}

.store-sort-select:focus {
  outline: none;
  background: var(--bg-card);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-light);
}

.store-sort-select option {
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 8px;
}

.store-sort-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
  transition: color var(--transition);
}

.store-sort-wrapper:hover .store-sort-chevron {
  color: var(--accent);
}

.store-layout {
  display: flex;
  gap: 30px;
}

.filter-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  align-self: flex-start;
  position: sticky;
  top: calc(var(--utility-bar-height) + var(--header-height) + 24px);
  box-shadow: var(--shadow);
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--text-primary);
  border-bottom: 2px solid var(--bg-tertiary);
  padding-bottom: 8px;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all var(--transition);
  margin-bottom: 4px;
}

.filter-group label:hover {
  background: var(--bg-tertiary);
  color: var(--accent);
}

.filter-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.store-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-content: start;
}

.filter-toggle-btn {
  display: none;
  margin-bottom: 16px;
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-page {
  padding: 30px 0 70px;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.product-breadcrumb a {
  color: var(--text-muted);
}

.product-breadcrumb a:hover {
  color: var(--accent);
}

.product-main {
  display: grid;
  grid-template-columns: 4.2fr 5.8fr;
  gap: 60px;
  margin-bottom: 50px;
}

/* Gallery */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-gallery-main {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-gallery-thumbs img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  border: 2px solid var(--border);
  object-fit: cover;
  cursor: pointer;
  transition: border-color var(--transition);
}

.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
  border-color: var(--accent);
}

/* Product info */
.product-info {
  display: flex;
  flex-direction: column;
}

.product-info .product-category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.product-info h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.product-info .product-short-desc {
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.7;
}

.product-info .product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.product-info .product-rating .count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Dose & Labels */
.product-dose-block,
.product-qty-block {
  margin-bottom: 28px;
}

.product-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.dose-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dose-option {
  padding: 12px 20px;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
}

.dose-option:hover:not(.out-of-stock) {
  border-color: var(--accent);
}

.dose-option.active {
  border-color: var(--accent);
  background: var(--accent-light);
  color: var(--accent);
}

.dose-option.out-of-stock {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.product-price-stock {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.product-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
}

.qty-control button {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  width: 38px;
  height: 38px;
  font-size: 1rem;
  transition: background var(--transition);
}

.qty-control button:hover {
  background: var(--accent);
  color: #fff;
}

.qty-control input {
  width: 50px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
}

.product-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  padding-top: 10px;
}

.product-actions .btn {
  flex: 1;
  padding: 16px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 168, 150, 0.2);
}

.product-actions .btn-whatsapp {
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.product-extras {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.product-coa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--accent-light);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: 8px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}

.product-coa-link:hover {
  background: var(--accent);
  color: #fff;
}

.product-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.product-trust-row span {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-trust-row span::before {
  content: "✓";
  color: var(--accent-green);
  font-weight: 800;
}

/* Tabs */
.product-tabs {
  margin-top: 30px;
}

.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  overflow-x: auto;
}

.tab-nav button {
  padding: 12px 22px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.tab-nav button:hover {
  color: var(--text-primary);
}

.tab-nav button.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.tab-content {
  display: none;
  color: var(--text-secondary);
  line-height: 1.8;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 24px;
}

.tab-content h3:first-child {
  margin-top: 0;
}

.tab-content p {
  margin-bottom: 12px;
}

.tab-content ul {
  list-style: disc;
  padding-left: 20px;
  margin: 8px 0 12px;
}

/* Specifications table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.specs-table tr:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.specs-table td {
  padding: 12px 18px;
  font-size: 0.9rem;
  vertical-align: top;
}

.specs-table td:first-child {
  color: var(--text-muted);
  font-weight: 600;
  width: 40%;
  background: var(--bg-secondary);
}

.specs-table td:last-child {
  color: var(--text-primary);
  font-weight: 500;
}

/* Research studies */
.study-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 14px;
  transition: all var(--transition);
}

.study-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.study-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.study-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.study-description {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}

.study-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}

.study-link:hover {
  text-decoration: underline;
}

/* ============================================================
   REVIEWS — 2-column layout
   ============================================================ */
.reviews-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
  padding: 4px 0;
}

/* Left sidebar */
.reviews-sidebar {
  position: sticky;
  top: 100px;
}

.reviews-avg-block {
  text-align: center;
  padding: 24px 20px 20px;
  background: var(--bg-secondary);
  border-radius: 16px;
  margin-bottom: 12px;
}

.reviews-avg-score {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 8px;
}

.reviews-avg-stars {
  margin-bottom: 6px;
}

.reviews-avg-stars .stars {
  font-size: 1.15rem;
  gap: 3px;
}

.reviews-avg-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.reviews-dist {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 4px 0;
}

.dist-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dist-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  min-width: 22px;
  text-align: right;
}

.dist-track {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.dist-fill {
  height: 100%;
  background: var(--accent-amber);
  border-radius: 99px;
  transition: width 0.5s ease;
}

.dist-count {
  font-size: 0.73rem;
  color: var(--text-muted);
  min-width: 16px;
  text-align: right;
}

/* Right main */
.reviews-main {
  min-width: 0;
}

.reviews-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}

.reviews-toolbar-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.reviews-toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-write-btn {
  padding: 7px 16px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.reviews-sort-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-sort-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.reviews-sort-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg-card) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b829e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center;
  background-size: 12px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 6px 30px 6px 11px;
  font-size: 0.8rem;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--transition);
}

.reviews-sort-select:hover,
.reviews-sort-select:focus {
  border-color: var(--accent);
  outline: none;
}

/* Review cards */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 27, 42, 0.08);
  border-color: var(--border-strong);
}

.review-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.review-top-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.review-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

.review-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 14px;
}

.review-bottom-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.review-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent-green-light);
  color: var(--accent-green);
  border: 1px solid rgba(0, 168, 150, 0.25);
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.review-dose-tag {
  display: inline-block;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 0.71rem;
  font-weight: 600;
}

.review-author-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.review-author {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  font-style: italic;
}

.review-location {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: normal;
}

.reviews-footer {
  text-align: center;
  margin-top: 20px;
}

.reviews-empty {
  padding: 40px 0;
  text-align: center;
  color: var(--text-secondary);
}

.reviews-load-more {
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .reviews-sidebar {
    position: static;
  }

  .reviews-avg-block {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    padding: 16px 18px;
  }

  .reviews-avg-score {
    font-size: 3rem;
    margin-bottom: 0;
  }
}

/* Related products */
.related-products {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   ABOUT / FAQ / CONTACT / GENERIC CONTENT PAGES
   ============================================================ */
.content-page {
  padding: 50px 0 70px;
}

.content-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.content-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.content-hero p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.about-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}

.about-feature:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.about-feature .icon {
  font-size: 1.9rem;
  margin-bottom: 14px;
}

.about-feature h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-feature p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-content {
  max-width: 780px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  margin-top: 40px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.about-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* FAQ */
.faq-page {
  padding: 80px 0;
}

.faq-hero {
  text-align: center;
  margin-bottom: 56px;
}

.faq-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.faq-hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.faq-group {
  margin-bottom: 40px;
}

.faq-group-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.08) 0%, rgba(14, 165, 233, 0.04) 100%);
  border: 1px solid rgba(2, 132, 199, 0.15);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 8px 16px;
  margin-bottom: 14px;
  display: inline-block;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--bg-card);
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--border-strong);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-item.active {
  border-color: var(--accent);
  border-left: 3px solid var(--accent);
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  transition: all var(--transition);
  gap: 16px;
}

.faq-question:hover {
  background: var(--bg-secondary);
}

.faq-item.active .faq-question {
  color: var(--accent);
}

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  transition: all var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.active .faq-icon {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 22px 20px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.shipping-faqs {
  padding-top: 60px;
}

/* Page loading state — skeleton shimmer system */
.page-loading {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 0;
  font-size: 0.9rem;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* Skeleton shimmer loading */
@keyframes shimmer {
  0% {
    background-position: -600px 0;
  }

  100% {
    background-position: 600px 0;
  }
}

.skeleton-loader {
  display: grid;
  gap: 20px;
  width: 100%;
}

.skeleton-bone {
  background: linear-gradient(90deg,
      var(--bg-tertiary) 0%,
      rgba(255, 255, 255, 0.08) 40%,
      var(--bg-tertiary) 80%);
  background-size: 600px 100%;
  animation: shimmer 1.6s ease-in-out infinite;
  border-radius: 10px;
}

/* Card skeleton — product / category / feature / step / payment card */
.skeleton-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.skeleton-card .skeleton-bone.skel-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
}

.skeleton-card .skeleton-bone.skel-title {
  height: 16px;
  width: 60%;
}

.skeleton-card .skeleton-bone.skel-text {
  height: 10px;
  width: 90%;
}

.skeleton-card .skeleton-bone.skel-text-short {
  height: 10px;
  width: 50%;
}

.skeleton-card .skeleton-bone.skel-image {
  height: 180px;
  width: 100%;
  border-radius: 10px;
}

.skeleton-card .skeleton-bone.skel-badge {
  height: 26px;
  width: 80px;
  border-radius: 20px;
}

/* Product card skeleton */
.skeleton-product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.skeleton-product-card .skel-product-image {
  height: 200px;
  width: 100%;
  border-radius: 0;
}

.skeleton-product-card .skel-product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Category card skeleton */
.skeleton-category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.skeleton-category-card .skel-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

.skeleton-category-card .skel-cat-title {
  height: 16px;
  width: 65%;
}

.skeleton-category-card .skel-cat-desc {
  height: 10px;
  width: 85%;
}

.skeleton-category-card .skel-cat-count {
  height: 12px;
  width: 40%;
  margin-top: 4px;
}

/* FAQ skeleton */
.skeleton-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.skeleton-faq-item .skel-faq-q {
  height: 14px;
  flex: 1;
}

.skeleton-faq-item .skel-faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Text block skeleton (about content / how-to-order notes) */
.skeleton-text-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skeleton-text-block .skel-heading {
  height: 20px;
  width: 45%;
  border-radius: 6px;
  margin-bottom: 4px;
}

.skeleton-text-block .skel-line {
  height: 11px;
  border-radius: 5px;
}

.skeleton-text-block .skel-line:nth-child(2) {
  width: 100%;
}

.skeleton-text-block .skel-line:nth-child(3) {
  width: 92%;
}

.skeleton-text-block .skel-line:nth-child(4) {
  width: 85%;
}

.skeleton-text-block .skel-line:nth-child(5) {
  width: 96%;
}

.skeleton-text-block .skel-line:nth-child(6) {
  width: 60%;
}

/* Contact info skeleton */
.skeleton-contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.skeleton-contact-card .skel-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  flex-shrink: 0;
}

.skeleton-contact-card .skel-contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skeleton-contact-card .skel-contact-label {
  height: 12px;
  width: 35%;
}

.skeleton-contact-card .skel-contact-value {
  height: 10px;
  width: 70%;
}

/* Filter sidebar skeleton */
.skeleton-filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
}

.skeleton-filter-item .skel-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  flex-shrink: 0;
}

.skeleton-filter-item .skel-filter-label {
  height: 12px;
  flex: 1;
}

/* Grid layout helpers for skeletons */
.skeleton-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.skeleton-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Stagger animation delays */
.skeleton-card:nth-child(1),
.skeleton-product-card:nth-child(1),
.skeleton-category-card:nth-child(1),
.skeleton-faq-item:nth-child(1),
.skeleton-contact-card:nth-child(1) {
  animation-delay: 0s;
}

.skeleton-card:nth-child(2),
.skeleton-product-card:nth-child(2),
.skeleton-category-card:nth-child(2),
.skeleton-faq-item:nth-child(2),
.skeleton-contact-card:nth-child(2) {
  animation-delay: 0.1s;
}

.skeleton-card:nth-child(3),
.skeleton-product-card:nth-child(3),
.skeleton-category-card:nth-child(3),
.skeleton-faq-item:nth-child(3),
.skeleton-contact-card:nth-child(3) {
  animation-delay: 0.2s;
}

.skeleton-card:nth-child(4),
.skeleton-product-card:nth-child(4),
.skeleton-category-card:nth-child(4),
.skeleton-faq-item:nth-child(4),
.skeleton-contact-card:nth-child(4) {
  animation-delay: 0.3s;
}

.skeleton-card:nth-child(5),
.skeleton-product-card:nth-child(5) {
  animation-delay: 0.4s;
}

.skeleton-card:nth-child(6),
.skeleton-product-card:nth-child(6) {
  animation-delay: 0.5s;
}

/* Responsive skeleton grids */
@media (max-width: 1024px) {
  .skeleton-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .skeleton-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .skeleton-grid-3,
  .skeleton-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* USA sourced quality banner */
.quality-banner {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.06) 0%, rgba(14, 165, 233, 0.03) 100%);
  border: 1px solid rgba(2, 132, 199, 0.15);
  border-radius: 10px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.quality-banner strong {
  color: var(--text-primary);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 920px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
  color: var(--text-primary);
}

.contact-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  color: var(--text-primary);
}

.contact-card .icon {
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.contact-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.contact-form h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}

.form-group textarea {
  height: 110px;
  resize: vertical;
}

/* ============================================================
   VERIFY PAGE
   ============================================================ */
.verify-page {
  padding: 60px 0 80px;
}

/* Hero */
.verify-hero {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.verify-hero-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--accent-light);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.verify-hero-icon svg {
  width: 28px;
  height: 28px;
}

.verify-hero-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.verify-hero-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto;
}

/* Input card */
.verify-card {
  max-width: 480px;
  margin: 0 auto 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.verify-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.verify-input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-main);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  transition: all var(--transition);
  margin-bottom: 6px;
}

.verify-input:focus {
  border-color: var(--accent);
  background: var(--bg-card);
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.verify-hint {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}

.verify-btn {
  width: 100%;
  padding: 13px;
  font-size: 0.95rem;
}

/* Loading state */
.verify-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.verify-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Result container */
.verify-result {
  max-width: 580px;
  margin: 0 auto 32px;
  display: none;
}

.verify-result.active {
  display: block;
}

/* Success card */
.verify-success-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.verify-success-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--accent-green-light);
  border-bottom: 1px solid rgba(0, 168, 150, 0.2);
}

.verify-success-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.verify-success-icon .svg-icon {
  width: 20px;
  height: 20px;
}

.verify-success-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 2px;
}

.verify-success-note {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.verify-product-details {
  padding: 4px 24px 8px;
}

.verify-product-details .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  gap: 16px;
}

.verify-product-details .detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--text-muted);
  flex-shrink: 0;
}

.detail-value {
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
}

/* Error card */
.verify-error-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--accent-red-light);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 14px;
}

.verify-error-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.verify-error-icon .svg-icon {
  width: 20px;
  height: 20px;
}

.verify-error-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-red);
  margin-bottom: 2px;
}

.verify-error-sub {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* Review form wrapper */
.review-form-wrapper {
  max-width: 580px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1.5px solid var(--accent);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.review-form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--accent-light);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}

.review-form-header-left h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.review-form-header-left p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-submit-form {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-optional {
  font-weight: 400;
  color: var(--text-muted);
}

.form-row select,
.form-row input,
.form-row textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: var(--font-main);
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-row select:focus,
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--accent);
  background: var(--bg-card);
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Star rating */
.star-rating-input {
  display: inline-flex;
  gap: 4px;
  font-size: 1.8rem;
  color: var(--border-strong);
  line-height: 1;
}

.star-rating-input .star {
  cursor: pointer;
  transition: color 0.12s ease, transform 0.12s ease;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
  font-size: inherit;
  color: inherit;
}

.star-rating-input .star.active,
.star-rating-input .star.hover {
  color: var(--accent-amber);
}

.star-rating-input .star:hover {
  transform: scale(1.15);
}

.review-form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.form-error {
  font-size: 0.82rem;
  color: var(--accent-red);
}

/* Thank-you state */
.review-thankyou {
  padding: 40px 32px;
  text-align: center;
}

.review-thankyou-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.review-thankyou-icon .svg-icon {
  width: 22px;
  height: 22px;
}

.review-thankyou h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.review-thankyou p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* How it works */
.verify-howto {
  max-width: 680px;
  margin: 56px auto 0;
  text-align: center;
}

.verify-howto-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.verify-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.verify-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.verify-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.verify-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.verify-step-icon svg {
  width: 22px;
  height: 22px;
}

.verify-step h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.verify-step p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Reviews empty state */
.reviews-empty {
  padding: 56px 24px;
  text-align: center;
}

.reviews-empty-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--accent-amber-light);
  color: var(--accent-amber);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.reviews-empty-icon svg {
  width: 28px;
  height: 28px;
}

.reviews-empty-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.reviews-empty-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.reviews-empty-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ============================================================
   HOW-TO-ORDER / SHIPPING PAGES
   ============================================================ */
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.how-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 22px;
  position: relative;
  transition: all var(--transition);
}

.how-step:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.how-step-number {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
}

.how-step .icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.how-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.how-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Payment Methods */
.payments-section {
  margin-top: 60px;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.payment-method {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  transition: all var(--transition);
  position: relative;
}

.payment-method:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.payment-method.featured {
  border-color: var(--accent-green);
  background: linear-gradient(180deg, var(--accent-green-light), #fff 50%);
}

.payment-method .pm-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.payment-method .pm-icon {
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  background: var(--bg-tertiary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-method h4 {
  font-size: 1rem;
  font-weight: 700;
}

.payment-method p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.payment-method .pm-highlight {
  display: inline-block;
  background: var(--accent-green);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

.payment-method .pm-note {
  font-size: 0.78rem;
  color: var(--accent-green);
  font-weight: 600;
  margin-top: 6px;
}

/* Shipping features */
.shipping-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.shipping-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}

.shipping-feature:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.shipping-feature .icon {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.shipping-feature h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.shipping-feature p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    margin: 0 auto 28px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  .trust-badges .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid,
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-snippet .container {
    flex-direction: column;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .product-main {
    grid-template-columns: 1fr;
  }

  .utility-left .shipping-msg {
    display: none;
  }

  /* Hide search bar on mobile — too cramped; hamburger menu is the nav */
  .header-search {
    display: none;
  }

  .btn-auth {
    display: none;
  }

  .hero {
    padding: 50px 0 40px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .content-hero h1 {
    font-size: 1.75rem;
  }

  .page-header h1 {
    font-size: 1.6rem;
  }

  .trust-badges .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .products-grid,
  .store-grid,
  .categories-grid,
  .steps-grid,
  .about-features {
    grid-template-columns: 1fr;
  }

  .verify-steps {
    grid-template-columns: 1fr;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .store-layout {
    flex-direction: column;
  }

  .filter-sidebar {
    width: 100%;
    display: none;
  }

  .filter-sidebar.active {
    display: block;
  }

  .filter-toggle-btn {
    display: inline-flex;
  }

  .store-sort {
    width: 100%;
  }

  .store-sort-select {
    min-width: 0;
    flex: 1;
  }

  .store-sort-wrapper {
    flex: 1;
  }

  .tab-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .tab-nav button {
    white-space: nowrap;
    padding: 12px 14px;
    font-size: 0.82rem;
  }

  .cart-drawer {
    width: 100%;
  }

  .dose-options {
    flex-direction: column;
  }

  .dose-option {
    text-align: center;
  }

  .product-info h1 {
    font-size: 1.5rem;
  }

  .product-price {
    font-size: 1.4rem;
  }

  /* Contact page mobile */
  .contact-page {
    padding: 48px 0;
  }

  .contact-grid {
    gap: 24px;
  }

  .contact-row {
    padding: 16px 18px;
    gap: 12px;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .contact-icon svg {
    width: 18px;
    height: 18px;
  }

  .contact-value {
    font-size: 0.92rem;
    word-break: break-all;
  }

  .contact-sub {
    font-size: 0.78rem;
  }

  .contact-form {
    padding: 24px 18px;
  }

  /* Page banner mobile */
  .page-banner {
    padding: 40px 0 50px;
  }

  .page-banner-text h1 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    margin: 10px 0 12px;
  }

  .page-banner-text p {
    font-size: 0.92rem;
  }

  .page-banner-media img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 16px;
  }

  /* Header tighter */
  .header .container {
    gap: 10px;
  }

  .header .container {
    gap: 10px;
  }

  .logo {
    font-size: 0.9rem;
    gap: 8px;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
  }

  .logo-name {
    font-size: 0.88rem;
  }

  .logo-tagline {
    font-size: 0.5rem;
    letter-spacing: 0.14em;
  }

  /* Utility bar */
  .utility-bar {
    font-size: 0.72rem;
  }

  /* Contact page small */
  .contact-page {
    padding: 32px 0;
  }

  .contact-grid {
    gap: 20px;
  }

  .contact-row {
    padding: 14px 14px;
    gap: 10px;
    border-radius: 12px;
  }

  .contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .contact-icon svg {
    width: 16px;
    height: 16px;
  }

  .contact-label {
    font-size: 0.68rem;
    letter-spacing: 0.5px;
  }

  .contact-value {
    font-size: 0.85rem;
  }

  .contact-sub {
    font-size: 0.74rem;
  }

  .contact-form {
    padding: 20px 14px;
    border-radius: 14px;
  }

  .contact-form h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
  }

  /* Page banner small */
  .page-banner {
    padding: 32px 0 40px;
  }

  .page-banner-text p {
    font-size: 0.86rem;
  }

  .page-banner-media img {
    height: 180px;
    border-radius: 14px;
  }

  .page-banner-inner {
    gap: 24px;
  }

  /* Footer */
  .footer {
    padding: 40px 0 24px;
  }
}

/* ============================================================
   PHASE 3.1 — Visual overhaul: hardcoded imagery, SVG icons,
   compact trust strip, colored bands, professional layouts
   ============================================================ */

/* ---------- SVG icon container ---------- */
.svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

.svg-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.svg-icon.text-icon {
  font-style: normal;
  font-weight: 600;
}

/* ---------- Utility bar refinements ---------- */
.utility-bar .utility-msg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.utility-bar .utility-msg .svg-icon {
  width: 16px;
  height: 16px;
  color: #e0f2fe;
}

/* ---------- Section heads ---------- */
.section-head {
  text-align: left;
  margin-bottom: 36px;
  max-width: 720px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-eyebrow.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.section-head h2,
.section-head .section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 10px 0;
  color: var(--text-primary);
}

.section-head p,
.section-head .section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin: 0;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ---------- HOME: Hero ---------- */
.home-hero {
  position: relative;
  background: linear-gradient(135deg, #0d1b2a 0%, #0e2640 55%, #122e3e 100%);
  color: #ffffff;
  padding: 70px 0 90px;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(2, 132, 199, 0.05) 0, transparent 50%),
    repeating-linear-gradient(45deg, transparent 0, transparent 40px, rgba(2, 132, 199, 0.02) 40px, rgba(2, 132, 199, 0.02) 41px);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-text {
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 700;
  color: #00a896;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.home-hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 24px;
  color: #ffffff;
}

.home-hero h1 .accent {
  color: var(--accent);
  position: relative;
  white-space: nowrap;
}

.home-hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 10px;
  background: var(--accent-light);
  z-index: -1;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #aec4d8;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-ghost:hover {
  background: var(--accent-light);
}

.btn-light {
  background: var(--bg-card);
  color: var(--accent);
  border: 1px solid #ffffff;
}

.btn-light:hover {
  background: #f0f9ff;
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  max-width: fit-content;
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
  min-width: 80px;
}

.hero-proof-item strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-proof-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

.hero-proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-media {
  position: relative;
  min-height: 480px;
}

.hero-image-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(2, 132, 199, 0.35), 0 8px 20px -8px rgba(15, 23, 42, 0.15);
}

.hero-image-main img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.hero-image-badge {
  position: absolute;
  left: -18px;
  bottom: 40px;
  background: var(--bg-card);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.hero-image-badge svg {
  width: 28px;
  height: 28px;
  color: var(--accent-green);
}

.hero-image-badge-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.hero-image-badge-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-image-float {
  position: absolute;
  right: -24px;
  top: 32px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
}

.hero-image-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Compact trust strip (replaces old trust-badges list) ---------- */
.trust-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  border-right: 1px solid var(--border);
}

.trust-strip-item:last-child {
  border-right: none;
}

.trust-strip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-light);
  color: var(--accent);
  flex-shrink: 0;
}

.trust-strip-icon svg {
  width: 20px;
  height: 20px;
}

.trust-strip-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.trust-strip-text strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
}

.trust-strip-text small {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hide the older .trust-badges container/section if still in markup */
.trust-badges-section {
  display: none;
}

.trust-badges:empty {
  display: none;
}

/* ---------- Featured products / Categories ---------- */
.featured-products,
.categories-section {
  padding: 80px 0;
}

.featured-products {
  background: var(--bg-secondary);
}

.categories-section {
  background: var(--bg-card);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-light) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.category-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.category-card:hover::before {
  opacity: 0.5;
}

.category-card .cat-icon,
.category-card h3,
.category-card p,
.category-card .cat-count {
  position: relative;
  z-index: 1;
}

.category-card .cat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  margin-bottom: 4px;
}

.category-card .cat-icon svg {
  width: 26px;
  height: 26px;
}

.category-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.category-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
}

.category-card .cat-count {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.category-card .arrow {
  transition: transform var(--transition);
}

.category-card:hover .arrow {
  transform: translateX(4px);
}

/* ---------- Quality band (colored section with image) ---------- */
.quality-band {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.quality-band::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.08), transparent 70%);
  border-radius: 50%;
}

.quality-band-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.quality-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px -15px rgba(2, 132, 199, 0.3);
}

.quality-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.quality-media-chip {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
}

.quality-media-chip svg {
  width: 18px;
  height: 18px;
  color: #7dd3fc;
}

.quality-content h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 14px 0 16px;
}

.quality-content>p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  margin-bottom: 24px;
  max-width: 520px;
}

.quality-checklist {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.quality-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--text-primary);
  font-weight: 500;
}

.check-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.check-dot::after {
  content: "";
  width: 6px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg) translate(-1px, -1px);
}

/* ---------- Auth steps (professional, no emoji) ---------- */
.auth-section {
  padding: 90px 0;
  background: var(--bg-card);
}

.auth-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.auth-step {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  transition: var(--transition);
}

.auth-step:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
}

.auth-step-num {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  letter-spacing: -0.03em;
}

.auth-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent);
  color: #ffffff;
  margin-bottom: 18px;
  box-shadow: 0 6px 14px -4px rgba(2, 132, 199, 0.4);
}

.auth-step-icon svg {
  width: 26px;
  height: 26px;
}

.auth-step h4 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.auth-step p {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, #0d1b2a 0%, #0e2640 55%, #122e3e 100%);
  color: #ffffff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 60%);
  border-radius: 50%;
}

.cta-band-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.2;
  margin: 12px 0 12px;
  letter-spacing: -0.02em;
}

.cta-band p {
  opacity: 0.92;
  font-size: 1.02rem;
  max-width: 560px;
  line-height: 1.6;
}

.cta-band-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ---------- PAGE BANNER (about/shipping/how/contact) ---------- */
.page-banner {
  background: linear-gradient(135deg, #0d1b2a 0%, #0e2640 55%, #122e3e 100%);
  color: #ffffff;
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.page-banner-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
}

.page-banner-text h1 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 16px 0 18px;
  font-weight: 800;
}

.page-banner-text p {
  font-size: 1.08rem;
  color: #aec4d8;
  max-width: 540px;
  line-height: 1.6;
}

.page-banner-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.3);
  transform: perspective(900px) rotateY(-4deg);
}

.page-banner-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.page-banner-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  backdrop-filter: blur(6px);
}

.pill svg {
  width: 16px;
  height: 16px;
}

/* ---------- ABOUT page ---------- */
.about-page {
  padding: 80px 0;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.about-split-media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-split-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.about-split-content h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 12px 0 24px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 0;
}

.about-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.about-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-light);
  color: var(--accent);
  margin-bottom: 12px;
}

.about-feature-icon svg {
  width: 22px;
  height: 22px;
}

.about-feature h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.about-feature p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.about-content {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.about-content h2 {
  font-size: 1.6rem;
  margin: 32px 0 14px;
  color: var(--text-primary);
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 1rem;
}

/* ---------- HOW TO ORDER page ---------- */
.how-page {
  padding: 80px 0;
}

.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 50px;
  counter-reset: howstep;
  position: relative;
}

.how-step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  padding: 28px 32px;
  transition: var(--transition);
  align-items: center;
}

.how-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
}

.how-step-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.25;
}

.how-step-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.how-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-light);
  color: var(--accent);
  margin-bottom: 6px;
}

.how-step-icon svg {
  width: 20px;
  height: 20px;
}

.how-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.how-step p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.how-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.how-note {
  display: flex;
  gap: 14px;
  background: var(--accent-light);
  border: 1px solid #bae6fd;
  border-radius: 14px;
  padding: 20px;
}

.how-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--accent);
  flex-shrink: 0;
}

.how-note-icon svg {
  width: 20px;
  height: 20px;
}

.how-note h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.how-note p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.how-cta {
  background: linear-gradient(135deg, var(--accent) 0%, #0369a1 100%);
  color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px -10px rgba(2, 132, 199, 0.4);
}

.how-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.how-cta p {
  opacity: 0.92;
  margin-bottom: 22px;
  font-size: 1rem;
}

.how-cta .btn-primary {
  background: var(--bg-card);
  color: var(--accent);
}

.how-cta .btn-primary:hover {
  background: #f0f9ff;
}

.how-cta-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-top: 28px;
  text-align: left;
}

.how-cta-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  opacity: 0.92;
}

/* ---------- SHIPPING page ---------- */
.shipping-page {
  padding: 80px 0;
}

.shipping-hero {
  display: none;
}

/* replaced by .page-banner */
.shipping-features-section,
.payment-methods-section {
  margin-bottom: 64px;
}

.shipping-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.shipping-feature {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: var(--transition);
}

.shipping-feature:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.shipping-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  flex-shrink: 0;
}

.shipping-feature-icon svg {
  width: 26px;
  height: 26px;
}

.shipping-feature h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.shipping-feature p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Payment methods grid */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.payment-method {
  display: flex;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: var(--transition);
  position: relative;
}

.payment-method:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.payment-method.highlight {
  border-color: var(--accent-amber);
  background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.payment-method.highlight::before {
  content: "BEST VALUE";
  position: absolute;
  top: -10px;
  left: 16px;
  background: var(--accent-amber);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 999px;
}

.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-light);
  color: var(--accent);
  flex-shrink: 0;
}

.payment-method.highlight .payment-icon {
  background: var(--accent-amber-light);
  color: var(--accent-amber);
}

.payment-icon svg {
  width: 22px;
  height: 22px;
}

.payment-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.payment-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.payment-highlight {
  margin-top: 8px;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-amber);
  background: var(--accent-amber-light);
  padding: 4px 10px;
  border-radius: 6px;
}

/* ---------- CONTACT page ---------- */
.contact-page {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-row {
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition);
  align-items: flex-start;
  min-width: 0;
  overflow: hidden;
}

.contact-row:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.contact-row-primary {
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  border-color: #bbf7d0;
}

.contact-row-primary .contact-icon {
  background: #25d366;
  color: #ffffff;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  overflow-wrap: break-word;
  word-break: break-word;
}

.contact-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.contact-form .form-row {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-card);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-card);
  transition: var(--transition);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

/* Title + First + Last name row */
.form-grid-title-name {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.form-row-title select {
  padding: 10px 28px 10px 10px;
  font-size: 0.88rem;
  min-width: 0;
}

/* Phone input group */
.phone-input-group {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.phone-input-group:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.phone-country-code {
  width: auto !important;
  min-width: 100px;
  max-width: 110px;
  padding: 12px 8px 12px 10px !important;
  border: none !important;
  border-right: 1px solid var(--border) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 0.88rem !important;
  background-color: var(--bg-secondary) !important;
  background-position: right 6px center !important;
  padding-right: 22px !important;
  flex-shrink: 0;
}

.phone-country-code:focus {
  box-shadow: none !important;
  border-color: var(--border) !important;
}

.phone-number-input {
  flex: 1;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  min-width: 0;
}

.phone-number-input:focus {
  box-shadow: none !important;
}

.phone-error {
  display: none;
  font-size: 0.78rem;
  color: var(--accent-red, #ef4444);
  margin-top: 4px;
  font-weight: 500;
}

/* General grid helpers */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.required-star {
  color: var(--accent-red, #ef4444);
  font-weight: 700;
}

.optional-label {
  color: var(--text-muted);
  font-weight: 400;
  font-style: italic;
  font-size: 0.78rem;
}

#contact-form-status {
  margin-top: 12px;
  text-align: center;
  font-size: 0.88rem;
}

.contact-thankyou {
  text-align: center;
  padding: 40px 20px;
}

.contact-thankyou-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px -6px rgba(34, 197, 94, 0.4);
  animation: thankYouPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes thankYouPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.contact-thankyou h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.contact-thankyou p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto;
}

/* Responsive: form grids */
@media (max-width: 640px) {
  .form-grid-title-name {
    grid-template-columns: 80px 1fr;
  }

  .form-grid-title-name .form-row:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .form-grid-title-name .form-row:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .form-grid-title-name .form-row:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .form-grid-title-name {
    grid-template-columns: 1fr;
  }

  .form-grid-title-name .form-row:nth-child(1),
  .form-grid-title-name .form-row:nth-child(2),
  .form-grid-title-name .form-row:nth-child(3) {
    grid-column: 1;
    grid-row: auto;
  }

  .form-row-title {
    max-width: 120px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .phone-country-code {
    min-width: 85px;
    max-width: 95px;
    font-size: 0.82rem !important;
  }

  .phone-number-input {
    font-size: 0.9rem;
  }

  .phone-input-group {
    border-radius: 8px;
  }
}

@media (max-width: 360px) {

  /* Very small phones (iPhone SE, Galaxy A) */
  .form-grid-title-name {
    gap: 8px;
  }

  .contact-form .form-row {
    margin-bottom: 12px;
  }

  .contact-form label {
    font-size: 0.78rem;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .phone-country-code {
    min-width: 78px;
    max-width: 88px;
    padding: 10px 6px 10px 8px !important;
  }

  .contact-row {
    padding: 12px;
    gap: 8px;
  }

  .contact-icon {
    width: 32px;
    height: 32px;
  }

  .contact-icon svg {
    width: 15px;
    height: 15px;
  }

  .contact-value {
    font-size: 0.82rem;
  }

  .page-banner-text h1 {
    font-size: 1.3rem;
  }
}

/* ---------- Social icons ---------- */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.footer-social .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-social .social-link:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-social .social-link svg {
  width: 18px;
  height: 18px;
}

/* ---------- Cart discount note (SVG version) ---------- */
.cart-discount-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--accent-amber-light);
  border: 1px solid #fcd34d;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #92400e;
}

.cart-discount-note .svg-icon {
  color: var(--accent-amber);
  width: 18px;
  height: 18px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {

  .hero-inner,
  .quality-band-inner,
  .page-banner-inner,
  .about-split,
  .contact-grid,
  .cta-band-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-band-actions {
    justify-content: flex-start;
  }

  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip-item:nth-child(2) {
    border-right: none;
  }

  .auth-steps {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-image-main img {
    height: 420px;
  }

  .hero-image-float {
    display: none;
  }

  .page-banner-media {
    transform: none;
  }
}

@media (max-width: 640px) {
  .trust-strip-inner {
    grid-template-columns: 1fr;
  }

  .trust-strip-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 14px;
  }

  .trust-strip-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .hero-proof {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-proof-divider {
    display: none;
  }

  .how-step {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .how-step-num {
    font-size: 2rem;
  }

  .page-banner-media img {
    height: 260px;
  }

  .about-split-media img {
    height: 300px;
  }

  .how-cta-perks {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .page-banner-inner {
    gap: 20px;
  }

  .page-banner-media img {
    height: 180px;
    border-radius: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}