/* Luxury Theme - Search Page Styles */

.search-results-page {
    background-color: #fff;
    padding: 60px 0;
    min-height: 60vh;
}

/* Match listing container whitespace */
.container {
    max-width: 1440px !important;
    padding: 0 10px !important;
}



.search-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.search-info h1 {
    font-size: 2.2rem;
    font-weight: 200;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
}

.search-info h1 i {
    font-size: 1.5rem;
    color: #d4af37;
    margin-right: 15px;
    vertical-align: middle;
}

.search-info p {
    margin: 10px 0 0 0;
    color: #888;
    font-size: 1rem;
    font-weight: 300;
}

.search-sort {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-sort label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    font-weight: 600;
}

.search-sort select {
    padding: 10px 20px;
    border: 1px solid #e5e5e5;
    background: #fff;
    font-size: 0.85rem;
    color: #1a1a1a;
    cursor: pointer;
    border-radius: 0;
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.search-sort select:focus {
    outline: none;
    border-color: #d4af37;
}

/* No Results State */
.no-results {
    text-align: center;
    padding: 100px 20px;
}

.empty-icon {
    font-size: 5rem;
    color: #f5f5f5;
    margin-bottom: 30px;
}

.no-results h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.no-results p {
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.suggestions-box {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto 50px;
    text-align: left;
}

.suggestions-box h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.suggestions-box h5 i {
    color: #d4af37;
    margin-right: 10px;
}

.suggestions-box ul li {
    margin-bottom: 12px;
    color: #777;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.suggestions-box ul li i {
    font-size: 6px;
    color: #d4af37;
    margin-right: 10px;
}

/* Loading States */
.spinner-luxury {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-top-color: #d4af37;
    border-radius: 50%;
    margin: 0 auto;
    animation: luxury-spin 0.8s linear infinite;
}

@keyframes luxury-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .search-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .search-info h1 {
        font-size: 1.6rem;
    }
    .search-sort {
        width: 100%;
        justify-content: space-between;
    }
}