/* Sidebar AJAX Search Results */
.widget-newsletter {
    position: relative;
}

.sidebar-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    border-radius: 0 0 4px 4px;
}

.sidebar-search-results ul li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.sidebar-search-results ul li:last-child {
    border-bottom: none;
}

.sidebar-search-results ul li:hover {
    background-color: #f8f9fa;
}

.sidebar-search-results .search-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}

/* Spinner Loader */
.sidebar-search-loader {
    text-align: center;
    padding: 15px;
}

.sidebar-search-loader::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}