:root {
  /* Natural Wellness Palette */
  --brand-primary: #d74800;
  --brand-secondary: #f4996f;
  --brand-primary-hover: #af4804;
  --brand-light: #fdecec;
  --accent-gold: #fff68e;
  --text-dark: #2a0f0f;
  --text-body: #2f140a;
  --bg-main: #ffffff;
  --bg-alt: #f8fafc;
  --border-light: #e2e8f0;
  /*
  --brand-primary: #00477a;
  --brand-secondary: #005ea1;
  --brand-primary-hover: #20689b;
  --brand-light: #cae9ff;
  --accent-gold: #d97706;
  --text-dark: #0f182a;
  --text-body: #0a172f;
  --bg-main: #ffffff;
  --bg-alt: #f8fafc;
  --border-light: #e2e8f0; */

  /* High-Converting CTA Colors */
  --cta-gradient-top: #10b981;
  --cta-gradient-bottom: #059669;
  --cta-shadow: rgba(16, 185, 129, 0.3);

  /* Package Colors */
  --pkg-green: #22c55e;
  --pkg-gray: #94a3b8;
  --pkg-red: #ef4444;
  --pkg-border-active: #4ade80;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--bg-main);
  padding-bottom: 80px;
  -webkit-font-smoothing: antialiased;
}

/* --- DYNAMIC PROGRESS BAR --- */
#scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 2000;
}
#scroll-progress-bar {
  height: 100%;
  background: #10b981;
  width: 0%;
  transition: width 0.1s ease-out;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  color: var(--text-dark);
  line-height: 1.3;
}

.section-title {
  font-size: 38px;
  margin-bottom: 16px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-body);
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
  font-weight: 500;
}

/* --- TOP BAR --- */
.top-bar {
  background-color: var(--brand-primary);
  color: white;
  text-align: center;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.top-bar strong {
  color: #d2c20e;
}

/* --- AU EXCLUSIVE BAR --- */
.au-exclusive-bar {
  background: #f8fafc;
  border-bottom: 1px solid var(--border-light);
  padding: 12px 20px;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.au-post-logo {
  background: #e31837; /* Official AusPost Red */
  color: white;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
}
.au-status-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.3;
  color: var(--text-dark);
  border-left: 1px solid var(--border-light);
  padding-left: 20px;
  margin: auto 10px;
}
.au-status-text img {
  height: 24px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.au-status-text div {
  display: flex;
  flex-direction: column;
}
.au-status-text strong {
  color: var(--brand-primary);
  font-weight: 700;
}

/* --- HEADER --- */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
}
.header-content {
  /*
  display: flex;
  justify-content: space-between;
  align-items: center;
  */
  flex: 1;
}

/* EXACT LOGO MATCH FROM UPLOAD */
.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.8;
  padding: 5px 0;
  margin-left: 10px;
  transition: opacity 0.2s;
}
.logo:hover {
  opacity: 0.8;
}
.logo-vital {
  font-family: "Dancing Script", cursive;
  color: #475569; /* Slate grey */
  font-size: 32px;
  font-weight: 700;
  margin-left: 4px;
  margin-bottom: -2px; /* Pull Hemp closer */
}
.logo-hemp {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #16a34a; /* Bright green */
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1px;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 30px;
}
.header-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s;
}
.header-nav a:hover {
  color: var(--brand-primary);
}

.header-btn {
  background: var(--brand-primary);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
  display: none;
  margin-right: 10px;
}
.header-btn:hover {
  background: var(--brand-primary-hover);
  color: white;
}

@media (min-width: 900px) {
  .header-nav {
    display: flex;
  }
  .header-btn {
    display: inline-flex;
  }
  .header-content .au-status-text {
    display: none;
  }
  .au-exclusive-bar {
    display: flex;
  }
}
.product-hero-img {
  width: 95%;
  max-width: 294px;
  height: auto;
  filter: drop-shadow(0 10px 46px rgba(64, 6, 95, 0.5));
  transform: scale(1.05) translate(30px, 30px);
}
/* --- HERO LIFESTYLE SECTION --- */
.hero {
  padding: 30px 0 80px;
  background-color: var(--bg-main);

  overflow: visible;
  box-shadow: 0 8px 13px rgba(0, 0, 0, 0.1);

  background-image: url("runman2.png");
  background-repeat: no-repeat;
  background-size: auto 90%;
}
@media (min-width: 1100px) {
  .hero {
    background-position: 37vw;
  }
}
@media (min-width: 1300px) {
  .hero {
    background-position: 42vw;
  }
}

@media (max-width: 1099.9px) {
  .hero {
    background-position: 27vw;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 850px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .product-hero-img {
    width: 95%;
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(68, 6, 95, 0.25));
    transform: scale(1.05) translate(-30%, 65%);
  }
}
@media (max-width: 849px) {
  .hero {
    background-image: none;
  }
  .product-hero-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0px 15px rgba(68, 6, 95, 0.2));
    max-width: 280px;
  }
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-light);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--brand-secondary);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 24px;
}
.stars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 14px;
}

.hero-content h1 {
  font-size: 52px;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
}
.hero-content h1 span {
  color: var(--brand-primary);
}
.hero-lead {
  font-size: 19px;
  color: var(--text-body);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-list {
  list-style: none;
  margin: 0 0 35px 0;
  padding: 0;
}
.hero-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}
.hero-list li svg {
  width: 22px;
  height: 22px;
  color: var(--brand-primary);
  flex-shrink: 0;
}

.hero-image-container {
  text-align: center;
  position: relative;
}

/* --- CTA BUTTON --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(to bottom, #10b981, #059669);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  padding: 22px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 25px var(--cta-shadow);
  border: 1px solid #059669;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
  background: linear-gradient(to bottom, #34d399, #10b981);
}

/* --- SECTION STRUCTURE --- */
.section {
  padding: 45px 0;
  background-color: var(--bg-main);
}
.section.alt {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* --- EDITORIAL QUOTE --- */
.editorial-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: "Playfair Display", serif;
  font-size: 80px;
  color: var(--brand-light);
  line-height: 0;
  margin-bottom: -20px;
  display: block;
}
.close-quote-mark {
  font-family: "Playfair Display", serif;
  font-size: 80px;
  color: var(--brand-light);
  line-height: 0;
  padding-top: 4vh;
  margin-bottom: -10px;
  display: block;
}
.editorial-quote p {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.6;
  /*margin-bottom: 25px;*/
}

section#editorial {
  padding: 4.5vh 0 3vh;
}

/* --- FEATURES GRID --- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background: var(--bg-main);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  padding: 35px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  text-align: center;
}
.feature-card:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 20px 40px rgba(6, 95, 70, 0.08);
  transform: translateY(-8px) scale(1.02);
}
.feature-icon {
  width: 100px;
  height: 100px;
  background: var(--brand-light);
  color: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid #eed1fa;
  transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
  background: var(--brand-primary);
  color: white;
  transform: scale(1.1) rotate(5deg);
}
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 800;
  transition: color 0.3s ease;
}
.feature-card:hover h3 {
  color: var(--brand-primary);
}
.feature-card p {
  font-size: 15px;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

/* --- INGREDIENTS SPOTLIGHT (HARD SELL SPECIAL BLEND) --- */
.ingredients-flex {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .ingredients-flex {
    flex-direction: row;
  }
}
.ing-text {
  flex: 1.2;
}
.ing-list {
  list-style: none;
  margin-top: 0;
  display: grid;
  gap: 20px;
  padding: 0;
}
.ing-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-main);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  cursor: pointer;
}
.ing-item:hover {
  transform: translateX(10px);
  border-color: var(--brand-primary);
  box-shadow: 0 10px 25px rgba(6, 95, 70, 0.1);
}
.ing-icon-box {
  width: 50px;
  height: 50px;
  background: var(--brand-light);
  color: var(--brand-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  transition: all 0.3s ease;
}
.ing-item:hover .ing-icon-box {
  background: var(--brand-primary);
  color: white;
  transform: scale(1.1) rotate(5deg);
}
.ing-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--text-dark);
  transition: color 0.3s;
  margin-top: 0;
}
.ing-item:hover h4 {
  color: var(--brand-primary);
}
.ing-item p {
  font-size: 15px;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

/* --- PREMIUM SUPPLEMENT FACTS LABEL --- */
.facts-container {
  flex: 0.9;
  background: #ffffff;
  border: 3px solid #000000;
  padding: 24px;
  font-family: "Inter", sans-serif;
  color: #000000;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  max-width: 375px;
  width: 100%;
}
.facts-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  font-weight: 800;
  border-bottom: 8px solid #000000;
  padding-bottom: 4px;
  line-height: 1;
  text-transform: uppercase;
}
.facts-meta {
  font-size: 14px;
  font-weight: 600;
  border-bottom: 4px solid #000000;
  padding: 6px 0;
  line-height: 1.4;
}
.facts-header-row {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 13px;
  border-bottom: 1px solid #000000;
  padding: 6px 0;
}
.facts-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #000000;
  font-weight: 500;
}
.facts-row.sub-row {
  padding-left: 15px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 13px;
  color: #334155;
  flex-direction: column;
  gap: 4px;
}
.facts-row.sub-row:last-child {
  border-bottom: 1px solid #000000;
}
.facts-row.bold {
  font-weight: 800;
}
.facts-footer {
  font-size: 11px;
  font-weight: 500;
  padding-top: 10px;
  line-height: 1.4;
}

/* --- BULLETPROOF COMPARISON TABLE --- */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--bg-main);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  margin: 0 auto;
  width: 100%;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 570px;
}
th,
td {
  padding: 24px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  transition: background-color 0.3s ease;
  vertical-align: middle;
  font-size: clamp(10px, 1.2em, 15px);
}
th {
  font-size: 15px;
  color: var(--text-body);
  font-weight: 800;
  background: var(--bg-alt);
  white-space: nowrap;
}
th:first-child,
td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 16px;
}
tr:last-child td {
  border-bottom: none;
}
tbody tr:hover td {
  background-color: #f8fafc;
}

.col-highlight {
  background-color: #f8fafc;
  position: relative;
}
tbody tr:hover td.col-highlight {
  background-color: #f1f5f9;
}
th.col-highlight {
  color: var(--brand-primary);
  font-weight: 900;
  border-top: 4px solid var(--brand-primary);
  font-size: 16px;
}

*/

/* --- BULLETPROOF COMPARISON TABLE ---
.table-wrapper {
  width: 100%;
  overflow-x: hidden;
  background: var(--bg-main);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  margin: 0 auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 0;
}

th,
td {
  padding: 24px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  transition: background-color 0.3s ease;
  vertical-align: middle;

  overflow-wrap: break-word;
  word-break: break-word;
}

th {
  font-size: 15px;
  color: var(--text-body);
  font-weight: 800;
  background: var(--bg-alt);

  white-space: normal;
}

th:first-child,
td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 16px;
}

tr:last-child td {
  border-bottom: none;
}

tbody tr:hover td {
  background-color: #f8fafc;
}
  */
.check {
  color: var(--brand-primary);
  font-size: 22px;
  font-weight: bold;
}
.cross {
  color: #cbd5e1;
  font-size: 18px;
}

/* --- REVIEWS --- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.review-card {
  background: var(--bg-main);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  text-align: left;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.4s ease;
  position: relative;
}
.review-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-primary);
  box-shadow: 0 20px 40px rgba(6, 95, 70, 0.08);
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.review-title-group .stars {
  font-size: 18px;
  margin-bottom: 10px;
  display: block;
  color: #f59e0b;
  transition: all 0.3s ease;
}
.review-card:hover .stars {
  transform: scale(1.05);
  transform-origin: left;
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}
.review-title-group h3 {
  font-size: 18px;
  margin: 0;
  color: var(--text-dark);
  font-weight: 800;
  transition: color 0.3s;
}
.review-card:hover h3 {
  color: var(--brand-primary);
}
.review-card p {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 25px;
  line-height: 1.7;
}
.reviewer {
  font-weight: 800;
  font-size: 15px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.verified-badge {
  color: var(--brand-primary);
  font-size: 13px;
  font-weight: 700;
}

/* --- EXACT PACKAGE PRICING GRID --- */
.packages-grid {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  text-decoration: none;
  color: var(--text-dark);
  background: var(--bg-main);
  transition: all 0.2s ease;
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.package-card:hover {
  transform: translateY(-2px);
  border-color: var(--pkg-gray);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

/* Active/Best Seller State */
.package-card.best-seller {
  border: 2px solid var(--pkg-green);
  background: #fafafa;
}

/* Package Badge (Top Left) */
.pkg-badge {
  position: absolute;
  top: -10px;
  left: 15px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 4px;
  color: white;
  letter-spacing: 0.5px;
}
.badge-green {
  background: var(--pkg-green);
}
.badge-gray {
  background: var(--pkg-gray);
}

/* Left Side: Radio & Bottles */
.package-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1.5;
}

.radio-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: white;
}
.package-card.best-seller .radio-circle {
  border-color: var(--pkg-green);
}
.radio-check {
  color: var(--pkg-green);
  font-size: 16px;
  font-weight: 900;
  display: none;
}
.package-card.best-seller .radio-circle {
  border: none;
}
.package-card.best-seller .radio-check {
  display: block;
}

/* Bottle Images Layout */
.pkg-bottles-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bottle-img-group {
  display: flex;
  align-items: center;
  gap: -12px;
}
.bottle-thumb {
  height: auto;
  position: relative;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/*
.bottle-thumb:nth-child(2) {
  margin-left: -15px;
  z-index: -1;
}
.bottle-thumb:nth-child(3) {
  margin-left: -15px;
  z-index: -2;
} */

.plus-sign {
  background: var(--pkg-green);
  color: white;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
}
.plus-gray {
  background: #cbd5e1;
}

/* Bonus Box */
.bonus-box {
  border: 1px dashed var(--pkg-red);
  border-radius: 4px;
  padding: 4px 8px;
  text-align: center;
  background: #fef2f2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.bonus-box.gray {
  border-color: #cbd5e1;
  background: #f8fafc;
}
.bonus-text {
  color: var(--pkg-red);
  font-size: 16px;
  font-weight: 800;
  font-style: italic;
  display: block;
  margin-bottom: 2px;
}
.bonus-box.gray .bonus-text {
  color: var(--pkg-gray);
}
.bonus-pricing {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}
.bonus-retail {
  text-decoration: line-through;
  color: var(--text-dark);
}
.bonus-free {
  color: var(--pkg-green);
  background: #dcfce7;
  padding: 1px 6px;
  border-radius: 2px;
}
.bonus-box.gray .bonus-free {
  color: var(--pkg-gray);
  background: #f1f5f9;
}

/* Right Side: Price & Efficiency */
.package-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.efficiency-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.eff-icon {
  width: 14px;
  height: 14px;
}

.shipping-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--pkg-green);
  margin-bottom: 2px;
}
.shipping-row.gray {
  color: var(--pkg-gray);
}

.pkg-retail-strike {
  font-size: 11px;
  color: var(--text-body);
  font-weight: 500;
  margin-bottom: -2px;
}
.pkg-retail-strike strike {
  color: var(--pkg-red);
}
.pkg-retail-strike.gray strike {
  color: var(--pkg-gray);
}

.pkg-price-large {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  margin: 2px 0;
}
.pkg-subtext {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-dark);
}

/* --- FAQ --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
details {
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 0;
  padding: 20px 0;
  transition: all 0.2s;
}
details:hover {
  border-color: var(--brand-primary);
}
summary {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  position: relative;
  outline: none;
  padding-right: 30px;
  transition: color 0.2s;
}
summary:hover {
  color: var(--brand-primary);
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--text-body);
  font-weight: 300;
}
details[open] summary::after {
  content: "−";
  color: var(--brand-primary);
}
.faq-content {
  padding: 20px 0 0 0;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
}

/* --- FOOTER --- */
footer {
  background: var(--text-dark);
  color: #94a3b8;
  padding: 60px 0 120px;
  text-align: center;
  font-size: 13px;
  border-top: 4px solid var(--brand-primary);
}
.footer-links {
  margin-bottom: 20px;
}
.footer-links a {
  color: var(--border-light);
  text-decoration: none;
  margin: 0 12px;
  font-weight: 600;
}
.footer-links a:hover {
  color: white;
}

/* --- STICKY CTA --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s ease;
}
.sticky-cta .btn {
  margin: 0;
  max-width: 450px;
  padding: 16px 40px;
  font-size: 16px;
}
.sticky-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) translateY(0);
}
/* --- PACKAGE PRICING SECTION --- */

.packages-grid {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.package-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  padding: 18px 18px 16px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: var(--bg-main);
  color: var(--text-dark);
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.package-card.best-seller {
  border: 2px solid var(--pkg-green);
  background: #fafafa;
}

.pkg-badge {
  position: absolute;
  top: -11px;
  left: 16px;
  padding: 3px 10px;
  border-radius: 4px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.badge-green {
  background: var(--pkg-green);
}

.badge-gray {
  background: var(--pkg-gray);
}

.package-left {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.radio-circle {
  width: 18px;
  height: 18px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  background: #fff;
  flex: 0 0 auto;
}

.radio-check {
  color: var(--pkg-green);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  flex: 0 0 auto;
}

.pkg-bottles-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bottle-img-group {
  display: flex;
  align-items: center;
}

.bottle-thumb {
  display: block;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.12));
}

/* IMPORTANT: removes old stacking issues */
.bottle-thumb:nth-child(2),
.bottle-thumb:nth-child(3) {
  margin-left: 0 !important;
  z-index: auto !important;
}

.main-bottle {
  max-width: 120px;
}

.bonus-bottle {
  max-width: 88px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.plus-sign {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pkg-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  flex: 0 0 auto;
}

.plus-gray {
  background: #cbd5e1;
}

.bonus-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border: 1px dashed var(--pkg-red);
  border-radius: 5px;
  background: #fef2f2;
  overflow: visible;
}

.bonus-box.gray {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.bonus-text {
  display: block;
  margin-bottom: 2px;
  color: var(--pkg-red);
  font-size: 16px;
  font-weight: 800;
  font-style: italic;
}

.bonus-box.gray .bonus-text {
  color: var(--pkg-gray);
}

.bonus-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
}

.bonus-retail {
  color: var(--text-dark);
}

.bonus-free {
  color: var(--pkg-green);
  background: #dcfce7;
  padding: 1px 6px;
  border-radius: 2px;
}

.bonus-box.gray .bonus-free {
  color: var(--pkg-gray);
  background: #f1f5f9;
}

.package-right {
  flex: 0 0 auto;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.efficiency-row,
.shipping-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.shipping-row {
  color: var(--pkg-green);
  margin-top: 2px;
}

.shipping-row.gray {
  color: var(--pkg-gray);
}

.eff-icon {
  width: 14px;
  height: 14px;
}

.pkg-retail-strike {
  margin-top: 3px;
  margin-bottom: -1px;
  color: var(--text-body);
  font-size: 11px;
  font-weight: 500;
}

.pkg-retail-strike strike {
  color: var(--pkg-red);
}

.pkg-retail-strike.gray strike {
  color: var(--pkg-gray);
}

.pkg-price-large {
  margin: 2px 0;
  color: var(--text-dark);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.pkg-subtext {
  color: var(--text-dark);
  font-size: 10px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .package-card {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 28px 16px 22px;
    text-align: center;
  }

  .pkg-badge {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .package-left {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .radio-circle,
  .radio-check {
    display: none;
  }

  .pkg-bottles-wrapper {
    width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .main-bottle {
    max-width: 120px;
  }

  .bonus-bottle {
    width: 88px;
  }

  .bonus-box {
    flex-direction: column;
    justify-content: center;
    min-width: 118px;
    padding: 10px;
  }

  .plus-sign {
    width: 26px;
    height: 26px;
    font-size: 18px;
  }

  .package-right {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .pkg-price-large {
    font-size: 34px;
  }
  .hero-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
  }
  .hero {
    padding: 30px 0 40px;
  }
  .editorial-quote p {
    font-family: "Playfair Display", serif;
    font-size: 23px;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
    /*margin-bottom: 25px;*/
  }

  th,
  td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    transition: background-color 0.3s ease;
    vertical-align: middle;
    font-size: clamp(12px, 1.2em, 16px);
    max-width: 35vw;
  }
  th:first-child,
  td:first-child {
    text-align: left;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
  }
}
@media (max-width: 600px) {
  .au-status-text {
    display: none;
  }
  .section-title {
    font-size: 30px;
  }
  .hero-content h1 {
    font-size: 32px;
    margin-bottom: 10px;
  }
}

@media (max-width: 450px) {
  header {
    display: none;
  }
  .editorial-quote p {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
    /*margin-bottom: 25px;*/
  }
}

body.cookie-consent-open {
  overflow: hidden;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 13, 12, 0.72);
  backdrop-filter: blur(5px);
}

.cookie-consent__dialog {
  width: min(100%, 560px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: clamp(24px, 5vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: #fff;
  color: var(--text-dark);
  text-align: center;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.cookie-consent__icon {
  font-size: 38px;
  line-height: 1;
}

.cookie-consent__dialog h2 {
  margin: 12px 0 10px;
  font-size: clamp(26px, 6vw, 36px);
}

.cookie-consent__dialog p {
  color: #555;
  line-height: 1.65;
}

.cookie-consent__policy {
  margin: 10px 0 20px;
  font-size: 14px;
}

.cookie-consent__choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cookie-consent__button,
.cookie-consent__offer {
  min-height: 52px;
  border-radius: 9px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  align-content: center;
}

.cookie-consent__button--accept {
  border: 2px solid var(--brand-primary);
  background: var(--brand-primary);
  color: #fff;
}

.cookie-consent__button--decline {
  border: 2px solid #c9c9c9;
  background: #f5f5f5;
  color: #333;
}

.cookie-consent__offer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  border: 2px solid #df4b00;
  color: #c94000;
  text-decoration: none;
}

.cookie-consent__button:focus-visible,
.cookie-consent__offer:focus-visible {
  outline: 3px solid #111;
  outline-offset: 3px;
}

@media (max-width: 520px) {
  .cookie-consent {
    padding: 12px;
  }

  .cookie-consent__dialog {
    max-height: calc(100vh - 24px);
    padding: 24px 18px;
    border-radius: 16px;
  }

  .cookie-consent__choices {
    grid-template-columns: 1fr;
  }
}
