.variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.var-btn {
    padding: 8px 18px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all .15s;
}

.var-btn:hover { border-color: #aaa; }

.var-btn.selected {
    border-color: #39b8bc;
    background: #e1f5ee;
    color: #39b8bc;
    font-weight: 600;
}

.nice-select {
    display: none !important;
}

/* Preço */
.woocommerce-variation-price {
    margin: 1.25rem 0 0.75rem;
}

.woocommerce-variation-price .woocommerce-Price-amount {
    font-size: 26px;
    font-weight: 600;
    color: #111;
}

/* Quantidade + botão lado a lado */
.woocommerce-variation-add-to-cart {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 1rem;
}

/* Input de quantidade */
.woocommerce-variation-add-to-cart .quantity {
    display: flex;
    align-items: center;
}

.woocommerce-variation-add-to-cart input.qty {
    width: 64px;
    height: 48px;
    text-align: center;
    font-size: 15px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #111;
    -moz-appearance: textfield;
}

.woocommerce-variation-add-to-cart input.qty::-webkit-outer-spin-button,
.woocommerce-variation-add-to-cart input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Botão carrinho — sobrescreve o tema */
.woocommerce-variation-add-to-cart .theme-btn-one,
.woocommerce-variation-add-to-cart button[type="submit"] {
    height: 48px;
    padding: 0 28px;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}

.woocommerce-variation-add-to-cart .theme-btn-one:hover,
.woocommerce-variation-add-to-cart button[type="submit"]:hover {
    background: #085041;
}

.product-details-content .product-details .text {
    margin-bottom: 0 !important;
}

.qty-custom-wrapper {
    display: flex;
    align-items: center;
    border: 1.5px solid #ddd;
    overflow: hidden;
    width: fit-content;
    border-radius: 8px;
}

.qty-btn {
    width: 40px;
    height: 48px;
    border: none;
    background: #f5f5f5;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    transition: background .15s;
    line-height: 1;
}

.qty-btn:hover { background: #e8e8e8; }

.qty-custom-wrapper input.qty {
    width: 52px;
    height: 48px;
    border: none;
    border-left: 1.5px solid #ddd;
    border-right: 1.5px solid #ddd;
    border-radius: 0;
    text-align: center;
    font-size: 15px;
    -moz-appearance: textfield;
}

.qty-custom-wrapper input.qty::-webkit-outer-spin-button,
.qty-custom-wrapper input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.wc-block-components-quantity-selector {
    display: none !important;
}