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

/* Contenedor principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 80px; /* Espacio para la cabecera */
}

/* Contenedor de contenido */
.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px 0;
}

/* Contenedor del producto */
.product-container {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 80%;
    max-width: 1000px;
    padding: 30px;
    margin: 0 auto;
    text-align: center;
}

/* Nombre del producto */
.product-name {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Imágenes del producto */
.product-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.product-image {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.product-image:hover {
    transform: scale(1.1);
}

/* Descripción del producto */
.description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
    padding: 10px 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

/* Precio del producto */
.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e74c3c;
    margin-top: 20px;
    margin-bottom: 30px;
}

/* Botones de acción */
.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.add-to-cart {
    background-color: #27ae60;
    color: white;
    border: none;
}

.add-to-cart:hover {
    background-color: #2ecc71;
    transform: translateY(-2px);
}

.add-to-favorites {
    background-color: #f39c12;
    color: white;
    border: none;
}

.add-to-favorites:hover {
    background-color: #f1c40f;
    transform: translateY(-2px);
}

.back {
    background-color: #3498db;
    color: white;
    border: none;
}

.back:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Pie de página */
.footer {
    margin-top: 50px;
    padding: 20px;
    background-color: #333;
    color: white;
    text-align: center;
}
