/* --- SEARCH OVERLAY (NO ANIMATION) --- */
.search-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #ffffff;
    z-index: 3000;
    opacity: 0; visibility: hidden;
    /* Анімація тільки для самого вікна (відкриття/закриття), а не товарів */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    padding: 20px 40px; 
}

.search-overlay.active { opacity: 1; visibility: visible; }

/* --- КНОПКА ЗАКРИТТЯ --- */
.search-close {
    position: absolute; top: 25px; right: 25px;
    background: transparent; border: none; padding: 10px;
    cursor: pointer; color: #111; z-index: 10;
    transition: transform 0.3s ease;
}
.search-close svg { width: 24px; height: 24px; stroke-width: 1; }
.search-close:hover { transform: rotate(90deg); }

/* --- КОНТЕЙНЕР ПОЛЯ ВВОДУ --- */
.search-container {
    max-width: 500px;
    margin: 80px auto 40px; 
    text-align: center;
    position: relative;
}

/* --- СТИЛІЗАЦІЯ ІНПУТА --- */
#search-input {
    width: 100%;
    padding: 10px 0;
    margin: 0;
    font-family: 'Manrope', sans-serif; 
    font-size: 1.1rem; 
    font-weight: 300; 
    text-align: center;
    text-transform: uppercase; 
    color: #111;
    letter-spacing: 0.1em; 

    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #e5e5e5 !important; 
    border-radius: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    
    transition: border-color 0.3s ease;
}

#search-input:focus { border-bottom-color: #111 !important; }
#search-input::placeholder { color: #999; font-weight: 300; letter-spacing: 0.1em; }

/* --- СТАТУС --- */
.search-status {
    margin-top: 15px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem; 
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #999;
    opacity: 0; transform: translateY(5px); transition: 0.3s ease;
}
.search-status.visible { opacity: 1; transform: translateY(0); }

/* --- СІТКА РЕЗУЛЬТАТІВ --- */
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    max-width: 1600px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    color: #999;
    font-size: 0.9rem;
    margin-top: 30px;
    font-weight: 300;
}

/* --- МОБІЛЬНА ВЕРСІЯ --- */
@media (max-width: 768px) {
    .search-overlay { padding: 15px 15px 40px; }
    .search-close { top: 15px; right: 15px; }
    .search-container { margin-top: 60px; margin-bottom: 30px; max-width: 100%; padding: 0 20px; }
    #search-input { font-size: 1rem; }
    .search-results-grid { grid-template-columns: repeat(2, 1fr); gap: 5px; }
}