/* Variables de Marca - ValenciaHosting */
:root {
    --primary-red: #D32F2F;
    --hover-red: #B71C1C;
    --bg-light: #F8F9FA;
    --text-dark: #212121;
    --border-color: #E0E0E0;
    --card-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Estructura General */
.vh-cart-container {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    margin-top: 30px;
}

.vh-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--card-shadow);
}

.vh-step-num {
    background-color: var(--primary-red);
    color: #fff;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 15px;
}

.vh-card-title {
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
}

/* Pasarelas de Pago */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.payment-gateway-card {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-gateway-card.active {
    border-color: var(--primary-red);
    background-color: rgba(211, 47, 47, 0.02);
}

/* Lateral del Resumen */
.sticky-sidebar {
    position: sticky;
    top: 20px;
}

.btn-confirmar-orden {
    background-color: var(--primary-red);
    color: #fff !important;
    font-weight: bold;
    font-size: 1.1rem;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-confirmar-orden:hover {
    background-color: var(--hover-red);
}

/* Alertas y avisos */
.vh-alert-info {
    background-color: #FFFDE7;
    border-left: 4px solid #FBC02D;
    padding: 15px;
    border-radius: 4px;
    font-size: 0.9rem;
}