/** Shopify CDN: Minification failed

Line 1437:0 Unexpected "}"

**/
:root {
  --color-primary: #0052FF;
  --color-primary-hover: #003ecb;
  --color-primary-light: #EBF2FF;
  --color-secondary: #00C48C;
  --color-text-main: #0F172A;
  --color-text-muted: #64748B;
  --color-border: #E2E8F0;
  --color-bg-light: #F8FAFC;
  --font-family-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --container-max-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px -2px rgba(0, 82, 255, 0.08);
  --shadow-lg: 0 12px 32px -4px rgba(0, 82, 255, 0.12);
  --shadow-pote: 0 20px 40px -10px rgba(0, 50, 150, 0.22);
}

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

body {
  font-family: var(--font-family-body);
  color: var(--color-text-main);
  background-color: #FFFFFF;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #FFFFFF;
  border-bottom: 1px solid #F1F5F9;
  transition: all 0.2s ease;
}

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

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

.site-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

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

.header-nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: #334155;
  transition: color 0.2s ease;
  position: relative;
}

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

.header-nav-highlight {
  color: #0052FF !important;
  font-weight: 700 !important;
  background: #EBF3FF;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
}

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

.header-icon-btn {
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: color 0.2s ease;
}

.header-icon-btn:hover {
  color: var(--color-primary);
}

.cart-count-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: var(--color-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-header-cta {
  background-color: var(--color-primary);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 82, 255, 0.25);
  white-space: nowrap;
}

.btn-header-cta:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 82, 255, 0.35);
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #0F172A;
}

/* ==========================================================================
   HERO SECTION (PROPORCIONES PERFECTAS)
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 1.25rem;
  padding-bottom: 2rem;
  background: radial-gradient(circle at 80% 40%, rgba(219, 234, 254, 0.65) 0%, rgba(240, 246, 255, 0.35) 45%, #FFFFFF 75%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #EBF3FF;
  color: #0052FF;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(0, 82, 255, 0.15);
}

.hero-title-main {
  font-family: var(--font-family-heading);
  font-size: clamp(2.2rem, 3.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.1;
  color: #0052FF;
  letter-spacing: -1.2px;
  margin-bottom: 0.15rem;
}

.hero-title-sub {
  font-family: var(--font-family-heading);
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0F172A;
  letter-spacing: -0.8px;
  margin-bottom: 0.85rem;
}

.hero-description {
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.55;
  max-width: 440px;
  margin-bottom: 1.25rem;
}

.hero-buttons-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.btn-primary-hero {
  background-color: #0052FF;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 18px rgba(0, 82, 255, 0.3);
  transition: all 0.25s ease;
}

.btn-primary-hero:hover {
  background-color: #0041CC;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 82, 255, 0.4);
}

.btn-secondary-hero {
  background-color: #FFFFFF;
  color: #1E293B;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.75rem 1.3rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #CBD5E1;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.btn-secondary-hero:hover {
  background-color: #F8FAFC;
  border-color: #94A3B8;
}

.hero-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.pillar-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pillar-icon-wrap {
  color: #0052FF;
  margin-bottom: 0.15rem;
}

.pillar-title {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #0F172A;
  text-transform: uppercase;
}

.pillar-desc {
  font-size: 0.74rem;
  color: #64748B;
  line-height: 1.3;
}

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

.hero-jar-container {
  position: relative;
  width: 100%;
  max-width: 410px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-jar-image {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 82, 255, 0.15));
  transition: transform 0.3s ease;
}

.hero-jar-image:hover {
  transform: scale(1.02);
}

.hero-floating-badge {
  position: absolute;
  top: 18%;
  right: 14px;
  z-index: 5;
  background: linear-gradient(135deg, #0052FF 0%, #0037AA 100%);
  color: #FFFFFF;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  font-size: 0.78rem;
  line-height: 1.15;
  box-shadow: 0 10px 25px rgba(0, 82, 255, 0.45);
  animation: floatBadge 4s ease-in-out infinite;
  padding: 8px;
  border: 3px solid #FFFFFF;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

/* ==========================================================================
   INGREDIENTS SHOWCASE (TRIPLE ROW CAROUSEL)
   ========================================================================== */
.ingredients-section {
  padding: 4.5rem 0;
  background-color: #FFFFFF;
  overflow: hidden;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title-large {
  font-family: var(--font-family-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.5px;
}

.section-title-large .highlight {
  color: #0052FF;
}

.ingredients-rows-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.ingredient-row {
  display: flex;
  align-items: center;
  padding: 0.85rem 1.25rem;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.row-blue {
  background-color: #F0F6FF;
  border: 1px solid #DBEAFE;
}

.row-green {
  background-color: #F0FDF4;
  border: 1px solid #DCFCE7;
}

.row-purple {
  background-color: #FAF5FF;
  border: 1px solid #F3E8FF;
}

.ingredient-items-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.ingredient-items-track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
}

/* Animaciones Continuas */
.marquee-left {
  animation: scrollMarqueeLeft 28s linear infinite;
}

.marquee-right {
  animation: scrollMarqueeRight 28s linear infinite;
}

.ingredient-row:hover .ingredient-items-track {
  animation-play-state: paused;
}

@keyframes scrollMarqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollMarqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.ingredient-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #FFFFFF;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}

.ingredient-card:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.ingredient-icon-jar {
  width: 28px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

.ingredient-info-col {
  display: flex;
  flex-direction: column;
}

.ingredient-name {
  font-weight: 800;
  font-size: 0.88rem;
  color: #0F172A;
  line-height: 1.2;
  white-space: nowrap;
}

.ingredient-benefit {
  font-size: 0.75rem;
  color: #64748B;
  white-space: nowrap;
  font-weight: 500;
}

.more-ingredients-pill {
  background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.25);
}

.slider-arrow-btn {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  color: #334155;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  flex-shrink: 0;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.slider-arrow-btn:hover {
  background: #0052FF;
  border-color: #0052FF;
  color: #FFFFFF;
  transform: scale(1.08);
}

.slider-prev {
  margin-right: 0.75rem;
}

.slider-next {
  margin-left: 0.75rem;
}

/* ==========================================================================
   NUTRIENT EXPLANATION MODAL / POPOVER
   ========================================================================== */
.nutrient-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.nutrient-modal-overlay.open {
  display: flex;
  animation: modalFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nutrient-modal-card {
  background: #FFFFFF;
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #E2E8F0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.nutrient-modal-header {
  padding: 1.75rem 1.75rem 1.25rem 1.75rem;
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.n-modal-img-wrap {
  width: 70px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.n-modal-img-wrap img {
  width: 50px;
  height: 70px;
  object-fit: contain;
}

.n-modal-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #0052FF;
  background: #EFF6FF;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.35rem;
  border: 1px solid #DBEAFE;
}

.n-modal-title {
  font-family: var(--font-family-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 0.25rem 0;
}

.n-modal-benefit {
  font-size: 0.88rem;
  color: #64748B;
  font-weight: 600;
  margin: 0;
}

.n-modal-body {
  padding: 1.5rem 1.75rem;
}

.n-modal-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.n-modal-tag {
  background: #F0FDF4;
  color: #16A34A;
  border: 1px solid #DCFCE7;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.n-modal-footer {
  padding: 1rem 1.75rem;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* ==========================================================================
   HOW IT WORKS SECTION (4 STEPS PROCESS)
   ========================================================================== */
.how-it-works-section {
  padding: 5rem 0;
  background-color: #FFFFFF;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.process-step-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #F1F5F9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  position: relative;
}

.process-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 82, 255, 0.08);
  border-color: #DBEAFE;
}

.step-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  position: relative;
}

.step-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  color: #0052FF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 82, 255, 0.12);
  flex-shrink: 0;
}

.step-arrow-connector {
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-family: var(--font-family-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.step-title .blue-txt {
  color: #0052FF;
}

.step-desc {
  font-size: 0.92rem;
  color: #64748B;
  line-height: 1.55;
}

/* ==========================================================================
   LAB PRODUCTS CATALOG (20 EXAMS)
   ========================================================================== */
.lab-catalog-section {
  padding: 3.5rem 0 5rem 0;
  background: #F8FAFC;
}

.lab-catalog-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
}

.catalog-title {
  font-family: var(--font-family-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
}

.catalog-subtitle {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.6;
}

.catalog-filters-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filter-tab-btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  font-weight: 600;
  font-size: 0.9rem;
  color: #334155;
  transition: all 0.2s ease;
}

.filter-tab-btn:hover {
  border-color: #0052FF;
  color: #0052FF;
}

.filter-tab-btn.active {
  background: #0052FF;
  color: #FFFFFF;
  border-color: #0052FF;
  box-shadow: 0 4px 12px rgba(0, 82, 255, 0.25);
}

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

.exam-product-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.exam-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.exam-card-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  background: #F1F5F9;
  overflow: hidden;
}

.exam-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.exam-product-card:hover .exam-card-img {
  transform: scale(1.04);
}

.card-offer-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #0284C7;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.exam-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  text-align: center;
}

.exam-card-title {
  font-family: var(--font-family-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  min-height: 42px;
}

.exam-card-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price-normal {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0F172A;
}

.price-strikethrough {
  font-size: 1rem;
  color: #0284C7;
  text-decoration: line-through;
  font-weight: 600;
}

.price-free {
  font-size: 1.45rem;
  font-weight: 900;
  color: #0F172A;
}

.btn-buy-exam {
  width: 100%;
  padding: 0.75rem;
  background: #0052FF;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.btn-buy-exam:hover {
  background: #0041CC;
  box-shadow: 0 4px 12px rgba(0, 82, 255, 0.3);
}

/* ==========================================================================
   CHECKOUT MODAL (EMISIÓN DE ORDEN MÉDICA)
   ========================================================================== */
.checkout-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.checkout-modal-overlay.open {
  display: flex;
}

.checkout-modal-card {
  background: #FFFFFF;
  border-radius: 16px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  animation: modalFadeIn 0.25s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-badge {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #0052FF;
  background: #EBF3FF;
  padding: 2px 8px;
  border-radius: 4px;
}

.modal-title-wrap h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0F172A;
  margin-top: 4px;
}

.btn-close-modal {
  font-size: 1.2rem;
  color: #94A3B8;
  padding: 4px 8px;
  border-radius: 6px;
}
.btn-close-modal:hover { color: #0F172A; }

.modal-body {
  padding: 1.5rem;
}

.modal-product-summary {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: #F8FAFC;
  padding: 0.85rem;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
}

.modal-exam-thumb {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 6px;
}

.price-row-modal {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.m-price-lbl { font-size: 0.8rem; color: #64748B; }
.m-price-val { font-size: 1.1rem; font-weight: 800; color: #0052FF; }
.m-desc-text { font-size: 0.78rem; color: #64748B; margin-top: 2px; }

.modal-divider {
  height: 1px;
  background: #E2E8F0;
  margin: 1.25rem 0;
}

.modal-form-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 1rem;
}

.modal-actions-wrap {
  margin-top: 1.25rem;
}

.btn-emit-order {
  width: 100%;
  justify-content: center;
  padding: 0.9rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   ADMIN PANEL STYLES
   ========================================================================== */
.admin-panel-section {
  padding: 3rem 0 5rem 0;
  background: #F1F5F9;
  min-height: 80vh;
}

.admin-header-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
}

.admin-main-title {
  font-family: var(--font-family-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.admin-subtitle {
  color: #64748B;
  font-size: 1rem;
}

.admin-auth-card {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.admin-auth-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.admin-tabs-nav {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-tab-btn {
  padding: 0.75rem 1.5rem;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  font-weight: 700;
  color: #475569;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.admin-tab-btn.active {
  background: #0052FF;
  color: #FFFFFF;
  border-color: #0052FF;
}

.admin-card {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.admin-exams-table-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.admin-exam-row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
}

.admin-exam-row-item:hover {
  background: #F1F5F9;
  border-color: #CBD5E1;
}

.btn-edit-exam-row {
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  background: #EBF3FF;
  color: #0052FF;
  font-weight: 700;
  font-size: 0.85rem;
}

.btn-edit-exam-row:hover {
  background: #DBEAFE;
}

/* ==========================================================================
   FORM INPUT STYLES
   ========================================================================== */
.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

.form-group input, .form-group textarea, .form-group select {
  padding: 0.75rem 1rem;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: #0052FF;
  box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.1);
}

/* ==========================================================================
   TRUST BAR / GUARANTEES
   ========================================================================== */
.trust-bar-section {
  background-color: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  padding: 1.75rem 0;
}

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

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

.trust-icon {
  color: #0052FF;
  flex-shrink: 0;
}

.trust-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.3;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #0B132B;
  color: #94A3B8;
  padding: 4rem 0 2rem 0;
}

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

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-brand-title {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-family: var(--font-family-heading);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-heading {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
}

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

.footer-links-list a {
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links-list a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Mobile & Tablets)
   ========================================================================== */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .exams-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons-row {
    justify-content: center;
  }
  .hero-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .header-nav-list {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    border-bottom: 2px solid #0052FF;
    z-index: 999;
  }
  .header-nav-list.mobile-open {
    display: flex !important;
  }
  .header-nav-link {
    font-size: 1.05rem;
    font-weight: 700;
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid #F1F5F9;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
  }
}
  .hero-title-main {
    font-size: 2.6rem;
  }
  .hero-title-sub {
    font-size: 1.8rem;
  }
  .form-group-row {
    grid-template-columns: 1fr;
  }
  .admin-exam-row-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .trust-bar-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   2MUCH ENERGY PAGE STYLES (2MUCH.CL DESIGN)
   ========================================================================== */
.twomuch-page-section {
  background: #F8FAFC;
  padding-bottom: 5rem;
}

.twomuch-hero-container {
  padding: 1.5rem 0 2.5rem 0;
  background: radial-gradient(circle at 50% 30%, #E0F2FE 0%, #BAE6FD 35%, #F8FAFC 75%);
}

.twomuch-banner-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px -10px rgba(0, 82, 255, 0.16);
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
  max-width: 100%;
}

.twomuch-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.twomuch-pillars-section {
  padding: 4rem 0 3rem 0;
}

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

.twomuch-hea-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.twomuch-hea-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px -5px rgba(0, 82, 255, 0.15);
  border-color: #BFDBFE;
}

.hea-icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.hea-blue {
  background: #EFF6FF;
  color: #0052FF;
  border: 2px solid #DBEAFE;
}

.hea-shield {
  background: #F0FDF4;
  color: #16A34A;
  border: 2px solid #DCFCE7;
}

.hea-bolt {
  background: #FEF3C7;
  color: #D97706;
  border: 2px solid #FDE68A;
}

.hea-subtitle {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.75px;
  color: #64748B;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.hea-stat {
  font-family: var(--font-family-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.hea-unit {
  font-size: 1.5rem;
  color: #0052FF;
}

.hea-lead {
  font-weight: 800;
  font-size: 0.95rem;
  color: #0052FF;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.hea-badge {
  background: #F1F5F9;
  color: #334155;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.hea-desc {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.55;
}

.twomuch-products-section {
  padding: 0.5rem 0 1.5rem 0;
}

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

.twomuch-pack-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.twomuch-pack-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 82, 255, 0.12);
}

.twomuch-pack-card.pack-highlighted {
  border: 2.5px solid #0052FF;
  box-shadow: 0 20px 45px rgba(0, 82, 255, 0.2);
}

.popular-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #0052FF;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 82, 255, 0.4);
}

.pack-img-wrap {
  position: relative;
  background: #F8FAFC;
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid #F1F5F9;
}

.pack-img-wrap img {
  max-height: 240px;
  width: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.pack-badge-top {
  position: absolute;
  bottom: 12px;
  left: 14px;
  background: #0F172A;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
}

.pack-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pack-title {
  font-family: var(--font-family-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.25rem;
}

.pack-servings {
  font-size: 0.85rem;
  color: #64748B;
  margin-bottom: 1.25rem;
}

.pack-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #334155;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.pack-promo-callout {
  background: #EFF6FF;
  color: #0052FF;
  border: 1px dashed #BFDBFE;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  font-size: 0.82rem;
  margin-bottom: 1.25rem;
}

.pack-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: auto;
  margin-bottom: 1.25rem;
}

.pack-price-main {
  font-family: var(--font-family-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #0F172A;
}

.pack-price-old {
  font-size: 1rem;
  color: #94A3B8;
  text-decoration: line-through;
}

.btn-buy-2much {
  width: 100%;
  padding: 0.85rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.95rem;
  background: #0F172A;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-buy-2much:hover {
  background: #0052FF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 82, 255, 0.35);
}

.btn-primary-2much {
  background: #0052FF;
  box-shadow: 0 6px 18px rgba(0, 82, 255, 0.35);
}

.btn-primary-2much:hover {
  background: #0041CC;
}

.twomuch-how-section {
  padding: 2rem 0;
}

.twomuch-how-card {
  background: linear-gradient(135deg, #0B132B 0%, #1C2541 100%);
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  color: #FFFFFF;
}

.twomuch-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.twomuch-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0052FF;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 6px 18px rgba(0, 82, 255, 0.4);
}

.twomuch-step h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.twomuch-step p {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .twomuch-hea-grid,
  .twomuch-packs-grid,
  .twomuch-steps-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   RADIO CARD VARIANT SELECTOR & FLAVOR SWATCHES
   ========================================================================== */
.variant-radio-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.variant-radio-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  border: 1.5px solid #CBD5E1;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.variant-radio-card:hover {
  border-color: #0052FF;
  background: #F8FAFC;
}

.variant-radio-card.active {
  border-color: #0D9488;
  background: #F0FDFA;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.12);
}

.card-left-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.radio-indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.variant-radio-card.active .radio-indicator {
  border-color: #0D9488;
  background: #0D9488;
}

.radio-indicator::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFFFFF;
  display: none;
}

.variant-radio-card.active .radio-indicator::after {
  display: block;
}

.card-title-tags {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.card-variant-title {
  font-weight: 700;
  font-size: 1rem;
  color: #0F172A;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-tag-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  background: #CCFBF1;
  color: #0F766E;
}

.card-subtext {
  font-size: 0.82rem;
  color: #64748B;
}

.card-right-prices {
  text-align: right;
}

.card-price-current {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: #0D9488;
}

.card-price-old {
  font-size: 0.85rem;
  color: #94A3B8;
  text-decoration: line-through;
}

.card-corner-badge {
  position: absolute;
  top: -10px;
  right: 18px;
  background: #0F172A;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* FLAVORS GRID */
.flavors-selection-box {
  margin-bottom: 1.5rem;
}

.flavors-header-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0F172A;
}

.flavor-active-name {
  color: #0052FF;
  font-weight: 800;
  background: #EFF6FF;
  padding: 0.25rem 0.65rem;
  border-radius: 12px;
  border: 1px solid #BFDBFE;
}

.flavors-swatches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.5rem;
}

.flavor-chip-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
}

.flavor-chip-btn:hover {
  border-color: #0052FF;
  background: #F8FAFC;
}

.flavor-chip-btn.active {
  border-color: #0052FF;
  background: #EFF6FF;
  color: #0052FF;
  font-weight: 700;
  box-shadow: 0 0 0 1px #0052FF;
}
