/* --- SEARCH BAR --- */
.search-container {
    position: relative;
    max-width: 400px;
    margin: 20px 0 0;
}

#product-search-input {
    width: 100%;
    padding: 15px 50px 15px 25px;
    border-radius: 25px;
    border: 2px solid var(--border-color-light);
    background: #f9f9f9;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

#product-search-input:focus {
    border-color: var(--primary-red);
    box-shadow: 0 5px 20px rgba(229, 9, 20, 0.15);
    background: #fff;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-red);
    font-size: 1.5rem;
    pointer-events: none;
}