/* Mobile responsive */
@media (max-width: 768px) {
    .search-container {
        padding: 20px 15px;
    }

    .search-input {
        font-size: 20px;
    }

    .search-close {
        top: 10px;
        right: 10px;
        font-size: 30px;
    }
}
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 10000;
    display: none;
    overflow-y: auto;
}

.search-overlay.active {
    display: block;
}

.search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    position: relative;
}

.search-close {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    color: #000;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
}

.search-close:hover {
    opacity: 0.7;
}

.search-input-wrapper {
    margin-bottom: 40px;
}

.search-input {
    width: 90%;
    border: none !important;
    border-bottom: 1px solid #000;
    padding: 15px 0;
    font-size: 20px;
    font-weight: 300;
    outline: none !important;
    letter-spacing: 2px;
}

.search-input::placeholder {
    color: #7e7d7d;
}

.search-results {
    margin-top: 40px;
}

.search-tabs {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.search-tabs .tab {
    padding: 15px 0;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: #999;
    position: relative;
}

.search-tabs .tab.active {
    color: #000;
}

.search-tabs .tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
}