body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
header {
    background-color: #333;
    color: #fff;
    text-align: center;
}

/* Nuevos estilos para el banner principal en el header */
.main-banner-container {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.main-header-banner {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px; /* Limita la altura máxima del banner en pantallas grandes */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.container {
    width: 90%;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
h1, h2 {
    color: #333;
    text-align: center;
}
.product-category {
    margin-bottom: 30px;
}
.product-category h2 {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: left;
}

/* Contenedor para la imagen del banner de la categoría */
.banner-image-container {
    text-align: center;
    margin-bottom: 30px;
}

/* Estilos para la imagen del banner de la categoría */
.category-banner-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}
.product-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.product-item figure {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-item img {
    max-width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 4px;
}
.product-item h3 {
    margin-top: 0;
    font-size: 1.2em;
    color: #555;
}
.product-item figcaption {
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}
.product-item p {
    font-size: 0.9em;
    color: #666;
    margin: 5px 0;
}
.main-attribute {
    font-weight: bold;
    color: #007bff;
}
.item-full-description {
    font-size: 0.85em;
    color: #555;
    margin-top: 10px;
    text-align: justify;
}
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: #fff;
    margin-top: 30px;
}

/* Media Queries para responsividad */
@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .main-header-banner {
        max-height: 200px; /* Reducir la altura del banner en móviles */
    }
}

@media (max-width: 380px) {
    .container {
        width: 95%;
        padding: 10px;
    }
}
