@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-VariableFont_wght.ttf');
}

html{
    margin:0;
    padding:0;
    font-family: 'Montserrat';
    font-weight: 300;
    background-color: #fffafa;
}

h3{
    font-weight: 500;
    font-size: 0.7em;
    margin:5px 0;
}



body{
    position:relative;
    margin:0;
}

body, html {
    overflow: visible; /* Permitir que el sticky funcione */
}



header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding:20px;
    position: fixed;
    top:0;
    width:calc(100% - 40px);
    background-color: #fffafa;
    z-index: 99999999999;
    left:0;
}

header img{
    width:200px;
    height: auto;
}

#product_container {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    width: 90%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap:10px;
    z-index:99;
}

.producto__item{
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
}


.producto__portada img{
    width: 100%;
    
}

.img_p{
    width: 50%;
    overflow: hidden;
}

.descripcion{
    background-color: rgb(246, 242, 242);
    text-align: center;
    padding: 20px;
    display:none;
}

.des_vis{
    display: initial!important;
}

#bg{
    background-color: #edbdc3;
    width: 100%;
    height: calc(100vh);
    z-index: 0;
    position: fixed;
    top:0;
    left: 0;
}

.flex_column{
    height: 100%;
    display:flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 100%;
    padding-right: 15px;
}


.producto__portada {
    position: relative;
    height: calc(25vw);
    overflow: hidden;
    background-color: white;
    display: flex;
    flex-direction: row;
    gap:20px;
    background-color: #ffffffd1;
}

.precio {
    bottom: 12px;
    left: 10px;
    width: 100px;
    height: 30px;
    z-index: 999;
    background-color: #ffffff;
    color: #e74c5f;
    font-size: 1.1em;
    font-weight: 500;
    text-align: center;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    vertical-align: middle;
    z-index: 9999;
}

.precio p{
    margin:auto;
    font-size: 0.9em;
}

.ver_mas {
    bottom: 12px;
    right: 10px;
    width: 100px;
    height: 30px;
    z-index: 999;
    background-color: #e74c5f;
    color: #fff;
    font-size: 1.1em;
    font-weight: 500;
    text-align: center;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    vertical-align: middle;
    z-index: 9999;
}

.flex_row{
    display: flex;
    flex-direction: row;
    justify-content: end;
    gap: 10px;
}

.carta_btn{
    padding:20px;
    border-radius: 15px;
    background-color: #e74c5f;
    color:white;
    font-weight: 600;
    text-align: center;
}

#menus{
    display: flex;
    flex-direction: column;
    gap:10px;
    margin-top: 100px;
    padding: 20px;
}

.ver_mas p{
    margin:auto;
    font-size: 0.9em;
}


.descripcion_container {
    width: calc(100% - 40px);
    height: calc(85vw - 40px);
    text-align: center;
    position: absolute;
    z-index: 999;
    padding: 20px;
    background-color: #e8e6e2;
    bottom: calc(100%);
    transition: all 1s ease-in-out;
}

.descripcion_visible{
    display: initial !important;

}
.descripcion_container p {
    position:absolute;
    top: 40%;
    left: 50%;
    width: calc(100% - 40px);
    transform: translate(-50%, -50%);
}

#adorno {
    width: 250%;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 60%);
    z-index: 1;
}


@media screen and (min-width: 1000px){
    #product_container {
        justify-content: center;
        margin-top: 100px;
        display: flex;
        flex-direction: column;
        width: 90%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        gap: 10px;
        z-index: 99;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .producto__item {
        display: flex;
        flex-direction: column;
        border-radius: 20px;
        overflow: hidden;
    }

    .producto__portada {
        position: relative;
        background-color: white;
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 300px;
        height: fit-content;
        background-color: #ffffffd1;
    }

    .img_p{
        width:100%;
        overflow: unset;
    }

    .flex_column{
        text-align: center;
        font-size: 1.3em;
        gap:10px;
    }

    .flex_row {
        display: flex;
        flex-direction: row;
        justify-content: end;
        gap: 10px;
        justify-content: center;
    }

    .info{
        font-size: 0.8em;
        padding-bottom:20px;
    }

    .descripcion {
        background-color: rgb(246, 242, 242);
        text-align: center;
        padding: 20px;
        width: calc(300px - 40px);
        display: none;
        border-radius: 0 0 30px 30px;
    }

    .ver_mas:hover{
        cursor: pointer;
    }

    .producto__portada img {
    width: 100% !important;
}
.producto__portada img {
        width: 100% !important;
        max-height: 300px;
        min-height: 300px;
    }

}