.content2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    margin-top: 0px;
}

.content2 .product-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    width: 98%;
    margin: 0 auto;
}

.content2 .arriba {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

.content2 .product-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 48%;
    max-width: 400px;
    margin-right: 2%;
}

.content2 .main-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
}

.content2 .main-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
}

.content2 .thumbnail-images {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding: 10px 0;
    max-width: 98%;
    margin: 0 auto;
    justify-content: flex-start;
}

.content2 .thumbnail {
    width: auto;
    height: 70px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.content2 .thumbnail:hover {
    transform: scale(1.1);
}

.content2 .thumbnail-images img {
    width: 80px;
    height: 80px;
    cursor: pointer;
    opacity: 0.7;
}

.content2 .thumbnail-images img:hover {
    opacity: 1;
}

.content2 .product-details {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.content2 .product-details h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.content2 .price {
    font-size: 28px;
    color: #e63946;
    font-weight: bold;
    margin: 10px 0;
}

.content2 .add-to-cart {
    padding: 15px;
    background-color: #e63946;
    color: white;
    font-size: 18px;
    border: none;
    cursor: pointer;
    margin-top: 0;
}

.content2 .categoria-css {
    margin-top: 15px;
}

.content2 .discount {
    color: green;
    font-weight: bold;
}

.content2 .add-to-cart:hover {
    background-color: #d32f2f;
}

.content2 .abajo {
    width: 100%;
    margin-top: 20px;
}

.content2 .product-description {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 20px;
    text-align: justify;
}

@media (max-width: 768px) {
    .content2 .arriba {
        flex-direction: column;
        align-items: center;
    }

    .content2 .product-images,
    .content2 .product-details {
        width: 100%;
        margin: 0 auto;
    }

    .content2 .product-details {
        text-align: center;
        margin-top: 20px;
    }
}

.video-producto-wrapper {
    margin-top: 25px;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
}

.video-producto-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.video-producto {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-marca {
    width: 70%;
    max-width: 600px;
    height: auto;
    margin-bottom: 10px;
    display: block;
}
