/* Ürün Arama Kutusu Stilleri */
.search-box {
    margin-bottom: 20px;
    display: flex;
    width: 100%;
    max-width: 500px;
    position: relative;
    margin-top: 15px;
}

.product-search-input {
    width: 100%;
    padding: 12px 15px;
    padding-right: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.product-search-input:focus {
    outline: none;
    border-color: #121117;
    box-shadow: 0 0 5px rgba(18, 17, 23, 0.2);
}

#search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #121117;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

#search-button:hover {
    background-color: #333;
}

/* Mobil Görünüm */
@media (max-width: 768px) {
    .search-box {
        max-width: 100%;
    }
}

/* Arama Sonuçları Vurgulaması */
.highlight {
    background-color: rgba(255, 215, 0, 0.3);
    padding: 2px;
    border-radius: 2px;
}

/* Arama Sonucu Bulunamadı Mesajı */
.no-results {
    text-align: center;
    padding: 30px;
    font-size: 18px;
    color: #666;
    width: 100%;
}

.no-results i {
    display: block;
    font-size: 40px;
    margin-bottom: 15px;
    color: #999;
}
