/* Hero Section Styles - Extracted from home.html */
.hero-section {
    text-align: center;
    padding: 60px 0;
    background: radial-gradient(circle at center, #f0f4ff 0%, transparent 70%);
    margin-bottom: 40px;
    border-radius: 16px;
}

.hero-title {
    margin-bottom: 20px;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}

.search-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.search-input-styled {
    width: 100%;
    padding: 16px 16px 16px 50px;
    font-size: 1rem;
    border-radius: 30px;
    border: 1px solid #e1e4e8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    cursor: pointer;
}

.store-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: #fff;
    color: #3861fb;
}

.badge-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Mobile Hero Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 30px 16px;
        border-radius: 0;
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .search-input-styled {
        padding: 12px 12px 12px 40px;
        font-size: 0.95rem;
    }
}