body{
    width: 100%;
    height: 100%;
    display: flex;
    background: linear-gradient(to right, #fff5ec, #edfbff);
    margin: 0;
    align-items: center;
    justify-content: center;
    /*font-family:'Courier New', Courier, monospace !important;*/
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif !important;
    font-weight: 100 !important;
    font-style: oblique !important;
}

nav{
    font-style: oblique !important;
    display: flex;
    background-color: #f9fcff;
    color: #000000;
    font-size: 18px;
    width: 100%;
    justify-content:space-around;
    align-items: center;
    z-index: 1000;
    gap: 200px;
    height: 90px;
}
nav p{
    color: #000000 !important;
    font-size: 20px !important;
}

nav a{
    color: #000000 !important; 
    font-size: 20px;
    margin-bottom: 10%;
    font-weight: 300 !important;
}

nav a:hover{
    color: #4964ff !important;
}

.scretch{
    display: flex;
    justify-content: right !important;
    align-items: center;
    gap: 20px;
    margin-top: 1%;
}

.scretch input{
    border-radius: 10px;
}

.scretch img{
    transition: 0.3s;
}

.scretch img:hover{
    transform: scale(1.05);
}

.ContactoNav{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ContactoNav2{
    display: flex;
    align-items: center;
    justify-content: center;
}

.ContactoNav img{
    height: 50px;
    width: 50px;
}

.ContactoNav2 a{
    padding-left: 10px;
    padding-right: 10px;
}

.nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-size: 100%;
    
}

.navegacion{
    width: 100%;
    height: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    font-size: 20px;
    background: linear-gradient(to right, #000000, #111111);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(28, 28, 29, 0.5);
}

.navegacion a{
    text-decoration: none;
    font-weight: 400;
    color: rgb(39, 42, 44);
    padding: 10px;
    color: #ffffff;
    background-color: #181818;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.navegacion a:hover{
    color: #ffd000;
    background-color: #111111;
}

.Card{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    margin-top: 25px;
    width: 350px;
    max-height: 550px;
    cursor: pointer;
    transition: 0.3s;
    justify-content: left;
}

.Card:hover{
    transform: scale(1.05);
}

.Card img{
    width: 350px;
    height: 400px;
    box-shadow: 0 3px 30px rgba(194, 143, 84, 0.108);
    margin-bottom: -7px;
    object-fit: cover;
    margin-top: -15px;

}

.Card h1{
    font-size: 20px !important;
    font-weight: 400 !important;
    text-decoration: none; /* Elimina el subrayado del enlace */
    text-shadow: 0 0px 10px rgba(218, 218, 218, 0.142);;
    margin-left: 5px;
    margin-right: 5px;
    z-index: 999;

}

.Card .informacion{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -25px;
    text-decoration: none;
}

.Card .informacion h2{
    font-size: 16px !important;
    font-weight: 200 !important;
}

.Card .informacion .Talle{
    display: flex;
    align-items: center;
}

.Card .informacion h3{
    padding-left: 2.5px;
    padding-right: 3px;
    border-radius: 100%;
    font-size: 16px !important;
    margin-left: 5px;
    font-weight: 400;
}

.Card .informacion .Medidas{
    font-size: 16px !important;
    margin-top: -15px;
    font-weight: 200;
}

.Card .informacion .Medidas2{
    margin-top: -15px;
    font-size: 18px;
    color: #161616;
    font-weight: 400;
}

.container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
    margin-top: 50px;
}

.Cabezudos{
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Cabezudos h1{
    font-size: 50px;
}

.Card {
    text-align: center; /* Asegura que el contenido dentro de la tarjeta esté centrado */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.Card a {
    margin-top: 15px;
    text-decoration: none; /* Elimina el subrayado del enlace */
    color: inherit; /* Mantiene el color del texto */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* Asegurar que las categorías se apilen una debajo de la otra */
#productosContainer {
    display: flex;
    flex-direction: column; /* Apila las categorías en columnas */
    gap: 40px; /* Espaciado entre categorías */
}

/* Cada categoría se mostrará en bloque */
.categoria {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.categoria h2{
    font-size: 25px;
    font-weight: 200;
}

/* Mantener la grilla de 4 productos por fila */
.categoriaContainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 4 columnas por fila */
    gap: 120px;
    justify-items: center;
}

.orden{
    display: flex;
    justify-content: left;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: left !important;
}

/* Ajuste responsivo */
@media (max-width: 1024px) {
    .categoriaContainer {
        grid-template-columns: repeat(3, 1fr); /* 3 columnas por fila */
    }
}

@media (max-width: 768px) {
    .categoriaContainer {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas por fila */
    }
}

@media (max-width: 480px) {
    .categoriaContainer {
        grid-template-columns: repeat(1, 1fr); /* 1 columna por fila */
    }
}

#preloader {
    position: fixed;
    width: 100%;
    height: 150%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ddd;
    border-top: 5px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#productosContainer {
    display: none; /* Se oculta hasta que los productos carguen */
}

#welcomeContainer {
    display: flex;
    flex-direction: column; /* Apila los elementos verticalmente */
    align-items: center; /* Centra los elementos */
}

#welcomeContainer p{
    font-size: 25px;
    font-weight: 600;
    color: #ffffff;
}


#logoutButton {
    font-size: 25px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    margin-top: -20px;
}

#logoutButton:hover {
    color: #3a3a3a;
}

.QTitulo h1{
    color: #000000;
    font-size: 48px;
    margin-top: 100px;
    font-family:'Times New Roman', Times, serif !important;
    font-weight: 700 !important;
    font-style: oblique !important;
}

.QTexto {
    color: #0f0f0f;
    font-family:'Times New Roman', Times, serif !important;
    font-weight: 200 !important;
    text-align: justify;
    font-style: oblique !important;
    font-size: 22px;
    margin-top: 20px;
    width: 75%;
    margin-bottom: 60px;
}

#Contacto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    margin-top: 25px;
    text-decoration: none !important; /* Elimina el subrayado del enlace */
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif !important;
}

#Contacto .WhatsApp a{
    font-size: 10px;
    font-weight: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(28, 28, 29, 0.25);
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif !important;
    color: #000000;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
}

#Contacto .MensajeD a{
    font-size: 10px;
    font-weight: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(28, 28, 29, 0.25);
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif !important;
    color: #000000;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
}

#Contacto .Instagram a{
    font-size: 10px;
    font-weight: 100 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(28, 28, 29, 0.25);
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif !important;
    color: #000000;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
}

#Contacto .Instagram a:hover {
    transform:scale(1.1);
}

#Contacto .WhatsApp a:hover {
    transform:scale(1.1);
}
#Contacto .MensajeD a:hover {
    transform:scale(1.1);
}

.ContactoC {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 200;
    margin-top: 70px;
    margin-bottom: 140px;
    
}

.ver-mas-btn {
    
    color: white;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif !important;
    font-weight: 100 !important;
    background-color: #141414;
    padding: 10px;
    border-radius: 10px;
    font-size: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    border: none;
    cursor: pointer;
    margin-top: 70px;
    margin-bottom: 40px;
}

.ver-mas-btn:hover {
    color: #fffadc;
    background-color: #292929;
}













