.price {
    text-decoration: line-through;
    color: grey;
}
.current-price {
    font-weight: bold;
}
.size-btn {
    padding: 8px 16px;
    border: 1px solid #ccc;
    background-color: white;
    color: black;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    margin-right: 5px;
}

.size-btn:hover {
    background-color: #f0f0f0;
}

.size-btn.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}
.quantity-control {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.quantity-control button {
    border: 1px solid #000;
    background-color: #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 1;
}
.quantity-control input {
    width: 50px;
    text-align: center;
    border: 1px solid #000;
    margin: 0 10px;
}
.btn-outline-dark {
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}
.btn-dark {
    background-color: #000;
    color: #fff;
    width: 100%;
    padding: 10px;
}
.shipping-info {
    margin-top: 20px;
}
.shipping-info a {
    text-decoration: underline;
    color: #000;
}
.info-icons {
    display: flex;
    margin-top: 20px;
}
.info-icons div {
    display: flex;
    align-items: center;
    margin-right: 20px;
}
.info-icons i {
    margin-right: 5px;
}
.accordion-button {
    font-size: 1.25rem;
    font-weight: bold;
}


.accordion-button:not(.collapsed) {
    color: rgb(179, 173, 186) !important;
    background-color: #fff !important;
    color: black !important;
    box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
    font-size: 14px !important;
}


.accordion-button.collapsed {
    color: rgb(179, 173, 186) !important;
    color: black !important;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
    font-size: 14px !important;
}


.accordion-button::after {
    flex-shrink: 0;

    height: 14px !important; /* Reduce the height */
    margin-left: auto;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: 14px; /* Reduce the icon size */
    transition: var(--bs-accordion-btn-icon-transition);
}
