/* ==============================================================================
   IMMUCAPS ESPAÑA - PREMIUM IMMUNOLOGY & NUTRACEUTICAL DESIGN SYSTEM
   Modern, responsive, ultra-fast CSS architecture for D2C & Silo subpages
   ============================================================================== */

:root {
  /* Brand Primary: Pure Clinical Emerald & Herbal Forest */
  --primary-50: #ecfdf5;
  --primary-100: #d1fae5;
  --primary-200: #a7f3d0;
  --primary-300: #6ee7b7;
  --primary-400: #34d399;
  --primary-500: #10b981;
  --primary-600: #059669;
  --primary-700: #047857;
  --primary-800: #065f46;
  --primary-900: #064e3b;

  /* Secondary: Oceanic Deep Blue / Trust Navy */
  --navy-950: #030a16;
  --navy-900: #07152b;
  --navy-800: #0d2242;
  --navy-700: #15325b;

  /* High-Converting Radiant Action Coral / Red */
  --cta-bg: #ff5538;
  --cta-hover: #e03e22;
  --cta-gradient: linear-gradient(135deg, #ff5538, #ff2b56);
  --cta-gradient-hover: linear-gradient(135deg, #e03e22, #e61944);

  /* Slate & Ink Text Colors */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  /* Status Colors */
  --good-50: #ecfdf5;
  --good-600: #059669;
  --warn-50: #fffbeb;
  --warn-100: #fef3c7;
  --warn-600: #d97706;
  --warn-700: #b45309;
  --err-50: #fff1f2;
  --err-600: #e11d48;

  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 14px -2px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 12px 32px -8px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 20px 40px -12px rgba(5, 150, 105, 0.18);
  --shadow-form: 0 25px 50px -12px rgba(3, 10, 22, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
  --shadow-cta: 0 10px 25px -4px rgba(255, 85, 56, 0.45);
}

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

html {
  font-family: var(--font-sans);
  color: var(--slate-900);
  background-color: #ffffff;
  line-height: 1.6;
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}

[id], :target {
  scroll-margin-top: 4.5rem;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
  position: relative;
}

@media (min-width: 1024px) {
  html, body {
    overflow-x: visible;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Layout Containers */
.wrap {
  width: 100%;
  max-width: 78rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.wrap-narrow {
  width: 100%;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.section-white {
  background-color: #ffffff;
}

.section-slate {
  background-color: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.section-navy {
  background-color: var(--navy-900);
  color: #ffffff;
}

@media (min-width: 1024px) {
  .section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }
}

/* Typography */
.font-display { font-family: var(--font-display); }
.font-mono { font-family: var(--font-mono); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.5rem);
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.2;
}

.section-title-white {
  color: #ffffff;
}

.section-lead {
  margin-top: 0.75rem;
  font-size: 1.0625rem;
  color: var(--slate-600);
  line-height: 1.65;
}

.section-lead-white {
  color: var(--slate-300);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-700);
  margin-bottom: 0.5rem;
}

.eyebrow-dark {
  color: var(--primary-300);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-align: center;
  max-width: 100%;
  white-space: normal;
  line-height: 1.35;
  box-sizing: border-box;
}

.btn-primary {
  background: var(--cta-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  background: var(--cta-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(255, 85, 56, 0.55);
}

.btn-secondary {
  background: #ffffff;
  color: var(--primary-800);
  border: 1px solid var(--primary-200);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--primary-50);
  border-color: var(--primary-400);
  color: var(--primary-900);
  transform: translateY(-1px);
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--slate-200);
}

.header-inner {
  display: flex;
  height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-600), #14b8a6);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--slate-900);
}

.brand-text span {
  color: var(--primary-600);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.3rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  color: var(--slate-600);
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--primary-700);
  background: var(--primary-50);
}

.nav-link.active {
  background: var(--primary-50);
  color: var(--primary-700);
  font-weight: 700;
}

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

@media (max-width: 767px) {
  .header-actions .btn-primary {
    display: none;
  }
}

.menu-toggle-btn {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--slate-300);
  background: #ffffff;
  color: var(--slate-700);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .menu-toggle-btn {
    display: none;
  }
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--slate-200);
  background: #ffffff;
  padding: 1.25rem;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-700);
}

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

/* Hero Section */
.hero-section {
  background: radial-gradient(circle at 85% 15%, rgba(16, 185, 129, 0.18) 0%, transparent 45%),
              radial-gradient(circle at 15% 85%, rgba(6, 95, 70, 0.22) 0%, transparent 45%),
              linear-gradient(145deg, #030a16 0%, #07152b 50%, #0d2242 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .hero-section {
    min-height: calc(100vh - 4.5rem);
    display: flex;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.35fr 0.65fr;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero-title span {
  background: linear-gradient(135deg, #34d399, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--slate-300);
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.875rem;
  color: var(--slate-200);
  font-weight: 500;
}

.hero-badge-icon {
  color: var(--primary-400);
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: auto;
  max-width: 270px;
  max-height: 400px;
  border-radius: 0;
  box-shadow: none;
  border: none;
  object-fit: contain;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .hero-img {
    max-width: 210px;
    max-height: 310px;
  }
}

.price-tag-bubble {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--cta-bg);
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-cta);
  text-align: center;
  font-family: var(--font-display);
}

.price-tag-old {
  font-size: 0.875rem;
  text-decoration: line-through;
  opacity: 0.8;
}

.price-tag-new {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

/* Two-column Subpage Layout */
.subpage-hero {
  background: var(--slate-900);
  color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.subpage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
  padding-top: 3rem;
  padding-bottom: 4.5rem;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.subpage-grid > * {
  min-width: 0;
  max-width: 100%;
}

.article-content {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.sticky-col {
  align-self: start;
}

@media (min-width: 1024px) {
  .subpage-grid {
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 1.75rem;
  }
  .sticky-col {
    position: -webkit-sticky;
    position: sticky;
    top: 5.5rem;
  }
}

/* VRN Table & Article Image styling */
.vrn-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
}

.vrn-table {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  table-layout: auto;
  border-collapse: collapse;
  text-align: left;
}

.vrn-table th, .vrn-table td {
  padding: 0.65rem 0.5rem;
  word-break: break-word;
  border-bottom: 1px solid var(--slate-200);
  font-size: 0.875rem;
}

.vrn-table th {
  background-color: var(--slate-100);
  font-weight: 700;
  color: var(--slate-800);
}

@media (min-width: 640px) {
  .vrn-table th, .vrn-table td {
    padding: 0.85rem 1.25rem;
  }
}

.article-image-box {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  margin-bottom: 2rem;
}

.article-image-box img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Price Highlight Stats Card (2+1 Mobile, 3-Col Desktop) */
.price-stats-box {
  background: #ffffff;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 0.95rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.price-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.price-stat-tile {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.5rem;
  text-align: center;
}

.price-stat-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate-500);
}

.price-stat-val {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary-700);
  line-height: 1.15;
  margin: 0.2rem 0 0.1rem 0;
}

.price-stat-sub {
  font-size: 0.75rem;
  color: var(--slate-500);
}

.price-stat-payment {
  grid-column: 1 / -1;
  background: var(--primary-50);
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.price-stat-payment-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary-800);
}

.price-stat-payment-val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.2;
}

.price-stat-payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-700);
  background: #ffffff;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--primary-200);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .price-stats-box {
    padding: 1.25rem;
  }
  .price-stats-grid {
    grid-template-columns: 1fr 1fr 1.25fr;
    gap: 0.85rem;
  }
  .price-stat-payment {
    grid-column: auto;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 0.85rem 0.75rem;
  }
  .price-stat-payment-badge {
    margin-top: 0.35rem;
  }
}

/* Pharmacy Directory Cards (/farmacia/) */
.pharmacy-directory-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.pharmacy-directory-card {
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.25rem;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: #ffffff;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.pharmacy-directory-card:hover {
  border-color: var(--primary-500);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.12);
  transform: translateY(-1px);
}

.pharmacy-directory-card-title {
  color: var(--slate-900);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  display: block;
}

.pharmacy-directory-card-desc {
  display: block;
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.45;
  margin-top: 0.25rem;
  margin-bottom: 0.85rem;
}

.pharmacy-directory-card-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary-700);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.pharmacy-directory-card-action svg {
  transition: transform 0.2s ease;
}

.pharmacy-directory-card:hover .pharmacy-directory-card-action svg {
  transform: translateX(4px);
}

@media (min-width: 640px) {
  .pharmacy-directory-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
  }
  .pharmacy-directory-card-desc {
    margin-bottom: 0;
  }
  .pharmacy-directory-card-action {
    flex-shrink: 0;
  }
}

/* Breadcrumbs */
.breadcrumb-nav {
  margin-bottom: 1.25rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-400);
  list-style: none;
}

.breadcrumbs a {
  color: var(--primary-400);
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.breadcrumbs span.separator {
  color: var(--slate-600);
}

/* Order Form Card (Ekzodermin-matched Two-Tone Conversion Engine) */
.order-card {
  background-color: #ffffff;
  color: var(--slate-900);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--slate-300);
  box-shadow: none;
  position: relative;
  overflow: hidden;
  max-width: 430px;
  width: 100%;
  margin: 0 auto;
}

.order-header {
  background: linear-gradient(180deg, #064e3b 0%, #022c22 100%);
  color: #ffffff;
  padding: 1.25rem 1.4rem;
  text-align: left;
  position: relative;
  z-index: 1;
}

.order-header-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #34d399;
  margin-bottom: 0.35rem;
}

.order-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0.35rem;
  font-weight: 800;
  line-height: 1.25;
}

.order-subtitle {
  font-size: 0.8125rem;
  color: #cbd5e1;
  line-height: 1.4;
  margin: 0;
}

.order-body {
  padding: 1.25rem 1.35rem 1.35rem;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

.order-price-banner {
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-lg);
  padding: 0.65rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.order-price-left {
  display: flex;
  flex-direction: column;
}

.order-price-left .order-new-price {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 900;
  color: #065f46;
  line-height: 1;
}

.order-price-left .order-price-label {
  font-size: 0.725rem;
  color: #047857;
  font-weight: 600;
  margin-top: 0.2rem;
}

.order-price-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.order-volume-pill {
  border: 1px solid #059669;
  color: #047857;
  background-color: #ffffff;
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  display: inline-block;
  line-height: 1.25;
}

.order-stock-status {
  font-size: 0.775rem;
  color: #059669;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-group {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--slate-800);
}

.form-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid #cbd5e1;
  background-color: #f8fafc;
  color: var(--slate-900);
  font-size: 0.9375rem;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.form-input:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  background-color: #ffffff;
}

.phone-input-group {
  display: flex;
  align-items: center;
  border-radius: var(--radius-md);
  border: 1px solid #cbd5e1;
  background-color: #f8fafc;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.phone-input-group:focus-within {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  background-color: #ffffff;
}

.phone-prefix {
  padding: 0.65rem 0.75rem;
  background-color: #f1f5f9;
  border-right: 1px solid #cbd5e1;
  color: var(--slate-700);
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-mono);
  user-select: none;
}

.phone-input-group .form-input {
  border: none;
  background: transparent;
  padding: 0.65rem 0.85rem;
  box-shadow: none !important;
  width: 100%;
}

.btn-submit-order {
  width: 100%;
  background: linear-gradient(135deg, #ff5538 0%, #ff2b56 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 16px -2px rgba(255, 85, 56, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-submit-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -3px rgba(255, 85, 56, 0.5);
}

.btn-submit-order:active {
  transform: translateY(0);
}

.order-guarantees-list {
  list-style: none;
  padding: 0;
  margin: 0.85rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.775rem;
  color: var(--slate-600);
}

.order-guarantees-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  line-height: 1.35;
}

.order-guarantees-list li span.check {
  color: #059669;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Bottom Order Section */
.bottom-order-section {
  background: linear-gradient(145deg, #030a16 0%, #07152b 100%);
  color: #ffffff;
  padding-top: 2rem;
  padding-bottom: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  scroll-margin-top: 4.5rem;
}

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

@media (min-width: 1024px) {
  .bottom-order-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.bottom-order-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.bottom-order-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Feature Cards & Ingredient Cards */
.feature-grid, .ingredient-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .feature-grid, .ingredient-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .ingredient-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--primary-300);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary-50);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* Table styling for composition and VRN */
.vrn-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 1.25rem;
  margin-bottom: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  width: 100%;
  max-width: 100%;
  background: #ffffff;
}

.vrn-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.8125rem;
  table-layout: auto;
}

.vrn-table th {
  background: var(--slate-100);
  padding: 0.625rem 0.35rem;
  font-weight: 700;
  color: var(--slate-800);
  border-bottom: 1px solid var(--slate-200);
  font-size: 0.775rem;
  line-height: 1.25;
  vertical-align: middle;
}

.vrn-table td {
  padding: 0.55rem 0.35rem;
  border-bottom: 1px solid var(--slate-200);
  color: var(--slate-700);
  font-size: 0.8rem;
  line-height: 1.3;
  vertical-align: middle;
  word-break: break-word;
}

.vrn-table tr:last-child td {
  border-bottom: none;
}

.vrn-table tr:hover td {
  background: var(--primary-50);
}

.vrn-table-nutrition th:nth-child(2),
.vrn-table-nutrition td:nth-child(2),
.vrn-table-nutrition th:nth-child(3),
.vrn-table-nutrition td:nth-child(3),
.vrn-table-nutrition th:nth-child(4),
.vrn-table-nutrition td:nth-child(4) {
  text-align: center;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .vrn-table {
    font-size: 0.9375rem;
  }
  .vrn-table th {
    padding: 0.85rem 1.25rem;
    font-size: 0.875rem;
  }
  .vrn-table td {
    padding: 0.85rem 1.25rem;
    font-size: 0.9375rem;
  }
}

/* Reviews Page Styling */
.reviews-summary-box {
  background: var(--primary-50);
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

@media (max-width: 640px) {
  .reviews-summary-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.review-item {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  width: 100%;
}

@media (max-width: 640px) {
  .review-item {
    padding: 1.25rem 1.1rem;
    margin-bottom: 1.5rem;
  }
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.review-author-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-600), #0d9488);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-author-name {
  font-weight: 700;
  color: var(--slate-900);
  font-size: 1rem;
  line-height: 1.3;
}

.review-author-city {
  font-size: 0.8125rem;
  color: var(--slate-500);
  margin-top: 0.15rem;
}

.review-rating-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.review-stars {
  color: #f59e0b;
  font-size: 1.15rem;
  letter-spacing: 1px;
  line-height: 1;
}

.review-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 0.2rem 0.65rem 0.2rem 0.45rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  line-height: 1.2;
}

.review-verified-badge .badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #059669;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1;
}

.review-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--slate-700);
  margin-bottom: 1.25rem;
}

.review-live-img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  background-color: var(--slate-100);
  display: block;
  transition: transform 0.25s ease;
}

.review-live-img:hover {
  transform: scale(1.015);
}

/* FAQ Accordions */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--primary-400);
  box-shadow: var(--shadow-sm);
}

.faq-summary {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--slate-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: '+';
  font-size: 1.4rem;
  line-height: 1;
  color: var(--primary-600);
  transition: transform 0.2s;
}

.faq-item[open] .faq-summary::after {
  content: '−';
}

.faq-content {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--slate-600);
  line-height: 1.65;
}

/* Sticky Mobile Bar */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  background: rgba(3, 10, 22, 0.96);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-mobile-bar.is-visible {
  transform: translateY(0);
}

.sticky-mobile-bar .btn {
  white-space: nowrap;
}

@media (min-width: 768px) {
  .sticky-mobile-bar {
    display: none !important;
  }
}

.mobile-bar-price {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mobile-bar-price .old {
  font-size: 0.8rem;
  text-decoration: line-through;
  opacity: 0.65;
  line-height: 1.1;
}

.mobile-bar-price .new {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 900;
  color: #facc15;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* Site Footer */
.site-footer {
  background: var(--navy-950);
  color: var(--slate-400);
  padding-top: 4.5rem;
  padding-bottom: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9375rem;
}

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

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-email {
  margin-top: 1rem;
  font-size: 0.9375rem;
}

.footer-email a {
  color: var(--primary-400);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.footer-email a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--slate-500);
}
