/** Shopify CDN: Minification failed

Line 944:11 Unexpected "{"
Line 944:20 Expected ":"
Line 948:11 Unexpected "{"
Line 948:20 Expected ":"
Line 952:11 Unexpected "{"
Line 952:20 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-features (INDEX:38) */
.ct-sec {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
  color: #fff;
}
.ct-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, var(--overlay-opacity, 0.8));
  z-index: 1;
  pointer-events: none;
}
.ct-sec .ct-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.ct-sec .ct-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ct-sec .ct-in {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.ct-sec .ct-hd {
  font-weight: 600;
  font-size: 46px;
  line-height: 1.2;
  text-align: center;
  text-transform: capitalize;
  margin: 0;
  max-width: 600px;
  color: #FFFFFF;
}
.ct-sec .ct-grd {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.ct-sec .ct-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.ct-sec .ct-col-c {
  flex: 1.5;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  margin-bottom: -6rem;
}
.ct-sec .ct-col-c img {
  max-width: 100%;
  height: auto;
  display: block;
}
.ct-sec .ct-blk {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}
.ct-sec .ct-icn {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  padding: 20px;
}
.ct-sec .ct-icn img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.ct-sec .ct-txt {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.4;
  color: #FFFFFF;
  max-width: 180px;
}
.ct-sec .ct-txt p {
  margin: 0;
}
.ct-sec .ct-ftr {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 25px;
  width: 100%;
}
.ct-sec .ct-ftxt {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  margin: 0;
  max-width: 800px;
}

.ct-sec .ct-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  padding: 0 24px;
  height: 64px;
  width: 100%;
  max-width: 440px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.ct-sec .ct-btn:hover {
  background-color: #f2f2f2;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

/* Loading state styles applied via JS to prevent double-clicks */
.ct-sec .ct-btn.is-loading {
  pointer-events: none;
  opacity: 0.7;
}

.ct-sec .ct-btm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.ct-sec .ct-btm img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.ct-sec .txt,
.ct-sec .cta-price {
  font-family: "PolySans Trial", sans-serif;
  font-weight: 500;
  font-size: 18px;
}

/* Mobile specific styling */
@media screen and (max-width: 990px) {
  .ct-sec {
    padding: 60px 20px;
  }
  .ct-sec .ct-hd {
    font-size: 26px;
    max-width: 295px;
    margin-bottom: 2rem;
  }
  .ct-sec .ct-grd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 10px;
  }
  .ct-sec .ct-col {
    display: contents; 
  }
  .ct-sec .ct-col-c {
    grid-column: 1 / -1;
    order: 10; 
    margin-top: -20px;
  }
  .ct-sec .ct-blk {
    width: 100%;
  }
  .ct-sec .ct-icn {
    width: 70px;
    height: 70px;
    padding: 16px;
  }
  .ct-sec .ct-txt {
    font-size: 16px;
    max-width: 150px;
  }
  .ct-sec .ct-ftxt {
    font-size: 18px;
    padding: 0 10px;
  }
}
/* END_SECTION:custom-features */

/* START_SECTION:custom-products-grid (INDEX:42) */
@keyframes smoothCardReveal {
    0% { opacity: 0; transform: translateY(16px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  .custom-shop-section {
    width: 100%;
    padding: 60px 20px;
    box-sizing: border-box;
    background-color: #ffffff;
  }
  .custom-shop-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .custom-shop-heading {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 35px;
    color: #111;
    text-align: center;
    letter-spacing: -1px;
  }
  .custom-shop-heading span {
    font-weight: 500;
    font-family: 'GT Super Ds Trial', serif;
  }
  .custom-shop-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    background: transparent;
    justify-content: center;
  }
  .custom-shop-filter-btn {
    border: none;
    background-color: transparent;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    color: #666;
    position: relative;
    overflow: hidden;
    transition: color 0.8s ease;
    z-index: 1;
  }
  .custom-shop-filter-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #f7f7f7;
    z-index: -2;
  }
  .custom-shop-filter-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: #111;
    transform: translate(-50%, -50%) scaleY(0.1) scaleX(0.2);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease, border-radius 1.5s ease;
  }
  .custom-shop-filter-btn.is-active {
    color: #fff;
  }
  .custom-shop-filter-btn.is-active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    border-radius: 0;
  }
  .custom-shop-wrapper {
    width: 100%;
    position: relative;
  }
  .custom-shop-grid {
    display: none;
    width: 100%;
  }
  .custom-shop-grid.grid-layout {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 20px;
  }
  .custom-shop-grid.grid-layout.is-active {
    display: grid !important;
  }

  .custom-shop-grid.slider-layout {
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .custom-shop-grid.slider-layout::-webkit-scrollbar {
    display: none;
  }
  .custom-shop-grid.slider-layout.is-active {
    display: flex !important;
  }
  .custom-shop-grid.slider-layout .custom-product-card {
    flex: 0 0 calc(25% - 15px);
    scroll-snap-align: start;
  }

  .custom-shop-grid.is-leaving {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .custom-product-card {
    padding: 0 10px;
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column;
    outline: none;
    width: 100%;
    height: 100%;
    flex: 1;
  }
  .custom-shop-grid.is-active:not(.is-leaving) .custom-product-card {
    opacity: 0;
    animation: smoothCardReveal 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
  .custom-shop-grid.is-active:not(.is-leaving) .custom-product-card:nth-child(1) { animation-delay: 0.04s; }
  .custom-shop-grid.is-active:not(.is-leaving) .custom-product-card:nth-child(2) { animation-delay: 0.10s; }
  .custom-shop-grid.is-active:not(.is-leaving) .custom-product-card:nth-child(3) { animation-delay: 0.16s; }
  .custom-shop-grid.is-active:not(.is-leaving) .custom-product-card:nth-child(4) { animation-delay: 0.22s; }
  .custom-shop-grid.is-active:not(.is-leaving) .custom-product-card:nth-child(5) { animation-delay: 0.28s; }
  .custom-shop-grid.is-active:not(.is-leaving) .custom-product-card:nth-child(6) { animation-delay: 0.34s; }
  .custom-shop-grid.is-active:not(.is-leaving) .custom-product-card:nth-child(7) { animation-delay: 0.40s; }
  .custom-shop-grid.is-active:not(.is-leaving) .custom-product-card:nth-child(8) { animation-delay: 0.46s; }

  .custom-product-media {
    position: relative;
    width: 100%;
    min-height: 337px;
    background: #f4f4f4;
    overflow: hidden;
    margin-bottom: 8px;
  }
  .custom-product-media a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .custom-product-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .custom-product-media img.is-active {
    opacity: 1;
  }
  .custom-product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    letter-spacing: 0.3px;
  }
  .custom-product-badge.best-seller { background-color: #00b074; color: #fff; }
  .custom-product-badge.new { background-color: #f14c4c; color: #fff; }

  .custom-product-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #111;
    margin-bottom: 8px;
  }
  .custom-product-stars { font-weight: 600; }
  .custom-product-reviews { color: #888; text-decoration: underline; }

  .custom-product-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #111;
    letter-spacing: -0.5px;
  }
  .custom-product-form-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    width: 100%;
  }
  .custom-product-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
  }
  .custom-product-variants-container {
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
    max-width: 180px;
  }
  .custom-product-variants-container::-webkit-scrollbar { display: none; }
  .custom-product-variants {
    display: flex;
    gap: 8px;
    align-items: center;
    white-space: nowrap;
    padding: 8px 0 8px 2px;
  }
  .custom-variant-input { display: none; }
  .custom-variant-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #dcdcdc;
    cursor: pointer;
    display: block;
    position: relative;
    padding: 2px;
    background-clip: content-box;
    transition: all 0.3s ease;
  }
  .custom-variant-input:checked + .custom-variant-swatch {
    border-color: #111;
    box-shadow: 0 0 0 1px #111;
  }
  .custom-variant-box {
    padding: 4px;
    border: 1px solid #e0e0e0;
    font-size: 9px;
    font-weight: 500;
    cursor: pointer;
    display: block;
    border-radius: 3px;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
  }
  .custom-variant-input:checked + .custom-variant-box {
    border-color: #000;
    background: #000;
    color: #fff;
  }
  .custom-product-price {
    font-size: 24px;
    font-weight: 500;
    color: #191919;
    white-space: nowrap;
    letter-spacing: -0.5px;
    font-family: 'PolySans Trial', sans-serif;
  }
  .custom-product-qty-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 15px;
    background: transparent;
  }
  .custom-qty-btn {
    border: none;
    background: #eaeaea;
    width: 26px;
    height: 26px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
  }
  .minus { font-size: 10px; }
  .custom-qty-btn:hover { background: #d4d4d4; }
  .custom-qty-input {
    flex: 1;
    border: none !important;
    background: transparent;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #111;
    -moz-appearance: textfield;
  }
  .custom-qty-input::-webkit-outer-spin-button,
  .custom-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .custom-buy-btn {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.3px;
    transition: opacity 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .custom-buy-btn:hover { background: #222; }
  .custom-buy-btn:disabled { opacity: 0.6; cursor: not-allowed; }
  .custom-buy-btn .btn-spinner {
    display: none;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
  }
  .custom-buy-btn.loading .btn-spinner { display: inline-block; }
  @keyframes spin { to { transform: rotate(360deg); } }

  .custom-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 30px;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .custom-shop-cta { margin: 0; }
  .custom-explore-btn {
    display: inline-block;
    padding: 14px 50px;
    border: 1px solid #111;
    background: transparent;
    color: #111;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .custom-explore-btn:hover { background: #111; color: #fff; }

  .custom-nav-container {
    display: flex;
    align-items: center;
  }
  .custom-slider-nav {
    display: none;
    gap: 12px;
  }
  .custom-slider-nav.is-active {
    display: flex;
  }
  .custom-slider-nav .custom-slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #111;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #111;
    padding: 0;
  }
  .custom-slider-nav .custom-slider-btn:hover {
    background: #111;
    color: #fff;
  }
  .custom-slider-nav .custom-slider-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
  }
  .custom-slider-nav .custom-slider-btn:disabled:hover {
    background: transparent;
    color: #111;
  }
  .custom-slider-nav .custom-slider-btn svg {
    width: 20px;
    height: 20px;
  }

  .filter_tab_ytKmVj  {
    font-size:22px;
  }

  @media (prefers-reduced-motion: reduce) {
    .custom-shop-grid.is-active .custom-product-card,
    .custom-shop-grid.is-leaving {
      animation: none !important;
      transition: none !important;
      opacity: 1 !important;
      transform: none !important;
    }
  }
@media (min-width:1024px) {
  .custom-product-action-row {
    min-height:40px;
  }
}
  @media (max-width: 1024px) {
    .custom-shop-grid.grid-layout.is-active {
      grid-template-columns: repeat(2, 1fr) !important;
    }
    .custom-shop-grid.slider-layout .custom-product-card {
      flex: 0 0 calc(50% - 10px);
    }
  }
  @media (max-width: 768px) {
    .custom-shop-grid {
      display: none;
    }
    .custom-shop-grid.is-active,
    .custom-shop-grid.slider-layout.is-active {
      display: grid !important;
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 12px;
      justify-items: center;
      position: static !important;
      opacity: 1 !important;
      transform: none !important;
      overflow-x: visible !important;
      scroll-snap-type: none !important;
      transition: none !important;
    }
    .custom-shop-grid.slider-layout.is-active .custom-product-card {
      flex: none !important;
      scroll-snap-align: none !important;
    }
    .custom-shop-heading {
      font-size: 28px;
    }
    .custom-shop-filter-btn {
      font-size: 14px;
      padding: 8px;
    }
    .custom-shop-section {
      padding: 30px 15px;
    }
    .custom-product-media {
      min-height: 180px;
    }
    .custom-product-card {
      padding: 0;
      width: 100%;
    }
    .custom-product-title {
      font-size: 16px;
    }
    .custom-product-price {
      font-size: 18px;
    }
    .custom-buy-btn {
      padding: 12px;
      font-size: 13px;
    }
    .custom-product-badge {
      padding: 4px 10px;
      font-size: 10px;
    }
    .custom-qty-input {
      max-width:20px;
    }
    .custom-product-action-row {
      flex-direction:column;
      align-items:flex-start;
    }
    .custom-product-variants {
      padding:4px 2px;
      gap:6px;
    }
    .custom-variant-swatch {
      width:18px;
      height:18px;
    }
    .custom-product-price,
    .custom-product-meta {
      margin-top:6px;
    }
    .custom-shop-filters {
      margin-bottom:20px;
    }
    .custom-bottom-row {
      justify-content: center;
      margin-top: 20px;
    }
    .custom-nav-container {
      display: none !important;
    }
  }
/* END_SECTION:custom-products-grid */

/* START_SECTION:custom-reviews (INDEX:43) */
.tp-sec {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: inherit;
    overflow: hidden;
  }
  .tp-wrap {
    max-width: 1400px;
    margin: 0 auto;
  }
  .tp-head {
    text-align: center;
    margin-bottom: 40px;
  }
  .tp-head h2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
  }
  .tp-head h2 svg {
    width: 34px;
    height: 34px;
  }
  .tp-head strong {
    font-weight: 700;
    font-size: 34px;
  }
  .tp-rating {
    font-size: 16px;
    color: #333;
    margin-left: 10px;
  }
  .tp-slider-wrap {
    padding-bottom: 60px;
    position: relative;
  }
  .tp-slider.no-slider {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  .tp-card {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 30px;
    width: 320px;
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column;
    height: auto;
    min-height: 300px;
  }
  .tp-slider:not(.no-slider) .tp-card {
    margin-right: 30px;
  }
  .tp-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.1;
  }
  .tp-desc-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin: 0 0 20px 0;
  }
  .tp-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.3;
    font-style: italic;
    margin: 0;
    letter-spacing: normal;
  }
  .tp-read-more-check {
    display: none;
  }
  .tp-more-text {
    display: none;
  }
  .tp-read-more-check:checked ~ .tp-desc .tp-more-text {
    display: inline;
  }
  .tp-read-more-check:checked ~ .tp-desc .tp-dots {
    display: none;
  }
  .tp-read-more-check:checked ~ .tp-read-more-btn::after {
    content: "Read less";
  }
  .tp-read-more-btn {
    color: #333;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    margin-top: 8px;
    display: inline-block;
    text-decoration: underline;
  }
  .tp-read-more-btn::after {
    content: "Read more";
  }
  .tp-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
  }
  .tp-user {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .tp-name {
    font-size: 14px;
    color: #333;
  }
  .tp-stars {
    display: flex;
    gap: 2px;
  }
  .tp-slider .slick-dots {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    list-style: none;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: 8px;
  }
  .tp-slider .slick-dots li {
    margin: 0;
    width: 30px;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .tp-slider .slick-dots li.slick-active {
    background-color: #111;
    width: 45px;
  }
  .tp-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
  }
  .tp-feats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 35px;
  }
  .tp-feat {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .tp-icon {
    color: #111;
  }
  .tp-txt {
    font-size: 14px;
    line-height: 1.3;
    color: #333;
  }
  #slider-{{ section.id }} .slick-track {
    display: flex;
    align-items: stretch;
  }
  #slider-{{ section.id }} .slick-slide {
    height: auto; 
    display: flex;
  }
  #slider-{{ section.id }} .slick-slide > div {
    display: flex;
  }
  @media screen and (max-width: 768px) {
    .tp-sec {
      padding:40px 20px 20px;
    }
    .tp-head strong {
      font-size:18px;
    }
    .tp-rating {
      font-size:12px;
    }
    .tp-head h2 svg {
      width:24px;
      height:24px;
    }
    .tp-title {
      font-size:14px;
    }
    .tp-card {
      width: 280px;
    }
    .tp-slider:not(.no-slider) .tp-card {
      margin-right: 10px;
    }
    .tp-feats {
      gap: 10px;
      align-items: center;
      justify-content:space-between;
      padding:0 2rem;
      margin-top:15px;
    }
    .tp-desc {
      font-size:14px;
    }
    .tp-slider-wrap {
      padding-bottom:40px;
    }
    .tp-slider .slick-dots {
      bottom:-40px;
    }
    .tp-head {
      margin-bottom:30px;
    }
    .tp-icon {
      width:52px;
      height:54px;
    }
    .tp-feat{
      flex-direction:column;
      gap:8px;
      text-align:center;
    }
  }
/* END_SECTION:custom-reviews */

/* START_SECTION:custom-videos-slider (INDEX:45) */
.custom-videos-slider {
    padding: 60px 0;
    background-color: #ffffff;
    color: #000;
    overflow: hidden;
  }
  .cvs-main-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .cvs-inner-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .cvs-header-top {
    text-align: left;
    margin-bottom: 20px;
  }
  .cvs-subtitle {
    font-family: PolySans;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
    margin: 0 0 10px 0;
  }
  .cvs-title {
    font-family: PolySans;
    font-weight: 600;
    font-size: 48px;
    line-height: 122%;
    letter-spacing: 0%;
    text-align: left;
    vertical-align: middle;
    text-transform: capitalize;
    margin: 0;
  }
  .cvs-header-bottom {
    text-align: left;
    margin-bottom: 15px;
  }
  .cvs-link {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s ease;
    padding-bottom: 2px;
    border-bottom: 1px solid #000;
  }
  .cvs-link:hover {
    opacity: 0.7;
  }
  .cvs-link svg {
    width: 12px;
    height: 12px;
  }
  .cvs-child-2 {
    width: 100%;
    position: relative;
  }
  .cvs-slick-slider {
    margin: 0 -10px;
  }
  .cvs-slide {
    margin: 0 10px;
    outline: none;
  }
  .cvs-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f4f4f4;
  }
  .cvs-video-wrapper video,
  .cvs-video-wrapper svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .cvs-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
  }
  .cvs-play-button {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
  }
  .cvs-play-button:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
  }
  .cvs-play-button svg {
    width: 33px;
    height: 33px;
    fill: #fff;
    transform: translateX(1px);
  }
  .cvs-overlay-text {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
  }
  .cvs-controls {
    display: flex;
    align-items: center;
    margin: 30px auto;
    max-width: 1200px;
    gap: 25px;
  }
  .cvs-fraction {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    white-space: nowrap;
  }
  .cvs-progress-bar {
    flex-grow: 1;
    height: 2px;
    background: #e0e0e0;
    position: relative;
  }
  .cvs-progress-inner {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #222;
    transition: all 0.3s ease;
  }
  .cvs-arrows {
    display: flex;
    gap: 12px;
  }
  .cvs-custom-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  .cvs-custom-arrow:hover {
    background: #000;
  }
  .cvs-custom-arrow svg {
    width: 16px;
    height: 16px;
    stroke: #000;
    fill: none;
    transition: stroke 0.3s ease;
  }
  .cvs-custom-arrow:hover svg {
    stroke: #fff;
  }
  .cvs-child-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .cvs-bb-image img {
    max-width: 60px;
    height: auto;
    display: block;
    object-fit: contain;
  }
  .cvs-bb-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .cvs-bb-heading {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: #000;
  }
  .cvs-bb-link {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 4px;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.3s ease;
  }
  .cvs-bb-link:hover {
    opacity: 0.7;
  }
  .cvs-bb-link svg {
    width: 10px;
    height: 10px;
  }
  @media (max-width: 768px) {
    .cvs-title { font-size: 28px; }
    .cvs-controls { flex-wrap: wrap; justify-content: space-between; }
    .cvs-progress-bar { order: 3; width: 100%; margin-top: 15px; flex-grow: 0; }
  }
  @media (max-width: 500px) {
    .cvs-slick-slider { margin: 0 -5px; }
    .cvs-slide { margin: 0 5px; }
    .cvs-title, .cvs-subtitle { text-align: left; }
  }
/* END_SECTION:custom-videos-slider */

/* START_SECTION:lp-img-txt (INDEX:81) */
.iwt-sec {
  width: 100%;
  box-sizing: border-box;
}

.iwt-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.iwt-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.iwt-placeholder {
  width: 100%;
  height: auto;
  background-color: #f4f4f4;
  fill: #ccc;
}

.iwt-txt-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.iwt-hdg {
  margin: 0 0 24px 0;
    font-weight: 600;
    line-height: 122%;
    letter-spacing: 0%;
}

.iwt-sub {
    margin: 0 0 20px 0;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
}

.iwt-desc {
  margin: 0 0 40px 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 158%;
    letter-spacing: 0%;
}

.iwt-desc p {
  margin: 0;
}

.iwt-btm {
  margin: 0 0 15px 0;
    font-family: PolySans;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
}

.iwt-btn {
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-weight: 400;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.iwt-btn span {
  margin-left: 8px;
  font-size: 10px;
}

@media (max-width: 767px) {
  .iwt-sec {
    padding: 40px 20px;
  }
  .iwt-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .iwt-hdg {
    font-size: 32px;
  }
  .iwt-sub {
    font-size: 16px;
  }
  .iwt-desc {
    font-size: 14px;
  }
  .iwt-btm {
    font-size: 14px;
  }
  .iwt-btn {
    font-size: 12px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .iwt-sec {
    padding: 60px 30px;
  }
  .iwt-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
  .iwt-img-col, .iwt-txt-col {
    width: 50%;
  }
  .iwt-hdg {
    font-size: 38px;
  }
  .iwt-sub {
    font-size: 18px;
  }
  .iwt-desc {
    font-size: 14px;
  }
  .iwt-btm {
    font-size: 16px;
  }
  .iwt-btn {
    font-size: 13px;
  }
}

@media (min-width: 1025px) {
  .iwt-sec {
    padding: 80px 40px;
  }
  .iwt-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
  .iwt-img-col, .iwt-txt-col {
    width: 50%;
    gap:7rem;
  }
  .iwt-hdg {
    font-size: 48px;
  }
  .iwt-sub {
    font-size: 20px;
  }
  .iwt-desc {
    font-size: 16px;
  }
  .iwt-btm {
    font-size: 18px;
  }
  .iwt-btn {
    font-size: 14px;
  }
}
/* END_SECTION:lp-img-txt */