/* Produto */
:root { 
    --btn-cart: #ececec; /* color|Cor Botão Comprar */
    --btn-cart-hover: #f1f1f1; /* color|Cor Botão Comprar Hover */
    
    --btn-cart-now: var(--green); /* color|Cor Botão Comprar Agora */
    --btn-cart-now-hover: var(--secondary); /* color|Cor Botão Comprar Agora Hover */
}


#input-quantity-wrapper{background: #f7f7f7;}
#input-quantity-wrapper .btn{border:none; color: #4d4d4d;}
#input-quantity-wrapper input{background: none; color: #4d4d4d; font-weight: 500;}

.btn-cart{ padding: 15px 0px; text-transform: uppercase; font-weight: 700; font-size: 14px; width: 100%; border-radius: 0;}

#button-cart, #button-cart-fixed{ 
    background-color: var(--btn-cart); 
    border:solid 1px var(--btn-cart) !important; 
    color: #fff;
    width: 100%;
    border-radius: 0;
    color: #4d4d4d;
}

#button-cart-fixed {display: none !important;}

#button-cart:hover{ 
    border-color: #e5e5e5 !important;
    background-color: #e5e5e5;
}

#button-checkout{
    background-color: var(--btn-cart-now); 
    border:solid 1px var(--btn-cart-now) !important; 
    color: #fff;;
}

#button-checkout:hover{
    background-color: #6A942F; 
    border-color: #6A942F !important;
}

.container-btn-buy-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
}

@media (max-width: 991px) {
    .btn-cart {padding: 12px 2px; font-size: 11px;}
}	
@media (max-width: 1200px) {
	.container-buttons-buy {flex-direction: column;}
}	