.hero {
    position: relative;
    height: 65vh;
    min-height: 500px;
    max-height: 650px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.1) 30%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.6) 70%,
            rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

/* Floating gold bokeh decorative */
.hero-floating-gold-1 {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(240, 192, 96, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: gentle-glow 4s ease-in-out infinite;
    pointer-events: none;
}

.hero-floating-gold-2 {
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(240, 192, 96, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: gentle-glow 5s ease-in-out 1s infinite;
    pointer-events: none;
}

/* Centered Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 100%;
    padding: 0 var(--space-6) var(--space-12);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.7s var(--ease-out) forwards;
}

.hero-tagline {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--saffron-gold-light);
    margin-bottom: var(--space-5);
    padding: 6px 20px;
    border: 1px solid rgba(240, 192, 96, 0.3);
    border-radius: var(--radius-full);
    background: rgba(240, 192, 96, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--space-2);
    font-weight: 600;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    font-family: var(--font-serif);
}

.hero-heading-accent {
    font-style: italic;
    font-family: var(--font-serif);
    color: var(--saffron-gold-light);
    display: block;
    margin-top: var(--space-2);
}

.hero-subtext {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-weight: 400;
    max-width: 560px;
    line-height: 1.7;
}

/* ─── Mobile Find Vendors Button ─── */
.hero-mobile-btn {
    display: none;
    width: 100%;
    max-width: 100%;
    padding: 18px 32px;
    background: var(--white);
    color: var(--rani-pink);
    border: none;
    border-radius: var(--radius-full);
    font-size: var(--text-lg);
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    margin-top: var(--space-2);
}

.hero-mobile-btn svg {
    transition: transform 0.2s ease;
}

.hero-mobile-btn:active {
    transform: scale(0.97);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-mobile-btn:active svg {
    transform: scale(1.1);
}

/* ─── Inline Search Bar ─── */
.hero-search-bar {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 6px;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 660px;
    animation: fadeInUp 0.7s var(--ease-out) 0.12s both;
}

.hero-filter-item {
    flex: 1;
    min-width: 0;
}

.hero-select-wrapper {
    position: relative;
}

.hero-select {
    width: 100%;
    padding: 14px 36px 14px 18px;
    border: none;
    background: transparent;
    font-size: var(--text-sm);
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--charcoal);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    outline: none;
}

.hero-select option {
    font-size: var(--text-sm);
}

.hero-select-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
}

.hero-divider {
    width: 1px;
    height: 28px;
    background: var(--gray-200);
    flex-shrink: 0;
}

.hero-search-btn {
    flex-shrink: 0;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--rani-pink), var(--royal-maroon));
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.hero-search-btn:hover {
    background: linear-gradient(135deg, var(--rani-pink-dark), var(--deep-maroon));
    box-shadow: 0 4px 20px rgba(194, 24, 91, 0.4);
    transform: translateY(-1px);
}

/* ─── Popular Searches ─── */
.hero-popular-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-6);
    animation: fadeIn 0.7s var(--ease-out) 0.3s both;
}

.hero-popular-label {
    font-size: var(--text-xs);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.hero-popular-link {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    transition: all var(--duration-fast) ease;
    text-decoration: none;
}

.hero-popular-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ─── Stats Bar ─── */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: var(--space-16);
    padding: var(--space-5) var(--space-6);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.hero-stat-number {
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    color: var(--saffron-gold-light);
    font-weight: 400;
}

.hero-stat-label {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
        min-height: 500px;
        max-height: 650px;
        align-items: flex-end;
    }

    .hero-content {
        padding: 0 var(--space-4) var(--space-6);
        max-width: 100%;
    }

    .hero-heading {
        font-size: 1.5rem;
        margin-bottom: var(--space-2);
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
    }

    .hero-subtext {
        font-size: var(--text-sm);
        margin-bottom: 20px;
        line-height: 1.5;
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
    }

    /* Show mobile button, hide desktop search bar */
    .hero-mobile-btn {
        display: inline-flex;
    }

    .hero-search-bar {
        display: none;
    }

    .hero-popular-row {
        display: none;
    }

    .hero-stats-bar {
        display: none;
    }

    .hero-floating-gold-1,
    .hero-floating-gold-2 {
        display: none;
    }

    .hero-overlay {
        background:
            linear-gradient(to bottom,
                rgba(0, 0, 0, 0.1) 0%,
                rgba(0, 0, 0, 0.2) 30%,
                rgba(0, 0, 0, 0.4) 50%,
                rgba(0, 0, 0, 0.7) 70%,
                rgba(0, 0, 0, 0.9) 100%);
    }
}