:root {
    --color-red: #AA0732
}

.single-add-to-cart-form {
    display: flex;
    align-items: center;
    padding: 10px 0;
    gap: 20px;
}

.quantity {
    display: flex;
    align-items: center;
}

.quantity-btn {
    background-color: #F4F4F4;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

.quantity-btn:hover {
    cursor: pointer;
}

.quantity-btn.quantity-minus {
    border-radius: 10px 0 0 10px;
}

.quantity-btn.quantity-plus {
    border-radius: 0 10px 10px 0;
}

.single-product-description {
    padding: 50px 0;
}

.single-product-description h2 {
    color: #081235;
    font-size: 44px;
    font-weight: 700;
    line-height: 110%;
    padding-bottom: 20px;
}

.single-product-description p {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #4D4D4D;
    padding-bottom: 20px;
}

.woocommerce .quantity .qty {
    width: 60px;
    height: 54px;
    background-color: #FFF;
    border-top: 1px solid #F4F4F4;
    border-bottom: 1px solid #F4F4F4;
    text-align: center;
    border-left: none;
    border-right: none;
    font-size: 17px;
    color: #081235;
    font-weight: 500;
    -moz-appearance: textfield;
}

.woocommerce .quantity input::-webkit-outer-spin-button,
.woocommerce .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.single-add-to-cart-form {
    padding: 20px 0 30px;
}

.price-has-discount {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-has-discount .product-price-old bdi {
   color: #99A3A0;
   font-size: 15px; 
   font-weight: 500;
   text-decoration: line-through;
}

.price-current bdi {
    color: #AA0732;
    font-size: 24px;
    font-weight: 500;
}

.single-product-price {
    padding-bottom: 20px;
}