/* header-cart Styles */
.header-cart {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    width: 350px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    padding: 1.5rem;
    display: none;
}

.header-cart.show {
    display: block;
    animation: slideDown 0.3s ease;
}
 /* header-cart Styles */  


/* Search CSS Styles */

.search-container {
    transition: all 0.3s ease;
}

.search-input-container {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 34px;
    /*padding-bottom: 20px;
    width: 100%;*/
    z-index: 1050;
}

.search-results {
    /*position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    background: white;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);*/
    z-index: 1051;
}

.search-result-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f8f9fa;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-result-item:hover {
    background-color: #f8f9fa;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-category {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-result-title {
    font-weight: 500;
    color: #212529;
    margin: 0.25rem 0;
}

.search-result-description {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

.search-loading {
    padding: 1rem;
    text-align: center;
    color: #6c757d;
}

.search-no-results {
    padding: 1rem;
    text-align: center;
    color: #6c757d;
    font-style: italic;
}

@media (max-width: 768px) {
    .search-input-container {
        width: 250px;
    }
}