/* Estilos generales */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #333;
    color: #000000;
    padding: 15px 20px;
    text-align: center;
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 28px;
    color: #444;
    margin-bottom: 20px;
    text-align: center;
}

/* Contenedor de productos */
.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Detalles del producto */
.producto {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.producto h3 {
    font-size: 24px;
    color: #222;
    margin-bottom: 10px;
}

.producto .descripcion {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Estilos para el precio */
.precio {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.precio-original {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.precio-descuento {
    color: #e74c3c;
    font-weight: bold;
}

/* Estilos para las imágenes */
.producto-imagen {
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.producto-imagen img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.producto-imagen img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.titulo-imagen {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* Estilos para el mapa */
.mapa {
    margin-top: 20px;
}

.mapa h4 {
    font-size: 18px;
    color: #444;
    margin-bottom: 10px;
}

.mapa iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

/* Botón de volver */
.button-container {
    text-align: center;
    margin-top: 30px;
}

.button_top {
    display: inline-block;
    padding: 12px 25px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button_top:hover {
    background-color: #555;
}

/* Estilos para el footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    margin-top: 20px;
}

/* Responsividad */
@media (max-width: 768px) {
    .productos-grid {
        grid-template-columns: 1fr;
    }

    .producto-imagen img {
        width: 100%;
        height: auto;
    }

    .mapa iframe {
        height: 200px;
    }
}