/* ==========================================================================
   Nano Slim España - Unique Brand CSS Design System
   Color Palette: Electric Sky Cyan (#00BBF9) + Deep Midnight (#0B132B) 
                  + Fresh Matcha Emerald (#10B981) + Coral Sunset CTA (#FF5A5F)
   ========================================================================== */

:root {
  /* Brand Primary Colors */
  --nano-navy-dark: #070e1e;
  --nano-navy: #0b132b;
  --nano-navy-card: #1c2541;
  
  /* Compatibility aliases */
  --primary-navy-dark: #070e1e;
  --primary-navy: #0b132b;
  --primary-navy-card: #1c2541;
  --ocean-blue: #00bbf9;
  --amber-accent: #ff5a5f;
  --amber-accent-light: #00f5d4;
  --success-green: #10b981;
  --success-light: #ecfdf5;
  
  /* Accent Colors */
  --nano-cyan: #00bbf9;
  --nano-cyan-dark: #0096c7;
  --nano-cyan-light: #e0f2fe;
  --nano-cyan-glow: rgba(0, 187, 249, 0.25);
  
  --matcha-emerald: #10b981;
  --matcha-dark: #047857;
  --matcha-light: #ecfdf5;
  
  /* CTA Action Buttons */
  --coral-orange: #ff5a5f;
  --coral-gradient: linear-gradient(135deg, #ff5a5f 0%, #ff8c42 100%);
  --coral-glow: rgba(255, 90, 95, 0.35);
  
  /* Text & Backgrounds */
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --bg-page: #f4f8fc;
  --bg-card: #ffffff;
  --bg-paper: #eef5fc;
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-cyan: #bde0fe;
  
  /* UI System Variables */
  --radius-card: 20px;
  --radius-btn: 12px;
  --radius-pill: 9999px;
  --shadow-sm: 0 2px 5px rgba(11, 19, 43, 0.05);
  --shadow-md: 0 12px 30px -5px rgba(11, 19, 43, 0.09);
  --shadow-lg: 0 24px 45px -10px rgba(0, 187, 249, 0.2);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;
}

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

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-page);
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  color: var(--nano-navy);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Glassmorphism Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-cyan);
  box-shadow: 0 4px 20px rgba(0, 187, 249, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--nano-navy);
  letter-spacing: -0.03em;
}

.logo span {
  color: var(--nano-cyan);
  background: linear-gradient(135deg, #00bbf9, #0077b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-badge {
  background: linear-gradient(135deg, var(--matcha-light), #d1fae5);
  color: var(--matcha-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--nano-cyan-dark);
}

.nav-cta {
  background: var(--coral-gradient);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.7rem 1.45rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px var(--coral-glow);
  transition: all 0.25s ease;
  cursor: pointer;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 90, 95, 0.45);
  color: #ffffff;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--nano-navy);
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 15px 30px rgba(11, 19, 43, 0.12);
  }
  .main-nav.open {
    display: flex;
  }
  .nav-cta {
    display: none !important;
  }
}

/* Page Subpage Hero Section */
.page-hero {
  background: radial-gradient(circle at 80% 20%, #0077b6 0%, var(--nano-navy) 65%, var(--nano-navy-dark) 100%);
  color: #ffffff;
  padding: 3.5rem 1.5rem;
}

.page-hero .section-title {
  color: #ffffff !important;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.page-hero p {
  color: #cbd5e1 !important;
}

.page-hero strong {
  color: #ffffff !important;
}

/* Hero Section */
.hero {
  background: radial-gradient(circle at 80% 20%, #0077b6 0%, var(--nano-navy) 65%, var(--nano-navy-dark) 100%);
  color: #ffffff;
  padding: 4.5rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 187, 249, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.hero-title {
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero-title span {
  background: linear-gradient(135deg, #00f5d4, #00bbf9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: #cbd5e1;
  line-height: 1.65;
}

.hero-description strong {
  color: #ffffff;
  font-weight: 700;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 1.25rem;
  margin: 0.5rem 0 1rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: #f1f5f9;
  font-weight: 500;
}

.hero-feature-item svg {
  width: 22px;
  height: 22px;
  color: #00f5d4;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--coral-gradient);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 25px var(--coral-glow);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 90, 95, 0.5);
  color: #ffffff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 187, 249, 0.4);
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(0, 187, 249, 0.2);
  border-color: var(--nano-cyan);
}

/* Hero Image Card */
.hero-image-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 187, 249, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  background-color: var(--nano-navy-card);
}

.hero-image-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-circle-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5a5f, #e11d48);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(225, 29, 72, 0.5);
  border: 3px solid #ffffff;
  transform: rotate(-8deg);
}

.badge-pct {
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.badge-lbl {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-features {
    grid-template-columns: 1fr;
  }
}

/* Sections & Cards */
.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--bg-paper);
}

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

.eyebrow {
  display: inline-block;
  color: var(--nano-cyan-dark);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--nano-navy);
  margin-bottom: 0.75rem;
}

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

/* Card Components */
.card {
  background-color: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 2.2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--nano-cyan-light);
  color: var(--nano-cyan-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
}

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

.card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--nano-navy);
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Tables */
.comparison-table-wrapper, .ingredients-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-light);
  background-color: var(--bg-card);
  box-shadow: var(--shadow-sm);
  margin: 2rem 0;
}

.comparison-table, .ingredients-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .ingredients-table th {
  background-color: var(--nano-navy);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  padding: 1.2rem 1.35rem;
  font-size: 0.95rem;
}

.comparison-table th.col-opti {
  background: linear-gradient(135deg, #00bbf9, #0077b6);
}

.comparison-table th.col-other {
  background-color: #475569;
}

.comparison-table td, .ingredients-table td {
  padding: 1.1rem 1.35rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.comparison-table tbody tr:last-child td, .ingredients-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table td.col-opti {
  background-color: rgba(0, 187, 249, 0.05);
  font-weight: 600;
}

.check-icon {
  color: var(--matcha-emerald);
  font-weight: bold;
  margin-right: 0.4rem;
}

.cross-icon {
  color: #ef4444;
  font-weight: bold;
  margin-right: 0.4rem;
}

.tag-highlight {
  display: inline-block;
  background-color: var(--matcha-light);
  color: var(--matcha-emerald);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Reviews Cards */
.review-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 1.85rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.reviewer-info h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--nano-navy);
}

.reviewer-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stars {
  display: flex;
  gap: 2px;
}

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

.review-photo {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.review-photo img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.photo-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.35rem 1.6rem;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--nano-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
  color: var(--nano-cyan-dark);
  flex-shrink: 0;
}

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

.faq-answer {
  display: none;
  padding: 0 1.6rem 1.35rem;
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}

.faq-item.active .faq-answer {
  display: block;
}

/* CTA Banner & Form Section */
.cta-banner {
  background: radial-gradient(circle at 10% 90%, #0077b6 0%, var(--nano-navy) 70%, var(--nano-navy-dark) 100%);
  border-radius: 28px;
  padding: 4rem 3rem;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 187, 249, 0.25);
  scroll-margin-top: 100px;
}

.cta-banner-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.cta-title {
  color: #ffffff;
  font-size: 2.3rem;
  margin-bottom: 0.85rem;
}

.cta-text {
  color: #cbd5e1;
  font-size: 1.1rem;
}

.cta-banner-image img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
  .cta-banner-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 1.75rem 1.25rem;
    border-radius: 20px;
    scroll-margin-top: 75px;
  }

  .cta-title {
    font-size: 1.35rem !important;
    line-height: 1.25;
    margin-bottom: 0.5rem;
  }

  .cta-text {
    font-size: 0.9rem !important;
    margin-bottom: 1.1rem !important;
    line-height: 1.45;
  }
}

/* Order Form Controls & Clean Input Borders */
.nutra-order-form {
  display: flex;
  flex-direction: column;
}

.order-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.order-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #e2e8f0;
}

.order-input-wrapper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-btn);
  background-color: #ffffff;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.order-input-wrapper:focus-within {
  border-color: var(--nano-cyan);
  box-shadow: 0 0 0 3px rgba(0, 187, 249, 0.25);
}

.phone-prefix {
  background-color: #f1f5f9;
  color: #334155;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border-right: 1.5px solid var(--border-medium);
  user-select: none;
}

.order-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-btn);
  font-size: 1.025rem;
  color: var(--text-main);
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.order-input:focus {
  border-color: var(--nano-cyan);
  box-shadow: 0 0 0 3px rgba(0, 187, 249, 0.25);
}

.order-input-phone {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.order-error-msg {
  display: none;
  color: #ff5a5f;
  font-size: 0.825rem;
  font-weight: 700;
  margin-top: 0.2rem;
}

.order-field.error .order-error-msg {
  display: block;
}

.order-field.error .order-input, .order-field.error .order-input-wrapper {
  border-color: #ff5a5f;
}

.order-submit-btn {
  background: var(--coral-gradient);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  padding: 1.1rem 1.6rem;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 22px var(--coral-glow);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.order-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 90, 95, 0.55);
}

.order-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.825rem;
  margin-top: 0.85rem;
  text-align: center;
}

.order-security-note svg {
  color: var(--matcha-emerald);
  flex-shrink: 0;
}

/* ==========================================================================
   Order Modal Window (Subpages Popup Form matching OptiPills style)
   ========================================================================== */
.order-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background-color: rgba(11, 19, 43, 0.78);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.order-modal-overlay.open {
  display: flex;
  opacity: 1;
}

.order-modal {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 187, 249, 0.3);
}

.order-modal-overlay.open .order-modal {
  transform: translateY(0);
}

.order-modal-header {
  background: radial-gradient(circle at 80% 20%, #0077b6 0%, var(--nano-navy) 70%, var(--nano-navy-dark) 100%);
  color: #ffffff;
  padding: 2.2rem 2rem 1.6rem;
  text-align: center;
  position: relative;
}

.order-modal-header h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.4rem;
}

.order-modal-header p {
  color: #cbd5e1;
  font-size: 0.925rem;
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: none;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.08);
}

.order-modal-body {
  padding: 1.75rem 2rem 2.2rem;
}

.modal-price-box {
  display: none !important;
}

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

.modal-old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.modal-new-price {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--nano-navy);
  line-height: 1;
  margin-top: 0.2rem;
}

.modal-price-right {
  text-align: right;
}

.modal-price-badge {
  background: var(--matcha-light);
  color: var(--matcha-emerald);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.modal-order-form .order-label {
  color: var(--nano-navy);
  font-weight: 800;
  margin-bottom: 0.35rem;
}

/* Sticky Mobile Bar */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid var(--border-cyan);
  box-shadow: 0 -4px 20px rgba(0, 187, 249, 0.12);
  padding: 0.85rem 1.25rem;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.sticky-mobile-cta.sticky-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.sticky-mobile-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto;
}

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

.sticky-price-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 800;
}

.sticky-price-val {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--nano-navy);
  line-height: 1;
}

.sticky-btn {
  background: var(--coral-gradient);
  color: #ffffff;
  font-weight: 900;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px var(--coral-glow);
  cursor: pointer;
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: block;
  }
  body {
    padding-bottom: 64px;
  }
}

/* Footer */
.site-footer {
  background-color: var(--nano-navy-dark);
  color: #94a3b8;
  padding: 4.5rem 0 2.5rem;
  border-top: 1px solid rgba(0, 187, 249, 0.15);
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-column h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 1.35rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.95rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2.2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-disclaimer {
  max-width: 920px;
  margin: 0 auto 1.25rem;
  line-height: 1.55;
}

.breadcrumbs {
  display: none !important;
}

.breadcrumbs a {
  color: #00f5d4;
}

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