.product-name{
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}

.product-price{
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #ee2b7c;
}

.product-description {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
}

/* Default: black border/text */
.btn-outline-dark {
    display: flex;
    align-items: center;   /* vertical centering */
    justify-content: center; /* horizontal centering */
    height: 40px;          /* optional: consistent height */
    width: 40px;
    font-weight: 500;
    border-color: #bbbbbb;
    color: #000;
}

/* Selected: red background + white text */
.btn-check:checked + .btn-outline-dark {
    background-color: #fff0f1; /* Bootstrap red */
    border-color: #ee2b7c;
    color: #ee2b7c;
}


