/*=========================
    ESTILOS GENERALES
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f5f5;
    color:#222;
}

/*=========================
        HEADER
==========================*/

.navbar{
    background:#000 !important;
    box-shadow:0 3px 12px rgba(0,0,0,.4);
}

.navbar-brand{
    color:#fff !important;
    font-size:30px;
    font-weight:bold;
}

.nav-link{
    color:white !important;
    margin:0 10px;
    transition:.3s;
    font-weight:500;
}

.nav-link:hover,
.nav-link.active{
    color:#ff2b2b !important;
}

.bi-cart3{
    cursor:pointer;
    transition:.3s;
}

.bi-cart3:hover{
    color:#ff2b2b !important;
    transform:scale(1.2);
}

/*=========================
        HERO
==========================*/

.hero{
    background:linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    url("https://shared.fastly.steamstatic.com/store_item_assets/steam/apps/3354750/79c5a87b61a396cc6e6b69e3a083727f175dea83/header.jpg?t=1781202372");
    background-size:cover;
    background-position:top;
    color:white;
    padding:180px 0;
}

.hero h1{
    font-size:60px;
    font-weight:bold;
    color:#ff2b2b;
}

.hero p{
    font-size:20px;
    margin:25px 0;
    line-height:1.8;
}

.hero img{
    border-radius:15px;
    box-shadow:0 0 20px rgba(255,0,0,.4);
}

/*=========================
        BOTONES
==========================*/

.btn-danger{
    background:#d90429;
    border:none;
    transition:.3s;
}

.btn-danger:hover{
    background:#ff2b2b;
    transform:translateY(-4px);
}

.btn-dark:hover{
    background:#d90429;
}

/*=========================
      BENEFICIOS
==========================*/

section i{
    transition:.4s;
}

section i:hover{
    transform:scale(1.2);
}

section h4{
    margin-top:15px;
    font-weight:bold;
}

/*=========================
      PRODUCTOS
==========================*/

.producto{
    border:none;
    overflow:hidden;
    transition:.4s;
    margin-bottom:30px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.producto img{
    height:260px;
    object-fit:cover;
}

.producto:hover{
    transform:translateY(-12px);
    box-shadow:0 15px 30px rgba(0,0,0,.3);
}

.card-body{
    text-align:center;
}

.card-body h5{
    font-weight:bold;
}

.card-body h4{
    color:#d90429;
    margin:15px 0;
}

/*=========================
      TITULOS
==========================*/

h2{
    font-size:40px;
    font-weight:bold;
    color:#111;
    position:relative;
}

h2::after{
    content:"";
    width:120px;
    height:4px;
    background:#d90429;
    display:block;
    margin:12px auto;
}

/*=========================
      FOOTER
==========================*/

footer{
    background:#111;
}

footer h3,
footer h4{
    color:#ff2b2b;
}

footer p{
    color:#ddd;
}

footer a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

footer a:hover{
    color:#ff2b2b;
}

footer i{
    cursor:pointer;
    transition:.3s;
}

footer i:hover{
    color:#ff2b2b;
    transform:scale(1.3);
}

/*=========================
      SCROLLBAR
==========================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#222;
}

::-webkit-scrollbar-thumb{
    background:#d90429;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#ff2b2b;
}

/*=========================
      RESPONSIVE
==========================*/

@media(max-width:992px){

.hero{
    text-align:center;
    padding:80px 0;
}

.hero h1{
    font-size:45px;
}

.hero img{
    margin-top:40px;
}

}

@media(max-width:768px){

.hero h1{
    font-size:36px;
}

.hero p{
    font-size:18px;
}

.navbar-brand{
    font-size:24px;
}

h2{
    font-size:30px;
}

.producto img{
    height:220px;
}

footer{
    text-align:center;
}

}


/* Ajustes para el estilo del wireframe */
.card { border-radius: 0; } /* Elimina las esquinas redondeadas para un look más rígido */

/* Ajuste del título "TIENDA" */
.col-md-9 h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #000;
}
.col-md-9 h2::after {
    display: none; /* Elimina la línea roja decorativa para que sea simple */
}

/* Ajuste de etiquetas de filtros */
.form-check-label {
    font-size: 14px;
    margin-left: 5px;
    cursor: pointer;
}
.fw-bold {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}


/*---------------------*/
/* Asegura que la tarjeta sea alargada */
.card {
    min-height: 450px; /* Ajusta este valor según qué tan alargado quieras el diseño */
    background: #f8f9fa;
    border-radius: 0;
}

/* Opcional: Para el área gris superior del wireframe */
.card-img-top-wrapper {
    background-color: #f0f0f0; /* Color de fondo del área de imagen */
    border-bottom: 1px solid #ddd;
    min-height: 450px; /* Esto hará que la parte superior sea más grande */
}

/* Ajuste del botón */
.btn-outline-dark {
    border-radius: 0;
    font-size: 14px;
    padding: 10px;
}
.card-img-top-wrapper img {
    width: 100%;
    height: 100%;
    object-fit : cover; 
}
.card-img-top-wrapper {
    background-color: #f0f0f0;
    height: 250px; /* Puedes ajustar este número para que la tarjeta sea más o menos larga */
    overflow: hidden; /* Esto oculta lo que sobra de la imagen */
    display: flex;
    align-items: center;
    justify-content: center;
}




.banner-ofertas {
    /* Aquí aplicas la imagen de fondo */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url(https://skate-outlet.com/cdn/shop/files/f1dfa704-a8b4-49f7-a86a-fa2643f75096_2000x.jpg?v=1628912084);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 450px;
    display: flex;
    align-items: center;
}
