/**
 * TikTok Product Video CSS
 * Simple video section below gallery
 */

.tiktok-video-section {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tiktok-video-section iframe {
    width: 100%;
    max-width: 400px;
    height: 700px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .tiktok-video-section iframe {
        height: 550px;
        max-width: 100%;
        border-radius: 8px;
    }

    .tiktok-video-section {
        margin: 15px 0;
    }
}