/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--maroon);
}
#hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    var(--hero-overlay-start, rgba(91,18,18,0.95)) 0%,
    var(--hero-overlay-mid, rgba(91,18,18,0.88)) 35%,
    var(--hero-overlay-light, rgba(91,18,18,0.55)) 65%,
    var(--hero-overlay-end, rgba(91,18,18,0.25)) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,146,42,0.2);
  border: 1px solid rgba(201,146,42,0.4);
  color: var(--gold-l);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-eyebrow::before { content:'✦'; font-size:10px }
.hero-heading {
  font-family: var(--f-brand);
  font-size: clamp(36px, 6vw, 70px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  max-width: 700px;
}
.hero-heading span { color: var(--gold-l) }
.hero-tagline {
  font-size: clamp(16px, 2.5vw, 22px);
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  margin-bottom: 10px;
  max-width: 520px;
  line-height: 1.5;
}
.hero-sub {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}
.hero-badge::before { content:'✓'; color:var(--gold-l); font-weight:800 }

/* Promo badge variant - green background */
.hero-badge-promo {
  background: linear-gradient(135deg, #16a34a, #059669);
  border-color: rgba(255,255,255,0.3);
  color: white;
  font-weight: 700;
}
.hero-badge-promo::before { content:'🏷️'; color: white }

/* Shipping subsidy badge variant - same pill shape as .hero-badge, green background */
.hero-badge-shipping {
  background: linear-gradient(135deg, #16a34a, #059669);
  border-color: rgba(255,255,255,0.3);
  color: white;
  font-weight: 700;
}
.hero-badge-shipping::before { content: none }
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--maroon-d);
  font-size: 15px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--r);
  transition: var(--tr);
  letter-spacing: 0.2px;
  box-shadow: 0 4px 20px rgba(201,146,42,0.4);
}
.btn-hero-primary:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,146,42,0.5);
}
.btn-hero-primary svg { width:18px; height:18px }
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--r);
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: var(--tr);
  backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

/* Hero Stats Bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-stat-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  line-height: 1.3;
}
.hero-stat-stars { display:flex; gap:2px; color:var(--gold-l); font-size:14px }
.hero-stat-divider { width:1px; height:36px; background:rgba(255,255,255,0.15) }

/* Hero Floating Cards */
.hero-float {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 3;
}
.hero-float-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-radius: var(--r-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}
.hero-float-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.hero-float-icon.green  { background: #dcfce7 }
.hero-float-icon.gold   { background: var(--gold-pale) }
.hero-float-icon.maroon { background: var(--maroon-pale) }
.hero-float-text { line-height: 1.3 }
.hero-float-title { font-size: 13px; font-weight: 800; color: var(--text) }
.hero-float-desc  { font-size: 11.5px; color: var(--gray) }

/* ============================================
   USP STRIP
   ============================================ */
.usp-strip {
  background: var(--gold);
  padding: 14px 24px;
  overflow: hidden;
}
.usp-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--maroon-d);
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.usp-item-icon { font-size: 16px }
.usp-divider { width: 1px; height: 20px; background: rgba(91,18,18,0.2) }

/* ============================================
   PROMO BADGE ANIMATION
   ============================================ */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(212,175,55,0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(212,175,55,0.5);
  }
}
