.custom-cart-totals-container {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-top: 20px;
    font-family: system-ui, sans-serif;
}

/* TÍTULO */
.custom-cart-totals-container h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* --- BOX GENERAL --- */
.custom-cart-summary-box {
    background: #f8fafc;
    border-radius: 14px;
    padding: 20px;
}

/* --- Filas --- */
.custom-row,
.custom-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

/* Último item antes del total */
.custom-row:last-of-type {
    border-bottom: none;
}

/* TOTAL */
.custom-total-row {
    border-top: 2px solid #cbd5e1;
    margin-top: 18px;
    padding-top: 14px;
    font-size: 18px;
    font-weight: 700;
}

/* --- LISTA DE MÉTODOS DE ENVÍO --- */
.woocommerce-shipping-methods {
    margin-top: 8px;
    padding-left: 0 !important;
}

.woocommerce-shipping-methods li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
}

.woocommerce-shipping-methods input[type="radio"] {
    width: 18px;
    height: 18px;
}

/* --- Dirección de envío --- */
.woocommerce-shipping-destination {
    margin-top: 10px;
    font-size: 14px;
    color: #475569;
}

/* --- Botón "Cambiar dirección" --- */
.shipping-calculator-button {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    color: #2563eb !important;
}

/* --- INPUTS DEL CALCULADOR DE ENVÍO --- */
.woocommerce-shipping-calculator input,
.woocommerce-shipping-calculator select {
    width: 100% !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    padding: 10px !important;
    font-size: 14px;
    background: white !important;
}

.woocommerce-shipping-calculator button.button {
    background: #16a34a !important;
    color: white !important;
    padding: 6px 9px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    margin-top: 10px;
}

/* --- BOTÓN CHECKOUT --- */
.custom-checkout-btn .checkout-button {
    display: block;
    width: 100%;
    text-align: center;
    background: #16a34a !important;
    padding: 14px !important;
    border-radius: 12px !important;
    color: white !important;
    font-weight: 600;
    font-size: 16px !important;
    transition: background 0.2s ease;
}

.custom-checkout-btn .checkout-button:hover {
    background: #099140 !important;
}
