/* 2. Menha Tiktok Feed - Direct Iframe Luxury Style */
.menha-tiktok-feed { padding: 40px 0; }

.menha-tiktok-item { 
    border-radius: 24px; 
    overflow: hidden; 
    background: #000; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.5); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    border: 1px solid rgba(233, 178, 17, 0.2); 
    position: relative; 
    width: 100%;
    padding-top: 177.77%; /* Tỉ lệ 9:16 chuẩn tuyệt đối */
    height: 0;
}

.menha-tiktok-item iframe { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

.menha-tiktok-item:hover { 
    transform: translateY(-12px); 
    border-color: #E9B211; 
    box-shadow: 0 30px 80px rgba(233, 178, 17, 0.25); 
}

@media screen and (max-width: 767px) {
    .menha-tiktok-feed { padding: 20px 20px; }
    .menha-tiktok-item { margin-bottom: 25px; }
}
