﻿.product-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 15px;
    border-radius: 10px;
}

.product-image {
    width: 90px;
    height: 90px;
    border-radius: 5px;
}

.product-name {
    font-size: 20px;
    font-weight: bold;
    text-align: right;
    margin-right: 10px;
}

.price-large {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
    font-weight: bold;
}

.quantity-text {
    width: 40px;
    text-align: center;
    font-size: 16px;

}

.product-details {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.color-circle {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #000;
}
#stockErrorModal .modal-content {
    border-radius: 16px;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.2);
}

#stockErrorModal .modal-header {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
}

#stockErrorModal .modal-body {
    font-size: 1.2rem;
    color: #333;
}
