/*======================================
Theme Name: Steel LMS
Theme URI: https://steellms.steeluniversity.org
Description: LMS Theme for steeluniversity
Version: 1.0
Author: steeluniversity
Author URI: https://steeluniversity.org
Template:  generatepress
License: GNU General Public License v2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html
======================================*/

/* ========================================
   WooCommerce Checkout - 2 columnas
   ======================================== */
.checkout-columns {
    display: flex;
    gap: 40px;
}

.checkout-left {
    flex: 1 1 58%;
    min-width: 0;
}

.checkout-right {
    flex: 1 1 38%;
    min-width: 280px;
    align-self: flex-start;
    position: sticky;
    top: 20px;
}

/* Fondo sutil en el resumen */
.checkout-right #order_review {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
}

/* Billing y shipping en 1 columna dentro de customer_details */
#customer_details .col-1,
#customer_details .col-2 {
    width: 100% !important;
    float: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .checkout-columns {
        flex-direction: column;
    }
    .checkout-right {
        position: static;
    }
}

/* ========================================
   Sticky Footer
   ======================================== */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.site-content {
    flex: 1;
}
