/* Contenedor principal */
.product-container {
    display: flex;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;

}

/* Galería de imágenes */
.product-gallery {
    flex: 1;
    text-align: center;
}

.thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s;
}

.thumbnail:hover {
    transform: scale(1.1);
}

/* Información del producto */
.product-info {
    flex: 1;
    padding: 20px;
}

.product-info h2 {
    font-size: 2em;
}

.price {
    font-size: 1.5em;
    color: #ff6600;
    font-weight: bold;
    margin: 10px 0;
}



/* Botón de compra */
.buy-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: #ff6600;
    color: white;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

.buy-button:hover {
    background: #cc5200;
}

/* Descripción */
.description {
    margin-top: 20px;
    color: #666;
}

/* Responsividad */
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .size-options {
        justify-content: center;
    }

    .buy-button {
        width: 80%;
    }
}
