
      .hero-wrap.third-height-banner {
        height: 33vh; /* 1/3 màn hình */
        min-height: 220px;
        max-height: 300px;
        background-size: cover;
        background-position: center;
        position: relative;
      }
    

          /* điều hướng nội dung và sticky sidebar*/
            .product-section-nav {
              position: sticky;
              top: 80px;
              background-color: #fff;
              padding: 15px 0;
              border-bottom: 1px solid #ddd;
              z-index: 10;
            }

            .product-section-nav ul {
              list-style: none;
              padding-left: 0;
              display: flex;
              flex-wrap: wrap;
              gap: 20px;
              font-weight: 600;
            }

            .product-section-nav li {
            cursor: pointer;
            }

            .product-section {
              margin-bottom: 50px;
            }

            .product-section h4 {
              font-weight: bold;
              margin-bottom: 15px;
            }

            .product-section img.full-width {
              width: 100%;
              margin-bottom: 20px;
              display: block;
            }
                
            .sticky-sidebar {
            position: sticky;
            top: 80px;
            background: #f8f9fa;
            padding: 20px;
            border: 1px solid #eaeaea;
            border-radius: 4px;
            }

            .sticky-sidebar ul {
            padding-left: 0;
            }

            .sticky-sidebar ul li {
            margin-bottom: 10px;
            }

            .sticky-sidebar ul li a {
            text-decoration: none;
            color: #007bff;
            }

            .sticky-sidebar ul li a:hover {
            text-decoration: underline;
            }
            #stickySidebar {
              position: sticky;
              top: 100px; /* Cách top một khoảng, giúp tránh đè lên navbar */
              z-index: 998;
              background: #ffffff;
              padding: 20px;
              border-radius: 12px;
              box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1); /* Nhẹ nhàng, mờ chéo phải-dưới */
              transition: all 0.3s ease;
            }

            .product-navigation-box {
            position: static;
            top: - 80px;
            }

            .product-navigation-box ul {
            padding-left: 0;
            }

            .product-navigation-box ul li {
            margin-bottom: 10px;
            }

            .product-navigation-box ul li a {
            text-decoration: none;
            color: #007bff;
            }

            .product-navigation-box ul li a:hover {
            text-decoration: underline;
            }

            /* Hover nhẹ cho từng khối nếu muốn thêm sinh động */
            #stickySidebar:hover {
              box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.15); /* Tăng nhẹ bóng khi hover */
            }

/* Video Khung responsive, không viền */
  .video-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    aspect-ratio: 16 / 9; /* giữ tỷ lệ, không cần padding hack */
    overflow: hidden;
  }
  .video-wrap iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0;
    pointer-events: none; /* chặn tương tác để trông như GIF */
  }