/* Importação da fonte Quicksand do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap');

/* Container principal */
.meu-botao-woo-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: 'Quicksand', sans-serif;
    color: #381E4D; 
}

/* NOVO: Linha horizontal que contém Qtd, Total e Botão */
.meu-botao-woo-horizontal-row {
    display: flex;
    align-items: center; /* Alinha todos os itens verticalmente no centro */
    gap: 15px; /* Espaço entre os elementos */
    width: 100%;
}

/* 1. Input de Quantidade (Qtd:) */
.meu-botao-woo-qty {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    flex-shrink: 0; /* Impede que este item encolha */
}

.meu-botao-woo-qty-input {
    width: 40px; /* Largura reduzida */
    padding: 8px 3px;
    text-align: center;
    border: 1px solid #381E4D; /* Cor e espessura do seu requisito */
    border-radius: 5px;
    font-family: 'Quicksand', sans-serif;
    color: #381E4D;
    background-color: #fff;
    -moz-appearance: textfield; 
    outline: none; 
}
.meu-botao-woo-qty-input::-webkit-outer-spin-button,
.meu-botao-woo-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* 2. Detalhes de Preço (Subtotal) */
.meu-botao-woo-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1; /* Faz este item ocupar o espaço máximo disponível */
    text-align: left; 
    font-size: 1.1em;
    font-weight: 700;
    color: #381E4D;
    line-height: 1; 
}

.meu-botao-woo-details strong {
    font-weight: 700;
}

/* 3. Botão de Compra */
.meu-botao-woo-btn {
    display: flex;
    justify-content: center; 
    align-items: center;
    padding: 15px 20px;
    border-radius: 10px; /* Seu requisito de raio de borda */
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, opacity 0.3s;
    font-size: 1.1em;
    font-weight: 700;
    flex-shrink: 0; /* Impede que o botão encolha */
    
    /* Cores exigidas */
    background-color: #C4D10A;
    color: #381E4D !important; 
    fill: #381E4D;
    font-family: 'Quicksand', sans-serif;
}

.meu-botao-woo-btn:hover {
    opacity: 0.9;
}

.meu-botao-woo-btn i,
.meu-botao-woo-btn svg {
    margin-right: 8px;
    color: #381E4D !important;
}

.meu-botao-woo-btn-text {
    color: #381E4D !important;
}

/* Garante que todos os textos internos usem a cor e fonte */
.meu-botao-woo-details span,
.meu-botao-woo-details strong,
.meu-botao-woo-qty label {
    font-family: 'Quicksand', sans-serif;
    color: #381E4D;
}