<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Produto */
:root { 
    --btn-cart: var(--secondary); /* color|Cor BotÃ£o Comprar */
    --btn-cart-hover: var(--primary); /* color|Cor BotÃ£o Comprar Hover */
    
    --btn-cart-now: #51c953; /* color|Cor BotÃ£o Comprar Agora */
    --btn-cart-now-hover: var(--secondary); /* color|Cor BotÃ£o Comprar Agora Hover */
}


#input-quantity-wrapper{padding:9px 5px; border-radius: 0px; background: #fff;}
#input-quantity-wrapper .btn{border:none; background: #fff;}
#input-quantity-wrapper input{background: none; color: var(--primary); font-weight: 500;}

.btn-cart{ padding: 12px 26px; text-transform: uppercase; font-weight: 500; font-size: 14px;}

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

#button-cart {
    background-color: transparent; 
    border:solid 1px var(--btn-cart); 
    color: #000;
    width: 100%;
    border-radius: 0;
    height: 48px;
    font-size: 12px;
}

#button-cart:hover{
    background-color:transparent; 
    border-color: var(--btn-cart-hover);
    color: var(--btn-cart-hover);
}

#button-checkout{
    background-color: var(--btn-cart-now); 
    border:solid 1px var(--btn-cart-now) !important; 
    color: #fff;
    border-radius: 0;
    height: 48px;
    font-size: 12px;
}

#button-checkout:hover{
    background-color: #46b448;
	border-color: #46b448;
}

.container-btn-buy-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
}</pre></body></html>