/* =================================================================
   GOKIEBOX CHECKOUT (ONE PAGE STYLE - FINAL WIDE & MINT)
   ================================================================= */

/* 1. OCULTAR TODAS LAS VARIANTES DE SIDEBAR (Sin cambios) */
#order-standard_cart .cart-sidebar,
#order-standard_cart .sidebar,
#order-standard_cart .col-md-3.sidebar { 
    display: none !important; 
}

/* 2. CONTENIDO MÁS ANCHO Y CENTRADO */
#order-standard_cart .cart-body {
    width: 100% !important;
    max-width: 1300px !important; /* Aumentado de 1000px a 1300px */
    margin: 0 auto !important;
    float: none !important;
    flex-basis: 100% !important;
}

/* 3. EXPANDIR SELECCIÓN DE PRODUCTOS */
#order-standard_cart .main-content,
#order-standard_cart .col-md-9 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding: 0 !important;
}

/* 4. BARRA DE TÍTULOS (Producto/Opciones) - COLOR MENTA */
#order-standard_cart .view-cart-items-header {
    background-color: #1ABC9C !important; /* Menta Gokiebox */
    color: #fff !important;
    border-radius: 8px 8px 0 0;
    padding: 15px 20px;
    font-weight: 600;
}

/* 5. ESTILO DE CAJAS (Items del carrito) */
#order-standard_cart .view-cart-items .item {
    border: 1px solid #eee;
    border-radius: 0 0 8px 8px; /* Redondear solo abajo */
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    padding: 25px;
}

/* 6. BOTÓN "COMPRAR" (Checkout) - COLOR MENTA */
#order-standard_cart .btn-checkout, 
#order-standard_cart .btn-success {
    background-color: #1ABC9C !important;
    border-color: #1ABC9C !important;
    color: #fff !important;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
    transition: all 0.3s ease;
}

#order-standard_cart .btn-checkout:hover,
#order-standard_cart .btn-success:hover {
    background-color: #16a085 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 188, 156, 0.4);
}

/* 7. BOTÓN "VACIAR CARRO" (Discreto) */
#order-standard_cart #btnEmptyCart {
    color: #888 !important;
    background: transparent !important;
    border: 1px solid #ddd !important;
    border-radius: 4px;
    padding: 5px 10px;
    margin-top: 10px;
    font-size: 12px;
}
#order-standard_cart #btnEmptyCart:hover {
    background: #f9f9f9 !important;
    color: #d9534f !important; /* Rojo al pasar el mouse */
    border-color: #d9534f !important;
}

/* 8. RESUMEN DE PEDIDO (Sticky Box) */
#order-standard_cart .order-summary {
    background: #fff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    border-radius: 12px;
    border: none;
    margin-top: 0;
}

/* Encabezado gris oscuro del resumen */
#order-standard_cart .order-summary h2 {
    background-color: #34495e !important; /* Gris azulado oscuro */
    color: #fff !important;
    padding: 15px;
    border-radius: 12px 12px 0 0;
    text-align: center;
    font-size: 18px;
    margin: 0;
}

/* Títulos y Limpieza Móvil */
#order-standard_cart .header-lined { text-align: center; margin-bottom: 40px; }
#order-standard_cart .header-lined h1 { font-weight: 800; color: #333; font-size: 32px; }
#order-standard_cart .sidebar-collapsed { display: none !important; }

/* =================================================================
   GOKIEBOX FINAL STEP (Pantalla de Redirección de Pago)
   ================================================================= */

/* 1. CAJA DE MENSAJE "ESPERE..." (Adiós Azul Celeste) */
.alert-info {
    background-color: #effaf8 !important; /* Tu fondo Menta Suave */
    border: 1px solid #1ABC9C !important; /* Borde Menta */
    color: #16a085 !important;            /* Texto Verde Oscuro */
    font-weight: 500;
    border-radius: 8px;
}

/* 2. BARRA DE CARGA (Progress Bar) */
.progress-bar {
    background-color: #1ABC9C !important; /* Menta Gokiebox */
    box-shadow: none;
}

/* Si tiene animación rayada */
.progress-bar-striped {
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent) !important;
}

/* 3. TEXTO DE DATOS BANCARIOS (Si aparece ahí) */
#main-body .text-center p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}