
.hero-home{
    height:350px;
    border-radius:15px;
    background:url('img/banner.jpg') center center/cover;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    margin:20px auto 40px;
}

.hero-home h1{
    font-size:50px;
    font-weight:bold;
    text-shadow:2px 2px 10px rgba(0,0,0,.5);
}

.hero-home p{
    font-size:20px;
}

.seccion-home{
    margin:40px 0;
}

.seccion-home h2{
    margin-bottom:15px;
    color:#222;
}

.slider-productos{
    display:flex;
    gap:15px;
    overflow:hidden;
    scroll-behavior:smooth;
    padding-bottom:10px;
}

.card-home{
    min-width:220px;
    max-width:220px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    text-decoration:none;
    color:#333;
    box-shadow:0 2px 8px rgba(0,0,0,.1);
    transition:.3s;
}

.card-home:hover{
    transform:translateY(-4px);
}

.card-home img{
   width:100%;
    height:180px;
    object-fit:contain;
    background:#fff;
}

.card-home-info{
    padding:10px;
}

.card-home-titulo{
    font-weight:bold;
    min-height:25px;
}

.card-home-descripcion{
  font-size:11px;
    color:#777;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}



.card-home-precio{
    color:#e53935;
    font-size:18px;
    font-weight:bold;
}

.precio-anterior{

    text-decoration: line-through;

    color:#999;

    font-size:14px;

    margin-bottom:3px;

}

.precio-promocion{

    color:#dc3545;

    font-size:20px;

    font-weight:bold;

}

.card-home-precio{

    color:#198754;

    font-size:20px;

    font-weight:bold;

}
.badge-descuento{

    background:#dc3545;

    color:#fff;

    display:inline-block;

    padding:3px 8px;

    border-radius:6px;

    font-size:12px;

    margin-top:5px;

}