/* ====
   HALAL HERO SECTION
   ==== */

.halal-hero {
    background: var(--page-bg, #f0f2f0);
    padding: 20px 0 0;
    text-align: center;
}
.halal-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.halal-hero-title {
    display: none; /* Убран — информация в табах */
}

.halal-hero-subtitle {
    display: none; /* Убран по запросу */
}

/* Search (стиль, аналогичный Хадисам) */
.halal-search-container {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1.5px solid var(--border-gray);
    border-radius: 12px;
    padding: 0 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-sm);
    max-width: 100%;
    margin: 0 auto;
}

.halal-search-container:focus-within {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--emerald) 10%, transparent);
}

.halal-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    background: transparent;
    color: #1f2937;
}

.halal-search-input::placeholder {
    color: #9ca3af;
}

.halal-search-icon {
    color: #9ca3af;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.halal-search-container:focus-within .halal-search-icon {
    color: var(--emerald);
}

.halal-search-hint {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 8px;
    font-style: normal;
}

@media (max-width: 768px) {
    .halal-hero {
        padding: 16px 0 0;
    }
    .halal-hero-inner {
        padding: 0 16px;
    }
}