/* ===== CSS VARIABLES ===== */
:root {
  --teal: #eb5e5a;
  --teal-dark: #d44340;
  --teal-light: #fde8e8;
  --blue: #82b3e1;
  --blue-light: #deedf8;
  --pink: #f5b5cc;
  --pink-light: #fde8f0;
  --coral: #eb5e5a;
  --coral-dark: #d04a46;
  --yellow: #fbb92a;
  --yellow-light: #fff3d0;
  --bg-cream: #faf5ee;
  --bg-light: #f4fcff;
  --dark: #1a1a2e;
  --dark-mid: #2d2d44;
  --text: #2c2c3e;
  --text-muted: #6b7280;
  --white: #ffffff;
  --border: #e8e8f0;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
  --transition: 0.2s ease;

  --font: 'Nunito', sans-serif;
  --container: 1200px;
}

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

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(42,180,155,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}
.how-it-works .btn-outline,
.why-section .btn-outline,
.products-section .btn-outline {
  color: var(--teal);
  border-color: var(--teal);
}
.how-it-works .btn-outline:hover,
.why-section .btn-outline:hover,
.products-section .btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}
.btn-large {
  padding: 15px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius);
}
.btn-small {
  padding: 9px 18px;
  font-size: 0.88rem;
}

/* ===== SECTION LABELS & HEADERS ===== */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-header h2 em {
  font-style: italic;
  color: var(--teal);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ===== NAVIGATION ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 32px;
}
.nav-logo {
  flex-shrink: 0;
}
.logo-img {
  height: 60px;
  width: auto;
  max-width: 220px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--teal); }
.nav-links a.active::after { width: 100%; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta { padding: 10px 22px; font-size: 0.9rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px;
}
.mobile-overlay.open { display: flex; }
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.5rem;
  color: var(--text);
  padding: 8px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.mobile-nav-link {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--teal); }
.mobile-nav-cta { margin-top: 12px; font-size: 1rem; }

/* ===== HERO ===== */
.hero {
  background: url('img/hero-bg.jpg') center center / cover no-repeat;
  padding: 80px 0 100px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  pointer-events: none;
  z-index: 0;
}
.hero-bg-shapes {
  display: none;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
}
.shape-1 {
  width: 400px; height: 400px;
  background: var(--teal);
  top: -120px; right: -80px;
}
.shape-2 {
  width: 240px; height: 240px;
  background: var(--yellow);
  bottom: -60px; left: 5%;
}
.shape-3 {
  width: 160px; height: 160px;
  background: var(--blue);
  top: 40%; right: 20%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 2;
}
.hero-content .section-label { font-size: 0.8rem; color: var(--teal); }

/* Main h1 — large on desktop, smaller overlay on mobile */
.hero-tagline {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.hero-tagline em {
  font-style: italic;
  color: var(--teal);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust span {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}
.trust-icon { stroke: #5de8cf !important; }

/* ===== CUSTOM VIDEO PLAYER ===== */
.hero-videos {
  display: flex;
  align-items: stretch;
}
.vid-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  cursor: pointer;
  background: #000;
}
.vid-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vid-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 220ms ease;
}
.vid-card.paused .vid-overlay,
.vid-card:hover .vid-overlay {
  opacity: 1;
}
.vid-click-area { flex: 1; }
.vid-big-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 160ms cubic-bezier(0.23,1,0.32,1), background 160ms;
}
.vid-card:hover .vid-big-play {
  background: rgba(255,255,255,0.26);
  transform: translate(-50%,-50%) scale(1.08);
}
.vid-card:not(.paused) .vid-big-play { display: none; }
.vid-bottom {
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  padding: 48px 16px 14px;
}
.vid-progress {
  height: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  cursor: pointer;
  margin-bottom: 10px;
  overflow: hidden;
  transition: height 120ms ease;
}
.vid-progress:hover { height: 5px; }
.vid-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}
.vid-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.vid-ctrl {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 120ms ease, transform 120ms cubic-bezier(0.23,1,0.32,1);
  flex-shrink: 0;
}
.vid-ctrl:hover { opacity: 1; transform: scale(1.12); }
.vid-ctrl:active { transform: scale(0.94); }
.vid-time {
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  font-family: var(--font);
  white-space: nowrap;
  padding: 0 4px;
}
.vid-flex { flex: 1; }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--white);
  padding: 80px 0;
}
.steps-flow {
  display: flex;
  align-items: flex-start;
}
.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 28px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms cubic-bezier(0.23,1,0.32,1), transform 500ms cubic-bezier(0.23,1,0.32,1);
}
.step-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.step-item:nth-child(1) { transition-delay: 0ms; }
.step-item:nth-child(3) { transition-delay: 90ms; }
.step-item:nth-child(5) { transition-delay: 180ms; }
.step-badge {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--c, var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  transition: transform 160ms cubic-bezier(0.23,1,0.32,1), box-shadow 160ms cubic-bezier(0.23,1,0.32,1);
}
@media (hover: hover) and (pointer: fine) {
  .step-item:hover .step-badge {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  }
}
.step-badge:active { transform: scale(0.96); }
.step-badge svg { width: 34px; height: 34px; stroke: var(--white); stroke-width: 1.5; }
.step-rule {
  flex-shrink: 0;
  width: 60px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-rule::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--teal) 0, var(--teal) 6px, transparent 6px, transparent 14px);
  opacity: 0.3;
}
.step-num {
  display: block;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.step-item h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.step-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 220px;
}

/* ===== PRODUCTS ===== */
.products-section {
  background-image: url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1600&q=80');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  position: relative;
}
.products-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  pointer-events: none;
}
.products-section > .container {
  position: relative;
  z-index: 1;
}
.products-section .section-label { color: var(--teal); }
.products-section .section-header h2 { color: var(--white); }
.products-section .section-header h2 em { color: var(--teal); }
.products-section .section-sub { color: rgba(255,255,255,0.7); }
.category-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--white);
  border: 2px solid var(--border);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--white);
}
.product-thumb {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms cubic-bezier(0.23,1,0.32,1);
}
.product-card:hover .product-thumb img { transform: scale(1.04); }
.product-thumb-1 { background: linear-gradient(135deg, var(--yellow-light), #fff3c0); }
.product-thumb-2 { background: linear-gradient(135deg, var(--blue-light), #cce4f7); }
.product-thumb-3 { background: linear-gradient(135deg, var(--pink-light), #fdd6e6); }
.product-thumb-4 { background: linear-gradient(135deg, #f0f0ff, #e8e8ff); }
.product-thumb-5 { background: linear-gradient(135deg, var(--teal-light), #b8ede4); }
.product-thumb-coming { background: linear-gradient(135deg, #f5f5f5, #ebebeb); height: 160px; }
.thumb-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumb-emoji {
  font-size: 3.5rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}
.product-info {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-category {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 8px;
}
.product-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}
.product-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.product-pages, .product-format {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}
.product-format {
  background: var(--bg-light);
  padding: 2px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.product-price {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--dark);
}
.product-card-coming .product-footer {
  border-top: none;
  padding-top: 0;
  justify-content: flex-start;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--white);
  padding: 100px 0;
}
/* Slider */
.testimonials-slider {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonials-track {
  display: flex;
  gap: 28px;
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 4px;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonials-track .testimonial-card {
  flex: 0 0 calc((100% - 56px) / 3); /* 3 per view on desktop (2 gaps of 28px) */
  scroll-snap-align: start;
}
.slider-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: all var(--transition);
}
.slider-arrow:hover:not(:disabled) {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  transform: translateY(-2px);
}
.slider-arrow:disabled { opacity: 0.3; cursor: default; box-shadow: none; }
.slider-arrow svg { width: 22px; height: 22px; stroke-width: 2.5; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
  transition: all var(--transition);
  padding: 0;
}
.slider-dot.active {
  background: var(--teal);
  width: 26px;
  border-radius: 6px;
}
.testimonial-card {
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  right: 24px;
  font-size: 4rem;
  line-height: 1;
  color: var(--teal);
  opacity: 0.12;
  font-family: Georgia, serif;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.testimonial-stars {
  color: var(--yellow);
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card blockquote {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 22px;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.testimonial-name {
  font-weight: 800;
  color: var(--dark);
  font-size: 0.95rem;
}
.testimonial-role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg-cream);
  padding: 100px 0;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item[open] {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--teal); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  stroke-width: 2.5;
  transition: transform var(--transition);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 22px 22px;
  animation: faqReveal 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== WHY SECTION ===== */
.why-section {
  background: var(--white);
  padding: 100px 0;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.why-text .section-label { margin-bottom: 12px; }
.why-text h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}
.why-text h2 em {
  font-style: italic;
  color: var(--teal);
}
.why-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}
.why-text .btn { margin-top: 12px; }
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: var(--dark);
  padding: 80px 0;
}
.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.newsletter-inner h2 em {
  font-style: italic;
  color: var(--yellow);
}
.newsletter-inner > p,
.newsletter-text p {
  color: rgba(255,255,255,0.95);
  margin-bottom: 28px;
  font-size: 1rem;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 14px;
}
.newsletter-input {
  flex: 1;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-input:focus { border-color: var(--teal); }
.newsletter-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  height: 70px;
  width: auto;
  max-width: 260px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-bottom: 10px;
}
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-heading {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links li + li { margin-top: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.contact-icon { font-size: 1rem; }
.footer-contact-list a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-contact-list a:hover { color: var(--white); }
.footer-note {
  margin-top: 20px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--teal);
}
.footer-note p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-inner span {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  background: var(--bg-cream);
  padding: 64px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero .section-label { margin-bottom: 14px; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.page-hero h1 em { font-style: italic; color: var(--teal); }
.page-hero p {
  color: var(--text-muted);
  max-width: 580px;
  margin: 16px auto 0;
  font-size: 1.08rem;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  background: var(--white);
  padding: 80px 0 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form .form-row {
  display: flex;
  gap: 16px;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.contact-field label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark);
}
.contact-input,
.contact-textarea {
  padding: 12px 15px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  font-family: var(--font);
  transition: border-color var(--transition);
}
.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.contact-textarea {
  resize: vertical;
  min-height: 150px;
}
.contact-form .btn { align-self: flex-start; margin-top: 4px; }
.contact-info {
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
}
.contact-info h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 22px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--teal-dark); stroke-width: 2; }
.contact-info-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-info-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.contact-info-value:hover { color: var(--teal); }
.contact-info .footer-social { margin-top: 26px; }
.contact-info .social-link {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--teal);
}
.contact-info .social-link:hover { background: var(--teal); color: var(--white); }

/* ===== PRODUCTS — PLAIN (white) VARIANT ===== */
.products-plain {
  background-image: none !important;
  background: var(--white);
  padding-top: 64px;
}
.products-plain::before { content: none; display: none; }
.products-plain .product-card {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.products-plain .product-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

/* 3-column feature grid (overrides .why-features 2-col on desktop) */
.why-features.features-3col { grid-template-columns: repeat(3, 1fr); }

/* ===== ABOUT PAGE EXTRAS ===== */
.about-band {
  background: var(--bg-cream);
  padding: 80px 0;
  text-align: center;
}
.about-band .container { max-width: 840px; }
.about-statement {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.45;
  color: var(--dark);
}
.about-statement em { font-style: italic; color: var(--teal); }
.about-band cite {
  display: block;
  margin-top: 22px;
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 700;
  color: var(--text-muted);
}
.about-section {
  background: var(--white);
  padding: 90px 0;
}
.about-section.alt { background: var(--bg-light); }
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.about-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.about-icon svg { width: 26px; height: 26px; stroke-width: 1.8; }
.about-icon[style*="teal-light"] svg { stroke: var(--teal-dark); }
.about-icon[style*="blue-light"] svg { stroke: #4a87c0; }
.about-icon[style*="pink-light"] svg { stroke: #d4607a; }
.about-icon[style*="yellow-light"] svg { stroke: #c08a10; }
.about-card .about-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.about-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.about-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--teal);
  padding: 76px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.cta-band p {
  color: rgba(255,255,255,0.92);
  max-width: 540px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}
.cta-band .btn {
  background: var(--white);
  color: var(--teal);
}
.cta-band .btn:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== SHOP: cart button + badge ===== */
.cart-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: all var(--transition);
}
.cart-toggle:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.cart-toggle svg { width: 21px; height: 21px; stroke-width: 2; }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 100px;
  background: var(--coral);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== MINICART DRAWER ===== */
.minicart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 300;
}
.minicart-overlay.open { opacity: 1; visibility: visible; }
.minicart {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 90vw);
  height: 100%;
  background: var(--white);
  z-index: 301;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.minicart.open { transform: translateX(0); }
.minicart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
.minicart-head h3 { font-size: 1.2rem; font-weight: 900; color: var(--dark); }
.minicart-close {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-muted);
  background: none;
  border: none;
}
.minicart-close:hover { color: var(--coral); }
.minicart-body { flex: 1; overflow-y: auto; padding: 12px 24px; }
.minicart-foot { padding: 20px 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }

.mc-item, .cart-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mc-item img, .cart-row img { width: 56px; height: 56px; object-fit: cover; border-radius: 10px; }
.mc-noimg { width: 56px; height: 56px; border-radius: 10px; background: var(--bg-cream); }
.mc-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.mc-name { font-weight: 800; font-size: 0.9rem; color: var(--dark); line-height: 1.3; }
.mc-price { font-size: 0.82rem; color: var(--text-muted); }
.mc-qty { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.mc-qty button {
  width: 26px; height: 26px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.mc-qty button:hover { border-color: var(--teal); color: var(--teal); }
.mc-qty .mc-remove { width: auto; padding: 0 8px; font-size: 0.74rem; font-weight: 700; color: var(--text-muted); }
.mc-qty .mc-remove:hover { color: var(--coral); border-color: var(--coral); }
.mc-line { font-weight: 900; color: var(--dark); font-size: 0.92rem; white-space: nowrap; }
.mc-total { display: flex; justify-content: space-between; align-items: center; font-size: 1.05rem; }
.mc-total strong { font-size: 1.3rem; font-weight: 900; color: var(--dark); }
.mc-empty { color: var(--text-muted); text-align: center; padding: 30px 0; }
.btn-block { width: 100%; }
.minicart .btn-outline, .cart-aside .btn-outline {
  color: var(--teal); border-color: var(--teal); background: transparent;
}
.minicart .btn-outline:hover, .cart-aside .btn-outline:hover { background: var(--teal); color: #fff; }

/* ===== TOAST ===== */
.shop-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark);
  color: #fff;
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.shop-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.shop-empty { color: var(--text-muted); grid-column: 1 / -1; text-align: center; padding: 40px 0; }

/* ===== CART PAGE ===== */
.cart-section { background: var(--white); padding: 60px 0 90px; }
.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
.cart-items { background: var(--white); }
.cart-row { grid-template-columns: 64px 1fr auto; padding: 18px 0; }
.cart-row img, .cart-row .mc-noimg { width: 64px; height: 64px; }
.cart-aside {
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 100px;
}
.cart-aside h3 { font-size: 1.15rem; font-weight: 900; color: var(--dark); }

/* ===== CHECKOUT PAGE ===== */
.checkout-section { background: var(--white); padding: 60px 0 90px; }
.checkout-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 44px; align-items: start; }
.checkout-form { display: flex; flex-direction: column; gap: 16px; }
.checkout-form h3, .checkout-summary h3 { font-size: 1.15rem; font-weight: 900; color: var(--dark); margin-bottom: 4px; }
.checkout-secure { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.checkout-secure svg { width: 16px; height: 16px; stroke: var(--teal); }
.checkout-error { color: var(--coral); font-weight: 700; font-size: 0.9rem; }
.checkout-summary {
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: sticky;
  top: 100px;
}
.co-line { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.co-line small { color: var(--text-muted); }
.co-total { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; font-size: 1.05rem; }
.co-total strong { font-size: 1.4rem; font-weight: 900; color: var(--dark); }

/* ===== SUCCESS PAGE ===== */
.success-section { background: var(--bg-cream); padding: 90px 0; min-height: 60vh; display: flex; align-items: center; }
.success-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}
.success-icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--bg-cream);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  transition: all var(--transition);
}
.success-card.paid .success-icon { background: #e3f6f1; color: var(--coral); }
.success-icon svg { width: 38px; height: 38px; stroke-width: 3; }
.success-card h1 { font-size: 1.8rem; font-weight: 900; color: var(--dark); margin-bottom: 12px; }
.success-card > p { color: var(--text-muted); margin-bottom: 8px; }
.success-order { font-weight: 800; color: var(--dark) !important; }
.success-note { font-size: 0.9rem; }
.success-actions { display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.success-actions .btn-outline { color: var(--teal); border-color: var(--teal); }
.success-actions .btn-outline:hover { background: var(--teal); color: #fff; }

/* ===== CHECKOUT CHECKBOXES ===== */
.check-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.5;
}
.check-line input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--teal);
}
.check-line a { color: var(--teal); font-weight: 700; text-decoration: underline; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(160%);
  width: min(680px, calc(100% - 32px));
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 350;
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); }
.cookie-banner p { font-size: 0.88rem; color: rgba(255,255,255,0.85); line-height: 1.5; flex: 1; margin: 0; }
.cookie-banner a { color: var(--yellow); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner .btn-outline { color: #fff; border-color: rgba(255,255,255,0.4); }
.cookie-banner .btn-outline:hover { background: #fff; color: var(--dark); }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-actions { justify-content: center; }
}

/* ===== LEGAL PAGES ===== */
.legal-section { background: var(--white); padding: 60px 0 90px; }
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-updated { color: var(--text-muted); font-size: 0.85rem; font-style: italic; margin-bottom: 26px; }
.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--dark);
  margin: 34px 0 12px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p, .legal-content li {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.98rem;
  margin-bottom: 12px;
}
.legal-content ul { padding-left: 22px; margin-bottom: 12px; list-style: disc; }
.legal-content a { color: var(--teal); text-decoration: underline; }

/* ===== PRODUCT CARD LINKS ===== */
.products-grid .product-card[data-id] { cursor: pointer; }
a.product-thumb { display: block; }
.product-title a { color: inherit; text-decoration: none; }
.product-title a:hover { color: var(--teal); }

/* ===== SINGLE PRODUCT PAGE ===== */
.product-page { background: var(--white); padding: 40px 0 90px; }
.breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { margin: 0 6px; opacity: 0.6; }
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.pd-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}
.pd-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); }
.pd-noimg svg { width: 60px; height: 60px; }
.pd-info .product-category { font-size: 0.82rem; }
.pd-info h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin: 8px 0 16px;
}
.pd-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.pd-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}
.pd-tag svg { width: 14px; height: 14px; stroke: var(--teal); }
.pd-desc { color: var(--text-muted); line-height: 1.75; font-size: 1rem; margin-bottom: 24px; }
.pd-buy {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.pd-price { font-size: 1.9rem; font-weight: 900; color: var(--dark); }
.pd-points { display: flex; flex-direction: column; gap: 10px; }
.pd-points li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--text); font-weight: 600; }
.pd-points svg { width: 18px; height: 18px; stroke: var(--teal); flex-shrink: 0; }
.product-related { margin-top: 72px; }
.product-related h2 { font-size: 1.4rem; font-weight: 900; color: var(--dark); margin-bottom: 24px; }
.product-related .products-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-inner { gap: 48px; }
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero { padding: 0; }
  .hero-inner {
    gap: 0;
    position: relative;
  }
  .hero-videos { order: -1; width: calc(100% + 48px); margin-left: -24px; margin-right: -24px; }
  .vid-card { height: auto; aspect-ratio: 9/16; border-radius: 0; box-shadow: none; }
  .hero-sub { display: none; }
  .hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 80px 28px 92px;
    text-align: center;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 50%, transparent 100%);
    pointer-events: none;
  }
  .hero-content .section-label,
  .hero-ctas { pointer-events: auto; }
  .hero-tagline { font-size: clamp(1.65rem, 6vw, 2.1rem); font-weight: 800; margin: 0 0 16px; letter-spacing: -0.01em; }
  .hero-trust { display: none; }
  .hero-ctas { justify-content: center; }

  /* How it works — horizontal cards on mobile */
  .steps-flow { flex-direction: column; gap: 16px; }
  .step-rule { display: none; }
  .step-item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "badge num"
      "badge title"
      "badge desc";
    column-gap: 18px;
    row-gap: 4px;
    align-items: center;
    text-align: left;
    padding: 20px 22px;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
  }
  .step-badge {
    grid-area: badge;
    align-self: center;
    width: 56px; height: 56px;
    margin-bottom: 0;
  }
  .step-badge svg { width: 24px; height: 24px; }
  .step-num { grid-area: num; font-size: 0.62rem; margin-bottom: 0; }
  .step-item h3 { grid-area: title; font-size: 1rem; line-height: 1.3; margin-bottom: 0; }
  .step-item p { grid-area: desc; display: block; font-size: 0.85rem; max-width: none; margin: 2px 0 0; }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-features { grid-template-columns: 1fr; }
  .why-features.features-3col { grid-template-columns: 1fr; }
  .testimonials-track .testimonial-card { flex-basis: 100%; }
  .slider-arrow { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form .form-row { flex-direction: column; }
  .about-grid { grid-template-columns: 1fr; }
  .about-section { padding: 64px 0; }
  .about-band, .cta-band { padding: 56px 0; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; gap: 28px; }
  .cart-aside, .checkout-summary { position: static; }
  .product-detail { grid-template-columns: 1fr; gap: 28px; }
  .product-related .products-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { justify-content: space-between; gap: 16px; height: 58px; }
  .nav-actions { margin-left: auto; }
  .logo-img { height: 36px; max-width: 140px; }
  .products-grid { grid-template-columns: 1fr; }

  /* Footer — centered single column on mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
    padding-bottom: 36px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .footer-brand .footer-logo { margin-bottom: 0; height: 60px; max-width: 220px; }
  .footer-brand .footer-tagline { margin-bottom: 0; }
  .footer-brand .footer-desc { margin-bottom: 4px; max-width: 360px; }
  .footer-social { justify-content: center; }
  .footer-col:nth-child(2) { display: none; }
  .footer-note { display: none; }
  .footer-contact-list li { justify-content: center; }
  .footer-links li + li { margin-top: 8px; }
  .footer-links a { font-size: 0.9rem; }
  .footer-heading { margin-bottom: 14px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { text-align: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .section-header { margin-bottom: 36px; }

  .hero { padding: 0; }
  .how-it-works, .products-section, .why-section,
  .testimonials-section, .faq-section { padding: 72px 0; }
}

/* ===== LUCIDE ICONS ===== */
[data-lucide] { display: inline-block; vertical-align: middle; }

.trust-icon { width: 15px; height: 15px; stroke: var(--teal); stroke-width: 2.5; margin-right: 2px; }

.step-icon svg { width: 44px; height: 44px; stroke: var(--teal); stroke-width: 1.5; }
.step-arrow svg { width: 26px; height: 26px; stroke: var(--border); stroke-width: 2.5; }

.thumb-emoji svg { width: 56px; height: 56px; stroke-width: 1.2; }
.product-thumb-1 .thumb-emoji svg { stroke: #d4963a; }
.product-thumb-2 .thumb-emoji svg { stroke: #4a87c0; }
.product-thumb-3 .thumb-emoji svg { stroke: #d4607a; }
.product-thumb-4 .thumb-emoji svg { stroke: #6060c0; }
.product-thumb-5 .thumb-emoji svg { stroke: #1f9080; }
.product-thumb-coming .thumb-emoji svg { stroke: #888; }

.meta-icon { width: 13px; height: 13px; margin-right: 3px; stroke: var(--text-muted); stroke-width: 2; }

.feature-icon svg { width: 22px; height: 22px; stroke-width: 1.8; }
.feature-icon[style*="teal-light"] svg { stroke: var(--teal-dark); }
.feature-icon[style*="blue-light"] svg { stroke: #4a87c0; }
.feature-icon[style*="pink-light"] svg { stroke: #d4607a; }
.feature-icon[style*="yellow-light"] svg { stroke: #c08a10; }

.contact-icon svg { width: 17px; height: 17px; stroke: rgba(255,255,255,0.65); stroke-width: 2; }

.mobile-close svg { width: 26px; height: 26px; stroke: var(--text); stroke-width: 2.5; }


@media (max-width: 480px) {
  .hero-ctas { flex-direction: row; flex-wrap: nowrap; justify-content: center; gap: 10px; }
  .hero-ctas .btn { font-size: 0.78rem; padding: 11px 14px; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .hero-trust span { font-size: 0.82rem; }
  .why-features { grid-template-columns: 1fr; }
  .category-filters { gap: 8px; }
  .filter-btn { font-size: 0.82rem; padding: 7px 14px; }
}
