/* ════════════════════════════════════════════
   DR SONA SAYS — HOMEPAGE STYLES
   CotsAndCuddles / FirstCry inspired layout
   ════════════════════════════════════════════ */

/* ── Announcement Ticker ─────────────────── */
.hp-ticker {
  background: linear-gradient(90deg, #FF6B35, #FF9F43, #FF6B35);
  color: #fff;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 100;
}

.hp-ticker-track {
  display: inline-flex;
  gap: 60px;
  animation: hpTickerScroll 25s linear infinite;
}

.hp-ticker-track span {
  display: inline-block;
  flex-shrink: 0;
}

@keyframes hpTickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Common Helpers ──────────────────────── */
.hp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.hp-section {
  padding: 48px 0;
}

.hp-section-alt {
  background: #FFF9F0;
}

.hp-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.hp-section-head h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 900;
  color: #2D1B00;
  margin: 0;
  position: relative;
}

.hp-section-head h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #FF9F43, #FF6B35);
  border-radius: 2px;
  margin-top: 8px;
}

.hp-section-sub {
  color: #6B5744;
  font-size: 15px;
  margin: -16px 0 0;
  width: 100%;
}

.hp-view-all {
  color: #FF6B35;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.hp-view-all:hover { color: #D85B2F; }

/* ── Buttons ─────────────────────────────── */
.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  gap: 6px;
}

.hp-btn-primary {
  background: linear-gradient(135deg, #FF6B35, #FF9F43);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,107,53,0.35);
}

.hp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,53,0.4);
}

.hp-btn-outline {
  background: #fff;
  color: #FF6B35;
  border: 2px solid #FF6B35;
}

.hp-btn-outline:hover {
  background: #FFF5EE;
  transform: translateY(-1px);
}

.hp-btn-cart {
  background: linear-gradient(135deg, #FF6B35, #FF9F43);
  color: #fff;
  width: 100%;
  padding: 10px 16px;
  font-size: 13px;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(255,107,53,0.25);
}

.hp-btn-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.35);
}

/* ── Hero Banner Slider ──────────────────── */
.hp-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.hp-hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hp-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}

.hp-hero-slide.active {
  opacity: 1;
  position: relative;
  z-index: 2;
}

.hp-hero-slide-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 48px 40px;
  min-height: 420px;
}

.hp-hero-text {
  z-index: 2;
}

.hp-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.8);
  color: #D85B2F;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.5);
}

.hp-hero-text h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: #2D1B00;
  margin: 0 0 16px;
  line-height: 1.2;
}

.hp-hero-text h1 span {
  color: #FF6B35;
}

.hp-hero-text p {
  font-size: 16px;
  color: #4A3520;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 520px;
}

.hp-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hp-hero-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hp-hero-img img {
  max-width: 100%;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.15));
  animation: hpHeroFloat 4s ease-in-out infinite;
}

@keyframes hpHeroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero dots */
.hp-hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hp-hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #FF6B35;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.hp-hero-dots button.active {
  background: #FF6B35;
  width: 32px;
  border-radius: 999px;
}

/* Hero arrows */
.hp-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  color: #2D1B00;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}

.hp-hero-arrow:hover {
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  transform: translateY(-50%) scale(1.05);
}

.hp-hero-prev { left: 16px; }
.hp-hero-next { right: 16px; }

/* ── USP Trust Strip ─────────────────────── */
.hp-usp-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-top: 1px solid #f0e8df;
  border-bottom: 1px solid #f0e8df;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.hp-usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-right: 1px solid #f0e8df;
  justify-content: center;
}

.hp-usp-item:last-child { border-right: none; }

.hp-usp-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.hp-usp-item strong {
  font-size: 13px;
  color: #2D1B00;
  display: block;
}

.hp-usp-item small {
  font-size: 11px;
  color: #8B7355;
}

/* ── Shop by Category Grid ───────────────── */
.hp-category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.hp-category-card {
  text-decoration: none;
  text-align: center;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.hp-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.hp-category-img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.hp-category-img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
  outline: 10px solid #fff;
  outline-offset: 0px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hp-category-card:hover .hp-category-img img {
  transform: scale(1.08);
}

.hp-category-card h3 {
  margin: 0;
  padding: 12px 8px 16px;
  font-size: 14px;
  font-weight: 800;
  color: #2D1B00;
}

/* ── Product Grid (Bestsellers) ──────────── */
.hp-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.hp-product-card {
  background: #fff;
  border-radius: 14px;
  overflow: visible;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}

.hp-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.hp-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  z-index: 3;
  letter-spacing: 0.3px;
}

.hp-badge-best { background: #FF6B35; color: #fff; }
.hp-badge-pop { background: #6C5CE7; color: #fff; }
.hp-badge-fav { background: #00B894; color: #fff; }
.hp-badge-new { background: #0984E3; color: #fff; }

.hp-discount-ribbon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e74c3c;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  z-index: 4;
  white-space: nowrap;
  line-height: 1;
}

.hp-product-img {
  background: linear-gradient(135deg, #FFF5EB, #FFEBD2);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  position: relative;
}

.hp-product-img img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.1));
}

.hp-product-card:hover .hp-product-img img {
  transform: scale(1.06);
}

.hp-product-info {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hp-product-info h3 {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 800;
  color: #2D1B00;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hp-product-stars {
  font-size: 13px;
  color: #FFB800;
  margin-bottom: 6px;
}

.hp-product-stars span {
  color: #8B7355;
  font-size: 12px;
  font-weight: 700;
  margin-left: 4px;
}

.hp-product-price {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.hp-price-old {
  font-size: 13px;
  font-weight: 500;
  color: #aaa;
  position: relative;
  display: inline-block;
}

.hp-price-old::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  top: 50%;
  height: 1.5px;
  background: #e74c3c;
  transform: translateY(-50%);
}

.hp-price-now {
  font-size: 22px;
  font-weight: 900;
  color: #D85B2F;
  letter-spacing: -0.5px;
}

.hp-price-off {
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  background: #27AE60;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Limited Time Offer Banner */
.hp-limited-offer {
  text-align: center;
  background: linear-gradient(90deg, #e74c3c, #c0392b, #e74c3c);
  background-size: 200% auto;
  animation: hp-offer-shimmer 3s linear infinite;
  color: #fff;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 10px;
  margin-bottom: 24px;
}

.hp-limited-offer span {
  margin: 0 6px;
}

.hp-limited-offer .offer-icon {
  font-size: 16px;
}

@keyframes hp-offer-shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ── Promo Banner ────────────────────────── */
.hp-promo-banner {
  background: linear-gradient(135deg, #FF6B35 0%, #FF9F43 50%, #FFB84D 100%);
  padding: 0;
  overflow: hidden;
}

.hp-promo-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 48px 40px;
}

.hp-promo-text {
  color: #fff;
}

.hp-promo-label {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
  backdrop-filter: blur(4px);
}

.hp-promo-text h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 900;
  margin: 0 0 12px;
  color: #fff;
}

.hp-promo-text p {
  font-size: 15px;
  opacity: 0.9;
  margin: 0 0 16px;
  max-width: 480px;
  line-height: 1.5;
}

.hp-promo-pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hp-promo-old {
  opacity: 0.6;
  font-size: 18px;
  position: relative;
  display: inline-block;
}

.hp-promo-old::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  top: 50%;
  height: 2px;
  background: #fff;
  transform: translateY(-50%);
}

.hp-promo-new {
  font-size: 32px;
  font-weight: 900;
}

.hp-promo-save {
  background: rgba(255,255,255,0.25);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.hp-promo-banner .hp-btn-primary {
  background: #fff;
  color: #FF6B35;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.hp-promo-banner .hp-btn-primary:hover {
  background: #FFF5EE;
}

.hp-promo-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hp-promo-img img {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.2));
  border-radius: 16px;
}

/* ── Shop by Age ─────────────────────────── */
.hp-age-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hp-age-card {
  text-decoration: none;
  text-align: center;
  background: #fff;
  border-radius: 18px;
  padding: 32px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hp-age-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--accent, #FF9F43);
}

.hp-age-card:hover {
  border-color: var(--accent, #FF9F43);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.hp-age-emoji {
  font-size: 40px;
  margin-bottom: 8px;
}

.hp-age-number {
  font-family: 'Nunito', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent, #FF9F43);
  line-height: 1;
}

.hp-age-label {
  font-size: 16px;
  font-weight: 800;
  color: #6B5744;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hp-age-card p {
  margin: 0;
  font-size: 14px;
  color: #8B7355;
}

/* ── Characters Grid ─────────────────────── */
.hp-char-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hp-char-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.hp-char-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.hp-char-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF1E0, #FFE0C0);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255,159,67,0.2);
}

.hp-char-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-char-card h3 {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 900;
  color: #2D1B00;
}

.hp-char-role {
  display: inline-block;
  background: linear-gradient(135deg, #FFE8D0, #FFD8B0);
  color: #D85B2F;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.hp-char-card p {
  margin: 0;
  font-size: 14px;
  color: #6B5744;
  line-height: 1.5;
}

/* ── Perks / Why Section ─────────────────── */
.hp-perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hp-perk-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.hp-perk-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  border-color: #FFD8B0;
}

.hp-perk-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.hp-perk-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
  color: #2D1B00;
}

.hp-perk-card p {
  margin: 0;
  font-size: 13px;
  color: #6B5744;
  line-height: 1.5;
}

/* ── Testimonials Slider ─────────────────── */
.hp-testimonial-slider {
  position: relative;
  overflow: hidden;
}

.hp-testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.hp-testimonial-card {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
}

.hp-testimonial-card > div,
.hp-testimonial-card > p,
.hp-testimonial-card > .hp-test-stars {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hp-testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 40px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.hp-test-stars {
  font-size: 22px;
  color: #FFB800;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.hp-testimonial-card p {
  font-size: 17px;
  color: #4A3520;
  line-height: 1.7;
  margin: 0 0 24px;
  font-style: italic;
}

.hp-test-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hp-test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF9F43, #FF6B35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}

.hp-test-author strong {
  font-size: 14px;
  color: #2D1B00;
}

.hp-test-author small {
  color: #8B7355;
  font-size: 12px;
}

.hp-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.hp-testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.hp-testimonial-dots button.active {
  background: #FF6B35;
  width: 24px;
  border-radius: 999px;
}

/* ── Quiz Section ────────────────────────── */
.hp-quiz-container {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  text-align: center;
}

.hp-quiz-step {
  display: none;
}

.hp-quiz-step.active {
  display: block;
}

.hp-quiz-step h3 {
  font-size: 20px;
  font-weight: 900;
  color: #2D1B00;
  margin: 0 0 20px;
}

.hp-quiz-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.hp-quiz-opt {
  padding: 10px 20px;
  border-radius: 10px;
  border: 2px solid #E8DDD0;
  background: #fff;
  font-weight: 700;
  font-size: 14px;
  color: #4A3520;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Nunito', sans-serif;
}

.hp-quiz-opt:hover {
  border-color: #FF9F43;
  background: #FFF8F0;
}

.hp-quiz-opt.selected {
  border-color: #FF6B35;
  background: linear-gradient(135deg, #FFF0E5, #FFE5D0);
  color: #D85B2F;
}

.hp-quiz-next:disabled,
.hp-quiz-result:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hp-quiz-answer {
  text-align: center;
}

.hp-quiz-answer h3 {
  font-size: 22px;
  font-weight: 900;
  color: #2D1B00;
  margin: 0 0 12px;
}

.hp-quiz-answer p {
  font-size: 15px;
  color: #6B5744;
  margin: 0 0 20px;
  line-height: 1.5;
}

.hp-quiz-answer .hp-quiz-book-img {
  width: 180px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  margin-bottom: 16px;
}

/* ── Newsletter ──────────────────────────── */
.hp-newsletter {
  background: linear-gradient(135deg, #2D1B00 0%, #4A3520 100%);
  padding: 48px 0;
}

.hp-newsletter-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
}

.hp-newsletter-text h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
}

.hp-newsletter-text p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

.hp-newsletter-form {
  display: flex;
  gap: 0;
}

.hp-newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: 10px 0 0 10px;
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  outline: none;
}

.hp-newsletter-form input:focus {
  box-shadow: 0 0 0 2px #FF9F43;
}

.hp-newsletter-form .hp-btn-primary {
  border-radius: 0 10px 10px 0;
  white-space: nowrap;
}

/* ════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .hp-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hp-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .hp-hero-slide-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 24px;
    min-height: 360px;
  }

  .hp-hero-img { display: none; }

  .hp-hero-btns { justify-content: center; }

  .hp-hero-text p { margin-left: auto; margin-right: auto; }

  .hp-usp-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-usp-item:nth-child(2) { border-right: none; }

  .hp-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hp-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-promo-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 24px;
  }

  .hp-promo-pricing { justify-content: center; }

  .hp-promo-img { order: -1; }
  .hp-promo-img img { max-height: 200px; }

  .hp-newsletter-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hp-char-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hp-ticker { font-size: 11px; }

  .hp-hero { min-height: 320px; }

  .hp-hero-slide-inner {
    padding: 28px 16px;
    min-height: 300px;
  }

  .hp-hero-text h1 { font-size: 24px; }
  .hp-hero-text p { font-size: 14px; }

  .hp-hero-arrow { display: none; }

  .hp-usp-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hp-usp-item { padding: 12px 14px; font-size: 12px; }

  .hp-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hp-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hp-age-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .hp-perks-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .hp-promo-text h2 { font-size: 22px; }
  .hp-promo-new { font-size: 26px; }

  .hp-section { padding: 32px 0; }

  .hp-section-head h2 { font-size: 20px; }

  .hp-testimonial-card {
    padding: 24px 16px;
  }

  .hp-testimonial-card p { font-size: 15px; }

  .hp-quiz-container {
    padding: 24px 16px;
  }

  .hp-newsletter-form {
    flex-direction: column;
    gap: 8px;
  }

  .hp-newsletter-form input {
    border-radius: 10px;
  }

  .hp-newsletter-form .hp-btn-primary {
    border-radius: 10px;
  }
}

@media (max-width: 420px) {
  .hp-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-product-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .hp-product-info h3 { font-size: 14px; }
}
