.out-of-stock {
    color: red !important;
}

.toast-message {
    color: black !important;
}

.search-product-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 1000;
    width: 40%;
}

.search-product-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
}

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

@media (max-width: 768px) {
    .search-product-item {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .search-product-list {
        width: 100%;
    }

    .search-product-item {
        max-width: 100%;
    }
}

.search-product-card {
    display: flex;
    gap: 10px;
    align-items: center;
}

.search-product-card:hover {
    transform: translateY(-4px);
}

.search-product-image img {
    border-bottom: 1px solid #e0e0e0;
    border-radius: 4px;
    object-fit: cover;
}

.search-product-title {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #333;
    margin: 0;
}

.search-input-header {
    position: relative;
}

header .header-logo-bar .input-group .select-list {
    max-width: 100px;
}

.loader-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.loader {
    width: 50px;
    aspect-ratio: 1;
    --_c: no-repeat radial-gradient(farthest-side, #25b09b 92%, #0000);
    background:
        var(--_c) top,
        var(--_c) left,
        var(--_c) right,
        var(--_c) bottom;
    background-size: 12px 12px;
    animation: l7 1s infinite;
}

@keyframes l7 {
    to {
        transform: rotate(.5turn)
    }
}
