/* R165 — compact Ice Cartel-inspired hero hierarchy + centered benefit strip.
   Homepage-scoped only. Existing commerce/gallery/product behavior remains untouched. */
.homepage .birthday-hero {
  position: relative;
}

/* Keep the product/lifestyle photography dominant. The copy occupies a compact
   lower-center zone rather than a full opaque text box. */
.homepage .hero-copy {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: clamp(18px, 4.5vw, 34px);
  top: auto;
  width: min(88%, 430px);
  transform: translateX(-50%);
  padding: 0;
  background: transparent;
  color: var(--white, #F2F2F2);
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,0,.8);
  z-index: 3;
}
.homepage .birthday-hero::after {
  content: '';
  position: absolute;
  inset: 48% 0 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(11,11,11,0), rgba(11,11,11,.18) 38%, rgba(11,11,11,.72) 100%);
  opacity: 1;
  z-index: 1;
}
.homepage .hero-copy .eyebrow {
  margin: 0 0 4px;
  font: 700 clamp(10px, 2.5vw, 12px)/1.15 Roboto, Arial, sans-serif;
  letter-spacing: .16em;
  color: var(--white, #F2F2F2);
}
.homepage .hero-copy h1 {
  max-width: none;
  margin: 0 0 10px;
  font: 900 clamp(28px, 8vw, 42px)/.94 'Roboto Condensed', Arial, sans-serif;
  letter-spacing: -.025em;
  color: var(--white, #F2F2F2);
}
.homepage .hero-copy .product-buy {
  display: inline-flex;
  width: auto;
  min-width: 0;
  min-height: 42px;
  margin: 0 auto;
  padding: 10px 22px;
  font: 900 13px/1 Roboto, Arial, sans-serif;
  letter-spacing: .08em;
  white-space: nowrap;
  text-shadow: none;
}

/* Four benefit icons: visually centered, equalized and easier to scan. */
.homepage .trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  align-items: start;
  gap: clamp(10px, 3vw, 22px);
  padding: 22px 16px 26px;
}
.homepage .trust-strip > div {
  display: grid;
  grid-template-rows: 34px auto;
  justify-items: center;
  align-items: start;
  gap: 8px;
  min-width: 0;
  text-align: center;
}
.homepage .trust-strip svg {
  width: 26px;
  height: 26px;
  margin: 0 auto;
}
.homepage .trust-strip span {
  display: block;
  max-width: 132px;
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  line-height: 1.28;
  text-wrap: balance;
}

@media (max-width: 640px) {
  .homepage .hero-copy {
    bottom: 18px;
    width: min(90%, 360px);
  }
  .homepage .hero-copy h1 { font-size: clamp(27px, 8.8vw, 36px); }
  .homepage .trust-strip {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 22px 14px;
    padding: 22px 12px 26px;
  }
  .homepage .trust-strip span { max-width: 150px; }
}

@media (max-width: 359px) {
  .homepage .hero-copy {
    left: 50%;
    right: auto;
    bottom: 14px;
    top: auto;
    width: calc(100% - 28px);
    transform: translateX(-50%);
    padding: 0;
  }
  .homepage .hero-copy h1 { font-size: 28px; }
  .homepage .hero-copy .product-buy { min-height: 40px; padding: 9px 18px; }
}

@media (max-height: 650px) and (max-width: 899px) {
  .homepage .hero-copy {
    top: auto;
    bottom: 14px;
  }
}
