/* ==========================================================================
   NEOFLORAX.ES - STYLESHEET OFICIAL
   Diseño de alto contraste: Fondo neutro limpio / Azul noche / Botones ámbar
   ========================================================================== */

:root {
  /* Paleta Neutra y Limpia */
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-subtle: #f1f5f9;
  
  /* Secciones Oscuras de Alto Contraste */
  --bg-dark: #0b192c;
  --bg-darker: #050c17;
  --bg-dark-card: #132742;
  
  /* Color de Acento y Conversión (Ámbar / Naranja Dorado) */
  /* Contraste complementario directo contra el verde/turquesa del producto */
  --cta-gradient: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  --cta-hover: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
  --cta-shadow: 0 4px 16px rgba(234, 88, 12, 0.35);
  --cta-shadow-hover: 0 6px 24px rgba(234, 88, 12, 0.45);
  --cta-text: #ffffff;
  --white: #ffffff;

  /* Colores de Marca Secundarios */
  --brand-green: #107c41;
  --brand-teal: #0891b2;
  --brand-badge-bg: #ecfdf5;
  --brand-badge-text: #065f46;

  /* Texto */
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Bordes y Sombras */
  --border-light: #e2e8f0;
  --border-dark: #1e293b;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12);
  --shadow-float: 0 20px 40px -15px rgba(15, 23, 42, 0.18);

  /* Layout */
  --max-w: 1200px;
  --gutter: 20px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Reset y Base */
*, *::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-body);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

button, input, select {
  font: inherit;
}

/* Tipografía */
h1, h2, h3, h4 {
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4.5vw, 2.75rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.15rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); margin-bottom: 0.6rem; }
p { margin-bottom: 1rem; color: var(--text-muted); font-size: 1.05rem; }
strong { color: var(--text-main); }

/* Layout Wrappers */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap-narrow {
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(3rem, 6vw, 5.5rem);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.section-dark h1, 
.section-dark h2, 
.section-dark h3 {
  color: var(--text-white);
}

.section-dark p {
  color: #cbd5e1;
}

.section-dark strong,
.site-footer strong {
  color: #ffffff;
}

/* Eyebrows / Badges */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.eyebrow-amber {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.eyebrow-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #93c5fd;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.eyebrow-green {
  background: var(--brand-badge-bg);
  color: var(--brand-badge-text);
  border: 1px solid rgba(16, 124, 65, 0.2);
}

/* Header & Navegación */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.2s;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

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

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-logo .brand-icon {
  width: 26px;
  height: 29px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.brand-logo svg {
  color: var(--brand-green);
  flex-shrink: 0;
}

.brand-logo .brand-name {
  display: inline-block;
  line-height: 1;
}

.brand-logo .logo-neo {
  color: var(--brand-green);
}

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

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.15s;
}

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

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

.menu-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--text-main);
}

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

/* Menú Móvil */
.mobile-panel {
  display: none;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 1rem var(--gutter) 1.5rem;
}

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

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

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--bg-card-subtle);
}

/* Botones CTA de Alto Contraste */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
  text-align: center;
}

.btn:active {
  transform: translateY(1px);
}

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

.btn-primary:hover {
  background: var(--cta-hover);
  box-shadow: var(--cta-shadow-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: var(--bg-card-subtle);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.125rem;
}

/* Hero 2-Column Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.hero-image-wrap img {
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.25));
  transition: transform 0.3s ease;
}

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


/* Tarjetas y Rejillas */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card > :first-child {
  margin-top: 0 !important;
}

.card > :last-child {
  margin-bottom: 0 !important;
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

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

/* Tabla Nutricional y Comparativa */
.data-table-wrap {
  overflow-x: auto;
  margin-block: 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.data-table th, 
.data-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.data-table th {
  background: var(--bg-card-subtle);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.data-table td.highlight {
  font-weight: 700;
  color: var(--brand-green);
}

/* ==========================================================================
   SUBPAGE GRID & STICKY ASIDE
   ========================================================================== */
.subpage-hero {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 2.25rem 0 2rem;
}

.subpage-hero .breadcrumbs {
  margin-bottom: 1rem;
}

.subpage-hero .hero-title {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  color: var(--text-main);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.subpage-hero .section-lead {
  max-width: 48rem;
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

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

.article-content {
  min-width: 0;
  max-width: 100%;
  color: var(--text-main);
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--text-main);
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}

.article-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.article-content .card > :first-child,
.article-content .card h3:first-child,
.article-content .card h4:first-child {
  margin-top: 0 !important;
}

.article-content p {
  margin-bottom: 1.25rem;
}

.article-content ul, .article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   TARJETA DE PEDIDO (ORDER CARD) - PALETA NEOFLORAX
   ========================================================================== */
.order-card {
  background-color: #ffffff;
  color: var(--text-main);
  border-radius: 18px;
  box-shadow: 0 16px 36px -4px rgba(11, 25, 44, 0.14), 0 6px 16px -2px rgba(11, 25, 44, 0.08);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  max-width: 430px;
  width: 100%;
  margin: 0 auto;
}

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

.order-header-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f59e0b;
  margin-bottom: 0.3rem;
}

.order-title {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 0.3rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
}

.order-subtitle {
  font-size: 0.8125rem;
  color: #94a3b8;
  line-height: 1.35;
  text-align: left;
  margin-bottom: 0;
}

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

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

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

.order-price-left .order-new-price {
  font-size: 1.85rem;
  font-weight: 900;
  color: #0b192c;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.order-price-left .order-new-price .price-unit {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ea580c;
}

.order-price-left .order-price-label {
  font-size: 0.725rem;
  color: #64748b;
  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 #fed7aa;
  color: #ea580c;
  background-color: #ffffff;
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-pill);
}

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

.form-group {
  margin-bottom: 0.85rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.3rem;
}

.form-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid #cbd5e1;
  background-color: #f8fafc;
  color: var(--text-main);
  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: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
  background-color: #ffffff;
}

.phone-input-group {
  display: flex;
  align-items: stretch;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  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: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
  background-color: #ffffff;
}

.phone-prefix {
  background-color: #f1f5f9;
  border-right: 1px solid #cbd5e1;
  font-weight: 700;
  font-size: 0.875rem;
  color: #475569;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

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

.form-input.is-invalid, .phone-input-group.is-invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
  background-color: #fef2f2;
}

.btn-submit-order {
  width: 100%;
  background: var(--cta-gradient);
  color: #ffffff !important;
  font-size: 1.1rem;
  font-weight: 800;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: var(--cta-shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  margin-top: 0.35rem;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-submit-order span {
  color: #ffffff !important;
  font-weight: 800;
}

.btn-submit-order:hover {
  background: var(--cta-hover);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: var(--cta-shadow-hover);
}

.btn-submit-order:hover span {
  color: #ffffff !important;
}

.btn-submit-order:active {
  transform: translateY(0);
  color: #ffffff !important;
}

.order-guarantees-list {
  list-style: none;
  padding: 0;
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.775rem;
  color: #475569;
}

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

.order-guarantees-list .check {
  color: #107c41;
  font-weight: 700;
}

/* Honeypot field - invisible to real humans */
.form-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Sección de Ciencia y Eficacia (Texto a la izquierda, Foto a la derecha) */
.science-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .science-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.science-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-block: 1.5rem 1rem;
}

.science-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.15rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.science-feature-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(16, 124, 65, 0.3);
}

.science-feature-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #107c41;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.science-feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.925rem;
  line-height: 1.45;
}

.science-feature-text strong {
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.95rem;
}

.science-feature-text span {
  color: var(--text-muted);
}

.science-image-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px -6px rgba(11, 25, 44, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.science-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px -8px rgba(11, 25, 44, 0.18);
}

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

.science-badge-pill {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(16, 124, 65, 0.25);
  color: #065f46;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
  z-index: 2;
}

.science-card-caption {
  padding: 0.85rem 1.25rem;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.science-caption-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: #107c41;
}

/* Sección Inferior de Pedido (Foto a la izquierda, Formulario a la derecha) */
.bottom-order-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

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

.bottom-order-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.bottom-order-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Reseñas y Testimonios (/opiniones/) */
.reviews-summary-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 2rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 600px) {
  .reviews-summary-box {
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
  }
}

.review-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
}

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

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

.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #0b192c, #1e3a5f);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
}

.review-author-name {
  font-weight: 700;
  color: var(--text-main);
  font-size: 1rem;
}

.review-author-city {
  font-size: 0.8125rem;
  color: var(--text-light);
}

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

.review-stars {
  color: #f59e0b;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
}

.review-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-green);
  background: var(--brand-badge-bg);
  border: 1px solid #a7f3d0;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
}

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

.review-live-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

/* FAQ Acordeón */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

.faq-question {
  padding: 1.1rem 1.4rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brand-green);
  transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.4rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Breadcrumbs (Hygienic SEO) */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumbs a:hover {
  color: var(--brand-green);
}

.breadcrumbs span {
  opacity: 0.5;
}

/* Sticky Mobile Order Bar */
.sticky-order-bar, .sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  padding: 0.75rem var(--gutter);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 90;
  transform: translateY(0);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-order-bar.is-hidden, .sticky-mobile-bar.is-hidden {
  transform: translateY(120%);
}

.sticky-price-info, .mobile-bar-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.sticky-price-info .sticky-label {
  font-size: 0.75rem;
  color: var(--text-light);
}

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

.sticky-price-info .sticky-price, .mobile-bar-price .new {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0b192c;
  line-height: 1;
}

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

/* Modal Dialog de Retención */
dialog.order-modal {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: 500px;
  width: 90%;
  margin: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  background: #ffffff;
}

dialog.order-modal::backdrop {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
}

.modal-content {
  padding: 2rem;
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
}

.modal-close-btn:hover {
  color: var(--text-main);
}

/* Footer */
.site-footer {
  background: var(--bg-darker);
  color: var(--text-light);
  padding-block: 4rem 2rem;
  margin-top: auto;
  border-top: 1px solid var(--border-dark);
}

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

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

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

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav a {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: color 0.15s;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-disclaimer {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #64748b;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
}

.footer-bottom-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom-row {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.footer-legal-links a {
  color: #ffffff;
  font-size: 0.82rem;
  text-decoration: none;
  transition: opacity 0.15s, text-decoration 0.15s;
}

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

