/** Shopify CDN: Minification failed

Line 269:3 Unexpected "}"

**/
/* assets/video-carousel-v3.css */
.video-carousel {
  position: relative;
  width: 95%;
  margin: 0 auto;
}

.video-carousel h2 {
  margin-bottom: 5px;
}
.video-carousel h3 {
  margin-bottom: 10px;
}
.video-carousel p {
  margin-bottom: 20px;
}

.video-carousel .swiper {
  width: 100%;
  padding: 10px 0;
}
.video-carousel .swiper-slide {
  width: calc(20% - 10px);
  margin-right: 10px;
  position: relative;
  text-align: center;
}
.video-carousel .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
}

.video-carousel .play-button {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-carousel .play-button::after {
  content: '▶';
  font-size: 20px;
  color: #fff;
}

.video-carousel .product-button {
  display: inline-block;
  margin-top: 15px;
  padding: 3px 10px;
  text-decoration: none;
}
.video-carousel .product-button:hover {
  opacity: 0.8;
}
.video-carousel .swiper-button-next,
.video-carousel .swiper-button-prev {
  color: #000;
  background-color: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-carousel .swiper-button-next::after,
.video-carousel .swiper-button-prev::after {
  font-size: 20px;
}
@media (max-width: 767px) {
  .video-carousel .swiper-slide {
    width: calc(40% - 10px);
  }
  .video-carousel .swiper-button-next,
  .video-carousel .swiper-button-prev {
    display: none;
  }
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.video-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.video-modal.closing {
  opacity: 0;
  visibility: hidden;
}

.video-modal-content {
  position: relative;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  transform: scale(0.3);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-sizing: border-box;

  max-width: 80%;
  max-height: 80%;
}
.video-modal.open .video-modal-content {
  transform: scale(1);
  opacity: 1;
}
.video-modal.closing .video-modal-content {
  transform: scale(0.3);
  opacity: 0;
}

@media (min-width: 1024px) {
  .video-modal-content {
    max-width: 90%;
    max-height: 90%;
  }
}

.video-modal-content video {
  width: 100%;
  height: auto;
  display: block;
}
.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* assets/category-display.css */
.category-display-list,
  .category-display-item,
  .category-header,
  .category-products,
  .product-item {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  @media screen and (min-width: 768px) {
    .category-display-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      width: 95%;
      margin: 0 auto;
    }

    .category-display-item {
    }
  }

  @media screen and (max-width: 767px) {
    .category-display-list {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      gap: 10px;
      width: 95%;
      margin: 0 auto;
    }
    .category-display-item {
      flex: 0 0 auto;
      width: 75%;
    }
  }

  .category-header {
    position: relative;
    height: 40px;
    line-height: 40px;
  }

  .category-title {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #fff;
  }

  .category-btn {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
  }

  .category-btn.style1 {
    border-radius: 8px;
    height: 25px;
    line-height: 25px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .category-btn.style2 {
    background: transparent;
    padding: 0;
    height: auto;
    line-height: normal;
  }
  .category-btn.style2 .underline-text {
    text-decoration: underline;
  }

  .category-products .products-inner {
    margin: 10px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }}
  .product-item {
    position: relative;
  }

  .overlay-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 30%;
    z-index: 2;
    object-fit: contain;
    opacity: 0.7;
  }

  .main-img {
    display: block;
    width: 200px;
    height: auto;
    box-shadow: 3px 0 2px rgba(0,0,0,1);
    z-index: 1;
  }

  .product-item:last-child {
    margin-right: 0;
  }


  @media screen and (min-width: 768px) {
    .main-img-wrap {
      position: relative;
      display: inline-block;
      overflow: hidden; 
    }

    .main-img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0)   0%,
    rgba(255, 255, 255, 0.05) 30%,
    rgba(255, 255, 255, 0.4)  50%,
    rgba(255, 255, 255, 0.05) 70%,
    rgba(255, 255, 255, 0)   100%
  );

  box-shadow: 0 0 15px 3px rgba(255, 255, 255, 0.2);
      transform: skewX(-20deg);
      transition: all 0.5s ease;
      pointer-events: none; 
    }

    .main-img-wrap:hover::before {
      left: 150%;
    }
  }
/* assets/Waterfall-Collections.css */

    .waterfall-grid {
      width: 96%;
      margin: 0 auto;
    }

  .waterfall-grid-item {
    margin: 0 10px 30px;
    width: calc(16% - 20px);
    border-radius: 1px;
    overflow: hidden;
  }

    .waterfall-grid-item img {
      width: 100%;
      height: auto;
    }

    .waterfall-load-more {
      display: flex;
      justify-content: center;
      margin-top: 20px;
    }

    .waterfall-custom-button {
      display: inline-block;
      padding: 10px 30px;
      font-size: calc(var(--base-font-size) - 3px);
      font-family: var(--text-font-family);
      font-weight: var(--text-font-bold-weight);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #fff;
      background-color: #3345D5;
      border: 2px solid #3345D5;
      border-radius: 10px;
      text-align: center;
      text-decoration: none;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    }

    .waterfall-custom-button:hover {
      background-color: #fff;
      color: #007bff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 767px) {
      .waterfall-grid-item {
        margin:0 0 10px;
        width: calc(50% - 5px);
      }
    }

/* assets/custom-text-with-background.css */
.custom-text-section {
  height: var(--module-height);
  margin-top: var(--margin-top);
  margin-bottom: var(--margin-bottom);
  background: linear-gradient(to right, 
    #1f0f4c 0%, 
    #3f319c 25%, 
    #3948aa 50%, 
    #284c9a 75%, 
    #112452 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-text-section h2 {
  font-size: var(--text-size);
  color: var(--text-color);
}
