/* ========== HERO - Flashoot-style Centered Layout ========== */
/* Vertical centered stack: tagline → headline → phone → badges → CTAs → stats → featured */

.hero-flashoot {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 4rem;
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.hero-flashoot-bg {
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  z-index: 0;
}

.hero-flashoot-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Main headline */
.hero-flashoot-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero-flashoot-headline em {
  font-style: italic;
  color: #FF8C00;
  font-weight: 700;
}

/* Subheading */
.hero-flashoot-subheading {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: #333333;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 480px;
}

/* Search + Location */
.hero-flashoot-search {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 0.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.hero-search-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  min-width: 0;
}

.hero-search-icon {
  width: 20px;
  height: 20px;
  color: #FF8C00;
  flex-shrink: 0;
}

.hero-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: #000000;
  background: transparent;
  font-family: inherit;
}

.hero-search-input::placeholder {
  color: #888888;
}

.hero-location-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-left: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  transition: color 0.2s;
}

.hero-location-wrap:hover {
  color: #FF8C00;
}

.hero-location-icon {
  width: 18px;
  height: 18px;
  color: #FF8C00;
  flex-shrink: 0;
}

.hero-location-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333333;
}

.hero-location-wrap:hover .hero-location-text {
  color: #FF8C00;
}

@media (max-width: 500px) {
  .hero-flashoot-search {
    flex-direction: column;
    border: none;
    box-shadow: none;
  }
  
  .hero-search-wrap {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    margin-bottom: 0.5rem;
  }
  
  .hero-location-wrap {
    width: 100%;
    justify-content: center;
    border-left: none;
    padding: 0.6rem;
    background: #f8f8f8;
    border-radius: 12px;
  }
}

/* CTAs */
.hero-flashoot-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 400px;
}

/* Stats strip - 4 columns with dividers */
.hero-flashoot-stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  max-width: 600px;
  width: 100%;
}

.hero-flashoot-stat-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  gap: 0.25rem;
  border-right: 1px solid rgba(0,0,0,0.1);
}

.hero-flashoot-stat-col:last-child {
  border-right: none;
}

.hero-flashoot-stat-num {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
}

.hero-flashoot-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #555555;
  text-align: center;
}

@media (max-width: 600px) {
  .hero-flashoot-stats {
    flex-wrap: wrap;
    border: none;
    box-shadow: none;
    background: transparent;
    gap: 0.75rem;
  }
  .hero-flashoot-stat-col {
    flex: 1 1 45%;
    border-right: none;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 0.75rem;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .hero-flashoot-stat-num {
    font-size: 1.1rem;
  }
  .hero-flashoot-stat-label {
    font-size: 0.75rem;
  }
}

/* Bottom tagline */
.hero-flashoot-tagline-bottom {
  font-size: 0.9rem;
  font-style: italic;
  color: #555555;
  margin: 0;
}

.hero-flashoot-cta-primary {
  flex: 1;
  min-width: 120px;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, #FF8C00 0%, #E67E22 100%);
  color: #000000;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  border: none;
}

.hero-flashoot-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.hero-flashoot-cta-secondary {
  flex: 1;
  min-width: 120px;
  padding: 0.9rem 1.5rem;
  background: transparent;
  color: #000000;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  border: 2px solid rgba(0,0,0,0.3);
  transition: all 0.2s;
}

.hero-flashoot-cta-secondary:hover {
  border-color: #FF8C00;
  color: #FF8C00;
}

/* Become a Vendor link */
.hero-flashoot-vendor-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #555555;
  text-decoration: none;
  transition: color 0.2s;
}

.hero-flashoot-vendor-link:hover {
  color: #FF8C00;
}

/* Desktop */
@media (min-width: 600px) {
  .hero-flashoot-inner {
    max-width: 640px;
  }
  
  .hero-flashoot-headline {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }
}
