/* SUGAROX - Premium Medical Whitehat Theme */
:root {
  --primary: #0284c7;
  --primary-dark: #0369a1;
  --primary-deep: #1e3a8a;
  --primary-light: #e0f2fe;
  --secondary: #059669;
  --secondary-light: #ecfdf5;
  --accent-red: #dc2626;
  --accent-red-light: #fee2e2;
  --accent-amber: #d97706;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --bg-page: #f8fafc;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --border-focus: #38bdf8;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --max-width: 1200px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* TOP NOTIFICATION BAR */
.top-bar {
  background-color: var(--primary-deep);
  color: #ffffff;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar-item svg {
  width: 16px;
  height: 16px;
}

/* MAIN HEADER */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-deep);
  letter-spacing: -0.02em;
}

.logo-badge {
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.4rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 0.5rem 0;
  position: relative;
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-header {
  background: var(--accent-red);
  color: #fff;
  font-weight: 700;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  box-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
  transition: all 0.2s ease;
}

.btn-header:hover {
  background: #b91c1c;
  color: #fff;
  transform: translateY(-1px);
}

/* HERO SECTION */
.hero-section {
  padding: 2.5rem 0 3.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  border-bottom: 1px solid var(--border-color);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary-light);
  color: var(--secondary);
  border: 1px solid rgba(5, 150, 105, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.35rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 1rem;
}

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

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-benefits {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 500;
}

.hero-benefits li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--secondary);
  margin-top: 2px;
}

.hero-image-wrap {
  position: relative;
  text-align: center;
}

.hero-image-wrap img {
  max-width: 380px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 4px solid #ffffff;
}

.hero-discount-stamp {
  position: absolute;
  top: -15px;
  right: 15px;
  background: var(--accent-red);
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.4);
  transform: rotate(12deg);
}

.hero-discount-stamp span {
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
}

/* ORDER FORM CARD */
.order-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 2px solid #bae6fd;
  box-shadow: var(--shadow-lg);
}

.timer-box {
  background: #fef2f2;
  border: 1px dashed var(--accent-red);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  text-align: center;
  margin-bottom: 1.25rem;
}

.timer-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}

.countdown-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.time-segment {
  background: #ffffff;
  border: 1px solid #fca5a5;
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.5rem;
  min-width: 50px;
  text-align: center;
}

.time-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-red);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.time-lbl {
  font-size: 0.65rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 600;
}

.time-sep {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-red);
}

.pricing-block {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  margin-bottom: 1.25rem;
}

.old-price {
  text-align: center;
}

.old-price .label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
}

.old-price .value {
  font-size: 1.25rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 600;
}

.new-price {
  text-align: center;
}

.new-price .label {
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
}

.new-price .value {
  font-size: 1.75rem;
  color: var(--secondary);
  font-weight: 900;
  line-height: 1.1;
}

/* LEAD ORDER FORM */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: linear-gradient(180deg, #dc2626 0%, #b91c1c 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.45);
}

.form-security-note {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

/* TRUST BAR */
.trust-bar {
  background: var(--bg-white);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-item img, .trust-item svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-deep);
}

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

/* SECTIONS GENERAL */
.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem;
}

.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* SYMPTOMS SECTION */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.symptom-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.symptom-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.symptom-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #fee2e2;
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.symptom-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

.symptom-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* HOW IT WORKS / CLINICAL METRICS */
.clinical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.metric-bar-wrap {
  margin-bottom: 1.5rem;
}

.metric-label-row {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.metric-bar-bg {
  height: 12px;
  background: #e2e8f0;
  border-radius: 9999px;
  overflow: hidden;
}

.metric-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 9999px;
}

.clinical-badge-box {
  background: var(--secondary-light);
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.clinical-badge-box h4 {
  color: var(--secondary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* INGREDIENTS SECTION */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ingredient-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
}

.ingredient-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ingredient-icon {
  width: 44px;
  height: 44px;
  background: var(--secondary-light);
  color: var(--secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.ingredient-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-deep);
}

.ingredient-latin {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-light);
}

.ingredient-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* DOCTOR / EXPERT SECTION */
.expert-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.expert-photo-col {
  text-align: center;
}

.expert-photo {
  width: 170px;
  height: 170px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 4px solid var(--primary-light);
}

.expert-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.expert-role {
  font-size: 0.85rem;
  color: var(--text-light);
}

.expert-quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-main);
  position: relative;
  font-style: italic;
}

.expert-credentials {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* REVIEWS SECTION */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 0.75rem;
}

.author-info h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-deep);
}

.author-info span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.verified-badge {
  background: #ecfdf5;
  color: #059669;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* FAQ ACCORDION */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: #f8fafc;
}

.faq-icon {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem 1.5rem;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

/* HOW TO ORDER STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}

.step-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 0.5rem;
}

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

/* FINAL CTA SECTION */
.final-cta-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #0369a1 100%);
  color: #fff;
  padding: 4rem 0;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.final-cta-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.final-cta-text p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

/* COMPLIANCE PAGES STYLES */
.legal-page-header {
  background: #f1f5f9;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.legal-page-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 0.5rem;
}

.legal-page-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-content-wrap {
  padding: 3.5rem 0;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.legal-content-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin: 1.75rem 0 0.75rem;
}

.legal-content-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 1.25rem 0 0.5rem;
}

.legal-content-card p, .legal-content-card ul {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-content-card ul {
  padding-left: 1.5rem;
}

.legal-content-card li {
  margin-bottom: 0.35rem;
}

.company-details-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.company-details-table th, .company-details-table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.company-details-table th {
  background: #f8fafc;
  font-weight: 700;
  color: var(--primary-deep);
  width: 35%;
  text-align: left;
}

/* CONTACT PAGE SPECIFICS */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.contact-info-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-top: 1.5rem;
  height: 250px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* CHECKOUT / SUCCESS PAGE */
.checkout-wrap {
  padding: 4rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.success-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.success-icon-badge {
  width: 80px;
  height: 80px;
  background: #ecfdf5;
  color: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  border: 4px solid #a7f3d0;
}

.order-id-badge {
  display: inline-block;
  background: #f1f5f9;
  color: var(--primary-deep);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  border: 1px solid #cbd5e1;
}

.order-next-steps {
  text-align: left;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2rem 0;
}

.order-next-steps h4 {
  font-size: 1.1rem;
  color: var(--primary-deep);
  margin-bottom: 1rem;
}

.order-next-steps ol {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* FOOTER */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  font-size: 0.875rem;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #94a3b8;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #38bdf8;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.footer-contact-list li {
  display: flex;
  gap: 0.5rem;
}

.footer-disclaimer {
  background: #1e293b;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.775rem;
  line-height: 1.6;
  color: #cbd5e1;
  border-left: 4px solid #38bdf8;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* FLOATING MOBILE CTA BAR */
.floating-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  justify-content: space-between;
  align-items: center;
}

.floating-price {
  display: flex;
  flex-direction: column;
}

.floating-price-old {
  font-size: 0.75rem;
  text-decoration: line-through;
  color: var(--text-light);
}

.floating-price-new {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.floating-btn {
  background: var(--accent-red);
  color: #fff;
  font-weight: 700;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .hero-grid, .clinical-grid, .expert-card, .final-cta-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .symptoms-grid, .ingredients-grid, .reviews-grid, .trust-grid, .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }
  .nav-links {
    display: none;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .symptoms-grid, .ingredients-grid, .reviews-grid, .trust-grid, .steps-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .floating-mobile-bar {
    display: flex;
  }
  body {
    padding-bottom: 70px;
  }
}
