/* ============================================================
   SHAINY CREATION — index.css  v8.0  (Homepage)
   Rebuilt to match PDF design exactly
   ============================================================ */

/* ── ANNOUNCE BAR ── */
.announce-bar {
  background: var(--text);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 500;
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
}
.announce-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
  padding-right: 28px;
}
.announce-track strong {
  color: #f0c97a;
  font-weight: 700;
}
.announce-dot {
  color: var(--gold);
  font-size: 8px;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── SHARED CONTAINER ── */
.hp-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

/* ── SHARED TYPOGRAPHY ── */
.hp-title-center {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-heading2);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.hp-sub-center {
  font-family: var(--f-alt);
  font-size: 14px;
  color: var(--text-soft);
  text-align: center;
  margin-bottom: 36px;
}
.hp-title-left {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-heading2);
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.hp-sub-left {
  font-family: var(--f-alt);
  font-size: 13px;
  color: var(--text-soft);
}
.hp-view-all {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color var(--t);
}
.hp-view-all:hover {
  color: var(--rose);
}

/* ── SECTION ROW HEADER ── */
.hp-sec-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ── SECTIONS ── */
.hp-sec {
  padding: 56px 0;
}
.hp-sec-white {
  background: var(--white);
}

/* ── SKELETON ── */
.hp-skel {
  height: 320px;
  border-radius: var(--r-md);
  background: linear-gradient(
    90deg,
    var(--blush) 0%,
    var(--cream) 50%,
    var(--blush) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border: 1px solid var(--border-soft);
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ════════════════════════════════════════
   HERO
   PDF: cream/white bg, 60/40 split,
   left = text block, right = dress photo
════════════════════════════════════════ */
.hp-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 620px;
  overflow: hidden;
  position: relative;
  height: 70%;
}
.hp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.05) 70%,
    rgba(0, 0, 0, 0) 90%
  );
  z-index: 1;
}

/* Background Video */

.hp-hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.75) contrast(1.05);
}
.hp-hero-bg-video {
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

/* Keep content above video */

.hp-hero-content,
.hp-hero-visual {
  position: relative;
  z-index: 2;
}

.hp-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 700px;
  padding: 80px 20px;
  position: relative;
  z-index: 2;
  /* backdrop-filter: blur(8px); */
  /* background: rgba(255, 255, 255, 0.35);
  border-radius: 16px; */
  padding: 60px 50px;
  /* border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15); */
}
.hp-hero-eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: #979393;
  margin-bottom: 16px;
}

.hp-hero-h1 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 6vw + 1.5rem, 80px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow:
    0 6px 18px rgba(0, 0, 0, 0.55),
    0 2px 6px rgba(0, 0, 0, 0.35);
  margin-bottom: 18px;
}
.hp-hero-h1 em {
  font-style: italic;
  font-weight: 600;
  color: #979393;
  display: block;
  font-size: 44px;
}

.hp-hero-desc {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--text-soft);
  color: #f1f1f1;
  font-size: 15px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  line-height: 1.75;
  margin-bottom: 28px;
  font-weight: 300;
  max-width: 380px;
  text-shadow: 0 2px 8px rgba(230, 215, 215, 0.1);
}

.hp-hero-cta {
  max-width: 100%; box-sizing: border-box;
  display: inline-flex;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: #fff;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: var(--r-sm);
  width: fit-content;
  margin-bottom: 20px;
  transition:
    background 0.22s,
    transform 0.18s;
}
.hp-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hp-hero-note {
  font-family: var(--f-body);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Hero right — dress visual */
.hp-hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 0;
}
.hp-hero-img-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
/* Simulates the pink gown photo from PDF */
.hp-hero-gown {
  width: 280px;
  height: 460px;
  position: relative;
  bottom: 50px;
  box-shadow:
    0 18px 48px rgba(200, 121, 106, 0.22),
    0 0 60px rgba(255, 220, 200, 0.35);
  border-radius: 46% 46% 10% 10% / 24% 24% 10% 10%;
  overflow: hidden;

  box-shadow: 0 18px 48px rgba(200, 121, 106, 0.22);
  filter: drop-shadow(0 8px 24px rgba(30, 21, 18, 0.12));
}
.hp-hero-gown {
  animation: dressFloat 7s ease-in-out infinite;
}

@keyframes dressFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.hp-hero-gown::before {
  content: "";
  position: absolute;
  top: -56px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 110px;
  border-radius: 50% 50% 40% 40%;
  background: transparent;
  box-shadow: 0 4px 12px rgba(200, 121, 106, 0.15);
}

/* ════════════════════════════════════════
   SHOP BY AGE
   PDF: white bg, 5 circles in a row, centered
════════════════════════════════════════ */
.hp-age {
  background: var(--blush);
  padding: 52px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.hp-age-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hp-age-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.22s;
}
.hp-age-item:hover {
  transform: translateY(-4px);
}
.hp-age-item > span {
  font-family: var(--f-body);
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.hp-age-circle {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition:
    box-shadow 0.22s,
    transform 0.22s;
  border: 1px solid rgba(200, 121, 106, 0.1);
}
.hp-age-item:hover .hp-age-circle {
  box-shadow: 0 8px 24px rgba(200, 121, 106, 0.22);
  transform: scale(1.06);
}

/* Circle colours matching PDF (soft peach/blush tones) */
.c1 {
  background: linear-gradient(145deg, #fdf5ee, #f5e0d0);
}
.c2 {
  background: linear-gradient(145deg, #fde8df, #f5c8b8);
}
.c3 {
  background: linear-gradient(145deg, #fdd8cc, #f0a898);
}
.c4 {
  background: linear-gradient(145deg, #fae0d8, #f0c0b0);
}
.c5 {
  background: linear-gradient(145deg, #f8eae4, #eccabc);
}

/* ════════════════════════════════════════
   FEATURED COLLECTION — 3-column grid
════════════════════════════════════════ */
.hp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 640px) {
  .hp-grid-3 {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .hp-grid-3 .product-img {
    height: 175px;
  }
  .hp-grid-3 .card-body {
    padding: 10px 12px 14px;
  }
  .hp-grid-3 .card-name {
    font-size: 13px;
  }
  .hp-grid-3 .card-price {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .hp-grid-3 .product-img {
    height: 155px;
  }
}

/* ════════════════════════════════════════
   PREMIUM COLLECTION BANNER
   PDF: full-width warm rose/taupe bg,
   dress rack photo bg, centered italic heading
════════════════════════════════════════ */
.hp-premium {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 72px var(--side-pad);
}
.hp-premium-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.6) contrast(1.05);
}
.hp-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 21, 18, 0.55),
    rgba(30, 21, 18, 0.35)
  );
  z-index: 1;
}
.hp-premium-inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hp-premium-title {
  font-family: var(--f-display);
  font-size: 40px;
  font-weight: 600;
  font-style: italic;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.hp-premium-sub {
  font-family: var(--f-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 26px;
  line-height: 1.7;
  font-weight: 300;
}

.hp-premium-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: var(--r-sm);
  transition:
    background 0.22s,
    border-color 0.22s,
    transform 0.18s;
}
.hp-premium-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════
   BEST SELLERS CAROUSEL
════════════════════════════════════════ */
.hp-carousel-wrap {
  overflow: hidden;
  width: 100%;
}
/* FIX: Track needs width:100% so that flex-basis % on children
   resolves against the wrap width, not the track's own max-content width.
   Without this, calc(25% - 15px) on flex items is essentially calc(0% - 15px). */
.hp-carousel-track {
  display: flex;
  gap: 20px;
  width: 100%;
  transition: transform 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* ── hp-carousel-item: the wrapper div around each card ──
   4 cards per row: (100% - 3 gaps of 20px) / 4 = calc(25% - 15px)
   This now works correctly because .hp-carousel-track has width:100% */
.hp-carousel-item {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
  max-width: calc(25% - 15px);
}
/* Also target direct .product-card children for legacy/fallback */
.hp-carousel-track > .product-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
  max-width: calc(25% - 15px);
}

/* ── .product-img height: controlled here, NOT inline in JS ── */
.product-img {
  height: 240px;
}
/* Inside carousel, taller portrait images look better */
.hp-carousel-item .product-img {
  height: 260px;
}
/* Inside featured 3-col grid */
.hp-grid-3 .product-img {
  height: 240px;
}

/* ════════════
   MOBILE CAROUSEL — native horizontal scroll + snap
   Cards are sized in viewport-relative units so they're
   never narrower than a comfortable tap target
════════════ */
@media (max-width: 768px) {
  .hp-carousel-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    /* Extend to screen edges for peek effect */
    margin: 0 -16px;
    padding: 0 16px 8px;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .hp-carousel-wrap::-webkit-scrollbar {
    display: none;
  }

  .hp-carousel-track {
    /* Disable JS transform — native scroll takes over */
    transform: none !important;
    transition: none !important;
    /* FIX: Reset width so the track can overflow the wrap for horizontal scroll */
    width: auto;
    gap: 12px;
    /* Trailing padding so last card doesn't sit at screen edge */
    padding-right: 16px;
  }

  /* Each card: wide enough to read text, narrow enough to show peek of next */
  .hp-carousel-item,
  .hp-carousel-track > .product-card {
    flex: 0 0 148px;
    width: 148px;
    /* FIX: Reset max-width so desktop calc(25%-15px) doesn't cap mobile cards near 0px */
    max-width: none;
    scroll-snap-align: start;
  }

  /* Image height inside carousel on mobile */
  .hp-carousel-item .product-img,
  .hp-carousel-track > .product-card .product-img {
    height: 190px;
  }

  /* Clamp long product names to 2 lines inside narrow carousel cards */
  .hp-carousel-item .card-name,
  .hp-carousel-track > .product-card .card-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
  }

  /* Hide desktop arrow buttons — swipe replaces them */
  .hp-arrows {
    display: none;
  }

  /* Scroll hint dots */
  .hp-scroll-hint {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 14px;
  }
  .hp-scroll-hint span {
    width: 20px;
    height: 3px;
    border-radius: 2px;
    background: var(--border);
    transition:
      background 0.2s,
      width 0.2s;
  }
  .hp-scroll-hint span:first-child {
    background: var(--rose);
    width: 28px;
  }
}

/* Very small phones: slightly narrower cards, shorter images */
@media (max-width: 400px) {
  .hp-carousel-item,
  .hp-carousel-track > .product-card {
    flex: 0 0 136px;
    width: 136px;
    max-width: none;
  }
  .hp-carousel-item .product-img,
  .hp-carousel-track > .product-card .product-img {
    height: 175px;
  }
}

.hp-arrows {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hp-arrow {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--white);
  font-size: 18px;
  color: var(--text-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color var(--t),
    color var(--t),
    background var(--t);
  line-height: 1;
}
.hp-arrow:hover {
  border-color: var(--text);
  color: var(--text);
  background: var(--off-white);
}

/* ════════════════════════════════════════
   SHOP BY BUDGET
   PDF: soft blush/cream bg, 4 outline pill buttons
════════════════════════════════════════ */
.hp-budget {
  background: var(--blush);
  padding: 60px 0;
}

.hp-budget-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hp-budget-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--white);
  border: 1.5px solid rgba(200, 121, 106, 0.2);
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition:
    background var(--t),
    border-color var(--t),
    color var(--t),
    transform var(--t),
    box-shadow var(--t);
  white-space: nowrap;
  min-width: 160px;
}
.hp-budget-btn:hover {
  background: var(--off-white);
  border-color: var(--rose);
  color: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}
.hp-budget-filled {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}
.hp-budget-filled:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  color: #fff;
}

/* ════════════════════════════════════════
   WHY SHAINY CREATION — 4 icon cards
════════════════════════════════════════ */
.hp-why-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.hp-why-card {
  text-align: center;
  padding: 32px 20px 28px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  transition:
    box-shadow 0.3s,
    transform 0.3s,
    border-color 0.22s;
}
.hp-why-card:hover {
  box-shadow: var(--sh-sm);
  transform: translateY(-3px);
  border-color: rgba(200, 121, 106, 0.2);
}

.hp-why-ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.22s;
}
.hp-why-ico svg {
  width: 22px;
  height: 22px;
}
.hp-why-card:hover .hp-why-ico {
  background: rgba(200, 121, 106, 0.12);
}

.hp-why-card h3 {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 8px;
}
.hp-why-card p {
  font-family: var(--f-alt);
  font-size: 13px;
  color: var(--color-para);
  line-height: 1.75;
  font-weight: 400;
}

/* ════════════════════════════════════════
   TESTIMONIALS — 3 white cards, off-white bg
════════════════════════════════════════ */
.hp-testi {
  background: var(--off-white);
  padding: 60px 0;
}

.hp-testi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.hp-tcard {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 28px;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.hp-tcard:hover {
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}

.hp-tcard-stars {
  color: #e8a020;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.hp-tcard-body {
  font-family: var(--f-alt);
  font-size: 14px;
  color: var(--color-para);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  font-weight: 400;
}

.hp-tcard-footer {
  display: flex;
  align-items: center;
  gap: 11px;
}

.hp-tcard-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--rose-dark);
  flex-shrink: 0;
}

.hp-tcard-footer strong {
  display: block;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-heading);
}
.hp-tcard-footer span {
  display: block;
  font-family: var(--f-body);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}

/* ════════════════════════════════════════
   NEWSLETTER — dark bg, centered
   PDF: simple email input + subscribe button
════════════════════════════════════════ */
.hp-nl {
  background: var(--text);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hp-nl::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 65% 50%,
    rgba(200, 121, 106, 0.09) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.hp-nl .hp-container {
  position: relative;
  z-index: 1;
}

.hp-nl-h2 {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.hp-nl-p {
  font-family: var(--f-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  line-height: 1.7;
  font-weight: 300;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.hp-nl-row {
  display: flex;
  max-width: 440px;
  margin: 0 auto 12px;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.22s;
}
.hp-nl-row:focus-within {
  border-color: rgba(200, 121, 106, 0.5);
}

.hp-nl-input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--f-body);
  font-size: 14px;
  color: #fff;
  outline: none;
}
.hp-nl-input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.hp-nl-btn {
  background: var(--rose);
  color: #fff;
  border: none;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 14px 22px;
  cursor: pointer;
  transition: background 0.22s;
  white-space: nowrap;
}
.hp-nl-btn:hover {
  background: var(--rose-dark);
}

.hp-nl-note {
  font-family: var(--f-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  min-height: 16px;
  font-weight: 300;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hp-hero-h1 {
    font-size: 40px;
  }
  .hp-hero-h1 em {
    font-size: 36px;
  }
  .hp-hero-gown {
    width: 240px;
    height: 400px;
  }
  .hp-why-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .hp-budget-row {
    gap: 10px;
  }
  .hp-budget-btn {
    min-width: 140px;
    padding: 12px 20px;
  }
}

@media (max-width: 900px) {
  .hp-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hp-hero-content {
    padding: 40px var(--side-pad) 28px;
    order: 1;
  }
  .hp-hero-visual {
    order: 2;
    min-height: 280px;
  }
  .hp-hero-h1 {
    font-size: 36px;
  }
  .hp-hero-h1 em {
    font-size: 32px;
  }
  .hp-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .hp-testi-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  /* Tablet: show 3 cards */
  .hp-carousel-item,
  .hp-carousel-track > .product-card {
    flex: 0 0 calc(33.33% - 14px);
    max-width: calc(33.33% - 14px);
  }
  .hp-age-circle {
    width: 72px;
    height: 72px;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .hp-hero-content {
    padding: 28px 16px 20px;
  }
  .hp-hero-h1 {
    font-size: 30px;
  }
  .hp-hero-h1 em {
    font-size: 27px;
  }
  .hp-hero-desc {
    font-size: 13px;
  }
  .hp-age-row {
    gap: 12px;
  }
  .hp-age-circle {
    width: 60px;
    height: 60px;
    font-size: 12px;
  }
  .hp-age-item > span {
    font-size: 10px;
  }
  /* Featured Collection: 2 columns, tighter gap */
  .hp-grid-3 {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .hp-why-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .hp-budget-row {
    flex-direction: column;
    align-items: center;
  }
  .hp-budget-btn {
    width: 100%;
    max-width: 320px;
  }
  .hp-sec-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .hp-premium-title {
    font-size: 30px;
  }
  .hp-nl-row {
    flex-direction: column;
    border-radius: var(--r-md);
  }
  .hp-nl-input {
    border-radius: var(--r-md) var(--r-md) 0 0;
  }
  .hp-nl-btn {
    width: 100%;
    border-radius: 0 0 var(--r-md) var(--r-md);
    padding: 14px;
    justify-content: center;
  }
  /* Sections: less vertical padding */
  .hp-sec {
    padding: 40px 0;
  }
  .hp-budget {
    padding: 44px 0;
  }
  .hp-testi {
    padding: 44px 0;
  }
  .hp-nl {
    padding: 52px 0;
  }
  /* Section headings: smaller */
  .hp-title-center {
    font-size: 22px;
  }
  .hp-title-left {
    font-size: 22px;
  }
  .hp-sub-center {
    font-size: 13px;
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .hp-hero-visual {
    display: none;
  }
  /* Featured Collection: 2 columns with proper heights */
  .hp-grid-3 {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .hp-why-row {
    grid-template-columns: 1fr 1fr;
  }
  /* Age circles: tighter on small phones */
  .hp-age-row {
    gap: 8px;
  }
  .hp-age-circle {
    width: 54px;
    height: 54px;
    font-size: 11px;
  }
  .hp-age-item > span {
    font-size: 9px;
    letter-spacing: 0.04em;
  }
  /* Container: reduce padding */
  .hp-container {
    padding: 0 14px;
  }
  /* Why cards: smaller padding */
  .hp-why-card {
    padding: 22px 14px 18px;
  }
  .hp-why-ico {
    width: 44px;
    height: 44px;
  }
  .hp-why-ico svg {
    width: 18px;
    height: 18px;
  }
  /* Testimonials: single column, tighter */
  .hp-tcard {
    padding: 20px 16px;
  }
  .hp-tcard-body {
    font-size: 13px;
  }
  /* Premium banner */
  .hp-premium {
    padding: 52px 16px;
  }
  .hp-premium-title {
    font-size: 26px;
  }
  .hp-premium-sub {
    font-size: 13px;
  }
  /* Newsletter */
  .hp-nl-h2 {
    font-size: 22px;
  }
  .hp-nl-p {
    font-size: 13px;
  }
}
