html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
/* Estilos para el video de fondo */
.hero-video-container {
    position: relative;
    height: 60vh; /* Altura del banner, ajústala a tu gusto */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    margin-bottom: 2rem;
}

    .hero-video-container video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: 0;
        transform: translateX(-50%) translateY(-50%);
        background-size: cover;
    }

    .hero-video-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5); /* Sombra para que el texto resalte */
        z-index: 1;
    }

.hero-content {
    position: relative; /* Asegura que el contenido esté sobre la sombra y el video */
    z-index: 2;
}

    .hero-content h1, .hero-content p {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Sombra en el texto */
    }
}

/* Animación para las tarjetas de producto */
.product-card {
    transition: transform .2s ease-in-out, box-shadow .2s ease-in-out;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    }
/* --- Estilos para el nuevo fondo de la página --- */

/* 1. Aplicamos la imagen de fondo al cuerpo de la página */
body {
    background-image: url('fondo de pantalla de sneakers.png');
    background-size: cover; /* Hace que la imagen cubra toda la pantalla */
    background-position: center;
    background-attachment: fixed; /* Mantiene el fondo fijo al hacer scroll */
    background-color: #333; /* Un color oscuro de respaldo por si la imagen no carga */
}

/* 2. Creamos un contenedor para el contenido principal */
.content-wrapper {
    background-color: rgba(255, 255, 255, 0.95); /* Fondo blanco semi-transparente */
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* Estilos para la sección "Comprar por Marca" */
.brand-card {
    border: 1px solid #e0e0e0;
    padding: 1.5rem 1rem;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
    transition: transform .2s ease-in-out, box-shadow .2s ease-in-out;
}

    .brand-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        border-color: #0d6efd;
    }

.brand-link {
    text-decoration: none;
    color: inherit;
}