/*
Theme Name: AminoMag
Theme URI: https://aminomag.co.za
Author: AminoMag Nutritionals
Author URI: https://aminomag.co.za
Description: Official AminoMag theme — The Sparkplug for the Body
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aminomag
Tags: ecommerce, dark, woocommerce
*/

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=Barlow:wght@300;400;500&display=swap');

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

:root {
  --cyan: #3ab8f0;
  --red: #d42b2b;
  --yellow: #f5c400;
  --dark: #080a0c;
  --mid: #0f1215;
  --card: #13181e;
  --border: rgba(58,184,240,0.2);
  --text: #ddeeff;
  --muted: #6a8899;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

a { color: var(--cyan); text-decoration: none; }
a:hover { color: #fff; }
img { max-width: 100%; height: auto; }

/* ── LOGO BANNER ── */
.am-logo-banner {
  margin-top: 98px; /* shipping bar 34px + nav 64px */
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 5vw 2.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.am-logo-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 50% 50%, rgba(58,184,240,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.am-logo-banner-img {
  width: min(520px, 85vw);
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(58,184,240,0.25));
  animation: fadeUp 0.7s ease both;
}
.am-logo-banner-tagline {
  margin-top: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  position: relative; z-index: 1;
  animation: fadeUp 0.7s 0.15s ease both;
}

/* Remove top padding from hero since banner handles the spacing */
.am-hero {
  padding-top: 60px;
}

@media (max-width: 768px) {
  .am-logo-banner { padding: 2rem 5vw 1.5rem; }
  .am-logo-banner-img { width: min(320px, 90vw); }
}

/* ── SHIPPING BAR ── */
.am-shipping-bar {
  background: var(--cyan); color: var(--dark);
  text-align: center; padding: 8px 5vw;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
}

/* ── NAV ── */
.am-nav {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 64px;
  background: rgba(10,14,20,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.am-nav-logo img {
  height: 54px; width: auto;
}
.am-nav-logo .custom-logo-link img,
.am-nav-logo .custom-logo {
  height: 54px; width: auto; display: block;
}
.am-nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.am-nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.2s;
}
.am-nav-links a:hover { color: var(--cyan); }
.am-nav-right { display: flex; align-items: center; gap: 1rem; }

/* ── DROPDOWN MENU ── */
.menu-dropdown { position: relative; }
.menu-dropdown > a { cursor: pointer; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px 0;
  min-width: 240px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
  z-index: 110;
}
.menu-dropdown:hover .dropdown-menu,
.menu-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(2px);
}
.dropdown-menu li { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 8px 18px;
  font-size: 0.85rem;
  color: var(--text) !important;
  letter-spacing: 0.03em;
  text-transform: none;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu li a:hover {
  background: rgba(58,184,240,0.08);
  color: var(--cyan) !important;
}
.dropdown-section-label {
  padding: 10px 18px 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  pointer-events: none;
}
.dropdown-section-label:not(:first-child) {
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 10px;
}

/* ── CART ICON ── */
.cart-icon-btn {
  position: relative; background: none; border: none; cursor: pointer;
  color: var(--text); font-size: 1.4rem; padding: 4px 8px;
  display: flex; align-items: center;
}
.cart-badge {
  position: absolute; top: -2px; right: 0;
  background: var(--red); color: #fff;
  font-size: 0.6rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
}

/* ── HERO ── */
.am-hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 60px 5vw 60px; gap: 4rem;
  position: relative; overflow: hidden;
}
.am-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(58,184,240,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(212,43,43,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(212,43,43,0.12); border: 1px solid var(--red); color: var(--red);
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 2px; margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.92; text-transform: uppercase; letter-spacing: -0.01em;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title .accent { color: var(--red); }
.hero-title .sub { color: var(--cyan); font-size: 0.55em; display: block; letter-spacing: 0.08em; }
.hero-tagline { margin-top: 1.2rem; font-size: 1rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; animation: fadeUp 0.6s 0.2s ease both; }
.hero-desc { margin-top: 1.5rem; font-size: 1.05rem; line-height: 1.7; color: var(--text); max-width: 480px; animation: fadeUp 0.6s 0.3s ease both; }
.hero-cta { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.6s 0.4s ease both; }

.btn-primary {
  background: var(--red); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 32px; border: none; cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.15s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: #b02020; transform: translateY(-2px); color: #fff; }
.btn-outline {
  background: transparent; color: var(--cyan);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 13px 32px; border: 1px solid var(--cyan); cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s, color 0.2s; text-decoration: none; display: inline-block;
}
.btn-outline:hover { background: rgba(58,184,240,0.1); color: var(--cyan); }

.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; animation: fadeUp 0.7s 0.2s ease both; }
.bottle-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 4px;
  padding: 3rem 2.5rem; text-align: center; position: relative; overflow: hidden;
}
.bottle-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--red), var(--yellow));
}
.bottle-card img,
.bottle-card .hero-logo {
  width: 320px; height: auto; margin-bottom: 1rem; display: block;
  margin-left: auto; margin-right: auto;
}
.bottle-sub { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.3rem; }
.bottle-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 1.5rem; }
.bottle-vol {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 6rem; line-height: 1;
  color: rgba(58,184,240,0.07); position: absolute; bottom: 1rem; right: 1.5rem; letter-spacing: -0.04em;
}
.tag {
  background: rgba(0,200,224,0.08); border: 1px solid rgba(0,200,224,0.2); color: var(--cyan);
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 12px; border-radius: 2px;
}

/* ── SECTIONS ── */
.am-section { padding: 80px 5vw; }
.am-section-mid { padding: 80px 5vw; background: var(--mid); }
.section-label { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.8rem; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; line-height: 1; margin-bottom: 1rem; }
.section-title em { color: var(--red); font-style: normal; }
.am-divider { width: 48px; height: 3px; background: linear-gradient(90deg, var(--cyan), var(--red), var(--yellow)); margin-bottom: 2.5rem; }

/* ── BENEFITS ── */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.benefit-card { background: var(--card); border: 1px solid var(--border); padding: 1.8rem 1.5rem; border-radius: 3px; transition: border-color 0.2s, transform 0.2s; }
.benefit-card:hover { border-color: var(--cyan); transform: translateY(-4px); }
.benefit-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.benefit-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.benefit-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ── SHOP ── */
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.shop-card { background: var(--card); border: 1px solid var(--border); border-radius: 4px; padding: 2rem 1.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; position: relative; transition: border-color 0.2s, transform 0.2s; }
.shop-card:hover { border-color: var(--cyan); transform: translateY(-4px); }
.popular-card { border: 2px solid var(--cyan); }
.popular-tag { background: rgba(58,184,240,0.12); color: var(--cyan); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 14px; border-radius: 2px; font-weight: 600; }
.value-tag { background: rgba(245,196,0,0.12); color: var(--yellow); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 14px; border-radius: 2px; font-weight: 600; }
.bottle-wrap { display: flex; flex-direction: column; align-items: center; margin: 8px 0; }
.b-cap { background: var(--cyan); border-radius: 3px 3px 0 0; }
.b-body { background: linear-gradient(160deg, rgba(58,184,240,0.25) 0%, rgba(58,184,240,0.08) 100%); border: 1.5px solid var(--cyan); border-top: none; border-radius: 0 0 6px 6px; display: flex; align-items: center; justify-content: center; }
.b-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; color: var(--cyan); line-height: 1.2; letter-spacing: 0.05em; }
.shop-vol { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.4rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); }
.shop-price { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.4rem; color: var(--yellow); line-height: 1; }
.shop-servings { font-size: 0.78rem; color: var(--muted); }
.shop-btn { margin-top: 8px; width: 100%; background: var(--cyan); color: var(--dark); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 12px 0; border: none; cursor: pointer; clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%); text-decoration: none; display: inline-block; transition: background 0.2s; }
.shop-btn:hover { background: #fff; color: var(--dark); }
.bundle-card { border: 2px solid var(--yellow); background: rgba(245,196,0,0.03); }
.bundle-tag { background: rgba(245,196,0,0.15); color: var(--yellow); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 14px; border-radius: 2px; font-weight: 600; }
.bundle-bottles { display: flex; align-items: flex-end; gap: 6px; justify-content: center; margin: 8px 0; }
.bundle-was { display: flex; flex-direction: column; align-items: flex-start; }
.bundle-was-label { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; line-height: 1; }
.bundle-was-price { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; color: var(--muted); text-decoration: line-through; }
.bundle-saving { background: rgba(245,196,0,0.12); color: var(--yellow); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; padding: 3px 12px; border-radius: 2px; }
.bundle-btn { background: var(--yellow); color: var(--dark); }
.bundle-btn:hover { background: #fff; }
.bundle-sub-promo { background: rgba(58,184,240,0.08); border: 1px solid rgba(58,184,240,0.25); border-radius: 3px; padding: 7px 12px; font-size: 0.78rem; color: var(--text); line-height: 1.4; text-align: center; width: 100%; }
.bundle-sub-price { color: var(--cyan); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; }
.sub-promo { background: rgba(58,184,240,0.08); border: 1px solid rgba(58,184,240,0.25); border-radius: 3px; padding: 7px 12px; font-size: 0.78rem; color: var(--text); line-height: 1.4; text-align: center; width: 100%; }

/* ── INGREDIENTS ── */
.ingredients-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.ingredients-info p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
.serving-note { display: inline-block; background: rgba(58,184,240,0.08); border: 1px solid rgba(58,184,240,0.3); color: var(--cyan); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 16px; margin-bottom: 2rem; }
.ingredient-table { width: 100%; border-collapse: collapse; }
.ingredient-table th { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); text-align: left; padding: 8px 12px; border-bottom: 1px solid var(--border); }
.ingredient-table td { padding: 12px 12px; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.04); vertical-align: middle; }
.ingredient-table tr:hover td { background: rgba(0,200,224,0.03); }
.ingredient-table .name { color: var(--text); font-weight: 500; }
.ingredient-table .amount { color: var(--cyan); font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 600; }
.ingredient-table .nrv { color: var(--muted); font-size: 0.85rem; }
.ingredient-table .sub td { padding-left: 2rem; }
.ingredient-table .sub .name { color: var(--muted); font-size: 0.85rem; }
.proprietary-badge { display: inline-block; background: rgba(0,200,224,0.1); border: 1px solid rgba(0,200,224,0.25); color: var(--cyan); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 2px 8px; border-radius: 2px; margin-left: 8px; vertical-align: middle; }
.disclaimer { font-size: 0.75rem; color: var(--muted); margin-top: 1rem; line-height: 1.5; }

/* ── DOSAGE ── */
.dosage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.dosage-card { background: var(--card); border: 1px solid var(--border); border-radius: 3px; padding: 2rem 1.5rem; text-align: center; transition: border-color 0.2s; }
.dosage-card:hover { border-color: var(--cyan); }
.dosage-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.dosage-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
.dosage-value { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--yellow); }
.dosage-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.4rem; line-height: 1.4; }

/* ── CAUTION ── */
.caution-box { background: var(--card); border: 1px solid rgba(245,196,0,0.25); border-left: 4px solid var(--yellow); padding: 2rem; border-radius: 3px; max-width: 820px; }
.caution-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; text-transform: uppercase; color: var(--yellow); letter-spacing: 0.1em; margin-bottom: 1rem; }
.caution-box p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.testi-card { background: var(--card); border: 1px solid var(--border); border-radius: 4px; padding: 1.8rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; position: relative; transition: border-color 0.2s, transform 0.2s; }
.testi-card:hover { border-color: var(--cyan); transform: translateY(-3px); }
.testi-card::before { content: '"'; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 5rem; line-height: 1; color: rgba(58,184,240,0.1); position: absolute; top: 0.5rem; right: 1rem; }
.testi-stars { color: var(--yellow); font-size: 0.85rem; letter-spacing: 2px; }
.testi-text { font-size: 0.92rem; color: var(--text); line-height: 1.75; font-style: italic; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: 0.5rem; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), rgba(58,184,240,0.3)); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1rem; color: var(--dark); flex-shrink: 0; }
.testi-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; }
.testi-location { font-size: 0.75rem; color: var(--muted); }
.testi-verified { font-size: 0.65rem; color: #00c853; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
.testi-nav { display: flex; justify-content: center; gap: 8px; margin-top: 2rem; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: background 0.2s, transform 0.2s; padding: 0; }
.testi-dot.active { background: var(--cyan); transform: scale(1.3); }
.testi-arrows { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.testi-arrow { background: var(--card); border: 1px solid var(--border); color: var(--text); width: 40px; height: 40px; border-radius: 2px; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, color 0.2s; }
.testi-arrow:hover { border-color: var(--cyan); color: var(--cyan); }

/* ── CONTACT ── */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contact-text p { color: var(--muted); font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }
.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.contact-link { display: flex; align-items: center; gap: 1rem; background: var(--card); border: 1px solid var(--border); padding: 1rem 1.5rem; border-radius: 3px; text-decoration: none; color: var(--text); font-size: 0.95rem; transition: border-color 0.2s; }
.contact-link:hover { border-color: var(--cyan); color: var(--cyan); }
.contact-link-icon { font-size: 1.3rem; }
.contact-link-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 2px; }

/* ── PAYMENT BADGES ── */
.payment-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 1rem; justify-content: center; }
.pay-badge { background: var(--card); border: 1px solid var(--border); border-radius: 4px; padding: 6px 14px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.pay-badge.payfast { color: #00aaff; border-color: rgba(0,170,255,0.3); }
.pay-badge.wa { color: #25d366; border-color: rgba(37,211,102,0.3); }

/* ── SUBSCRIBE ── */
.am-subscribe { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 60px 5vw; text-align: center; }
.subscribe-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(1.8rem, 3.5vw, 2.6rem); text-transform: uppercase; margin: 0.5rem 0 0.4rem; }
.subscribe-title em { color: var(--cyan); font-style: normal; }
.subscribe-desc { color: var(--muted); font-size: 0.95rem; max-width: 480px; margin: 0 auto 1.8rem; line-height: 1.6; }
.subscribe-form { display: flex; gap: 0; max-width: 460px; margin: 0 auto; }
.subscribe-form input { flex: 1; background: var(--card); border: 1px solid var(--border); border-right: none; color: var(--text); font-family: 'Barlow', sans-serif; font-size: 0.9rem; padding: 13px 16px; outline: none; transition: border-color 0.2s; }
.subscribe-form input:focus { border-color: var(--cyan); }
.subscribe-form input::placeholder { color: var(--muted); }
.subscribe-form button { background: var(--cyan); color: var(--dark); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 13px 24px; border: none; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.subscribe-form button:hover { background: #fff; }
.subscribe-success { display: none; color: var(--cyan); font-size: 0.9rem; margin-top: 1rem; }

/* ── FOOTER ── */
.am-footer { background: var(--dark); border-top: 1px solid var(--border); padding: 3rem 5vw 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-top: 0.8rem; max-width: 280px; }
.footer-brand img { height: 54px; width: auto; }
.footer-brand .custom-logo-link img,
.footer-brand .custom-logo { height: 54px; width: auto; display: block; }
.footer-col-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-address { font-size: 0.85rem; color: var(--muted); line-height: 1.8; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.75rem; color: var(--muted); }
.footer-pay { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.f-pay-badge { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 3px; padding: 4px 10px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
.f-pay-badge.payfast { color: #00aaff; }
.f-pay-badge.wa { color: #25d366; }

/* ── CART DRAWER ── */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer { position: fixed; top: 0; right: -480px; width: 460px; max-width: 100vw; height: 100vh; background: var(--mid); border-left: 1px solid var(--border); z-index: 300; display: flex; flex-direction: column; transition: right 0.35s cubic-bezier(.4,0,.2,1); }
.cart-drawer.open { right: 0; }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.cart-header h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.1em; }
.cart-close { background: none; border: none; color: var(--muted); font-size: 1.4rem; cursor: pointer; line-height: 1; transition: color 0.2s; }
.cart-close:hover { color: var(--text); }
.cart-steps { display: flex; align-items: center; justify-content: center; gap: 0; padding: 0.8rem 1.5rem; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.cart-step { display: flex; align-items: center; gap: 6px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.cart-step.active { color: var(--cyan); }
.cart-step.done { color: #00c853; }
.step-num { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid currentColor; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; flex-shrink: 0; }
.step-line { width: 24px; height: 1px; background: var(--border); margin: 0 4px; }
.cart-panel { flex: 1; overflow-y: auto; display: none; flex-direction: column; }
.cart-panel.active { display: flex; }
.cart-items-wrap { padding: 1rem 1.5rem; flex: 1; }
.cart-empty { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 3rem; line-height: 1.8; }
.cart-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.cart-item-price { font-size: 0.85rem; color: var(--yellow); margin-top: 2px; }
.cart-qty { display: flex; align-items: center; gap: 8px; }
.qty-btn { background: var(--card); border: 1px solid var(--border); color: var(--text); width: 28px; height: 28px; border-radius: 2px; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s; }
.qty-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.qty-num { min-width: 20px; text-align: center; font-size: 0.9rem; }
.cart-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 1rem; padding: 4px; transition: color 0.2s; }
.cart-remove:hover { color: var(--red); }
.addr-form { padding: 1rem 1.5rem; flex: 1; overflow-y: auto; }
.addr-form h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cyan); margin-bottom: 1rem; }
.addr-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.addr-row.full { grid-template-columns: 1fr; }
.addr-field { display: flex; flex-direction: column; gap: 4px; }
.addr-field label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.addr-field input, .addr-field select { background: var(--card); border: 1px solid var(--border); color: var(--text); padding: 9px 12px; font-size: 0.88rem; font-family: 'Barlow', sans-serif; outline: none; border-radius: 2px; transition: border-color 0.2s; }
.addr-field input:focus, .addr-field select:focus { border-color: var(--cyan); }
.addr-field input::placeholder { color: var(--muted); }
.addr-field select option { background: var(--card); }
.courier-info { background: rgba(58,184,240,0.06); border: 1px solid var(--border); border-radius: 3px; padding: 10px 12px; margin-top: 12px; font-size: 0.78rem; color: var(--muted); line-height: 1.6; }
.courier-info strong { color: var(--cyan); }
.pay-panel { padding: 1rem 1.5rem; flex: 1; overflow-y: auto; }
.pay-panel h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cyan); margin-bottom: 1rem; }
.order-summary { background: var(--card); border: 1px solid var(--border); border-radius: 3px; padding: 1rem; margin-bottom: 1.2rem; font-size: 0.85rem; }
.order-summary-row { display: flex; justify-content: space-between; padding: 4px 0; color: var(--muted); }
.order-summary-row.total { border-top: 1px solid var(--border); margin-top: 6px; padding-top: 10px; color: var(--text); font-weight: 600; }
.order-summary-row span:last-child { color: var(--yellow); }
.order-summary-row.total span:last-child { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 900; }
.pay-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 14px; margin-bottom: 10px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; border-radius: 2px; text-decoration: none; transition: opacity 0.2s, transform 0.15s; }
.pay-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.pay-btn.payfast { background: #00aaff; color: #fff; }
.pay-btn.whatsapp { background: #25d366; color: #fff; }
.pay-divider { text-align: center; font-size: 0.7rem; color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase; margin: 8px 0; }
.cart-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--border); flex-shrink: 0; }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.cart-total-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.cart-total-amount { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.8rem; color: var(--yellow); }
.cart-next-btn { display: block; width: 100%; text-align: center; background: var(--cyan); color: var(--dark); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 14px; border: none; cursor: pointer; border-radius: 2px; text-decoration: none; transition: background 0.2s; }
.cart-next-btn:hover { background: #fff; }
.cart-back-btn { background: none; border: 1px solid var(--border); color: var(--muted); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 16px; cursor: pointer; border-radius: 2px; margin-top: 8px; transition: border-color 0.2s, color 0.2s; display: block; width: 100%; text-align: center; }
.cart-back-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.cart-note { font-size: 0.72rem; color: var(--muted); text-align: center; margin-top: 0.6rem; }

/* ── BOTTLE COMPOSITE ── */
.bottle-composite-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
  animation: fadeUp 0.7s 0.2s ease both;
}
.bottle-composite {
  position: relative; display: inline-block;
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5), 0 0 60px rgba(58,184,240,0.1);
}
.bottle-photo {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 8px;
}
.bottle-caption {
  display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center;
}

/* ── VIDEO BANNER (below menu, above hero) ── */
.am-video-banner {
  width: 100%;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  max-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.am-video-banner-video {
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .am-video-banner { max-height: 40vh; }
  .am-video-banner-video { max-height: 40vh; }
}


/* ── WHY DEFICIENT ── */
.deficient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.deficient-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  border-radius: 4px;
  padding: 1.8rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.deficient-card:hover { border-color: var(--cyan); transform: translateY(-3px); }
.deficient-icon { font-size: 2.2rem; margin-bottom: 0.8rem; display: block; }
.deficient-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.deficient-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.deficient-desc strong { color: var(--cyan); }
.deficient-symptoms {
  background: var(--card);
  border: 1px solid rgba(245,196,0,0.3);
  border-left: 4px solid var(--yellow);
  border-radius: 4px;
  padding: 2rem;
  margin-top: 2rem;
}
.deficient-symptoms-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 1.5rem;
  text-align: center;
}
.deficient-symptoms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.symptom-pill {
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 10px 12px;
  font-size: 0.85rem;
  color: var(--text);
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
}
.symptom-pill:hover { border-color: var(--yellow); color: var(--yellow); }
@media (max-width: 900px) {
  .deficient-grid { grid-template-columns: 1fr 1fr; }
  .deficient-symptoms-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .deficient-grid { grid-template-columns: 1fr; }
  .deficient-symptoms-grid { grid-template-columns: 1fr; }
}

.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #place_order { background: var(--cyan) !important; color: var(--dark) !important; font-family: 'Barlow Condensed', sans-serif !important; font-weight: 700 !important; letter-spacing: 0.12em !important; text-transform: uppercase !important; border-radius: 2px !important; }
.woocommerce a.button:hover, .woocommerce button.button:hover { background: #fff !important; color: var(--dark) !important; }
.woocommerce .woocommerce-message, .woocommerce .woocommerce-info { background: var(--card) !important; border-top-color: var(--cyan) !important; color: var(--text) !important; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea { background: var(--card) !important; border: 1px solid var(--border) !important; color: var(--text) !important; font-family: 'Barlow', sans-serif !important; }
.woocommerce form .form-row label { color: var(--muted) !important; font-family: 'Barlow Condensed', sans-serif !important; letter-spacing: 0.08em !important; text-transform: uppercase !important; font-size: 0.8rem !important; }
.woocommerce-cart table.cart, .woocommerce-checkout #order_review { background: var(--card) !important; border: 1px solid var(--border) !important; color: var(--text) !important; }
.woocommerce table.shop_table { background: var(--card) !important; color: var(--text) !important; border: 1px solid var(--border) !important; }
.woocommerce table.shop_table th { background: var(--mid) !important; color: var(--cyan) !important; font-family: 'Barlow Condensed', sans-serif !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; }
.woocommerce .cart-collaterals .cart_totals, .woocommerce-checkout #order_review_heading { color: var(--text) !important; }
.woocommerce-checkout #payment { background: var(--card) !important; border-radius: 3px !important; }
.woocommerce-checkout #payment div.payment_box { background: var(--mid) !important; color: var(--muted) !important; }

/* ── POPIA PAGE ── */
.popia-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); padding: 0 0; background: var(--mid); overflow-x: auto; }
.popia-tab { padding: 14px 22px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); cursor: pointer; border: none; background: none; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
.popia-tab.active { color: var(--cyan); border-bottom-color: var(--cyan); }
.tab-content { display: none; padding: 60px 0; }
.tab-content.active { display: block; }
.popia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.popia-card { background: var(--card); border: 1px solid var(--border); border-left: 4px solid var(--cyan); border-radius: 3px; padding: 1.8rem 1.5rem; }
.popia-card.yellow { border-left-color: var(--yellow); }
.popia-card-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; color: var(--cyan); letter-spacing: 0.08em; margin-bottom: 0.8rem; }
.popia-card.yellow .popia-card-title { color: var(--yellow); }
.popia-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.8; }
.popia-card p strong { color: var(--text); }
.rights-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 1rem; }
.rights-list li { background: var(--card); border: 1px solid var(--border); border-radius: 3px; padding: 1rem 1.2rem; display: flex; gap: 1rem; align-items: flex-start; font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.rights-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.4rem; color: var(--cyan); min-width: 28px; line-height: 1; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; } }

/* ── RESPONSIVE ── */
@media (max-width: 900px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  .am-hero { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .ingredients-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .am-nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .subscribe-form { flex-direction: column; }
  .subscribe-form input { border-right: 1px solid var(--border); border-bottom: none; }
  .popia-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) { .shop-grid { grid-template-columns: 1fr; } .testimonials-grid { grid-template-columns: 1fr; } }
