.mlc-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
    background-color: #f5f5f5;
}

.mlc-container h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.mlc-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px;
}

.mlc-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.mlc-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.mlc-product-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}
.mlc-product-row:last-child { margin-bottom: 0; }
.mlc-product-row img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.mlc-product-details {
    display: flex;
    flex-direction: column;
}
.mlc-product-title {
    font-weight: 500;
}
.mlc-product-qty {
    font-size: 12px;
    color: #666;
}

/* Tabs de Entrega Estilo ML */
.mlc-delivery-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.mlc-tab {
    padding: 10px 22px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
}
.mlc-tab.active {
    background: #fff;
    border-color: #3483fa;
    color: #3483fa;
}

.mlc-address-box {
    border: 1.5px solid #3483fa;
    border-radius: 8px;
    padding: 16px;
    background-color: #fff;
}
.mlc-address-info {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.mlc-radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 8px;
    transition: border-color 0.2s;
}
.mlc-radio-option:hover { background: #fafafa; }
.mlc-radio-option.active { border-color: #3483fa; background-color: #f0f7ff; }

.mlc-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}
.mlc-discount { color: #00a650; }
.mlc-coupon-link, .mlc-link {
    color: #3483fa;
    text-decoration: none;
    font-size: 13px;
}
.mlc-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 16px 0;
}
.mlc-total-row {
    font-size: 18px;
    font-weight: 600;
}
.mlc-total-amount {
    font-size: 24px;
    font-weight: 600;
    color: #000;
}
.mlc-savings {
    color: #00a650;
    font-size: 12px;
    text-align: right;
    margin-bottom: 16px;
}
.mlc-btn-primary {
    width: 100%;
    background-color: #3483fa;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.mlc-btn-primary:hover { background-color: #2968c8; }

@media (max-width: 768px) {
    .mlc-grid { grid-template-columns: 1fr; }
}

.wcf-shipping-methods-wrapper {
    margin-bottom: 20px;
}

.wcf-shipping-methods-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.wcf-shipping-method-options ul.woocommerce-shipping-methods {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wcf-shipping-method-options ul.woocommerce-shipping-methods li {
    margin: 0;
    display: inline-block;
}

.wcf-shipping-method-options ul.woocommerce-shipping-methods li input[type="radio"] {
    display: none;
}

.wcf-shipping-method-options ul.woocommerce-shipping-methods li label {
    display: inline-block;
    padding: 10px 20px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.wcf-shipping-method-options ul.woocommerce-shipping-methods li input[type="radio"]:checked + label {
    background: #fff;
    border-color: #3483fa;
    color: #3483fa;
    box-shadow: 0 0 0 1px #3483fa;
}