/* Luxury Search Bar — 35b42ffe v2.0.0 */

/* Hide any old fixed trigger icon if still in DOM */
.vsb-trigger-35b42ffe {
    display: none !important;
}

/* Backdrop */
.vsb-overlay-35b42ffe {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
}

.vsb-overlay-35b42ffe.vsb-active-35b42ffe {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.vsb-backdrop-35b42ffe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

/* Modal box */
.vsb-modal-35b42ffe {
    position: relative;
    z-index: 1;
    background: #ffffff;
    width: 100%;
    max-width: 620px;
    margin: 0 20px;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    transform: translateY(-10px);
    transition: transform 0.25s ease;
}

.vsb-overlay-35b42ffe.vsb-active-35b42ffe .vsb-modal-35b42ffe {
    transform: translateY(0);
}

.vsb-form-35b42ffe {
    margin: 0;
    padding: 0;
}

.vsb-input-wrapper-35b42ffe {
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 60px;
    gap: 12px;
}

.vsb-icon-35b42ffe {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #888;
}

.vsb-input-35b42ffe {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: inherit;
    color: #1a1a1a;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
    min-width: 0;
}

.vsb-input-35b42ffe::placeholder {
    color: #b0a99f;
}

/* Remove native search cancel button */
.vsb-input-35b42ffe::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

.vsb-close-35b42ffe {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.2s ease;
    border-radius: 50%;
}

.vsb-close-35b42ffe:hover {
    color: #1a1a1a;
}

.vsb-close-35b42ffe svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .vsb-overlay-35b42ffe {
        padding-top: 60px;
        align-items: flex-start;
    }
    .vsb-modal-35b42ffe {
        margin: 0 12px;
    }
    .vsb-input-wrapper-35b42ffe {
        height: 52px;
        padding: 0 12px;
    }
    .vsb-input-35b42ffe {
        font-size: 15px;
    }
}
