

#global-response-message {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    z-index: 9999;
    width: auto;
    text-align: center;
    display: none;
}

.product-button-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.add-to-cart:disabled {
        opacity: 0.6;
        border: none;
        cursor: pointer;
        text-align: center;
        cursor: not-allowed;
        transition: background-color 0.3s ease-in-out;
    }
.wishlist-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: #DF3500;
    cursor: pointer;
    text-align: center;
    padding: 5px;
}

.wishlist-btn:hover {
    color: white;
}

.filter-sorting {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.filter-sorting .position-relative {
    position: relative;
}

.filter-sorting select {
    width: 100%;
    font-size: 16px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    appearance: none;
}

.filter-sorting .dropdown-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #333;
}

.product-image {
    position: relative;
}

.out-of-stock-overlay {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: red;
    font-size: 22px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    z-index: 2;
    white-space: nowrap;
}

.response-message {
    border-radius:2rem;
    margin-top: 10px;
    color: darkgreen;
    font-size: 16px;
    font-weight: bold;
}
