/* ============================================================
   GoGiftings V39 — Hero Banner Fix  v2.0
   Full-bleed image with text overlay, matching preview.webp
   ============================================================ */

/* ── Hero outer grid: banner left, aside right ── */
.hero-grid-refined {
  align-items: stretch !important;
  grid-template-columns: 1fr minmax(300px, 380px) !important;
  gap: 18px !important;
}

/* ── Hero card: full-bleed single image + overlay ── */
.hero-card-fullbleed {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  border: 1px solid rgba(235,77,151,.1) !important;
  box-shadow: 0 8px 40px rgba(87,42,114,.14) !important;
  /* Let the image dictate height but clamp it */
  min-height: 420px !important;
  max-height: 540px !important;
  display: block !important;
  background: #f9ecf7 !important;
}

/* ── Background photo fills entire card ── */
.hero-bg-photo {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  z-index: 0 !important;
  animation: ggHeroFloat 7s ease-in-out infinite !important;
  will-change: transform !important;
}

/* No vignette — clean full image */
.hero-card-fullbleed::before { display: none !important; }



/* Spread Love tagline */
.hero-tagline {
  display: block;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  color: #e8337c;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

/* Headline */




/* Description */


/* ── Trust badges ── */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 22px;
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #3a1a4a;
  line-height: 1.25;
}

.hero-trust-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(235,77,151,.18);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.hero-trust-badge strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #1a0a2e;
}

.hero-trust-badge small {
  font-size: 10.5px;
  color: #7a4a88;
}

/* ── CTA Button ── */





/* ── Slider arrows ── */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(235,77,151,.2);
  box-shadow: 0 4px 16px rgba(87,42,114,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 8;
  font-size: 18px;
  color: #4a1a6a;
  transition: background 200ms, box-shadow 200ms, transform 200ms cubic-bezier(.34,1.56,.64,1) !important;
  line-height: 1;
}
.hero-slider-arrow.prev { left: 14px; }
.hero-slider-arrow.next { right: 14px; }
.hero-slider-arrow:hover {
  background: #fff;
  box-shadow: 0 6px 22px rgba(87,42,114,.22);
  transform: translateY(-50%) scale(1.10);
}

/* ── Slider dots ── */
.hero-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 8;
}

.hero-slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  border: none;
  cursor: pointer;
  transition: all 220ms;
  padding: 0;
}
.hero-slider-dot.active {
  width: 28px;
  border-radius: 5px;
  background: rgba(255,255,255,.95);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-photo { animation: none !important; }
}
