body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-images {
    flex: 1;
    max-width: 60%;
    margin-right: 20px;
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slider img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 24px;
    z-index: 1000;
}

.arrow.left {
    left: 10px;
}

.arrow.right {
    right: 10px;
}

.product-details {
    flex: 1;
    max-width: 35%;
}

h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.price {
    font-size: 32px;
    color: #e67e22;
    margin-bottom: 20px;
}

.product-description {
    color: #777;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 20px;
    font-size: 16px;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.btn-whatsapp {
    background-color: #25d366;
}

.btn-whatsapp:hover {
    background-color: #1ebe5c;
}

.btn-ml {
    background-color: #3483fa;
    color: #fff;
}

.btn-ml:hover {
    background-color: #2868c7;
}

.video-container {
    margin-top: 30px;
    position: relative;
    padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.short-description {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 16px;
    color: #555;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sticky-menu {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.sticky-menu a {
    color: #e67e22;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.sticky-menu a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .product-header {
        flex-direction: column;
    }

    .product-images, .product-details {
        max-width: 100%;
        margin-right: 0;
    }

    .video-container {
        margin-top: 20px;
    }
}
