*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Google Sans", sans-serif;
}

*{
    -webkit-tap-highlight-color: transparent;
}
*{
    outline: none;
}

html, body{
    overflow-x: hidden;
}
/* HEADER HEADER HEADER */

header{

    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

header .arriba{

    position: relative;
    height: 90px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: top;
    flex-direction: row;
    width: 100%;
    border-bottom: 2px solid black;
}

header .arriba .logo{
    position: absolute;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;
}
header .arriba .logo img{
    height: 36px;
    display: block;
}

header .arriba .btns{
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-left: auto;
    margin-right: 80px;
    gap: 30px;
    z-index: 999;
}
.icons{
    height: 30px;
    cursor: pointer;
}

header .arriba .btns .search{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.search{
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 20px;

    border-radius: 10px;
    border: 2px solid black;

    background: rgba(0, 0, 0, 0.1);

    backdrop-filter: blur(10px);
}
.search img {height: 17px;}
.search input{
    background: transparent;
    border: none;
    outline: none;

    color: black;
}
.search input::placeholder{
    color: black;
}




.abajo{
    background-color: white;
    height: 40px;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid black;
    position: relative;
}

.options{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.options a{
    text-align: center;
    text-decoration: none;
    color: black;

    margin: 10px;
    font-size: 14px;
}

.coleccion{
    position: absolute;

    top: calc(100% + 2px);
    left: 50%;


    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;

    flex-direction: row;

    background: white;
    border-bottom: 2px solid black;

    transform:
        translateX(-50%)
        translateY(0px);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s,
        transform 0.3s;


    width: 100%;
    height: 250px;

    z-index: 9999;

}

.coleccion a h1{
    font-size: 16px;
    font-weight: 600;
}

.coleccion a h2{
    font-size: 13px;
    font-weight: 500;
}

.remeras, .pantalones, .bys, .camperas{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding: 15px;
    height: 220px;
}

.dropdown{
    background-color: transparent;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown:hover .coleccion{
    display: flex;
    transition: 1s;

    opacity: 1;

    visibility: visible;

    transform:
        translateX(-50%)
        translateY(0px);
        
}









.search-dropdown{
    position: relative;
}

.search-btn{
    display: none;
    background: transparent;
    border: none;

    cursor: pointer;
}
.search-btn img{
    height: 26px;
}


.search-menu{
    position: fixed;

    top: 90px; /* altura del header */
    left: 0;
    display: flex;
    justify-content: center;

    width: 100%;
    height: calc(100svh - 90px);

    background: white;

    opacity: 0;

    visibility: hidden;

    transition: 0.2s ease;

    z-index: 9998;

    padding: 40px;
}

.search-menu input{
    display: flex;
    align-items: center;
    gap: 10px;
    height: 50px;

    padding: 12px 20px;

    border-radius: 10px;
    border: 2px solid black;

    background: rgba(0, 0, 0, 0.1);

    backdrop-filter: blur(10px);
}

/* abierto */
.search-dropdown.active .search-menu{

    opacity: 1;

    visibility: visible;
}

@media (max-width: 1200px){
    header .arriba .logo{
    justify-content: flex-start;
    margin-left: 20px;
}
header .arriba .logo img{
    height: 30px;
}
header .arriba .btns .search{
    display: none;
}

.search-btn{
    display: flex;
}

header .arriba .btns{
    margin-right: 40px;
    gap: 20px;
}

.options a{
    text-align: center;
    text-decoration: none;
    color: black;

    margin: 12px;
    font-size: 12px;
}

.preg, .sobre{
    display: none;

}


}



/* FOOTER FOOTER FOOTER */



footer{
    height: 500px;
    background-color: rgb(36, 36, 36);
}

footer .up{
    width: 100%;
    height: 300px;
    background-color: rgb(17, 17, 17);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 50px;
}
.up h1{
    font-size: 25px;
}
.nav, .info, .redes, .contacto{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    height: 220px;
    gap: 15px;
    text-decoration: none;
    color: white;
}
.nav a, .info a, .redes a, .contacto a{
    text-decoration: none;
    color: white;
}
footer .contacto img{
    filter: invert(1);
    height: 15px;
}
.down .terms{
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}
footer .down{
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.izq img{
    height: 100px;
    filter: invert(1);
}
.der p{
    color: white;
}
.der a{
    text-decoration: none;
    color: white;
    font-size: clamp(10px,3vw,15px);
}



@media (max-width: 1200px){

    footer{
        height: 700px;
    }

    footer .up{
        gap: 15px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: 500px;
    }

    .up h1{
        font-size: 12px;
    }

    .nav, .info, .redes, .contacto{
        height: 180px;
    }

    .nav a, .info a, .redes a, .contacto a{
        font-size: 12px;
    }

    .izq img{
        height: 40px;
    }
}



/* ********************************************************************************************************************************************************************* */

.hotsale{
    width: 100%;
    height: 35px;
    background-color: rgb(255, 58, 58);

    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-bottom: 2px solid black;
}
.hotsale h1{
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 3px;
}

#hero{
    height: 600px;
    background: url(imgs/hero/banner_hero.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#hero .click{
    width: 100%;
    height: 100%;
    background-color: transparent;
    cursor: pointer;
}

@media (max-width: 800px){
    #hero{
        height: 600px;
        background: url(imgs/hero/banner_hero.png);
        background-position:calc(50% - 100px) center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}


.banner-info{
  width: 100%;
  height: 80px;

  display: flex;
  align-items: center;

  background: #ffffff;
  border-bottom: 2px solid black;
  border-top: 2px solid black;
}

.item{
  flex: 1;

  display: flex;
  align-items: center;
  gap: 14px;

  padding: 0 40px;

  color: black;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 500;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* líneas */
.item:not(:last-child){
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}

/* alineaciones */
.left{
  justify-content: center;

}

.center{
  justify-content: center;
}

.right{
  justify-content: center;
}

@media (max-width:800px){
    .banner-info{
        flex-direction: column;
        height: 230px;
    }
    .item:not(:last-child){
        border-right: none;
    }
    .item:not(:last-child){
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    }

    .item{
        padding: 0px 0;
        width: 230px;
    }
}




#destacados{
    width: 100%;
    height: 800px;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
}
#destacados .container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 90%;
    height: 90%;
}
#destacados .container .title{
    position: absolute;
    top: 20px;
}
#destacados .container .title h1{
    font-size: clamp(30px,4vw,40px);
}


.cards{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 40px;
}
.imagenes img{
    height: 200px;
    transition: 0.5s;
    border-radius: 12px;
}
.imagenes{
    overflow: hidden;
    height: 200px;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.imagenes img:hover{
    height: 240px;
}

.borde{
    background-color: transparent;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.card{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 340px;
    height: 450px;
    gap: 25px;
}
.card .data{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    width: 250px;
}
.card .data h2{
    font-size: clamp(12px,4vw,18px);
    font-weight: bold;
}
.card .data h3{
    font-size: clamp(12px,4vw,18px);
    font-weight: 600;
}
.card .data h4{
    color: green;
    font-size: clamp(10px,4vw,15px);
    font-weight: 300;
}

.botones{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 250px;
}
.botones a{
    padding: 12px;
    background-color: transparent;
    border-radius: 15px;
    outline: 2px solid black;
    text-decoration: none;
    color: black;
    font-size: clamp(11px,2vw,12px);
    margin: 4px;
}

.botones .compr{
    background-color: rgb(51, 51, 240);
    color: white;
    font-weight: bold;
    outline: 2px solid rgb(51, 51, 240);
}

@media (max-width:1600px){
    .cards{
    width: 100%;

    display: flex;
    justify-content: flex-start;
    gap: 30px;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 20px;

    scroll-behavior: smooth;
}

.cards::-webkit-scrollbar{
    display: none;
}



.card{
        min-width: 200px;

        height: 400px;

        background: rgb(231,231,231);
        border-radius: 10px;

        flex-shrink: 0;
    }

    .imagenes img{
        height: 170px;
        transition: 0.5s;
        border-radius: 12px;
    }
    .imagenes{
        overflow: hidden;
        height: 170px;
        width: 170px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .imagenes img:hover{
        height: 150px;
    }
}






#relleno{
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
        white 10%,
        transparent 100%
    ), url(/imgs/banner\ fondo\ destacados.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    border-bottom: 2px solid black;
}
#relleno .container{
    width: 100%;
    height: 100%;
    
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
#relleno .container img{
    display: block;
    height: 90%;
    transition: 0.5s;
    cursor: pointer;
}

#relleno .container img:hover{
    display: block;
    filter:
    drop-shadow(0 0 20px white)
    drop-shadow(0 0 20px white)
    drop-shadow(0 0 20px white)
    drop-shadow(0 0 100px rgba(255,255,255,0.8));
}


#info{
    height: 60px;
    background-color: rgb(139, 139, 139);
    color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(9px,2vw,14px);
}
#info p{
    width: 100%;
    text-align: center;
}