.biscayne-search-widget {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
}

.biscayne-search-widget__form {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 6px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
}

.biscayne-search-widget__input-wrap {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.biscayne-search-widget__icon {
    position: absolute;
    left: 16px;
    color: #6b7280;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.biscayne-search-widget__input {
    width: 100%;
    padding: 14px 18px 14px 48px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: #111827;
}

.biscayne-search-widget__input:focus {
    outline: none;
}

.biscayne-search-widget__submit {
    border: none;
    border-radius: 999px;
    padding: 0 28px;
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.biscayne-search-widget__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 124, 186, 0.35);
}

.biscayne-search-widget__results {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    z-index: 50;
    display: none;
}

.biscayne-search-widget__results.is-visible {
    display: block;
}

.biscayne-search-widget__list {
    list-style: none;
    margin: 0;
    padding: 12px;
}

.biscayne-search-widget__item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 12px;
    transition: background 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.biscayne-search-widget__item:hover {
    background: #f1f5f9;
    transform: translateX(4px);
}

.biscayne-search-widget__thumb {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 14px;
    background: #e5e7eb;
    flex-shrink: 0;
}

.biscayne-search-widget__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.biscayne-search-widget__details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.biscayne-search-widget__title {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.biscayne-search-widget__meta {
    font-size: 14px;
    color: #64748b;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.biscayne-search-widget__empty {
    padding: 20px;
    text-align: center;
    color: #64748b;
    font-weight: 500;
}

@media (max-width: 640px) {
    .biscayne-search-widget__form {
        flex-direction: column;
        padding: 6px 6px 12px;
        border-radius: 18px;
    }

    .biscayne-search-widget__input-wrap {
        width: 100%;
        margin-bottom: 10px;
    }

    .biscayne-search-widget__input {
        padding: 12px 14px 12px 44px;
        font-size: 15px;
    }

    .biscayne-search-widget__submit {
        width: 100%;
        padding: 12px;
        font-size: 15px;
    }

    .biscayne-search-widget__results {
        top: calc(100% + 6px);
    }
}

