.topa-site-search-wrapper {
    direction: rtl;
    text-align: right;
    font-family: 'RB', 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1F2937;
    margin: 24px 0;
}

.topa-site-search-form {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto 16px;
}

.topa-site-search-input {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 52px 14px 20px;
    border: 1px solid #D1D5DB;
    border-radius: 999px;
    background: #FFFFFF;
    color: #1F2937;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.5;
    direction: rtl;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.topa-site-search-input::placeholder {
    color: #6B7280;
}

.topa-site-search-input:focus {
    outline: none;
    border-color: #F26522;
    box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.15);
}

.topa-site-search-submit {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #F26522;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.2s;
}

.topa-site-search-submit:hover {
    background: rgba(242, 101, 34, 0.08);
}

.topa-search-messages p {
    color: #6B7280;
    font-size: 14px;
    text-align: center;
    margin: 12px 0;
}

.topa-search-prompt,
.topa-search-empty {
    display: none;
}

.topa-search-loading {
    color: #F26522;
    display: none;
}

.topa-search-results {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.topa-search-result-card {
    display: block;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 14px;
    text-decoration: none;
    color: #1F2937;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.topa-search-result-card:hover {
    border-color: #F26522;
    box-shadow: 0 6px 18px rgba(31, 41, 55, 0.08);
    transform: translateY(-2px);
}

.topa-search-result-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1F2937;
    line-height: 1.4;
}

.topa-search-result-excerpt {
    font-size: 14px;
    line-height: 1.65;
    color: #6B7280;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.topa-search-result-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
}

.topa-search-result-type {
    color: #F26522;
    font-weight: 700;
    text-transform: uppercase;
}

.topa-search-result-date {
    color: #6B7280;
}

mark.topa-search-highlight {
    background-color: #F26522;
    color: #FFFFFF;
    padding: 1px 4px;
    border-radius: 3px;
    font-weight: 600;
}

@media (max-width: 600px) {
    .topa-site-search-form,
    .topa-search-results {
        max-width: 100%;
    }

    .topa-site-search-input {
        padding-right: 48px;
    }

    .topa-search-result-title {
        font-size: 15px;
    }
}
