/* Product Page — Light Airy Fitness Aesthetic */

/* ─── Announcement Bar ─── */
.announcement-bar {
  background: linear-gradient(90deg, var(--pink) 0%, var(--lavender-dark) 100%);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  direction: ltr;
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 300;
}
.announcement-bar .ann-text {
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 1;
  transform: translateY(0);
}
.announcement-bar .ann-text.ann-out {
  opacity: 0;
  transform: translateY(-8px);
}
.announcement-bar .ann-text.ann-in {
  opacity: 0;
  transform: translateY(8px);
}

/* ─── Nav ─── */
.nav {
  position: sticky; top: 38px; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(123,94,167,0.06);
}
.nav-logo {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink), var(--lavender-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
}
.nav-actions { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
  display: flex; gap: 2px;
  background: var(--bg-raised);
  border-radius: var(--radius-pill);
  padding: 4px;
  border: 1px solid var(--border);
}
.lang-btn {
  padding: 5px 14px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700; cursor: pointer;
  border: none; background: transparent; color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.lang-btn.active { background: var(--lavender-dark); color: white; }

/* ─── Hero — Split Layout ─── */
.hero {
  display: block;
  position: relative;
  overflow: hidden;
}

/* Left: content side */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px 64px;
  background: #FFFFFF;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lavender-muted);
  color: var(--lavender-dark);
  font-size: 11px; font-weight: 700;
  padding: 6px 16px; border-radius: var(--radius-pill);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(123,94,167,0.15);
  animation: fadeInUp 0.5s ease both;
  width: fit-content;
}

.hero-title {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800; line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -1px;
  animation: fadeInUp 0.5s ease 0.1s both;
}
.hero-title span { color: var(--pink); }

.hero-subtitle {
  font-size: 16px; color: var(--text-secondary); line-height: 1.7;
  margin: 18px 0 32px;
  max-width: 420px;
  animation: fadeInUp 0.5s ease 0.2s both;
}

.hero-cta { animation: fadeInUp 0.5s ease 0.3s both; }
.hero-cta .input {
  border-radius: var(--radius-pill);
  padding: 14px 22px;
  font-size: 15px;
  border: 2px solid var(--border);
  background: var(--bg-raised);
  margin-bottom: 12px;
}
.hero-cta .input:focus {
  border-color: var(--pink);
  background: white;
}

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 32px;
  animation: fadeInUp 0.5s ease 0.4s both;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-secondary); font-size: 13px; font-weight: 500;
}
.trust-badge-icon {
  width: 30px; height: 30px;
  background: var(--lavender-muted);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

/* Right: product photo carousel column */
.hero-image {
  position: relative;
  background: linear-gradient(145deg, #F5879E 0%, #C890D8 45%, #8B6CC4 100%);
  display: flex; flex-direction: column; align-items: stretch;
  overflow: hidden;
  min-height: 500px;
}

/* ── Product Carousel ── */
.product-carousel {
  position: relative;
  width: 100%;
  flex: 1;
  overflow: hidden;
  min-height: 340px;
}

.product-carousel-track {
  display: flex;
  width: 100%; height: 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.product-slide {
  flex: 0 0 100%;
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

.product-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

/* Placeholder when images not uploaded yet */
.product-slide.slide-placeholder {
  background: linear-gradient(145deg, #F5879E 0%, #C890D8 55%, #8B6CC4 100%);
  display: flex; align-items: center; justify-content: center;
}
.product-slide.slide-placeholder::after {
  content: '📸';
  font-size: 72px;
  opacity: 0.5;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}
.product-slide.slide-placeholder img { display: none; }

/* Dot indicators */
.carousel-dots {
  position: absolute; bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 10;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5); border: none; cursor: pointer;
  padding: 0; transition: all 0.2s ease;
}
.carousel-dot.active {
  background: white; width: 22px; border-radius: 4px;
}

/* Prev / Next arrows */
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.22); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.35);
  color: white; font-size: 28px; font-weight: 300; line-height: 1;
  width: 42px; height: 42px; border-radius: 50%;
  cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.carousel-arrow:hover { background: rgba(255,255,255,0.38); }
.carousel-prev { left: 14px; }
.carousel-next { right: 14px; }

/* ── Product title — between carousel and price ── */
.hero-product-title {
  background: white;
  margin: 0;
  padding: 16px 24px 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.3;
  flex-shrink: 0;
}
[dir="rtl"] .hero-product-title { text-align: center; }

/* ── Below-carousel CTA section ── */
.hero-product-cta {
  background: white;
  padding: 20px 24px 24px;
  flex-shrink: 0;
  direction: ltr;
}

/* Price row — sits above the button */
.hero-price-row {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 10px;
  direction: ltr;
  text-align: left;
}
.hero-buy-was {
  font-size: 13px; font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
}
.hero-buy-now {
  font-size: 22px; font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}
.hero-buy-save-badge {
  font-size: 11px; font-weight: 700;
  color: var(--lavender-dark);
  background: var(--lavender-muted);
  border-radius: 20px; padding: 2px 9px;
}

/* Clean Add to Cart button */
.hero-buy-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--lavender-dark) 100%);
  border: none; border-radius: 14px;
  color: white; cursor: pointer;
  padding: 15px 20px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 16px; font-weight: 800; letter-spacing: 0.3px;
  box-shadow: 0 4px 18px rgba(123,94,167,0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  font-family: var(--font-body);
  margin-bottom: 18px;
  direction: ltr;
}
.hero-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(123,94,167,0.45);
}
.hero-buy-btn:active { transform: translateY(0); }

/* Trust strip */
.hero-trust-row {
  display: flex; flex-direction: column; gap: 0;
}
.hero-trust-item {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light, #f0eef5);
}
.hero-trust-item:last-child { border-bottom: none; padding-bottom: 0; }
.hero-trust-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: var(--lavender-muted);
  color: var(--lavender-dark);
  display: flex; align-items: center; justify-content: center;
}
.hero-trust-stars {
  background: rgba(232,121,154,0.12);
  color: var(--pink);
}
.trust-rating-stars { color: #5A9A66; }
.hero-trust-text {
  display: flex; flex-direction: column; gap: 1px;
}
.trust-label {
  font-size: 13px; font-weight: 700; color: var(--text-primary); line-height: 1.2;
}
.trust-sub {
  font-size: 11px; color: var(--text-muted); font-weight: 500;
}

/* floating stat bubbles */
.hero-stat {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  color: var(--text-primary);
}
.hero-stat-top {
  top: 20%;
  left: -5%;
  font-size: 12px; font-weight: 600;
}
.hero-stat-bottom {
  bottom: 25%;
  left: -8%;
  font-size: 12px; font-weight: 600;
}
.hero-stat-num { font-size: 22px; font-weight: 800; color: var(--lavender-dark); display: block; }

/* ─── Sections ─── */
.section { padding: 96px 64px; }
.section-alt { background: var(--bg-raised); }
.container { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800; color: var(--text-primary);
  letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 16px; color: var(--text-secondary);
  margin-top: 12px; line-height: 1.7;
  max-width: 500px; margin-left: auto; margin-right: auto;
}

/* ─── Bundle / What's Included ─── */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.bundle-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.bundle-card:hover {
  border-color: rgba(232,121,154,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink);
}
.bundle-check {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--pink), var(--lavender-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: white; font-size: 18px; font-weight: 700;
}
.bundle-free {
  position: absolute; top: 16px; right: 16px;
  background: var(--lavender-dark);
  color: white; font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}
.bundle-name { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.bundle-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* ─── How It Works ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.step-item { text-align: center; }
.step-number {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--pink), var(--lavender-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px; font-weight: 800; color: white;
  box-shadow: var(--shadow-pink);
}
.step-title { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ─── Reviews ─── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.review-card:hover {
  border-color: rgba(232,121,154,0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.review-author { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--lavender-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: white; flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 14px; color: var(--text-primary); }
.review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ─── Benefits / Features ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.benefit-list { display: flex; flex-direction: column; gap: 24px; }
.benefit-item { display: flex; align-items: flex-start; gap: 16px; }
.benefit-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink-muted), var(--lavender-muted));
  border: 1.5px solid rgba(184,159,212,0.3);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.benefit-text h4 { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.benefit-text p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.benefits-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lavender);
}
.benefits-image-fill {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ─── FAQ ─── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1.5px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; text-align: left;
  color: var(--text-primary); font-size: 15px; font-weight: 600;
  font-family: var(--font-body); transition: color var(--transition-fast);
  gap: 16px;
}
[dir="rtl"] .faq-question { text-align: right; flex-direction: row-reverse; }
.faq-question:hover { color: var(--lavender-dark); }
.faq-icon { flex-shrink: 0; font-size: 20px; color: var(--lavender-dark); transition: transform 0.25s ease; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { font-size: 14px; color: var(--text-secondary); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 22px; }

/* ─── Final CTA ─── */
.final-cta {
  text-align: center;
  padding: 100px 48px;
  background: linear-gradient(145deg, #F5879E 0%, #C890D8 50%, #8B6CC4 100%);
  color: white;
}
.final-cta .section-title { color: white; }
.final-cta .section-subtitle { color: rgba(255,255,255,0.85); }
.payment-logos { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.payment-logo {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  padding: 8px 18px;
  font-size: 13px; font-weight: 600; color: white;
}

/* ─── Pricing Cards ─── */
.pricing-grid { align-items: start; }
.pricing-card {
  border: 2px solid var(--border); border-radius: var(--radius-xl);
  background: white; position: relative; overflow: visible;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.pricing-card-img-wrap {
  overflow: hidden;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.pricing-card-img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: #f8f4fc;
  border-top: 1px solid var(--border);
  padding: 12px;
  box-sizing: border-box;
}
.pricing-card:hover { box-shadow: var(--shadow-pink); border-color: rgba(232,121,154,0.3); }
.pricing-card-featured {
  border-color: var(--lavender-dark);
  box-shadow: 0 8px 40px rgba(123,94,167,0.18);
}
.pricing-card-inner { padding: 28px 24px; }
.pricing-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink), var(--lavender-dark));
  color: white; font-size: 11px; font-weight: 700; padding: 5px 16px;
  border-radius: 20px; white-space: nowrap; letter-spacing: 0.5px;
}
.pricing-card-title { font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.pricing-price { font-size: 44px; font-weight: 800; color: var(--text-primary); line-height: 1; margin-bottom: 4px; }
.pricing-price span { font-size: 20px; font-weight: 600; color: var(--text-secondary); }
.pricing-billing { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 24px; }
.pricing-features li { font-size: 13px; color: var(--text-secondary); padding: 6px 0; border-bottom: 1px solid var(--border); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-btn {
  width: 100%; padding: 14px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 700; cursor: pointer; border: none;
  transition: all var(--transition); letter-spacing: 0.3px;
}
.pricing-btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--lavender-dark));
  color: white;
}
.pricing-btn-primary:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(123,94,167,0.3); }
.pricing-btn-outline {
  background: white; color: var(--text-primary);
  border: 2px solid var(--border-light);
}
.pricing-btn-outline:hover { border-color: var(--lavender-dark); color: var(--lavender-dark); }
@media (max-width: 600px) { 
  .pricing-grid { grid-template-columns: 1fr !important; }
}

/* ─── Customer Results Gallery ─── */
.results-section {
  padding: 0;
  margin: 0;
  background: #faf8ff;
}
.results-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 36px;
  direction: ltr;
}
.results-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  color: var(--lavender-dark); text-transform: uppercase;
  margin-bottom: 10px;
}
.results-title {
  font-size: clamp(22px, 4vw, 32px); font-weight: 800;
  margin: 0 0 8px;
  background: linear-gradient(135deg, var(--pink), var(--lavender-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.results-sub {
  font-size: 14px; color: var(--text-muted); margin: 0;
}

/* Scroll row: [arrow] [track] [arrow] — all in a plain flex row, direction forced LTR */
.results-scroll-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  direction: ltr;
  gap: 0;
  width: 100%;
}

/* The scrolling track */
.results-track {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 12px 16px;
  margin: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  direction: ltr;
  text-align: center;
}
.results-track::-webkit-scrollbar { display: none; }

/* Result card */
.result-card {
  flex: 0 0 190px;
  scroll-snap-align: start;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(123,94,167,0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.result-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(123,94,167,0.18);
}

/* Image — portrait ratio, gradient background while image loads/missing */
.result-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #f8e6f4 0%, #e4d2f5 60%, #cec0ec 100%);
  overflow: hidden;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.result-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  transition: transform 0.35s ease;
}
.result-card:hover .result-img-wrap img { transform: scale(1.04); }

/* Shown when image hasn't loaded yet (always behind the img) */
.result-img-wrap::before {
  content: '🌸';
  font-size: 44px;
  opacity: 0.35;
  z-index: 0;
}

/* Card footer */
.result-card-footer {
  padding: 10px 12px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  direction: ltr;
}
.result-name {
  font-size: 13px; font-weight: 700; color: var(--text-primary);
}
.result-weeks {
  font-size: 11px; font-weight: 600;
  color: var(--lavender-dark);
  background: var(--lavender-muted);
  padding: 2px 8px; border-radius: 20px;
}

/* Arrow buttons — flex siblings, not absolute */
.results-arrow {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: white;
  border: 1.5px solid #e4daf5;
  color: var(--lavender-dark);
  font-size: 24px; font-weight: 300; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(123,94,167,0.12);
  transition: background 0.15s, box-shadow 0.15s;
  margin: 0 8px;
}
.results-arrow:hover {
  background: var(--lavender-muted);
  box-shadow: 0 4px 16px rgba(123,94,167,0.2);
}

/* Scroll-progress dots */
.results-dots {
  display: flex; justify-content: center; gap: 6px;
  margin-top: 20px;
  direction: ltr;
}
.results-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ddd6f5; border: none; cursor: pointer;
  padding: 0; transition: all 0.2s ease;
}
.results-dot.active {
  background: var(--lavender-dark); width: 22px; border-radius: 4px;
}

@media (max-width: 600px) {
  .results-arrow { display: none; }
  .results-track { padding: 12px 16px; gap: 10px; }
  .result-card { flex: 0 0 150px; }
}

/* ─── Footer ─── */
.footer {
  border-top: 1.5px solid var(--border);
  padding: 56px 64px 36px;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.footer-logo {
  font-size: 20px; font-weight: 800;
  background: linear-gradient(135deg, var(--pink), var(--lavender-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px; margin-bottom: 12px;
}
.footer-tagline { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.footer-links h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 16px; }
.footer-links a { display: block; font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--lavender-dark); }
.footer-bottom {
  border-top: 1.5px solid var(--border); margin-top: 32px;
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 12px; color: var(--text-muted); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 60px 28px; }
  .hero-image { min-height: 0; }
  .product-carousel { min-height: 300px; }
  .product-slide { min-height: 300px; }
  .hero-stat { display: none; }
  .hero-product-cta { padding: 16px 20px 20px; }
  .hero-buy-label { font-size: 14px; }
  .hero-buy-price { font-size: 16px; }
  .hero-trust-row { gap: 10px; }
  .carousel-dot { width: 6px; height: 6px; }
  .carousel-dot.active { width: 18px; }
  .carousel-arrow { width: 36px; height: 36px; font-size: 22px; }
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
  .section { padding: 64px 24px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer { grid-template-columns: 1fr; gap: 24px; padding: 40px 24px 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .nav { padding: 14px 20px; }
}
@media (max-width: 480px) {
  .hero-woman-emoji { font-size: 110px; }
}

/* ── Sticky Add-to-Cart Bar ────────────────────────────────────────── */
.sticky-cart-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 -2px 20px rgba(123,94,167,0.10);
  transform: translateY(110%);
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1);
  will-change: transform;
}
.sticky-cart-bar.visible {
  transform: translateY(0);
}
.sticky-cart-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 12px 20px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sticky-cart-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex-shrink: 0;
}
.sticky-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}
.sticky-was {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
}
.sticky-now {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  white-space: nowrap;
}
.sticky-save-badge {
  display: inline-block;
  background: #FFF0F4;
  color: var(--pink-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.sticky-cart-btn {
  flex: 1;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(232,121,154,0.30);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.sticky-cart-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,121,154,0.42); }
.sticky-cart-btn:active { transform: translateY(0); }
/* RTL */
[dir="rtl"] .sticky-cart-left { align-items: flex-end; }
[dir="rtl"] .sticky-cart-btn { flex-direction: row-reverse; }

/* ─── Payment Logo Strip ─── */
.pay-logos-strip { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 20px; margin-bottom: 4px; }
.pay-logo-pill { display: inline-flex; align-items: center; justify-content: center; gap: 5px; height: 34px; padding: 0 12px; border-radius: 7px; border: 1.5px solid #e0e0e0; background: #fff; font-size: 13px; font-weight: 600; white-space: nowrap; }
.pay-apple { background: #000; border-color: #000; color: #fff; padding: 0 10px; gap: 6px; }
.pay-gpay { gap: 1px; }
.gpay-g { font-weight: 700; font-size: 15px; background: linear-gradient(to bottom, #4285F4 0% 33%, #EA4335 33% 55%, #FBBC05 55% 78%, #34A853 78% 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gpay-text { color: #555; font-size: 13px; font-weight: 500; margin-left: 1px; }
.pay-mc { gap: 0; padding: 0 10px; }
.mc-left { width: 22px; height: 22px; border-radius: 50%; background: #EB001B; display: block; flex-shrink: 0; }
.mc-right { width: 22px; height: 22px; border-radius: 50%; background: #F79E1B; display: block; margin-left: -9px; flex-shrink: 0; }
.pay-visa span { font-size: 16px; font-weight: 800; font-style: italic; color: #1A1F71; letter-spacing: -0.5px; }
