/* ==================================================
   BASIC JUDO - SEARCH PAGE
================================================== */

/* 01 - Section
-------------------------------------------------- */

.bj-search-section {
    padding: 80px 0;
    background:
        radial-gradient(circle at top right, rgba(245, 180, 0, 0.09), transparent 34%),
        linear-gradient(180deg, #f8f5ef 0%, #f1ece4 100%);
}

/* 02 - Search Box
-------------------------------------------------- */

.bj-search-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 16px;
    max-width: 960px;
    margin: 0 auto 34px;
    padding: 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.bj-search-box input {
    width: 100%;
    padding: 18px 22px;
    color: #111827;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    outline: none;
    font-size: 16px;
}

.bj-search-box input:focus {
    border-color: #b78a3c;
    box-shadow: 0 0 0 4px rgba(183, 138, 60, 0.14);
}

.bj-search-box button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    background: #111827;
    border: 0;
    border-radius: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}

.bj-search-box button:hover {
    background: #b78a3c;
}

.bj-search-box button svg {
    width: 20px;
    height: 20px;
}

/* 03 - Summary
-------------------------------------------------- */

.bj-search-summary {
    max-width: 960px;
    margin: 0 auto 30px;
    color: #475569;
    font-size: 15px;
}

/* 04 - Results
-------------------------------------------------- */

.bj-search-results {
    display: grid;
    gap: 18px;
    max-width: 960px;
    margin: 0 auto;
}

.bj-search-result-card {
    display: block;
    padding: 28px 32px;
    color: inherit;
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 20px;
    box-shadow: 0 16px 50px rgba(15, 23, 42, 0.06);
    transition: 0.3s ease;
}

.bj-search-result-card:hover {
    transform: translateY(-5px);
    border-color: #b78a3c;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.bj-search-result-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.bj-search-result-card__top span {
    display: inline-flex;
    padding: 7px 13px;
    color: #9a6b22;
    background: #f5efe4;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bj-search-result-card__top svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: #b78a3c;
}

.bj-search-result-card h2 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 24px;
    line-height: 1.25;
}

.bj-search-result-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.8;
}

/* 05 - Empty State
-------------------------------------------------- */

.bj-search-empty {
    max-width: 760px;
    margin: 0 auto;
    padding: 70px 35px;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.07);
}

.bj-search-empty svg {
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    color: #b78a3c;
}

.bj-search-empty h2 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 30px;
}

.bj-search-empty p {
    margin: 0 0 24px;
    color: #64748b;
    line-height: 1.8;
}

/* 06 - Mobile Responsive
-------------------------------------------------- */

@media (max-width: 768px) {
    .bj-search-section {
        padding: 60px 0;
    }

    .bj-search-box {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .bj-search-box button {
        min-height: 54px;
        padding: 16px;
    }

    .bj-search-result-card {
        padding: 24px;
    }

    .bj-search-result-card h2 {
        font-size: 21px;
    }

    .bj-search-empty {
        padding: 48px 24px;
    }
}