/* ==================== DESIGN SYSTEM ==================== */
:root {
  --primary: #0068B5;
  --primary-dark: #004d87;
  --primary-light: #e8f4fd;
  --accent: #FF6B00;
  --accent-light: #fff3e6;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --purple: #9C27B0;
  --dark: #1a1a2e;
  --gray-900: #212529;
  --gray-800: #343a40;
  --gray-700: #495057;
  --gray-600: #6c757d;
  --gray-500: #adb5bd;
  --gray-400: #ced4da;
  --gray-300: #dee2e6;
  --gray-200: #e9ecef;
  --gray-100: #f8f9fa;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Heebo', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
input, textarea { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================== ANNOUNCEMENT BAR ==================== */
.announcement-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
}
.announcement-bar__text { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; }
.announcement-bar__divider { opacity: 0.4; }

/* ==================== HEADER ==================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.header--scrolled { box-shadow: var(--shadow-md); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__logo-img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}
.header__nav { display: flex; gap: 24px; }
.header__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.header__nav a:hover { color: var(--primary); }
.header__nav a:hover::after { width: 100%; }

.header__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}
.header__mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  transition: var(--transition);
  border-radius: 2px;
}

/* ==================== HERO ==================== */
.hero {
  padding: 40px 0 60px;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.hero__gallery { position: sticky; top: 100px; }
.hero__main-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  margin-bottom: 12px;
}
.hero__main-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.hero__main-image:hover img { transform: scale(1.05); }
.hero__badge-trust {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.hero__thumbnails {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  background: var(--white);
}
.hero__thumb:hover { border-color: var(--gray-400); }
.hero__thumb.active { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(0,104,181,0.2); }

/* Hero Info */
.hero__stars {
  color: var(--warning);
  font-size: 1.1rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.hero__stars span { color: var(--gray-600); font-size: 0.85rem; letter-spacing: 0; }
.hero__title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 12px;
}
.hero__subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: var(--gray-100);
  border-right: 3px solid var(--primary);
  border-radius: var(--radius-sm);
}
.hero__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.hero__highlight-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
}
.hero__guarantee {
  background: linear-gradient(135deg, #e6f3ff 0%, #f0f8ff 100%);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  border: 1px solid rgba(0,104,181,0.15);
}

/* ==================== BUNDLE SELECTOR ==================== */
.bundle-selector {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  overflow: hidden;
}
.bundle-selector__header {
  background: linear-gradient(135deg, #ff4444, #ff6b00);
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  animation: pulse-bg 2s infinite;
}
@keyframes pulse-bg {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

/* Bundle Cards */
.bundle-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-200);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.bundle-card:hover { background: var(--primary-light); }
.bundle-card input { display: none; }
.bundle-card__radio {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  border: 2px solid var(--gray-400);
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bundle-card__radio::after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  transform: scale(0);
  transition: var(--transition);
}
.bundle-card input:checked ~ .bundle-card__radio {
  border-color: var(--primary);
}
.bundle-card input:checked ~ .bundle-card__radio::after {
  transform: scale(1);
}
.bundle-card input:checked ~ .bundle-card__content .bundle-card__title {
  color: var(--primary);
}
/* Selected state - highlight entire card */
.bundle-card:has(input:checked) {
  background: var(--primary-light);
  border-color: var(--primary);
  border-left: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
}

.bundle-card__content { flex: 1; }
.bundle-card__title {
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}
.bundle-card__desc {
  font-size: 0.8rem;
  color: var(--gray-600);
}
.bundle-card__badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.bundle-card__pricing {
  text-align: left;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bundle-card__price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
}
.bundle-card__original {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-decoration: line-through;
}
.bundle-card__per-unit {
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
}

/* Popular bundle special styling */
.bundle-card--popular {
  background: linear-gradient(135deg, #fff8e1, #fff3e0);
  border: 2px solid var(--accent);
  margin: 0 -2px;
  padding: 16px 18px;
}
.bundle-card--popular:hover {
  background: linear-gradient(135deg, #fff3e0, #ffe8cc);
}

/* ==================== ADDON UPSELLS ==================== */
.addons-section {
  padding: 16px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.addons-section__title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-800);
}
.addon-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 8px;
}
.addon-card:last-child { margin-bottom: 0; }
.addon-card:hover { border-color: var(--primary); background: var(--primary-light); }
.addon-card input { display: none; }
.addon-card__check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 4px;
  border: 2px solid var(--gray-400);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.addon-card__check::after {
  content: '✓';
  font-size: 0.8rem;
  color: white;
  opacity: 0;
  transition: var(--transition);
}
.addon-card input:checked ~ .addon-card__check {
  background: var(--primary);
  border-color: var(--primary);
}
.addon-card input:checked ~ .addon-card__check::after { opacity: 1; }
.addon-card:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-light);
}
.addon-card__icon { font-size: 1.5rem; }
.addon-card__content { flex: 1; }
.addon-card__name { font-weight: 600; font-size: 0.85rem; }
.addon-card__desc { font-size: 0.75rem; color: var(--gray-600); }
.addon-card__price {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  font-size: 0.9rem;
}

/* ==================== BUNDLE CTA ==================== */
.bundle-cta {
  padding: 20px 16px;
  background: var(--white);
}
.bundle-cta__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 14px;
  padding: 0 4px;
}
.bundle-cta__price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}
.btn-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--success) 0%, #20c997 100%);
  color: white;
  border-radius: var(--radius-md);
  font-size: 1.2rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(40,167,69,0.3);
  border: none;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(40,167,69,0.4);
}
.btn-cta:active { transform: translateY(0); }
.btn-cta__text { font-size: 1.2rem; }
.btn-cta__sub { font-size: 0.75rem; opacity: 0.9; font-weight: 400; margin-top: 2px; }
.bundle-cta__badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--gray-600);
  flex-wrap: wrap;
}

/* Payment Methods */
.hero__payment-methods {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero__payment-icons { display: flex; gap: 6px; }
.payment-icon {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  padding: 4px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-icon img {
  height: 22px;
  width: auto;
  display: block;
}

/* ==================== SOCIAL PROOF BAR ==================== */
.social-proof {
  background: var(--dark);
  color: white;
  padding: 40px 0;
}
.social-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.social-proof__number {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4fc3f7, #29b6f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.social-proof__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ==================== SECTIONS ==================== */
.section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== PROBLEM / SOLUTION ==================== */
.problem-solution {
  padding: 80px 0;
  background: var(--gray-100);
}
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}
.ps-card {
  padding: 35px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.ps-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ps-card--problem { border-top: 4px solid var(--danger); }
.ps-card--solution { border-top: 4px solid var(--success); }
.ps-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.ps-card__title { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.ps-card__text { color: var(--gray-700); line-height: 1.8; }

/* Steps */
.steps-section { margin-bottom: 40px; }
.steps-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--dark);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-card__number {
  position: absolute;
  top: -14px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}
.step-card__icon { font-size: 2.5rem; margin-bottom: 12px; }
.step-card h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--dark); }
.step-card p { font-size: 0.9rem; color: var(--gray-600); }

/* Video */
.video-section { text-align: center; }
.video-placeholder {
  max-width: 700px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--dark), #2a2a4e);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.video-placeholder:hover { transform: scale(1.02); }
.video-placeholder__play {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 12px;
  transition: var(--transition);
}
.video-placeholder:hover .video-placeholder__play {
  background: var(--primary);
  transform: scale(1.1);
}
.video-placeholder__text { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ==================== BENEFITS ==================== */
.benefits {
  padding: 80px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefits-grid--3col {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin-inline: auto;
}

/* ============================================================
   "מוצרים נוספים לשינה בריאה" CTA BANNER
   ============================================================ */
.more-products-cta {
  padding: 24px 0;
}
.more-products-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #e8f4fd 100%);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
}
.more-products-cta__text h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.more-products-cta__text p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}
.more-products-cta__btn {
  flex-shrink: 0;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}
.more-products-cta__btn:hover { background: var(--primary-dark); }
@media (max-width: 560px) {
  .more-products-cta__inner { flex-direction: column; text-align: center; padding: 18px; }
}
.benefit-card {
  padding: 28px 22px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-align: center;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.benefit-card__icon { font-size: 2.2rem; margin-bottom: 14px; }
.benefit-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.benefit-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* ==================== COMPARISON TABLE ==================== */
.comparison {
  padding: 80px 0;
  background: var(--gray-100);
}
.comparison-table {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.comparison-table th, .comparison-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
}
.comparison-table thead th {
  background: var(--dark);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}
.comparison-table thead th:first-child {
  text-align: right;
}
.comparison-table td:first-child {
  text-align: right;
  font-weight: 600;
  color: var(--gray-800);
}
.comparison-table__us {
  background: rgba(0,104,181,0.06) !important;
  color: var(--primary) !important;
  font-weight: 600 !important;
}
.comparison-table thead .comparison-table__us {
  background: var(--primary) !important;
  color: white !important;
}
.comparison-table tbody tr:hover { background: var(--gray-100); }

/* ==================== REVIEWS ==================== */
.reviews {
  padding: 80px 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-card__stars { color: var(--warning); font-size: 1.1rem; margin-bottom: 8px; letter-spacing: 2px; }
.review-card__name { font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.review-card__verified { font-size: 0.75rem; color: var(--success); margin-bottom: 10px; }
.review-card__text { color: var(--gray-700); font-size: 0.9rem; line-height: 1.7; }

/* ==================== FAQ ==================== */
.faq {
  padding: 80px 0;
  background: var(--gray-100);
}
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 10px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary); }
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: right;
  transition: var(--transition);
}
.faq-item__question:hover { color: var(--primary); }
.faq-item__arrow {
  font-size: 1.5rem;
  font-weight: 300;
  transition: var(--transition);
  color: var(--primary);
}
.faq-item.active .faq-item__arrow { transform: rotate(45deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-item__answer {
  max-height: 500px;
  padding: 0 22px 18px;
}
.faq-item__answer p { color: var(--gray-700); line-height: 1.8; font-size: 0.9rem; }

/* ==================== BOTTOM CTA ==================== */
.bottom-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
  color: white;
}
.bottom-cta__title { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; color: white; }
.bottom-cta__subtitle { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 30px; }
.btn-cta--large { max-width: 400px; margin: 0 auto; font-size: 1.3rem; padding: 20px; }

/* ==================== STICKY CTA ==================== */
.sticky-cta {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  transition: bottom 0.4s ease;
  padding: 12px 20px;
}
.sticky-cta--visible { bottom: 0; }
.sticky-cta__inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-cta__price { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.sticky-cta__label { font-size: 0.75rem; color: var(--gray-600); display: block; }
.btn-cta--sticky {
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
}

/* ==================== MODAL ==================== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: white;
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal__close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px; height: 36px;
  background: var(--gray-100);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 1;
}
.modal__close:hover { background: var(--gray-200); color: var(--gray-800); }
.modal__header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--gray-200);
}
.modal__header h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); }
.modal__body { padding: 24px; }
.modal__summary {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

/* Product card inside modal */
.modal-product-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  align-items: center;
}
.modal-product-card__image {
  width: 90px;
  height: 90px;
  min-width: 90px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.modal-product-card__details {
  flex: 1;
  min-width: 0;
}
.modal-product-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 2px;
  line-height: 1.3;
}
.modal-product-card__desc {
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-bottom: 6px;
}
.modal-product-card__pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.modal-product-card__price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}
.modal-product-card__original {
  font-size: 0.85rem;
  color: var(--gray-500);
  text-decoration: line-through;
}

/* Savings + shipping row */
.modal-savings-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  border-top: 1px solid var(--gray-200);
}
.modal-savings-badge {
  font-size: 1rem;
  font-weight: 700;
  color: var(--success);
}
.modal-shipping {
  font-size: 0.78rem;
  color: var(--gray-600);
}

/* Modal total breakdown rows */
.modal-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px;
  border-top: 1px solid var(--gray-200);
  font-size: 0.85rem;
  color: var(--gray-700);
  background: var(--gray-100);
}
.modal-total-row--final {
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
  background: white;
  padding: 10px 16px;
}

/* ==================== SHIPPING METHOD ==================== */
.shipping-method-group {
  margin-bottom: 20px;
}
.shipping-method-group__label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--gray-800);
}
.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.shipping-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  cursor: pointer;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.2s ease;
  position: relative;
  gap: 12px;
}
.shipping-option:last-child {
  border-bottom: none;
}
.shipping-option:hover {
  background: var(--primary-light);
}
.shipping-option input[type="radio"] {
  display: none;
}
.shipping-option::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 2px solid var(--gray-400);
  transition: all 0.2s ease;
  background: white;
}
.shipping-option--selected::before {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: inset 0 0 0 4px white;
}
.shipping-option__content {
  flex: 1;
}
.shipping-option__name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
}
.shipping-option--selected .shipping-option__name {
  color: var(--primary);
  font-weight: 600;
}
.shipping-option--selected {
  background: var(--primary-light);
  border-color: rgba(0, 104, 181, 0.2);
}
.shipping-option__price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-700);
  white-space: nowrap;
}
.shipping-option--selected .shipping-option__price {
  color: var(--primary);
}

/* Payment Method Cards */
.payment-methods-row {
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
}

.payment-method-card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 10px 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
  overflow: hidden;
  min-width: 0;
}

.payment-method-card:hover {
  border-color: #aaa;
}

.payment-method-card--selected {
  border-color: var(--primary);
  background: rgba(0, 104, 181, 0.04);
  box-shadow: 0 0 0 1px var(--primary);
}

.payment-card-logos {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow: hidden;
  min-width: 0;
}

.payment-card-logos img {
  height: 24px;
  width: auto;
  max-width: 40px;
  object-fit: contain;
  flex-shrink: 1;
}

/* Terms checkbox */
.modal-terms {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--gray-700);
  cursor: pointer;
}
.modal-terms input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}
.modal-terms a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}
.modal-terms a:hover {
  color: var(--primary-dark);
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--gray-800);
}
/* Red asterisk on labels of required fields (auto, no per-field markup) */
.form-group:has(input:required) > label::after {
  content: ' *';
  color: var(--danger);
  font-weight: 700;
}
/* Field that failed native validation gets a red border for clear feedback */
.form-group input:required:invalid:not(:placeholder-shown) {
  border-color: var(--danger);
}
.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,104,181,0.1);
}
.btn-cta--modal { margin-top: 8px; }
.modal__loading { text-align: center; padding: 30px 0; }
.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--gray-200);
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.modal__loading p { color: var(--gray-600); }

/* ==================== FOOTER ==================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}
.footer__brand p { font-size: 0.85rem; line-height: 1.7; }
.footer__links h4, .footer__contact h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}
.footer__links a, .footer__contact a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  margin-bottom: 8px;
}
.footer__links a:hover, .footer__contact a:hover { color: white; }
.footer__contact p { font-size: 0.8rem; margin-top: 8px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ==================== HOW IT WORKS - ANATOMICAL ==================== */
.howto-anatomy {
  margin-top: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.howto-anatomy__title {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.howto-anatomy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.howto-anatomy__card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gray-100);
  text-align: center;
}
.howto-anatomy__card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.howto-anatomy__label {
  padding: 8px 12px;
  font-weight: 700;
  font-size: 0.9rem;
}
.howto-anatomy__label--before {
  background: rgba(220,53,69,0.1);
  color: var(--danger);
}
.howto-anatomy__label--after {
  background: rgba(40,167,69,0.1);
  color: var(--success);
}
.howto-anatomy__card p {
  padding: 8px 12px 12px;
  font-size: 0.8rem;
  color: var(--gray-700);
  line-height: 1.5;
}

/* ==================== UGC VIDEOS ==================== */
.ugc-videos {
  padding: 80px 0;
  background: var(--white);
}
.ugc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ugc-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.ugc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.ugc-card__video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
  background: #000;
}

/* UGC custom controls wrapper */
.ugc-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  background: #000;
  cursor: pointer;
}
.ugc-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ugc-overlay-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.ugc-video-wrapper:hover .ugc-overlay-controls,
.ugc-video-wrapper.paused .ugc-overlay-controls {
  opacity: 1;
  pointer-events: all;
}
.ugc-overlay-btn {
  background: rgba(255,255,255,0.18);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: background 0.15s ease;
  pointer-events: all;
}
.ugc-overlay-btn:hover {
  background: rgba(255,255,255,0.35);
}
.ugc-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.45);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: opacity 0.2s ease, transform 0.15s ease;
  pointer-events: all;
  padding: 0;
}
.ugc-play-btn svg {
  width: 22px;
  height: 22px;
  margin-left: 3px; /* optical center for triangle */
  flex-shrink: 0;
}
.ugc-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(0,0,0,0.65);
}
.ugc-video-wrapper.playing .ugc-play-btn {
  opacity: 0;
  pointer-events: none;
}
.ugc-video-wrapper:hover.playing .ugc-play-btn {
  opacity: 0;
}
.ugc-card__info {
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--dark);
}
.ugc-card__name {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 600;
}
.ugc-card__stars {
  color: var(--warning);
  letter-spacing: 2px;
}
.ugc-add-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ==================== IMAGE TRANSITION ==================== */
#mainImage {
  transition: opacity 0.3s ease;
}

/* ==================== WA BUTTON ==================== */
.whatsapp-btn {
  position: fixed;
  bottom: 90px;
  left: 30px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999998;
  transition: transform 0.2s;
  cursor: pointer;
  filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.25));
}
.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* ==================== ANIMATIONS ==================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__gallery { position: static; max-width: 500px; margin: 0 auto; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__mobile-toggle { display: flex; }
  
  /* Flatten Hero containers to interleave elements */
  .hero__grid { display: flex !important; flex-direction: column !important; }
  .hero__gallery, .hero__info { display: contents !important; }

  /* Order all Hero children explicitly */
  .hero__main-image { order: 1; }
  .hero__thumbnails { order: 2; }
  .hero__stars { order: 3; }
  .hero__title { order: 4; }
  .hero__subtitle { order: 5; }
  .hero__highlights { order: 6; }
  .bundle-selector { order: 7; }
  .hero__payment-methods { order: 8; margin-top: 10px; margin-bottom: 20px;}
  .hero__guarantee { order: 9; }
  
  /* How it works (Anatomy) goes just under the Guarantee */
  .howto-anatomy { display: block !important; order: 10; margin-top: 20px; }

  /* Before/after image (pillow page) goes just under the Guarantee on mobile */
  .pillow-ba { order: 10; margin-top: 18px; }
  .pillow-ba__img { max-width: 480px; }

  /* Hide the large 'How it works' image block on mobile */
  .problem-solution { display: none !important; }

  /* Reorder Main Sections on mobile */
  main { display: flex; flex-direction: column; }
  .hero { order: 1; }
  .ugc-videos { order: 2; }
  .more-products-cta { order: 2; }  /* same as ugc, DOM order puts it after */
  .reviews { order: 3; }
  .social-proof { order: 4; }
  .benefits { order: 5; }
  .comparison { order: 6; }
  .faq { order: 7; }
  .bottom-cta { order: 8; }
  
  /* Mobile menu */
  .header__nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    gap: 16px;
    border-top: 1px solid var(--gray-200);
  }
  
  .hero { padding: 24px 0 40px; }
  .hero__title { font-size: 1.5rem; }
  .hero__highlights { grid-template-columns: 1fr; }
  
  .ps-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  
  .social-proof__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .ugc-grid { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
  
  .bundle-card { flex-wrap: wrap; }
  .bundle-card__pricing { width: 100%; text-align: right; margin-top: 4px; flex-direction: row; gap: 8px; align-items: center; }
  
  .section-title { font-size: 1.5rem; }
  .bottom-cta__title { font-size: 1.6rem; }
  
  .comparison-table th, .comparison-table td { padding: 10px 12px; font-size: 0.8rem; }
  
  .howto-anatomy__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .announcement-bar__divider { display: none; }
  .announcement-bar__text { flex-direction: column; gap: 2px; font-size: 0.8rem; }
  .hero__title { font-size: 1.3rem; }
  .hero__thumbnails { gap: 6px; }
  .hero__thumb { width: 56px; height: 56px; }
  .bundle-card__title { font-size: 0.9rem; }
  .bundle-card__desc { font-size: 0.75rem; }
  .modal-savings-row { flex-direction: column; align-items: center; gap: 4px; padding: 12px; }

  .whatsapp-btn {
    width: 40px;
    height: 40px;
    bottom: 70px;
    left: 15px;
  }
}

/* ============================================================
   UPSELL WIDGET (post-checkout add-ons inside the modal)
   ============================================================ */
.upsell-widget {
  margin: 14px 0 4px;
  padding: 14px;
  background: var(--accent-light);
  border: 1px dashed var(--accent);
  border-radius: var(--radius-md);
}
.upsell-widget__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin-bottom: 12px;
}
.upsell-widget__cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.upsell-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: var(--white);
  border: 2px solid var(--gray-200, #e9ecef);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s, transform .1s;
}
.upsell-card:hover { border-color: var(--accent); transform: translateY(-1px); }
.upsell-card--selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255,107,0,0.18);
  background: var(--accent-light);
}
.upsell-card__img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.upsell-card__info { flex: 1; min-width: 0; text-align: right; }
.upsell-card__name {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 2px;
}
.upsell-card__tagline {
  font-size: 0.72rem;
  color: var(--gray-600);
  line-height: 1.3;
  margin-bottom: 5px;
}
.upsell-card__pricing { display: flex; align-items: baseline; gap: 8px; justify-content: flex-end; }
.upsell-card__price { font-size: 1rem; font-weight: 800; color: var(--primary); }
.upsell-card__original {
  font-size: 0.8rem;
  color: var(--gray-600);
  text-decoration: line-through;
}
.upsell-card__action {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 6px 12px;
  white-space: nowrap;
}
.upsell-card--selected .upsell-card__action { background: var(--accent); color: var(--white); }

/* Quantity stepper (− [n] +) used for the bundle and each upsell add-on */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--gray-200, #e9ecef);
  border-radius: 999px;
  padding: 3px;
}
.qty-stepper__btn {
  width: 28px;
  height: 28px;
  border: none;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 800;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: background .15s, color .15s;
}
.qty-stepper__btn:hover { background: var(--accent); color: var(--white); }
.qty-stepper__val {
  min-width: 22px;
  text-align: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--dark);
}

/* ============================================================
   TRUST STRIP + EXPERT ENDORSEMENT (product pages)
   ============================================================ */
.trust-strip {
  background: var(--primary-light);
  border-block: 1px solid rgba(0,104,181,0.12);
  padding: 18px 0;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  text-align: right;
}
.trust-strip__icon { font-size: 1.6rem; flex-shrink: 0; }
.trust-strip__item strong { display: block; font-size: 0.9rem; color: var(--primary-dark); }
.trust-strip__item span { font-size: 0.78rem; color: var(--gray-600); }
@media (max-width: 700px) {
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 14px 10px; }
  .trust-strip__item { justify-content: flex-start; }
}

.endorsement {
  background: linear-gradient(135deg, #f8fbff 0%, var(--primary-light) 100%);
  border: 1px solid rgba(0,104,181,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: center;
}
.endorsement__avatar {
  font-size: 2.6rem;
  background: var(--white);
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.endorsement__quote { font-size: 1.05rem; line-height: 1.6; color: var(--gray-800); font-style: italic; }
.endorsement__name { margin-top: 10px; font-weight: 800; color: var(--primary-dark); font-style: normal; }
.endorsement__role { font-weight: 500; color: var(--gray-600); font-size: 0.85rem; }
@media (max-width: 560px) {
  .endorsement { flex-direction: column; text-align: center; padding: 22px 18px; }
}

/* Anatomy / how-it-works two-column block on product pages */
.anatomy-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.anatomy-block__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}
.anatomy-block__list { list-style: none; padding: 0; margin: 16px 0 0; }
.anatomy-block__list li {
  padding: 8px 0 8px 0;
  font-size: 0.98rem;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-200, #eee);
}
.anatomy-block__list li strong { color: var(--primary-dark); }
@media (max-width: 760px) {
  .anatomy-block { grid-template-columns: 1fr; gap: 18px; }
}

/* Before/after block — lives in the product gallery on desktop (under the main
   image, smaller) and moves under the guarantee text on mobile (see media query) */
.pillow-ba { margin-top: 16px; }
.pillow-ba__img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Checkmark feature list (icon + text, no images) */
.feature-checks {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.feature-check {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200, #eee);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--gray-800);
  box-shadow: var(--shadow-sm);
}
.feature-check__icon {
  color: #22c55e;
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

/* Reviews — summary header + photo reviews (competitor-style layout, our content) */
.reviews-summary { text-align: center; margin-bottom: 26px; }
.reviews-summary__score { font-size: 2.6rem; font-weight: 900; color: var(--primary-dark); line-height: 1; }
.reviews-summary__stars { color: #FFB400; font-size: 1.3rem; letter-spacing: 2px; display: block; margin: 6px 0 4px; }
.reviews-summary__count { color: var(--gray-600); font-size: 0.9rem; }
.review-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--primary-light);
}
.review-card__meta { text-align: right; line-height: 1.3; }
.review-card__photo {
  width: 100%;
  aspect-ratio: 3 / 4;          /* uniform box for all review photos */
  object-fit: contain;          /* show the FULL image, never cropped */
  background: var(--gray-100, #f1f3f5);
  border-radius: var(--radius-sm);
  margin: 10px 0 4px;
  display: block;
}
.review-card__date { color: var(--gray-500, #999); font-size: 0.75rem; font-weight: 500; }

/* Hidden extra reviews + "show more" button */
.review-hidden { display: none; }
.show-more-reviews {
  display: block;
  margin: 24px auto 0;
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 30px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.show-more-reviews:hover { background: var(--primary); color: var(--white); }

/* Sub-heading inside the merged design/positions section */
.anatomy-subhead {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 44px 0 18px;
  color: var(--dark);
}

/* ============================================================
   PRODUCTS GRID ("המוצרים שלנו" — products.html)
   ============================================================ */
.products-hero {
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
  padding: 48px 0 28px;
  text-align: center;
}
.products-hero h1 { font-size: 2rem; margin-bottom: 8px; color: var(--primary-dark); }
.products-hero p { color: var(--gray-600); font-size: 1.05rem; }
.products-section { padding: 32px 0 64px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200, #e9ecef);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card__media { position: relative; aspect-ratio: 1 / 1; background: var(--primary-light); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-card__badge {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
}
.product-card__body { padding: 18px; display: flex; flex-direction: column; flex: 1; text-align: right; }
.product-card__name { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.product-card__tagline { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 14px; flex: 1; }
.product-card__pricing { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; justify-content: flex-end; }
.product-card__price { font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.product-card__original { font-size: 1rem; color: var(--gray-600); text-decoration: line-through; }
.product-card__name-link,
.product-card__tagline-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card__name-link:hover .product-card__name { color: var(--primary); }
.product-card__tagline-link:hover .product-card__tagline { color: var(--primary-dark); }
.product-card__cta {
  display: block;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  padding: 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .15s;
}
.product-card__cta:hover { background: var(--primary-dark); }

@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .products-hero h1 { font-size: 1.5rem; }
  .product-card__name { font-size: 0.92rem; }
  .product-card__tagline { font-size: 0.78rem; margin-bottom: 10px; }
  .product-card__price { font-size: 1.1rem; }
  .product-card__original { font-size: 0.82rem; }
  .product-card__body { padding: 12px; }
  .product-card__cta { font-size: 0.85rem; padding: 9px 8px; }
}
