/* WonderWeb WooCommerce Search - Full Screen Overlay */
.wwws-search-icon-wrapper {
    display: inline-block;
    margin: 0 5px;
}

.wwws-search-trigger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.wwws-search-trigger .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: #fff;
}

.wwws-search-trigger:hover .dashicons {
    color: #0073aa;
}

/* Overlay */
.wwws-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.wwws-overlay.active {
    display: flex;
}

.wwws-overlay-container {
    max-width: 800px;
    width: 90%;
    margin: 80px auto;
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.wwws-close-overlay {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
    line-height: 1;
}

.wwws-close-overlay:hover {
    color: #000;
}

.wwws-search-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 18px;
    border: 2px solid #ddd;
    border-radius: 50px;
    outline: none;
    transition: border 0.2s;
    margin-bottom: 25px;
    box-sizing: border-box;
}

.wwws-search-input:focus {
    border-color: #0073aa;
}

.wwws-results-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wwws-product-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.wwws-product-item:hover {
    background: #f9f9f9;
}

.wwws-product-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.wwws-product-info {
    flex: 1;
}

.wwws-product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #222;
    text-decoration: none;
}

.wwws-product-title:hover {
    color: #0073aa;
}

.wwws-product-price {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.wwws-search-all {
    display: block;
    text-align: center;
    padding: 15px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 15px;
    font-weight: bold;
    transition: background 0.2s;
}

.wwws-search-all:hover {
    background: #005a87;
    color: #fff;
}

.wwws-loading,
.wwws-no-results {
    text-align: center;
    padding: 30px;
    color: #666;
    font-size: 16px;
}

@media (max-width: 768px) {
    .wwws-overlay-container {
        width: 95%;
        margin: 40px auto;
        padding: 20px 15px;
    }
    
    .wwws-product-thumb {
        width: 50px;
        height: 50px;
    }
    
    .wwws-search-input {
        font-size: 16px;
        padding: 12px 15px;
    }
}

