
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; margin: 0; background-color: #f4f4f9; color: #333; }
header { background-color: #2c3e50; color: white; padding: 20px; text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
header h1 { margin: 0; font-weight: 300; }
.disclaimer { font-style: italic; opacity: 0.9; margin-top: 10px; font-size: 0.9em; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; padding: 25px; }
.product-card { background-color: white; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); overflow: hidden; text-align: center; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 8px 16px rgba(0,0,0,0.2); }
.product-card img { width: 100%; height: 280px; object-fit: cover; display: block; cursor: pointer; } /* Added cursor pointer */
.product-card .card-info { padding: 15px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.product-card h3 { font-size: 1.1em; margin: 0 0 5px; }
.product-card .category { font-size: 0.9em; color: #777; margin: 0 0 10px; }
.product-card .price { font-size: 1.2em; font-weight: bold; color: #e74c3c; margin: 10px 0 0; }
/* NUEVO: Estilos para tabla de precios */
.price-table { width: 100%; margin-top: 10px; border-collapse: collapse; font-size: 0.9em; }
.price-table td { padding: 4px 8px; text-align: left; border-bottom: 1px solid #eee; }
.price-table td:last-child { text-align: right; font-weight: bold; color: #333; }
footer { text-align: center; padding: 20px; font-size: 0.8em; color: #777; }

/* NUEVO: Estilos para el Modal Lightbox */
.modal { display: none; position: fixed; z-index: 1000; padding-top: 50px; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.9); }
.modal-content { margin: auto; display: block; max-width: 90%; max-height: 90vh; }
.close { position: absolute; top: 15px; right: 35px; color: #f1f1f1; font-size: 40px; font-weight: bold; transition: 0.3s; }
.close:hover, .close:focus { color: #bbb; text-decoration: none; cursor: pointer; }

/* NUEVO: Estilos para botón flotante de WhatsApp */
.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 40px; right: 40px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 2px 2px 3px #999; z-index: 100; display: flex; align-items: center; justify-content: center; text-decoration: none; }
.whatsapp-float:hover { background-color: #128C7E; }
