/* ── Variables ── */
:root {
  --navy: #0D47A1;
  --navy-dark: #0D47A1;
  --navy-light: #1565C0;
  --orange: #25D366;
  --orange-light: #34C759;
  --orange-pale: #E8F5E9;
  --green: #2E7D32;
  --green-light: #388E3C;
  --green-pale: #E8F5E9;
  --white: #ffffff;
  --gray-light: #f5f6f8;
  --gray: #666666;
  --gray-dark: #333333;
  --border: #d0d0d0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
}

/* ── Font Loading ── */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;700;800&family=Source+Sans+3:wght@400;500;600;700;800&display=swap');

/* Font Face Fallback */
@font-face {
  font-family: 'Lexend';
  src: local('Lexend');
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: local('Source Sans 3');
  font-display: swap;
}

/* ── Font Optimization ── */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif; color: #333333; background: var(--gray-light); line-height: 1.6; font-weight: 400; }
img {
  max-width: 100%;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
}
picture {
  display: block;
}
button { cursor: pointer; border: none; font-family: inherit; }
a { text-decoration: none; color: inherit; }
input, select, textarea { font-family: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lexend', 'Source Sans 3', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-rendering: optimizeLegibility;
}

/* ── Focus States (WCAG Accessibility) ── */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus,
[tabindex]:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ── Reduced Motion Support ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  z-index: 9999;
  text-decoration: underline;
  font-size: 0.9rem;
  font-weight: 600;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--orange);
  outline-offset: 0;
}

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 64px;
  box-shadow: var(--shadow-md);
}
.navbar-logo { display: flex; align-items: center; gap: 12px; }
.navbar-logo img { height: 44px; width: auto; }
.navbar-logo-text { color: var(--white); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.5px; display: none; }
.navbar-actions { display: flex; align-items: center; gap: 12px; }
.navbar-links { display: flex; gap: 24px; }
.navbar-links a { color: rgba(255,255,255,0.85); font-size: 1rem; font-weight: 500; transition: color var(--transition); }
.navbar-links a:hover { color: var(--orange-light); }
.payment-help-btn {
  align-items: center;
  background: #fff3cd;
  border: 2px solid var(--orange-light);
  border-radius: 50px;
  color: var(--navy-dark);
  display: flex;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 8px;
  padding: 8px 16px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.payment-help-btn span {
  align-items: center;
  background: #c62828;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: 0.78rem;
  height: 20px;
  justify-content: center;
  line-height: 1;
  width: 20px;
  flex-shrink: 0;
}
.payment-help-btn:hover {
  background: var(--orange-light);
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
  color: var(--navy-dark);
  transform: translateY(-1px);
}
.cart-btn {
  position: relative; background: var(--orange); color: var(--navy-dark);
  border-radius: 50px; padding: 8px 18px; font-size: 0.95rem; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  transition: background 0.25s ease-out, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  box-shadow: 0 2px 8px rgba(37,211,102,0.15);
}
.cart-btn:hover {
  background: var(--orange-light);
  transform: scale(1.04);
  box-shadow: 0 4px 12px rgba(37,211,102,0.25);
}
.cart-btn:active {
  transform: scale(0.98);
}
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--green); color: var(--white);
  border-radius: 50%; width: 20px; height: 20px;
  font-size: 0.7rem; font-weight: 700;
  display: none; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}
.menu-btn { display: none; background: none; color: var(--white); font-size: 1.5rem; padding: 4px 8px; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  animation: fadeInUp 0.8s ease-out;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.18;
  image-rendering: -webkit-optimize-contrast;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero::before {
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
  }
}
.hero-inner {
  position: relative; max-width: 1200px; margin: 0 auto;
  padding: 100px 24px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-block; background: var(--green); color: var(--white);
  padding: 8px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 {
  color: var(--white); font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 28px;
  font-family: 'Lexend', 'Source Sans 3', sans-serif;
}
.hero h1 span { color: var(--orange); }
.hero-desc { color: rgba(255,255,255,0.85); font-size: clamp(1rem, 2vw, 1.25rem); margin-bottom: 48px; line-height: 1.8; }
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 16px 40px; border-radius: 50px;
  font-size: 1.05rem; font-weight: 700; letter-spacing: 0.5px;
  transition: background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.25s ease-out, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(46,125,50,0.35);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}
.btn-secondary {
  background: transparent; color: var(--white);
  padding: 16px 40px; border-radius: 50px;
  font-size: 1.05rem; font-weight: 600; border: 2px solid rgba(255,255,255,0.6);
  transition: border-color var(--transition), background var(--transition);
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.12); }
.hero-img {
  display: flex; justify-content: center; align-items: center;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px; background: rgba(255,255,255,0.06);
  max-width: 100%;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-img .img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100%; height: 420px; color: rgba(255,255,255,0.4); gap: 12px; font-size: 0.9rem;
}
.hero-img .img-placeholder span { font-size: 3.5rem; }
.hero-stats { display: flex; gap: 48px; margin-top: 56px; justify-content: center; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; color: var(--orange); font-size: 1.8rem; font-weight: 800; margin-bottom: 4px; }
.hero-stat small { color: rgba(255,255,255,0.75); font-size: 0.9rem; font-weight: 600; }

/* ── Trust Block ── */
.trust-block {
  background: var(--green-pale);
  border-bottom: 2px solid var(--green);
  padding: 20px 24px;
}
.trust-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 14px 40px;
}
.trust-carousel {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.trust-carousel .carousel-item picture,
.trust-carousel .carousel-item img {
  width: 100%;
  height: 100%;
}
.trust-carousel .carousel-item img {
  height: 420px;
  object-fit: cover;
}
.trust-carousel .carousel-caption {
  right: auto;
  bottom: 32px;
  left: 8%;
  text-align: left;
  max-width: 480px;
  background: rgba(13,71,161,0.84);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(2px);
}
.trust-carousel .carousel-caption h5 {
  color: var(--white);
  font-size: clamp(1rem, 2.5vw, 1.45rem);
  font-weight: 800;
  margin: 0 0 6px;
  line-height: 1.25;
}
.trust-carousel .carousel-caption p {
  color: rgba(255,255,255,0.88);
  font-size: clamp(0.8rem, 1.5vw, 0.92rem);
  margin: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; font-weight: 600; color: var(--green);
}
.trust-icon { font-size: 1.2rem; }

/* ── Info Banner ── */
.info-banner {
  background: var(--navy); color: var(--white);
  display: none; flex-wrap: wrap;
  justify-content: center; gap: 16px 32px; padding: 12px 24px;
  border-top: 3px solid var(--orange); font-size: 0.88rem;
}
.info-item { display: flex; align-items: center; gap: 6px; }

/* ── Section Base ── */
.section { padding: 80px 24px; max-width: 1140px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--navy); font-weight: 800; line-height: 1.2; }
.section-header p { color: var(--gray); margin-top: 12px; font-size: clamp(1rem, 2vw, 1.15rem); line-height: 1.6; }
.section-tag {
  display: inline-block; background: var(--green-pale); color: var(--green);
  padding: 6px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 14px;
}

/* ── Products Search ── */
.products-search-wrap {
  display: flex; justify-content: center; margin-bottom: 24px;
}
.products-search-box {
  position: relative; width: 100%; max-width: 480px;
  display: flex; align-items: center;
}
.products-search-icon {
  position: absolute; left: 16px; color: var(--gray); font-size: 0.95rem; pointer-events: none;
}
.products-search-input {
  width: 100%; padding: 12px 44px 12px 42px;
  border: 2px solid var(--border); border-radius: 50px;
  font-size: 0.95rem; font-family: inherit; background: var(--white);
  color: var(--gray-dark); transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.products-search-input:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(13,71,161,0.12);
}
.products-search-input::placeholder { color: var(--gray); }
.products-search-clear {
  position: absolute; right: 14px; background: none; border: none;
  color: var(--gray); font-size: 1rem; cursor: pointer; padding: 4px;
  line-height: 1; transition: color var(--transition);
}
.products-search-clear:hover { color: var(--navy); }

/* ── Tabs ── */
.tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; min-height: 50px; }
.tab-btn {
  background: var(--white); color: var(--navy);
  padding: 10px 24px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; border: 2px solid var(--border);
  transition: all var(--transition);
}
.tab-btn:hover { border-color: var(--orange); color: var(--navy-dark); }
.tab-btn.active { background: var(--orange); color: var(--navy-dark); border-color: var(--orange); }

/* ── Products Grid ── */
.products-grid, .combos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-card:active {
  transform: translateY(-2px);
}
.product-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--gray-light);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
  display: block;
  padding: 8px;
}
.product-card:hover .product-img img {
  transform: scale(1.08);
}
.img-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; color: var(--gray);
  gap: 8px;
}
.img-placeholder span { font-size: 2.5rem; }
.img-placeholder small { font-size: 0.75rem; }
.price-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--orange); color: var(--navy-dark);
  padding: 4px 10px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
}
.product-info { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.product-desc {
  font-size: 0.83rem;
  color: var(--gray);
  margin-bottom: 10px;
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
.product-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.4;
}
.product-details-list li {
  padding: 2px 0;
  margin: 0;
}
.product-price { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }

/* ── Card Actions (qty + add btn) ── */
.card-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-top: auto;
}
.qty-selector {
  display: flex; align-items: center; gap: 4px;
  background: var(--gray-light); border-radius: 50px;
  padding: 4px 6px; border: 1.5px solid var(--border);
}
.qty-btn-card {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border);
  font-size: 1.1rem; font-weight: 700; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); color: var(--navy-dark);
}
.qty-btn-card:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.qty-display {
  min-width: 24px; text-align: center;
  font-size: 0.92rem; font-weight: 700; color: var(--navy-dark);
}
.add-btn {
  background: var(--navy); color: var(--white);
  padding: 9px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 700;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.add-btn:hover { background: var(--navy-light); transform: scale(1.03); }

/* ── Skeleton ── */
.skeleton { pointer-events: none; }
.skeleton-box {
  background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
  background-size: 400% 100%; animation: shimmer 1.4s infinite;
}
.skeleton-line {
  height: 16px; border-radius: 4px; margin-bottom: 8px;
  background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
  background-size: 400% 100%; animation: shimmer 1.4s infinite;
}
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

.empty-state { grid-column: 1/-1; text-align: center; padding: 60px 20px; color: var(--gray); }
.empty-state span { font-size: 3rem; display: block; margin-bottom: 12px; }
#products-error, #combos-error { color: #c62828; text-align: center; display: none; padding: 24px; }

/* ── Section Divider ── */
.section-divider {
  border: none; height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ── Emotional Block ── */
.emotional-block {
  background: var(--green-pale);
  padding: 72px 24px;
}
.emotional-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.emotional-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy); font-weight: 800; margin: 14px 0 24px; line-height: 1.2;
}
.emotional-content p {
  color: var(--gray-dark); font-size: clamp(1rem, 2vw, 1.15rem); line-height: 1.8; margin-bottom: 28px;
}
.emotional-bullets { display: flex; flex-direction: column; gap: 12px; }
.bullet-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; color: var(--navy); font-weight: 500;
}
.bullet-item span { color: var(--green); font-weight: 700; flex-shrink: 0; font-size: 1.1rem; }
.emotional-img {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); min-height: 300px; background: var(--border);
}
.emotional-img img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder-emotion {
  display: flex; align-items: center; justify-content: center;
  min-height: 300px; font-size: 5rem;
}

/* ── How it Works ── */
.how-it-works { background: var(--navy); padding: 72px 24px; }
.how-inner { max-width: 1000px; margin: 0 auto; }
.how-it-works .section-header h2 { color: var(--white); }
.how-it-works .section-header p { color: rgba(255,255,255,0.7); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.step { text-align: center; }
.step-icon {
  width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 16px;
  background: rgba(249, 248, 247, 0.991); border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.step h3 { color: var(--white); font-size: 1.35rem; font-weight: 700; margin-bottom: 12px; }
.step p { color: rgba(255,255,255,0.85); font-size: 1.5 rem; line-height: 1.7; }
.step-num {
  display: inline-block; background: var(--orange); color: var(--navy-dark);
  width: 24px; height: 24px; border-radius: 50%; font-size: 0.75rem; font-weight: 700;
  line-height: 24px; text-align: center; margin-bottom: 6px;
}

/* ── Testimonials ── */
.testimonials-section { background: var(--white); padding: 72px 24px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: 1140px; margin: 0 auto;
}
.testimonial-card {
  background: var(--gray-light); border-radius: var(--radius);
  padding: 32px 28px; border-left: 4px solid var(--green);
}
.testimonial-stars { font-size: 1.2rem; margin-bottom: 14px; }
.testimonial-card p {
  color: var(--gray-dark); font-size: 1rem; line-height: 1.7;
  margin-bottom: 18px; font-style: italic;
}
.testimonial-author { font-size: 0.9rem; font-weight: 700; color: var(--navy); }

/* ── FAQ ── */
.faq-section { background: var(--gray-light); padding: 72px 24px; }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px; font-weight: 700; color: var(--navy);
  cursor: pointer; font-size: 1.02rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--green-pale); }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--green); font-weight: 700; flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 24px 20px; color: var(--gray-dark); font-size: 0.98rem; line-height: 1.7; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  padding: 60px 24px; text-align: center;
}
.cta-banner h2 { color: var(--navy-dark); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.cta-banner p { color: rgba(13,71,161,0.8); margin-bottom: 32px; font-size: clamp(1rem, 2vw, 1.1rem); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white); color: var(--navy-dark);
  padding: 14px 36px; border-radius: 50px;
  font-size: 1rem; font-weight: 700; display: inline-block;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.2); }
.btn-white-outline {
  background: transparent; color: var(--navy-dark);
  padding: 14px 36px; border-radius: 50px;
  font-size: 1rem; font-weight: 700; display: inline-block;
  border: 2px solid var(--navy-dark);
  transition: background var(--transition), transform var(--transition);
}
.btn-white-outline:hover { background: rgba(13,71,161,0.1); transform: translateY(-2px); }

/* ── Footer ── */
footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.7);
  padding: 48px 24px 24px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 50px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
footer h4 { color: var(--white); margin-bottom: 14px; font-size: 0.95rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; font-size: 0.88rem; }
footer ul li a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
footer ul li a:hover { color: var(--orange-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 20px;
  text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.footer-wa-link { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-wa-link:hover { color: var(--orange-light); }

/* ── Cart Panel ── */
.cart-panel {
  position: fixed; top: 0; right: -400px; width: 380px; height: 100vh;
  background: var(--white); z-index: 200;
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column;
  transition: right 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.cart-panel.open {
  right: 0;
}
.cart-header {
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--navy); color: var(--white);
}
.cart-header h3 { font-size: 1.1rem; }
.icon-btn { background: none; color: var(--white); font-size: 1.3rem; padding: 4px; border-radius: 4px; transition: background var(--transition); }
.icon-btn:hover { background: rgba(255,255,255,0.15); }
.cart-body { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--gray); }
.cart-empty span { font-size: 3rem; display: block; margin-bottom: 12px; }
#cart-items { display: flex; flex-direction: column; gap: 12px; }
.cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; border-radius: var(--radius-sm); background: var(--gray-light);
}
.cart-item-img { width: 52px; height: 52px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--border); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder-sm { width: 100%; height: 100%; background: var(--border); border-radius: var(--radius-sm); }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.85rem; font-weight: 600; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: 0.88rem; color: var(--orange); font-weight: 700; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.qty-btn {
  width: 26px; height: 26px; border-radius: 50%; background: var(--white);
  border: 1px solid var(--border); font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.cart-item-qty span { font-size: 0.9rem; font-weight: 600; min-width: 18px; text-align: center; }
.cart-item-remove { background: none; color: var(--gray); font-size: 0.9rem; padding: 4px; border-radius: 4px; flex-shrink: 0; }
.cart-item-remove:hover { color: #c62828; }
.cart-footer { padding: 16px 24px; border-top: 1px solid var(--border); }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 16px; }
.cart-total-row span { font-size: 1.1rem; }
.cart-total-row strong { font-size: 1.2rem; color: var(--navy); }
#cart-checkout-btn {
  width: 100%; padding: 14px; background: var(--orange); color: var(--navy-dark);
  border-radius: 50px; font-size: 1rem; font-weight: 700;
  transition: background var(--transition);
}
#cart-checkout-btn:hover:not(:disabled) { background: var(--orange-light); }
#cart-checkout-btn:disabled {
  background: var(--gray);
  cursor: not-allowed;
  color: var(--white);
  opacity: 0.6;
}

/* Button Loading State */
button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* Form Submit Button Loading */
.form-submit:disabled {
  background: var(--gray);
  cursor: not-allowed;
  color: var(--white);
  opacity: 0.6;
}

/* ── Overlay ── */
.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 150; opacity: 0; visibility: hidden; transition: opacity var(--transition), visibility var(--transition);
}
.overlay.show { opacity: 1; visibility: visible; }

/* ── Modals ── */
.modal {
  display: block;
  position: fixed; top: 50%; left: 50%; transform: translate(-50%,-60%);
  width: min(560px, 95vw); max-height: 90vh; overflow-y: auto;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); z-index: 300;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.25s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%,-50%);
}
.modal-header {
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--navy); color: var(--white); border-radius: var(--radius) var(--radius) 0 0;
}
.modal-header h3 { font-size: 1.1rem; }
.modal-close { background: none; color: var(--white); font-size: 1.4rem; padding: 2px 8px; border-radius: 4px; }
.modal-close:hover { background: rgba(255,255,255,0.15); }
.modal-body { padding: 24px; }

/* ── Forms ── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.95rem; transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--navy);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; padding: 14px; background: var(--orange); color: var(--navy-dark);
  border-radius: 50px; font-size: 1rem; font-weight: 700; margin-top: 8px;
  transition: background var(--transition);
}
.form-submit:hover:not(:disabled) { background: var(--orange-light); }
.form-submit:disabled { background: var(--gray); cursor: not-allowed; color: var(--white); }
.form-error { color: #c62828; font-size: 0.85rem; margin-top: 12px; display: none; }
.required { color: var(--orange); }

/* ── Checkout Summary ── */
.checkout-summary {
  background: var(--gray-light); border-radius: var(--radius-sm);
  padding: 14px; margin-bottom: 20px;
}
.summary-row { display: flex; justify-content: space-between; padding: 5px 0; font-size: 0.9rem; }
.total-row { border-top: 1px solid var(--border); margin-top: 8px; padding-top: 8px; }

/* ── Payment Modal ── */
.payment-info {
  background: var(--orange-pale); border: 1px solid var(--orange);
  border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.payment-info span { font-size: 0.88rem; color: var(--navy); }
.payment-info strong { font-size: 1.3rem; color: var(--white); }
.payment-proof-note {
  background: var(--orange-pale);
  border: 1px solid var(--orange);
  border-radius: var(--radius-sm);
  color: var(--navy-dark);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 16px;
  padding: 12px 14px;
}
.payment-proof-note a {
  color: var(--navy);
  display: inline-block;
  font-weight: 700;
  margin-top: 6px;
  text-decoration: underline;
}
.method-label { font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; display: block; }
.methods-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.method-card {
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px 12px; text-align: center; cursor: pointer;
  transition: all var(--transition);
}
.method-card:hover {
  border-color: var(--orange);
  box-shadow: 0 2px 8px rgba(37,211,102,0.15);
}
.method-card.selected {
  border-color: var(--orange);
  background: var(--orange-pale);
  box-shadow: 0 4px 12px rgba(37,211,102,0.25);
  transform: scale(1.02);
}
.method-card span { font-size: 2rem; display: block; margin-bottom: 6px; }
.method-card strong { font-size: 0.88rem; color: var(--navy); display: block; }
.method-card small { font-size: 0.75rem; color: var(--gray); }
.dropzone {
  border: 2px dashed var(--border); border-radius: var(--radius-sm);
  padding: 32px 20px; text-align: center; cursor: pointer;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
  background: var(--gray-light); margin-bottom: 14px;
}
.dropzone:hover {
  border-color: var(--orange);
  background: var(--orange-pale);
  box-shadow: 0 4px 12px rgba(37,211,102,0.15);
  transform: scale(1.01);
}
.dropzone.drag-over {
  border-color: var(--orange);
  background: var(--orange-pale);
  box-shadow: 0 4px 12px rgba(37,211,102,0.25);
  transform: scale(1.02);
}
.dropzone.has-file {
  border-color: var(--green);
  background: var(--green-pale);
  box-shadow: 0 4px 12px rgba(46,125,50,0.25);
}
.dropzone span { font-size: 2.5rem; display: block; margin-bottom: 8px; }
.dropzone p { font-size: 0.88rem; color: var(--gray); }
.dropzone small { font-size: 0.78rem; color: var(--gray); }
#file-preview { width: 100%; max-height: 200px; object-fit: contain; border-radius: var(--radius-sm); display: none; margin-bottom: 12px; }

/* ── Success Screen ── */
.success-screen {
  position: fixed; inset: 0; background: var(--white);
  z-index: 400; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s ease;
  backface-visibility: hidden;
  will-change: opacity;
}
.success-screen.open {
  opacity: 1;
  visibility: visible;
}
.success-inner { text-align: center; padding: 40px 24px; max-width: 500px; }
.success-icon { font-size: 5rem; display: block; margin-bottom: 20px; animation: pop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes pop { 0% { transform: scale(0); } 80% { transform: scale(1.15); } 100% { transform: scale(1); } }
.success-inner h2 { font-size: 1.8rem; color: var(--navy); font-weight: 800; margin-bottom: 10px; }
.success-inner p { color: var(--gray); margin-bottom: 6px; }
.order-ref { font-size: 1.1rem; font-weight: 700; color: var(--green); margin: 12px 0 24px; }
.success-note {
  background: var(--green-pale); border-radius: var(--radius-sm);
  padding: 14px; font-size: 0.88rem; color: var(--navy); margin-bottom: 28px; line-height: 1.6;
}

/* ── Toast ── */
.toast {
  position: fixed; bottom: 120px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--navy); color: var(--white);
  padding: 12px 24px; border-radius: 50px; font-size: 0.88rem; font-weight: 600;
  box-shadow: var(--shadow-md); z-index: 500;
  opacity: 0; transition: opacity var(--transition), transform var(--transition);
  white-space: nowrap; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 600px) {
  .toast {
    bottom: 90px;
    font-size: 0.82rem;
    padding: 10px 20px;
  }
}

/* ── WhatsApp button in navbar ── */
.navbar-wa-btn {
  display: flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: #25D366; color: var(--white);
  font-size: 1.25rem;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.navbar-wa-btn:hover { background: #1ebe5a; transform: scale(1.08); }

/* ── Mobile Nav Search ── */
.mobile-nav-search {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50px; overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}
.mobile-nav-search:focus-within {
  border-color: var(--orange); background: rgba(255,255,255,0.18);
}
.mobile-nav-search-input {
  flex: 1; padding: 10px 14px;
  background: none; color: var(--white);
  font-size: 0.92rem; font-family: inherit; outline: none; border: none;
}
.mobile-nav-search-input::placeholder { color: rgba(255,255,255,0.5); }
.mobile-nav-search-btn {
  background: none; border: none; color: rgba(255,255,255,0.7);
  padding: 10px 14px; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--transition), background var(--transition);
  flex-shrink: 0;
}
.mobile-nav-search-btn:hover { color: var(--white); background: rgba(255,255,255,0.1); }

/* ── Bottom Nav (mobile) ── */
.bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 64px; background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 110;
  align-items: stretch;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.bottom-nav-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  background: none; border: none; font-family: inherit;
  color: rgba(255,255,255,0.65); font-size: 0.65rem; font-weight: 600;
  text-decoration: none; cursor: pointer; padding: 6px 4px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.3px;
}
.bottom-nav-item i { font-size: 1.3rem; }
.bottom-nav-item:hover, .bottom-nav-item:active { color: var(--white); background: rgba(255,255,255,0.07); }
.bottom-nav-item.active { color: var(--orange); }
.bottom-nav-badge-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.bottom-nav-badge {
  position: absolute; top: -6px; right: -10px;
  background: #c62828; color: var(--white);
  border-radius: 50%; width: 18px; height: 18px;
  font-size: 0.65rem; font-weight: 700;
  display: none; align-items: center; justify-content: center;
  border: 2px solid var(--navy); line-height: 1;
}

/* ocultar tabs cuando hay búsqueda activa */
.tabs.search-active { display: none; }

/* ── Floating Cart Mobile ── */
.floating-cart {
  display: none; position: fixed; bottom: 24px; right: 24px;
  background: var(--navy); color: var(--white);
  width: 58px; height: 58px; border-radius: 50%;
  font-size: 1.5rem; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); z-index: 100;
  transition: transform var(--transition);
}
.floating-cart:hover { transform: scale(1.1); background: var(--navy-light); }
.floating-cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: #c62828; color: var(--white);
  border-radius: 50%; width: 22px; height: 22px;
  font-size: 0.72rem; font-weight: 700;
  display: none; align-items: center; justify-content: center;
  border: 2px solid var(--white);
  line-height: 1;
}

/* Help Page */
.help-page { background: var(--gray-light); }
.help-page .navbar-logo { text-decoration: none; }
.help-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 84px 24px 72px;
}
.help-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.help-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.help-hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  max-width: 760px;
}
.help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.help-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 24px;
}
.help-section-muted {
  max-width: none;
  background: var(--white);
}
.help-section-muted > * {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.help-section-header {
  margin-bottom: 32px;
  text-align: center;
}
.help-section-header h2,
.help-panel h2 {
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
}
.help-section-header p {
  color: var(--gray);
  margin: 8px auto 0;
  max-width: 760px;
}
.help-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.help-panel,
.help-step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}
.help-panel-highlight {
  background: var(--green-pale);
  border-color: rgba(46,125,50,0.28);
}
.help-kicker {
  color: var(--green);
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.help-panel h3,
.help-step-card h3 {
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.help-panel p,
.help-step-card p {
  color: var(--gray-dark);
  font-size: 0.95rem;
  margin-bottom: 0;
}
.help-steps,
.help-checklist {
  margin: 16px 0 0;
  padding-left: 20px;
}
.help-steps li,
.help-checklist li { margin-bottom: 10px; }
.help-note {
  background: var(--orange-pale);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm);
  margin-top: 18px;
  padding: 12px 14px;
}
.help-timeline {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.help-step-card span {
  align-items: center;
  background: var(--orange);
  border-radius: 50%;
  color: var(--navy-dark);
  display: flex;
  font-size: 0.88rem;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  margin-bottom: 14px;
  width: 34px;
}
.help-step-card a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
}
.help-summary {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.help-summary div {
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.help-summary strong {
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}
.help-summary p { margin: 0; }

/* ── Zelle aviso ── */
.zelle-aviso {
  margin-top: 28px;
  background: #fff8e1;
  border: 1.5px solid #f9a825;
  border-left: 5px solid #f9a825;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--gray-dark);
}
.zelle-aviso-titulo {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 0.97rem;
}
.zelle-aviso ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.zelle-aviso ul li { padding: 0; }
.zelle-aviso p:last-child { margin: 0; }
.zelle-aviso a { color: var(--navy); font-weight: 700; text-decoration: underline; }

/* Payment Page */
.payment-page {
  background: var(--gray-light);
}
.payment-page .navbar-logo {
  text-decoration: none;
}
.payment-page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 64px 24px 54px;
}
.payment-page-inner,
.payment-page-section {
  max-width: 760px;
  margin: 0 auto;
}
.payment-page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}
.payment-page-hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.04rem;
  margin: 0;
}
.payment-page-section {
  padding: 42px 24px 72px;
}
.payment-page-card,
.payment-empty-state {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 24px;
}
.payment-empty-state {
  text-align: center;
}
.payment-empty-state h2 {
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.payment-empty-state p {
  color: var(--gray);
  margin-bottom: 24px;
}
.payment-success.success-screen {
  position: static;
  display: none;
  min-height: auto;
  padding: 0;
}
.payment-success.success-screen.open {
  display: flex;
  opacity: 1;
  visibility: visible;
}


/*Modal de grupo de WA*/
.whatsapp-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 9999;

  opacity: 0;
  visibility: hidden;

  transition: .3s;
}

.whatsapp-modal.show{
  opacity: 1;
  visibility: visible;
}

.whatsapp-modal-content{
  width: 90%;
  max-width: 420px;

  background: #fff;
  padding: 2rem;

  border-radius: 20px;

  position: relative;
  text-align: center;
}

.close-modal{
  position: absolute;
  top: 10px;
  right: 15px;

  border: none;
  background: none;

  font-size: 28px;
  cursor: pointer;
}

.whatsapp-btn{
  display: inline-block;

  margin-top: 1rem;
  padding: 14px 24px;

  background: #25D366;
  color: white;

  border-radius: 12px;
  text-decoration: none;

  font-weight: bold;
}






/* ── Responsive ── */
@media (max-width: 1024px) {
  .section { padding: 60px 24px; }
  .section-header { margin-bottom: 48px; }
  .section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
  .emotional-block { padding: 60px 24px; }
  .emotional-inner { gap: 48px; }
  .emotional-img { min-height: 280px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .how-it-works .steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .products-grid, .combos-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero-stats { gap: 32px; }
  .navbar-logo-text { display: block; }
  .cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-img { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .navbar-links { display: none; }
  .menu-btn { display: block; }
  .navbar-logo-text { display: block; font-size: 0.95rem; }
  .cart-btn { display: none; }
  .navbar-wa-btn { display: flex; }
  .emotional-inner { grid-template-columns: 1fr; gap: 32px; }
  .emotional-img { min-height: 200px; max-height: 280px; }
  .help-page .cart-btn { display: none; }
  /* dar espacio al bottom nav */
  body { padding-bottom: 64px; }
  .bottom-nav { display: flex; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .methods-grid { grid-template-columns: 1fr; }
  .cart-panel { width: 100%; right: -100%; }
  .floating-cart { display: none; }
  .payment-help-btn { padding: 10px 12px; font-size: 0.75rem; gap: 6px; }
  .payment-help-btn span { font-size: 0.7rem; width: 18px; height: 18px; }
  .cart-btn .cart-label { display: none; }
  .cart-btn { padding: 10px 14px; font-size: 1.2rem; }
  .steps { grid-template-columns: 1fr; }
  .hero-stats { justify-content: center; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .trust-carousel .carousel-item img { height: 360px; }
  .faq-section { padding: 48px 24px; }
  .emotional-block { padding: 48px 24px; }
  .help-hero { padding: 56px 20px 48px; }
  .help-section { padding: 44px 20px; }
  .checkout-actions { grid-template-columns: 1fr; }
  .products-grid, .combos-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .card-actions { flex-direction: column; align-items: stretch; }
  .qty-selector { width: 100%; justify-content: space-between; }
  .product-img img { width: 80%; }
  .product-desc { -webkit-line-clamp: 10; line-clamp: 10; }
}

/* ── Extra Small Devices (≤375px) ── */
@media (max-width: 375px) {
  html { font-size: 13.5px; }
  body { line-height: 1.5; }

  /* Navbar ── */
  .navbar {
    padding: 8px 10px;
    gap: 6px;
    min-height: 48px;
  }
  .navbar-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
  }
  .navbar-logo img {
    width: 32px;
    height: 32px;
  }
  .navbar-logo-text { font-size: 0.85rem; font-weight: 700; }
  .navbar-links { display: none; }
  .navbar-actions {
    gap: 4px;
    display: flex;
    align-items: center;
  }
  .cart-btn {
    padding: 6px 10px;
    font-size: 0.95rem;
    min-width: auto;
    gap: 2px;
  }
  .cart-badge {
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    min-width: 18px;
  }
  .payment-help-btn {
    padding: 6px 8px;
    font-size: 0.6rem;
    gap: 2px;
    height: 36px;
    border-radius: 20px;
  }
  .payment-help-btn span {
    width: 14px;
    height: 14px;
    font-size: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menu-btn {
    font-size: 1.3rem;
    padding: 4px 6px;
    min-width: auto;
  }

  /* Hero Section ── */
  .hero {
    padding: 20px 12px 28px;
    gap: 16px;
  }
  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.15;
    margin-bottom: 8px;
  }
  .hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.3;
  }
  .hero p {
    font-size: 0.8rem;
    margin-bottom: 12px;
    line-height: 1.5;
  }
  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .cta-button {
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 24px;
    width: 100%;
    text-align: center;
  }
  .btn-primary.cta-button {
    background: var(--orange);
    color: var(--white);
  }
  .btn-secondary.cta-button {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
  }

  /* Products Grid ── */
  .products-grid, .combos-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }
  .product-card {
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
  }
  .product-card:hover {
    transform: translateY(-2px);
  }
  .product-img {
    min-height: 110px;
    max-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-img img {
    width: 75%;
    max-height: 100%;
  }
  .img-placeholder {
    font-size: 0.7rem;
  }
  .img-placeholder span { font-size: 1.4rem; }
  .price-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
    right: 6px;
    top: 6px;
  }
  .product-info {
    padding: 10px;
    gap: 4px;
  }
  .product-name {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.2;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .product-desc {
    font-size: 0.7rem;
    -webkit-line-clamp: 10;
    line-clamp: 10;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--gray);
  }
  .product-details-list {
    font-size: 0.7rem;
    margin: 2px 0;
    padding-left: 14px;
  }
  .product-details-list li {
    margin-bottom: 1px;
    line-height: 1.2;
  }
  .product-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 6px;
  }

  /* Card Actions ── */
  .card-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
    margin-top: 4px;
  }
  .qty-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    background: var(--gray-light);
    padding: 4px;
    border-radius: 6px;
    height: 32px;
  }
  .qty-btn-card {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
    padding: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--navy);
    transition: all 0.15s ease;
  }
  .qty-btn-card:active { transform: scale(0.95); }
  .qty-display {
    font-size: 0.8rem;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
  }
  .add-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 6px;
    background: var(--orange);
    color: var(--white);
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  .add-btn:active { transform: scale(0.98); }

  /* Forms & Checkout ── */
  .form-group {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
  }
  .form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--navy);
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 0.8rem;
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--white);
    color: var(--gray-dark);
    line-height: 1.4;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: 2px solid var(--orange);
    outline-offset: 0;
  }
  .form-submit {
    padding: 10px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 6px;
    background: var(--orange);
    color: var(--white);
    width: 100%;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  .form-submit:active { transform: scale(0.98); }
  .form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  /* Checkout Progress ── */
  .checkout-progress {
    gap: 4px;
    margin-bottom: 12px;
    padding: 0 12px;
  }
  .checkout-step-dot {
    width: 26px;
    height: 26px;
    font-size: 0.7rem;
    font-weight: 800;
  }
  .checkout-step-line { flex: 0 1 40px; height: 2px; }
  .checkout-slide-heading {
    margin-bottom: 10px;
    padding: 8px 10px;
    border-radius: 6px;
  }
  .checkout-slide-heading span {
    font-size: 0.6rem;
    margin-bottom: 2px;
  }
  .checkout-slide-heading h4 {
    font-size: 0.85rem;
    margin: 0;
  }
  .checkout-actions {
    gap: 6px;
    grid-template-columns: 1fr;
  }
  .checkout-back { width: 100%; }

  /* Cart ── */
  .cart-panel {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .cart-header {
    padding: 10px 12px;
    gap: 8px;
  }
  .cart-title {
    font-size: 1rem;
    font-weight: 700;
  }
  .cart-close-btn {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  .cart-list {
    max-height: calc(100vh - 300px);
    overflow-y: auto;
  }
  .cart-item {
    padding: 8px 10px;
    gap: 6px;
    border-bottom: 1px solid var(--gray-light);
  }
  .cart-item-img {
    width: 50px;
    height: 50px;
  }
  .cart-item-info {
    gap: 2px;
    flex: 1;
  }
  .cart-item-name {
    font-size: 0.8rem;
    font-weight: 600;
  }
  .cart-item-qty {
    font-size: 0.75rem;
    color: var(--gray);
  }
  .cart-item-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange);
  }
  .cart-item-remove {
    font-size: 0.8rem;
    color: var(--gray);
    cursor: pointer;
  }

  /* Sections ── */
  .section {
    padding: 20px 12px;
    gap: 12px;
  }
  .section-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .step {
    padding: 12px;
    border-radius: 6px;
  }
  .step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .step p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  /* Tabs ── */
  .tabs {
    gap: 6px;
    padding: 8px 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .tab-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    gap: 3px;
    white-space: nowrap;
    flex-shrink: 0;
    background: var(--gray-light);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
  }
  .tab-btn.active {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
  }

  /* Methods Grid ── */
  .method-card {
    padding: 10px;
    border-radius: 6px;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .method-card.selected {
    border-color: var(--orange);
    background: var(--orange-pale);
  }
  .method-card h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2px;
  }
  .method-card p {
    font-size: 0.7rem;
    color: var(--gray);
  }

  /* Dropzone ── */
  .dropzone {
    min-height: 110px;
    padding: 10px;
    border: 2px dashed var(--border);
    border-radius: 8px;
    font-size: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--white);
  }
  .dropzone:hover {
    border-color: var(--orange);
    background: var(--orange-pale);
  }
  .dropzone.drag-over {
    border-color: var(--orange);
    background: var(--orange-pale);
    transform: scale(1.02);
  }
  .dropzone span {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
  #file-preview {
    max-width: 100%;
    max-height: 150px;
    border-radius: 6px;
  }

  /* Error Messages ── */
  .error-text,
  #checkout-error,
  #payment-error,
  #products-error,
  #combos-error {
    font-size: 0.75rem;
    padding: 8px 10px;
    border-radius: 6px;
    background: #FFEBEE;
    border: 1px solid #EF5350;
    color: #C62828;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  /* Buttons ── */
  .btn-primary,
  .btn-secondary {
    padding: 10px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 6px;
    width: 100%;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  .btn-primary {
    background: var(--orange);
    color: var(--white);
  }
  .btn-primary:active { transform: scale(0.98); }
  .btn-secondary {
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
  }
  .btn-secondary:active { background: var(--orange-pale); }

  /* Modal ── */
  .modal { max-width: 100%; }
  .modal.open {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    display: flex;
  }
  .modal-content {
    border-radius: 12px;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    margin: auto;
  }
  .modal-header {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .modal-header h2 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
  }
  .modal-close { font-size: 1.2rem; width: 28px; height: 28px; }
  .modal-body {
    padding: 12px 14px;
    font-size: 0.8rem;
  }
  .modal-footer {
    padding: 10px 14px;
    gap: 6px;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
  }

  /* Breadcrumbs ── */
  .breadcrumb-nav {
    padding: 6px 12px;
    font-size: 0.75rem;
    gap: 4px;
    background: var(--gray-light);
  }
  .breadcrumb-nav a { color: var(--navy); font-weight: 500; }
  .breadcrumb-nav span { color: var(--gray); }

  /* Toast ── */
  .toast {
    bottom: 70px;
    right: 8px;
    left: 8px;
    width: auto;
    max-width: calc(100% - 16px);
    font-size: 0.75rem;
    padding: 8px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-md);
    animation: slideUp 0.3s ease-out;
  }

  /* Page Content ── */
  .page-content { min-height: calc(100vh - 48px - 150px); }
  .page-header {
    padding: 28px 12px;
    text-align: center;
  }
  .page-header h1 {
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
  }
  .page-header p {
    font-size: 0.8rem;
    opacity: 0.9;
  }
  .page-body {
    padding: 16px 12px;
    max-width: 100%;
  }
  .page-body h2 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-top: 18px;
    margin-bottom: 8px;
    color: var(--navy-dark);
    border-bottom: 2px solid var(--orange);
    padding-bottom: 6px;
  }
  .page-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 14px;
    margin-bottom: 6px;
  }
  .page-body p {
    font-size: 0.8rem;
    margin-bottom: 8px;
    line-height: 1.5;
  }
  .page-body ul, .page-body ol {
    margin-left: 16px;
    margin-bottom: 8px;
  }
  .page-body li { margin-bottom: 4px; font-size: 0.8rem; line-height: 1.5; }

  /* Help Section ── */
  .help-hero {
    padding: 28px 12px 20px;
  }
  .help-hero h1 {
    font-size: 1.4rem;
    line-height: 1.2;
  }
  .help-hero p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .help-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
  }
  .help-actions a {
    padding: 10px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 6px;
    text-align: center;
  }
  .help-section {
    padding: 20px 12px;
  }
  .help-section-header {
    margin-bottom: 16px;
  }
  .help-section-header h2 {
    font-size: 1.2rem;
    font-weight: 800;
  }
  .help-section-header p {
    font-size: 0.8rem;
  }
  .help-grid {
    gap: 12px;
    grid-template-columns: 1fr;
  }
  .help-panel {
    padding: 12px;
    border-radius: 8px;
  }
  .help-panel h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .help-panel p {
    font-size: 0.78rem;
    line-height: 1.4;
  }
  .help-kicker {
    font-size: 0.6rem;
    margin-bottom: 4px;
  }
  .help-panel img {
    width: 100px;
    height: 100px;
  }
  .help-step-card {
    padding: 12px;
    border-radius: 8px;
  }
  .help-step-card span {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  .help-summary {
    gap: 10px;
    grid-template-columns: 1fr;
  }
  .help-summary div { padding: 12px; }
  .help-summary strong { font-size: 0.9rem; margin-bottom: 4px; }
  .help-summary p { font-size: 0.8rem; }

  /* Navbar en pages ── */
  .navbar-logo {
    font-size: 0.85rem;
    font-weight: 700;
    gap: 6px;
  }
}

/* ── Checkout Slides ── */
.checkout-progress {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 2px 0 18px;
}
.checkout-step-dot {
  align-items: center;
  background: var(--gray-light);
  border: 2px solid var(--border);
  border-radius: 50%;
  color: var(--gray);
  display: flex;
  font-size: 0.82rem;
  font-weight: 800;
  height: 32px;
  justify-content: center;
  width: 32px;
}
.checkout-step-dot.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.checkout-step-line {
  background: var(--border);
  flex: 0 1 80px;
  height: 2px;
}
.checkout-slide { display: none; }
.checkout-slide.active { display: block; }
.checkout-slide-heading {
  background: var(--orange-pale);
  border: 1px solid var(--orange);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  padding: 12px 14px;
}
.checkout-slide-heading span {
  color: var(--orange);
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.checkout-slide-heading h4 {
  color: var(--navy-dark);
  font-size: 1rem;
  margin: 0;
}
.checkout-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: 0.75fr 1fr;
  margin-top: 8px;
}
.checkout-actions .form-submit { margin-top: 0; }
.checkout-back {
  background: var(--gray-light);
  color: var(--navy);
}
.checkout-back:hover:not(:disabled) { background: var(--border); }

/* ── Legal Pages (Términos, Privacidad) ── */
.page-content {
  min-height: calc(100vh - 64px - 200px);
  background: var(--white);
  padding: 0;
}
.page-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  color: var(--white);
  padding: 60px 24px;
  text-align: center;
}
.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.page-header p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
}
.page-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px;
}
.page-body h2 {
  font-size: 1.6rem;
  margin-top: 36px;
  margin-bottom: 16px;
  color: var(--navy-dark);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 12px;
}
.page-body h3 {
  font-size: 1.2rem;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--navy);
}
.page-body p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--gray-dark);
}
.page-body ul, .page-body ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
.page-body li {
  margin-bottom: 8px;
  line-height: 1.8;
}
.page-body a {
  color: var(--navy);
  text-decoration: underline;
}
.page-body a:hover {
  color: var(--orange);
}
.content-loader {
  text-align: center;
  padding: 60px 24px;
  color: var(--gray);
  font-size: 1.1rem;
}
.error-message {
  background: #ffebee;
  color: #c62828;
  padding: 20px;
  border-radius: var(--radius-sm);
  margin: 20px 0;
  text-align: center;
}

/* ── Mobile Nav ── */
.mobile-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: var(--navy); padding: 16px 24px; z-index: 99;
  box-shadow: var(--shadow-md);
}
.mobile-nav.active { display: flex; flex-direction: column; gap: 16px; }
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-nav a:hover {
  background: rgba(37,211,102,0.15);
  color: var(--orange);
}
.mobile-nav a.active {
  background: rgba(37,211,102,0.2);
  color: var(--orange);
  font-weight: 700;
}

/* ── Breadcrumbs ── */
.breadcrumb-nav {
  background: var(--gray-light);
  padding: 12px 24px;
  font-size: 0.85rem;
  max-width: 1140px;
  margin: 0 auto;
}
.breadcrumb-nav a {
  color: var(--navy);
  text-decoration: underline;
  transition: color var(--transition);
}
.breadcrumb-nav a:hover {
  color: var(--orange);
}
.breadcrumb-nav span {
  color: var(--gray);
  margin: 0 6px;
}

/* ── Loading Spinner ── */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

/* ── Form Field Error Styling ── */
.form-group input:invalid,
.form-group textarea:invalid,
.form-group select:invalid {
  border-color: #c62828;
}
.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown) {
  border-color: var(--green);
}

/* iOS Safari checkout/payment stability fixes */
@supports (height: 100dvh) {
  .cart-panel { height: 100dvh; }
  .modal { max-height: 90dvh; }
}

@media (max-width: 600px) {
  .modal.open {
    inset: 0;
    width: 100%;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
    transform: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-header {
    border-radius: 0;
    position: sticky;
    top: 0;
    z-index: 1;
  }

  .modal-body {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }

  .cart-panel {
    height: 100dvh;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .bottom-nav {
    height: calc(64px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
  }

  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  .form-group input,
  .form-group textarea,
  .form-group select,
  .products-search-input,
  .mobile-nav-search-input {
    font-size: 16px;
  }
}

