*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#000;
    color:#fff;
    overflow-x:hidden;
}

/* HEADER */

header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    padding:25px 40px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index:1000;
}

.menu-btn,
.cart-btn{

    width:55px;
    height:55px;

    background:#fff;
    color:#000;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    cursor:pointer;

    font-size:24px;
    font-weight:bold;
}

/* HERO */

.hero{

    min-height:100vh;

    background-image:url('../img/logo/fondo.jpg');

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;
}

.hero-overlay{

    width:100%;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;
}

.titulo-principal{

    font-size:72px;
    font-weight:700;
    letter-spacing:5px;
}

.subtitulo{

    margin-top:10px;

    font-size:20px;

    color:#d4d4d4;
}

.categorias-home{

    margin-top:60px;

    display:flex;

    gap:40px;

    flex-wrap:wrap;

    justify-content:center;
}

.categoria-home{

    width:280px;

    height:220px;

    border:2px solid #fff;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    transition:.3s;
}

.categoria-home:hover{

    background:#fff;
    color:#000;
}

.categoria-home h2{

    font-size:32px;

    margin-bottom:20px;
}

.categoria-home button{

    background:#fff;
    color:#000;

    border:none;

    padding:12px 24px;

    cursor:pointer;

    font-weight:600;
}

/* MENU LATERAL */

.sidebar{

    position:fixed;

    top:0;
    left:-300px;

    width:300px;
    height:100vh;

    background:#fff;

    padding:30px;

    transition:.4s;

    z-index:2000;
}

.sidebar.active{

    left:0;
}

.sidebar a{

    display:block;

    text-decoration:none;

    color:#000;

    margin:20px 0;

    font-size:18px;

    font-weight:600;
}

.close-btn{

    color:#000;

    font-size:28px;

    cursor:pointer;

    margin-bottom:30px;
}

/* CARRITO */

.cart-sidebar{

    position:fixed;

    top:0;
    right:-350px;

    width:350px;
    height:100vh;

    background:#fff;

    color:#000;

    padding:30px;

    transition:.4s;

    z-index:2000;
}

.cart-sidebar.active{

    right:0;
}

.cart-content{

    margin-top:20px;
}

.checkout-btn{

    width:100%;

    margin-top:30px;

    padding:15px;

    background:#000;

    color:#fff;

    border:none;

    cursor:pointer;
}

/* FOOTER */

footer{

    background:#000;

    border-top:1px solid #222;

    padding:30px;

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:30px;
}

.footer-item{

    font-size:14px;

    text-align:center;
}

/* RESPONSIVE */

@media(max-width:768px){

    .titulo-principal{

        font-size:42px;
    }

    .subtitulo{

        font-size:16px;
    }

    .categoria-home{

        width:90%;
        max-width:300px;
    }

    header{

        padding:20px;
    }
}
.catalogo{

    min-height:100vh;

    background:#000;

    color:#fff;

    padding-top:120px;

    text-align:center;
}

.catalogo h1{

    font-size:60px;

    margin-bottom:60px;
}

.subcategorias{

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;
}

.subcategoria{

    width:300px;

    height:220px;

    border:2px solid #fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;
}

.subcategoria:hover{

    background:#fff;

    color:#000;
}

.volver{

    color:#fff;

    text-decoration:none;

    font-size:18px;

    font-weight:600;
}
.productos{

    margin-top:50px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

    width:95%;

    max-width:1400px;

    margin-left:auto;

    margin-right:auto;
}
.producto{

    border:1px solid rgba(255,255,255,.15);

    background:rgba(0,0,0,.70);

    border-radius:15px;

    padding:15px;

    text-align:center;

    transition:.3s;

    max-width:320px;

    margin:auto;
}

.producto:hover{

    transform:translateY(-5px);

    box-shadow:0 0 20px rgba(255,255,255,.15);
}

.producto-img{

    width:100%;

    height:180px;

    overflow:hidden;

    border-radius:10px;

    margin-bottom:15px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#111;
}

.precio{

    font-size:22px;

    font-weight:700;

    margin:15px 0;
}

.producto select{

    width:100%;

    padding:10px;

    margin-bottom:15px;
}

.btn-producto{

    width:100%;

    padding:12px;

    background:#fff;

    color:#000;

    border:none;

    font-weight:700;

    cursor:pointer;
}
.producto-img img{

    width:100%;

    height:100%;

    object-fit:contain;

    display:block;
}
/* ITEMS DEL CARRITO */

.item-carrito{

    display:flex;

    align-items:center;

    gap:15px;

    padding-bottom:15px;

    margin-bottom:15px;

    border-bottom:1px solid #ddd;
}

.img-carrito{

    width:80px;

    height:80px;

    object-fit:cover;

    border-radius:8px;

    border:1px solid #ddd;

    flex-shrink:0;

    background:#f5f5f5;
}

.info-carrito{

    flex:1;
}

.info-carrito strong{

    display:block;

    margin-bottom:5px;
}

.info-carrito p{

    margin:3px 0;
}

.btn-eliminar{

    margin-top:8px;

    background:#c62828;

    color:#fff;

    border:none;

    padding:8px 12px;

    border-radius:5px;

    cursor:pointer;

    font-size:13px;

    font-weight:600;
}

.btn-eliminar:hover{

    background:#a30000;
}

.total-carrito{

    margin-top:20px;

    text-align:center;

    color:#000;

    font-size:22px;
}
.catalogo{

    background-image: url("../img/logo/fondo.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    position: relative;
    z-index: 1;
}

.catalogo::before{

    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.75);

    z-index: -1;
}
@media(max-width:768px){

    .producto{

        max-width:100%;
    }

    .producto-img{

        height:150px;
    }

}