/* MamiNido — styles.css v20260618 */

/* ── Tokens ── */
:root {
  --pink-btn: #F0799B;
  --pink-light: #FDE8EF;
  --pink-dark: #D45C7F;
  --text-dark: #2C1A1A;
  --text-mid: #5A3E3E;
  --text-light: #9B7B7B;
  --cream: #FFFAF6;
  --cream-dark: #F5EDE4;
  --white: #FFFFFF;
  --border: #EDD8CC;
  --green: #4CAF82;
  --shadow-sm: 0 2px 8px rgba(44,26,26,.07);
  --shadow-md: 0 6px 24px rgba(44,26,26,.10);
  --shadow-lg: 0 16px 48px rgba(44,26,26,.13);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --transition: .25s ease;
  --max-w: 1160px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
p { color: var(--text-mid); }

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section-title { text-align: center; margin-bottom: .75rem; }
.section-sub { text-align: center; color: var(--text-light); margin-bottom: 3rem; font-size: .95rem; }
.tag {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink-btn);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--pink-btn);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(240,121,155,.35);
}
.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,121,155,.45);
}
.btn-outline {
  border: 2px solid var(--pink-btn);
  color: var(--pink-btn);
}
.btn-outline:hover { background: var(--pink-light); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }

/* ── Header ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,250,246,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
#site-header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: -.01em;
}
.logo-mami { font-style: italic; font-weight: 600; color: var(--pink-btn); }
.logo-nido { font-style: normal; font-weight: 700; color: var(--text-dark); }
.logo-icon { display: none; }
#nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
#nav-menu a { font-size: .9rem; color: var(--text-mid); transition: color var(--transition); }
#nav-menu a:hover { color: var(--pink-btn); }
#menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
}
#menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--pink-light) 100%);
  padding: 5rem 0 4rem;
  overflow: hidden;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .35rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 em { color: var(--pink-btn); font-style: normal; }
.hero-desc { font-size: 1.05rem; color: var(--text-mid); margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-stars { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--text-mid); }
.hero-stars .stars { color: #F59E0B; letter-spacing: 2px; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--cream-dark);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: .75rem 1rem;
  font-size: .8rem;
  font-weight: 600;
}
.hero-float-1 { top: 1.5rem; left: -1.5rem; }
.hero-float-2 { bottom: 2rem; right: -1.5rem; }

/* ── Trust bar ── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-mid);
}
.trust-item .icon { font-size: 1.25rem; }

/* ── Benefits ── */
.benefits { background: var(--cream); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.benefit-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.benefit-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.benefit-card p { font-size: .9rem; color: var(--text-light); }

/* ── Explanation ── */
.explanation { background: var(--cream-dark); }
.explanation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.explanation-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1;
  background: var(--cream);
}
.explanation-img img { width: 100%; height: 100%; object-fit: cover; }
.explanation-text h2 { margin-bottom: 1rem; }
.explanation-text p { margin-bottom: 1.5rem; }
.check-list { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.check-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .95rem; }
.check-item::before {
  content: '✓';
  min-width: 24px;
  height: 24px;
  background: var(--pink-light);
  color: var(--pink-btn);
  font-weight: 700;
  font-size: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: .1rem;
}

/* ── Comparison ── */
.comparison { background: var(--white); }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.comparison-table th, .comparison-table td {
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
}
.comparison-table th { background: var(--cream-dark); font-weight: 700; }
.comparison-table .col-feature { text-align: left; font-weight: 600; color: var(--text-dark); }
.comparison-table .col-us { background: var(--pink-light); }
.comparison-table th.col-us { background: var(--pink-btn); color: var(--white); }
.comparison-table .yes { color: var(--green); font-size: 1.2rem; }
.comparison-table .no { color: #ccc; font-size: 1.2rem; }

/* ── Testimonials ── */
.testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.test-stars { color: #F59E0B; font-size: 1rem; margin-bottom: .75rem; }
.test-text { font-size: .9rem; color: var(--text-mid); margin-bottom: 1rem; line-height: 1.7; }
.test-author { display: flex; align-items: center; gap: .75rem; }
.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.test-name { font-weight: 700; font-size: .9rem; }
.test-loc { font-size: .78rem; color: var(--text-light); }

/* ── Stats ── */
.stats { background: var(--pink-btn); color: var(--white); padding: 4rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-suffix { font-size: 1.5rem; }
.stat-label { font-size: .9rem; opacity: .85; }

/* ── Gallery ── */
.gallery { background: var(--cream-dark); overflow: hidden; }
.gallery-carousel { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.gallery-track {
  display: flex;
  transition: transform .45s ease;
}
.gallery-slide {
  min-width: 100%;
  aspect-ratio: 16/9;
  background: var(--cream);
  overflow: hidden;
}
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; }
.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.gallery-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 1.1rem;
  transition: all var(--transition);
}
.gallery-btn:hover { background: var(--pink-btn); color: var(--white); border-color: var(--pink-btn); }
.gallery-dots { display: flex; gap: .4rem; }
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-dot.active { background: var(--pink-btn); width: 20px; border-radius: 4px; }

/* ── FAQ ── */
.faq { background: var(--white); }
.faq-list { max-width: 720px; margin: 2rem auto 0; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: .95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--cream);
  transition: background var(--transition);
}
.faq-q:hover { background: var(--cream-dark); }
.faq-icon { font-size: 1.25rem; color: var(--pink-btn); transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .9rem;
  color: var(--text-mid);
  padding: 0 1.25rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding: 1rem 1.25rem; }

/* ── CTA section ── */
.cta-section {
  background: linear-gradient(135deg, var(--text-dark) 0%, #4a2020 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.75); margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-section .btn-primary { font-size: 1.1rem; padding: 1rem 2.5rem; }
.cta-badges { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.5rem; font-size: .82rem; color: rgba(255,255,255,.6); }
.cta-badges span { display: flex; align-items: center; gap: .35rem; }

/* ── Footer ── */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.6);
  padding: 3rem 0 2rem;
  font-size: .85rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo { display: inline-block; margin-bottom: 1rem; }
.footer-brand p { max-width: 280px; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: .9rem; font-family: var(--font-sans); font-weight: 700; margin-bottom: 1rem; }
.footer-col a { display: block; margin-bottom: .5rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--pink-btn); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: var(--pink-btn); }

/* ── Sticky CTA bar ── */
#sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(44,26,26,.12);
  padding: .9rem 1.25rem;
  z-index: 90;
  transform: translateY(100%);
  transition: transform .35s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
#sticky-cta.visible { transform: translateY(0); }
#sticky-cta .price { font-weight: 700; font-size: 1.1rem; }
#sticky-cta .price s { color: var(--text-light); font-size: .85rem; font-weight: 400; }
#sticky-cta .btn { flex-shrink: 0; padding: .7rem 1.5rem; }

/* ────────────────────────────
   PRODUCTO PAGE
──────────────────────────────*/
.product-page { padding: 2rem 0 5rem; }
.product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Gallery sticky */
.product-gallery { position: sticky; top: 80px; }
.main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--cream-dark);
  aspect-ratio: 1;
}
.main-img img { width: 100%; height: 100%; object-fit: cover; }
.thumb-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; }
.thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  aspect-ratio: 1;
  background: var(--cream-dark);
}
.thumb.active { border-color: var(--pink-btn); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product info */
.product-info {}
.product-label { margin-bottom: .75rem; }
.product-title { font-size: 2rem; margin-bottom: .5rem; }
.product-rating { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--text-light); margin-bottom: 1.25rem; }
.product-rating .stars { color: #F59E0B; }
.product-price {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  margin-bottom: 1.75rem;
}
.price-current { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; color: var(--text-dark); }
.price-old { font-size: 1.1rem; color: var(--text-light); text-decoration: line-through; }
.price-save {
  background: var(--green);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 100px;
}

/* Pack selector */
.selector-label { font-weight: 700; font-size: .9rem; margin-bottom: .75rem; color: var(--text-dark); }
.pack-grid { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.75rem; }
.pack-option {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pack-option:hover { border-color: var(--pink-btn); background: var(--pink-light); }
.pack-option.selected { border-color: var(--pink-btn); background: var(--pink-light); }
.pack-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  transition: all var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pack-option.selected .pack-radio {
  border-color: var(--pink-btn);
  background: var(--pink-btn);
}
.pack-option.selected .pack-radio::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}
.pack-name { font-weight: 700; font-size: .9rem; flex: 1; }
.pack-desc { font-size: .78rem; color: var(--text-light); margin-top: .15rem; }
.pack-price { font-weight: 700; font-size: 1rem; color: var(--pink-btn); }

/* Color selector */
.color-grid { display: flex; gap: .6rem; margin-bottom: 1.75rem; flex-wrap: wrap; }
.color-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.color-swatch.selected { outline-color: var(--pink-btn); }

/* Add to cart */
.qty-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  color: var(--text-dark);
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--cream-dark); }
.qty-num {
  width: 44px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.add-to-cart-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 100px;
  background: var(--pink-btn);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 4px 16px rgba(240,121,155,.35);
  transition: all var(--transition);
}
.add-to-cart-btn:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,121,155,.45);
}
.product-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  color: var(--text-mid);
  font-weight: 600;
}
.guarantee-item .icon { font-size: 1rem; }

/* Product tabs */
.product-tabs { margin-top: 4rem; }
.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  gap: 0;
}
.tab-btn {
  padding: .85rem 1.5rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.tab-btn.active { color: var(--pink-btn); border-color: var(--pink-btn); }
.tab-panel { display: none; padding: 2rem 0; }
.tab-panel.active { display: block; }

/* ────────────────────────────
   PAGO PAGE
──────────────────────────────*/
.checkout-page { padding: 2rem 0 5rem; }
.checkout-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}
.checkout-form-section {}
.checkout-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}
.checkout-section h3 {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}
.form-group { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--text-mid); margin-bottom: .4rem; }
.form-group input, .form-group select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  font-size: .9rem;
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--pink-btn);
  background: var(--white);
}
.submit-btn {
  width: 100%;
  padding: 1.1rem;
  border-radius: 100px;
  background: var(--pink-btn);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(240,121,155,.35);
  transition: all var(--transition);
  margin-top: .5rem;
}
.submit-btn:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,121,155,.45);
}
.order-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: sticky;
  top: 80px;
}
.order-summary h3 { font-size: 1rem; font-family: var(--font-sans); font-weight: 700; margin-bottom: 1.25rem; }
.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}
.summary-item:last-of-type { border: none; }
.summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.1rem;
  padding-top: 1rem;
  margin-top: .5rem;
  border-top: 2px solid var(--border);
}
.summary-shipping { color: var(--green); font-weight: 700; }
.secure-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.secure-badge {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: var(--text-light);
}

/* ────────────────────────────
   ÉXITO PAGE
──────────────────────────────*/
.exito-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}
.exito-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.exito-icon { font-size: 4rem; margin-bottom: 1.5rem; }
.exito-card h1 { font-size: 1.8rem; margin-bottom: .75rem; }
.exito-card p { color: var(--text-mid); margin-bottom: 1rem; }
.order-number {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .75rem 1.5rem;
  display: inline-block;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 1rem 0 1.5rem;
  color: var(--text-dark);
}
.next-steps {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: left;
  margin: 1.5rem 0;
}
.next-steps h3 { font-size: 1rem; font-family: var(--font-sans); font-weight: 700; margin-bottom: 1rem; }
.step-item {
  display: flex;
  gap: .85rem;
  margin-bottom: .85rem;
  font-size: .9rem;
}
.step-num {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink-btn);
  color: var(--white);
  font-weight: 700;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-text { color: var(--text-mid); line-height: 1.5; }

/* ── Nav logo (common pages) ── */
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: -.01em;
}

/* ────────────────────────────
   RESPONSIVE
──────────────────────────────*/
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { max-width: 420px; margin: 0 auto; }
  .hero-float { display: none; }
  .explanation-inner { grid-template-columns: 1fr; }
  .explanation-img { aspect-ratio: 16/9; }
  .product-inner { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .checkout-inner { grid-template-columns: 1fr; }
  .order-summary { position: static; order: -1; }
  .checkout-form-section { order: 1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  #nav-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 1.25rem;
  }
  #nav-menu.open { display: flex; }
  #site-header { position: relative; }
  #menu-toggle { display: flex; }
  .hero { padding: 3rem 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-badge { font-size: .75rem; }
  .comparison-table { font-size: .8rem; }
  .comparison-table th, .comparison-table td { padding: .7rem .6rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-items { gap: 1rem; }
  .pack-option { flex-wrap: wrap; }
}
