/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:pk-video-section (INDEX:73) */
.video-autoplay-section video {
        display: block;
        max-width: 80%;
        margin: auto;
    }
    @media (max-width: 767px) {
        .video-autoplay-section video {
            max-width: 100%;
        }
    }
/* END_SECTION:pk-video-section */

/* START_SECTION:product-img-content (INDEX:75) */
/* Your exact CSS pasted unchanged */
  .product-img-content-main {
      display: flex;
      flex-wrap: wrap;
  }
  .product-img-content-main .data-content0{
      order:1;
  }
  .product-img-content-main .data-img0{
      order:2;
  }
  .product-img-content-main .data-content1{
      order:3;
  }
  .product-img-content-main .data-img1{
      order:4;
  }
  .product-img-content-main .data-content2{
      order:5;
  }
  .product-img-content-main .data-img2{
      order:6;
  }
  .product-img-content-main .data-content3{
      order:7;
  }
  .product-img-content-main .data-img3{
      order:8;
  }
  .product-img-content-main .data-content4{
      order:9;
  }
  .product-img-content-main .data-img4{
      order:10;
  }
  .cf-hk-product-tabs-main {
    .product-tab-nav-main {
      text-align: center;
      margin-bottom: 90px;

      @media (max-width: 1023px) {
        margin-bottom: 60px;
      }

      @media (max-width: 767px) {
        margin-bottom: 50px;
      }
    }

    .product-tab-row {
      display: inline-flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      background: #E3E3E3;
      border-radius: 30px;
      padding: 6px;
      align-items: center;
    }

    .tab-main {
      min-width: 133px;
      cursor: pointer;

      &.active {
        background: var(--color-FFFFFF);
        border-radius: 25px;

        p {
          font-weight: 700;
        }
      }

      p {
        font-family: var(--font-body-family);
        font-weight: 400;
        font-size: 17px;
        line-height: 100%;
        text-align: center;
        color: #141414;
        padding: 22px 10px;
        display: inline-block;
        width: 100%;

        @media (max-width: 767px) {
          padding: 16px 10px;
        }
      }
    }

    .product-tabs-content-main {
      .product-tab-pane {
        .product-img-content-main {
          &>div {
            margin-bottom: 45px;
            &:last-child{
              margin-bottom: 0;
            }
          }

          .product-img-content-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            border: 1px solid var(--bg-primary);
            background-color: var(--bg-secondary);
            border-radius: 20px;
            overflow: hidden;


            .product-img {
                width: 50%;

                @media (max-width: 767px) {
                    width: 100%;
                }

                img {
                    display: block;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            &.row-reverse {
              flex-direction: row-reverse;

              .product-img {
                text-align: right;
              }
              .product-content {
                padding: 30px 30px 30px;
                @media (max-width: 767px) {
                  padding: 20px 20px;
                }
              }
            }

            .product-content {
              width: 50%;
              flex-direction: column;
              display: flex;
              justify-content: center;
              padding: 30px 30px 30px 50px;

                @media (max-width: 1023px) {
                  padding: 20px 20px 20px 30px;
                }
                @media (max-width: 767px) {
                  width: 100%;
                  padding: 20px 20px 30px;
                }

                .section-title {
                  font-size: 34px;
                  line-height: 40px;
                  
                  @media (max-width: 1023px) {
                    font-size: 28px;
                    line-height: 34px;
                  }
                  
                  @media (max-width: 767px) {
                    font-size: 20px;
                    line-height: 24px;
                  }
                }
            }
          }

          .product-img-main {
            width: 100%;
            display: inline-flex;

            .product-img {
              border-radius: 30px;
              overflow: hidden;
              height: 600px;
              width: 100%;
              display: inline-flex;

              @media(max-width:1023px) {
                height: 500px;
              }

              img {
                width: 100%;
                height: 100%;
                object-fit: cover;
              }
            }
          }
        }
      }
    }
  }
/* END_SECTION:product-img-content */