/* Ícone de lupa */
.wc-ajax-search-icon-wrapper {
    position: absolute;
    right: 30%;
    top: 58px;
    z-index: 22;
}

.wc-ajax-search-open-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    padding: 8px;
    line-height: 1;
}

/*.wc-ajax-search-open-btn:hover,
.wc-ajax-search-open-btn:focus {
    color: #007cba;
}
*/
/* Modal */
.wc-ajax-search-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    top: anchoranchoranchor240px;
}

.wc-ajax-search-modal.active {
    opacity: 1;
}

.wc-ajax-search-modal-content {
    background: white;
    width: 90%;
    width: 40%;
    border-radius: 8px;
    padding: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wc-ajax-search-close {
    position: absolute;
    top: -38px;
    right: -32px;
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: #fff;
}

.wc-ajax-search-close:hover {
    color: #000;
}

/* Ajustes no input dentro do modal */
.wc-ajax-live-search-wrapper {
    position: relative;
    margin: 0 auto;
}

.wc-ajax-live-search-input {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    font-family: var(--global_font_1);
    font-weight: var(--global_font_weight_6);
    margin: 0 0 10px 0;
}

.wc-ajax-live-search-results {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 0px;
    border-radius: 6px;
    padding: 20px;
}

/* Mantém o estilo dos itens (você pode ajustar) */
.wc-ajax-live-search-item {
    display: flex;
    align-items: center;
    padding: 5px;
    border-bottom: 1px solid #e1e1e1;
    text-decoration: none;
    color: #333;
}

.wc-ajax-live-search-item:hover {
    background: #f8f9fa;
}

.wc-ajax-live-search-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 4px;
}

.wc-ajax-live-search-item .info {
    flex: 1;
}

.wc-ajax-live-search-item .title {
    font-weight: var(--global_font_weight_6);
    display: block;
    margin: 0;
    font-size: 15px;
}

.wc-ajax-live-search-item .price {
    color: var(--global_cor_2);
    font-weight: var(--global_font_weight_6);
    font-size: 13px;
}