.elementor-32 .elementor-element.elementor-element-2fe49975{--display:flex;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-widget-woocommerce-checkout-page .product-name .variation{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-32 .elementor-element.elementor-element-af912fa{--additional-information-display:block;}/* Start custom CSS for woocommerce-checkout-page, class: .elementor-element-af912fa *//* ===== FUNDO GERAL ===== */
body.woocommerce-checkout {
    background: #f5f7fa;
}

/* ===== CONTAINER PRINCIPAL ===== */
.woocommerce-checkout .woocommerce {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

/* ===== BOXES ===== */
.woocommerce-checkout form.checkout,
.woocommerce-checkout #order_review {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* ===== TÍTULOS ===== */
.woocommerce-checkout h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* ===== INPUTS ===== */
.woocommerce-checkout input,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    border-radius: 8px !important;
    border: 1px solid #ddd !important;
    padding: 12px !important;
    transition: 0.3s;
}

.woocommerce-checkout input:focus {
    border-color: #ff6500 !important;
}

/* ===== RESUMO DO PEDIDO ===== */
#order_review {
    position: sticky;
    top: 20px;
}

/* ===== TABELA PRODUTO ===== */
.woocommerce-checkout-review-order-table {
    border: none;
}

.woocommerce-checkout-review-order-table th {
    display: none;
}

.woocommerce-checkout-review-order-table td {
    border: none;
    padding: 10px 0;
}

/* ===== PRODUTO ===== */
.woocommerce-checkout-review-order-table .cart_item {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

/* IMAGEM */
.woocommerce-checkout-review-order-table img {
    width: 70px;
    border-radius: 6px;
}

/* NOME PRODUTO */
.woocommerce-checkout-review-order-table .product-name {
    font-size: 14px;
    font-weight: 500;
}

/* PREÇO */
.woocommerce-checkout-review-order-table .product-total {
    margin-left: auto;
    color: #ff6500;
    font-weight: bold;
}

/* ===== TOTAL ===== */
.order-total strong {
    color: #00a650;
    font-size: 18px;
}

/* ===== BOTÃO ===== */
#place_order {
    background: #ff6500 !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 15px !important;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

#place_order:hover {
    background: #e65c00 !important;
}

/* ===== ALERTA (tipo cronômetro fake) ===== */
.woocommerce-info {
    background: #e7f3ff;
    border: none;
    border-radius: 8px;
    color: #2b6cb0;
    padding: 12px;
    font-size: 14px;
}

/* ===== MOBILE ===== */
@media(max-width: 768px) {
    .woocommerce-checkout .woocommerce {
        grid-template-columns: 1fr;
    }

    #order_review {
        position: relative;
    }
}/* End custom CSS */