/* Estilos generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 56px; /* Para el navbar fijo */
}


/* Hero Section con imagen de fondo */
.hero-section {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), /* Overlay oscuro */
        url('../img/hero-bg.jpg') no-repeat center center; /* Ruta de tu imagen */
    background-size: cover; /* Cubre todo el espacio */
    height: 100vh; /* Altura completa de la pantalla */
    min-height: 600px; /* Altura mínima para móviles */
    display: flex;
    align-items: center; /* Centra verticalmente el contenido */
    position: relative;
    color: white; /* Color del texto */
}

/* Ajustes para el texto */
.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra para mejor contraste */
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Tarjetas de Juegos */
.game-card {
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.game-card:hover {
    transform: translateY(-10px);
}

/* Íconos de Pasos */
.step-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
}
/* Tarjetas de Productos */
.card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Badge de Descuento */
.badge {
    font-size: 0.8rem;
}
/* Botón flotante del carrito */
.carrito-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Ajuste para móviles */
@media (max-width: 576px) {
    .position-fixed.bottom-0.end-0 {
        right: 10px !important;
        bottom: 10px !important;
    }
    .carrito-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}
/* Badge de alerta de stock */
.stock-alert-badge {
    font-size: 0.7rem;
    z-index: 1;
    white-space: nowrap;
    border-radius: 4px;
}

/* Badge del contador del carrito */
.cart-counter-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 0.75rem;
    min-width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.35rem;
}

/* Botón del carrito */
.carrito-btn {
    position: relative;
}