/**
 * ISO Hero Search Bar
 * Styles for [iso_hero_search] shortcode.
 */

/* ── Wrapper ──────────────────────────────────────────────────────────────── */

.iso-hero-search {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 24px 16px;
    text-align: center;
}

/* ── Card ─────────────────────────────────────────────────────────────────── */

.iso-hero-search__card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

/* ── Tabs ─────────────────────────────────────────────────────────────────── */

.iso-hero-search__tabs {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
}

.iso-hero-tab {
    flex: 1;
    padding: 14px 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: color 150ms ease, border-color 150ms ease;
    white-space: nowrap;
}

.iso-hero-tab:hover {
    color: #e63946;
}

.iso-hero-tab--active {
    color: #e63946;
    font-weight: 600;
    border-bottom-color: #e63946;
}

/* ── Category pills ───────────────────────────────────────────────────────── */

.iso-hero-search__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 16px 4px;
    justify-content: center;
}

.iso-hero-cat {
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #4b5563;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.iso-hero-cat:hover {
    background: #fce4ec;
    color: #c2185b;
    border-color: #f48fb1;
}

.iso-hero-cat--active {
    background: #e63946;
    color: #ffffff;
    border-color: #e63946;
}

.iso-hero-cat--active:hover {
    background: #c1121f;
    color: #ffffff;
    border-color: #c1121f;
}

/* ── Search input ─────────────────────────────────────────────────────────── */

.iso-hero-search__input-wrap {
    display: flex;
    align-items: center;
    margin: 14px 16px 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.iso-hero-search__input-wrap:focus-within {
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.12);
}

.iso-hero-search__input {
    flex: 1;
    padding: 13px 20px;
    font-size: 0.95rem;
    color: #1a1a2e;
    background: transparent;
    border: none;
    outline: none;
}

.iso-hero-search__input::placeholder {
    color: #9ca3af;
}

.iso-hero-search__btn {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    margin: 4px;
    background: #e63946;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 150ms ease;
}

.iso-hero-search__btn:hover {
    background: #c1121f;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 640px) {
    .iso-hero-search__heading {
        font-size: 1.15rem;
    }

    .iso-hero-tab {
        font-size: 0.78rem;
        padding: 12px 8px;
    }

    .iso-hero-search__input {
        font-size: 0.875rem;
        padding: 11px 14px;
    }
}
