

/* Estilos generales */

@font-face {
    font-family: 'Gilam';
    src: url('fonts/GilamHeavy.otf') format('truetype');
    font-weight: 900; /* Heavy */
    font-style: normal;
}

@font-face {
    font-family: 'Gilam';
    src: url('fonts/GilamBold.otf') format('truetype');
    font-weight: bold; /* Bold */
    font-style: normal;
}

@font-face {
    font-family: 'Gilam';
    src: url('fonts/GilamBook.otf') format('truetype');
    font-weight: normal; /* Book */
    font-style: normal;
}


/* ✅ Estilos generales */
body {
    font-family: 'Gilam', sans-serif;
    margin: 20px;
    padding: 0;
    background-color: #ffffff;
}
.tienda {
    max-width: 1200px;
    margin: 40px auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

/* Contenedor principal flex */
.contenedor-tienda {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Info */
.info-tienda {
    flex: 1 1 55%;
}

.info-tienda h1 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.info-tienda p {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 18px;
    border-left: 4px solid #0d6efd;
    padding-left: 12px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Imagen */
.imagen-tienda {
    flex: 1 1 40%;
    text-align: center;
}

.imagen-tienda img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contenedor-tienda {
        flex-direction: column-reverse;
        align-items: center;
    }

    .info-tienda, .imagen-tienda {
        width: 100%;
    }

    .imagen-tienda img {
        max-height: 300px;
    }

    .info-tienda h1 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .tienda {
        padding: 20px;
    }

    .info-tienda h1 {
        font-size: 24px;
    }

    .info-tienda p {
        font-size: 15px;
        padding-left: 10px;
    }

    .imagen-tienda img {
        max-height: 220px;
    }
}



/* ✅ Card de contacto */
.contact-card {
    background-color: #f8f1e4; /* Color crema suave */
    border-radius: 12px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* ✅ Títulos dentro del Card */
.contact-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* ✅ Estilos de los enlaces */
.contact-links a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    margin: 8px 0;
}

/* ✅ Íconos */
.contact-links img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

/* ✅ Responsivo para pantallas más pequeñas */
@media (max-width: 600px) {
    .contact-card {
        width: 100%;
        text-align: center;
    }

    .contact-links a {
        justify-content: center;
    }
}



/* ✅ Contenedor de los productos */
#contenedorProductos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 10px;
}

/* ✅ Tarjeta de producto más pequeña */
.producto-card {
    width: 180px; /* Antes era más grande, ahora es más compacto */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 10px;
    transition: transform 0.2s ease-in-out;
    font-size: 12px; /* Reducimos el tamaño del texto */
}

.producto-card:hover {
    transform: scale(1.03);
}

/* ✅ Imagen del producto más pequeña */
.producto-card img {
    width: 100%;
    height: 120px; /* Se reduce la altura */
    object-fit: cover;
    border-radius: 5px;
}

/* ✅ Título más compacto */
.producto-card h3 {
    font-size: 14px; /* Reducimos el tamaño del título */
    margin: 5px 0;
    font-weight: bold;
    color: #333;
}

/* ✅ Descripción más corta */
.producto-card p {
    font-size: 11px;
    color: gray;
    margin: 3px 0;
}

/* ✅ Estilos para la información extra */
.producto-card strong {
    font-size: 12px;
    color: #222;
}

/* ✅ Ajuste en móviles */
@media (max-width: 600px) {
    .producto-card {
        width: 140px; /* Más pequeño en pantallas chicas */
        padding: 8px;
    }
    
    .producto-card img {
        height: 100px;
    }
    
    .producto-card h3 {
        font-size: 12px;
    }
    
    .producto-card p {
        font-size: 10px;
    }
}


.tienda_redes {
    max-width: 1100px;
    margin: 40px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Estilo de la barra de contacto */
.barra-contacto {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
    background-color: #fff;
}

/* Estilo para cada elemento */
.barra-contacto a, .barra-contacto p {
    display: flex;
    align-items: center;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    margin: 0 10px;
}

/* Estilo para las imágenes de los íconos */
.barra-contacto img {
    width: 30px;
    height: 30px;
    margin-right: 8px;
}

/* Efecto hover */
.barra-contacto a:hover {
    color: #0d47a1;
    text-decoration: underline;
}