﻿/* ══════════════════
   SEARCH HERO
══════════════════ */
.search-hero {
    background: linear-gradient(135deg, var(--g900) 0%, var(--g700) 100%);
    padding: 64px 0 56px;
}

.search-hero-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.search-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 28px;
}

.search-hero-form {
    width: 100%;
}

.search-hero-wrap {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 12px;
    padding: 6px 6px 6px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.search-icon {
    font-size: 18px;
    margin-right: 8px;
}

.search-hero-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: 'Jost', sans-serif;
    color: var(--g900);
    background: transparent;
}

.search-hero-btn {
    background: var(--g700);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}

    .search-hero-btn:hover {
        background: var(--g800);
    }

/* ══════════════════
   RESULTS HEADER
══════════════════ */
.search-results-header {
    padding: 32px 0 20px;
}

.result-count {
    font-size: 15px;
    color: var(--muted);
}

    .result-count strong {
        color: var(--g900);
    }

/* ══════════════════
   EMPTY STATE
══════════════════ */
.search-empty {
    text-align: center;
    padding: 80px 0;
}

.se-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.search-empty p {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 24px;
}

.btn-browse {
    display: inline-block;
    background: var(--g700);
    color: var(--white);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background .2s;
}

    .btn-browse:hover {
        background: var(--g800);
    }
