/* ============================================================
   SEARCH OVERLAY — kdrama-search-overlay
   Loaded globally with the header search overlay
   ============================================================ */

/* ── OVERLAY BACKDROP ─────────────────────────────────────── */
.kdrama-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 10, 20, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 20px 20px;

    /* Hidden state */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

/* Visible state — toggled by JS adding .is-open */
.kdrama-search-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* ── INNER BOX ────────────────────────────────────────────── */
.kdrama-search-overlay__box {
    position: relative;
    width: 100%;
    max-width: 620px;
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px 32px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);

    /* Slide-down animation */
    transform: translateY(-20px);
    transition: transform 0.25s ease;
}

.kdrama-search-overlay.is-open .kdrama-search-overlay__box {
    transform: translateY(0);
}

/* ── CLOSE BUTTON ─────────────────────────────────────────── */
.kdrama-search-overlay__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f2f2f2;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    padding: 0;
    line-height: 1;
}

.kdrama-search-overlay__close:hover {
    background: #3ec2cf;
    color: #fff;
    transform: rotate(90deg);
}

.kdrama-search-overlay__close:focus-visible {
    outline: 3px solid #3ec2cf;
    outline-offset: 3px;
}

/* ── LABEL ────────────────────────────────────────────────── */
.kdrama-search-overlay__label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #3ec2cf;
    margin: 0 0 14px;
}

/* ── SEARCH FORM (WordPress default markup) ───────────────── */
.kdrama-search-overlay .search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.kdrama-search-overlay .search-field {
    flex: 1;
    padding: 13px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 50px;
    font-size: 15px;
    font-family: inherit;
    color: #1a1a2e;
    background: #fafafa;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.kdrama-search-overlay .search-field::placeholder {
    color: #bbb;
}

.kdrama-search-overlay .search-field:focus {
    border-color: #3ec2cf;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(62, 194, 207, 0.12);
}

.kdrama-search-overlay .search-submit {
    padding: 13px 26px;
    background: #3ec2cf;
    color: #fff;
    border: 2px solid #3ec2cf;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.kdrama-search-overlay .search-submit:hover {
    background: #2a8a94;
    border-color: #2a8a94;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(62, 194, 207, 0.3);
}

.kdrama-search-overlay .search-submit:focus-visible {
    outline: 3px solid #3ec2cf;
    outline-offset: 3px;
}

/* ── TRENDING SECTION ─────────────────────────────────────── */
.kdrama-search-overlay__trending {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.kdrama-search-overlay__trending-label {
    font-size: 12px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.kdrama-search-overlay__chip {
    display: inline-block;
    padding: 5px 14px;
    background: #f2f2f2;
    color: #444;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.kdrama-search-overlay__chip:hover {
    background: #e8f9fb;
    color: #3ec2cf;
    border-color: #3ec2cf;
}

.kdrama-search-overlay__chip:focus-visible {
    outline: 3px solid #3ec2cf;
    outline-offset: 3px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media ( max-width: 600px ) {
    .kdrama-search-overlay {
        padding: 60px 12px 12px;
        align-items: flex-start;
    }

    .kdrama-search-overlay__box {
        padding: 32px 20px 24px;
        border-radius: 12px;
    }

    .kdrama-search-overlay .search-form {
        flex-direction: column;
    }

    .kdrama-search-overlay .search-field,
    .kdrama-search-overlay .search-submit {
        width: 100%;
        border-radius: 12px;
    }
}
