/** Shopify CDN: Minification failed

Line 296:26 Unexpected "{"
Line 296:35 Expected ":"
Line 296:42 Unexpected "{"

**/
.th-scroll-area {
      height: 500vh;
      position: relative;
    }

   .th-sticky {
      position: sticky;
      top: 70px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 15rem;
      padding: 120px 0 50px 0;
    }

    /* Headings */
    .th-headings {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 80px;
      margin-bottom: 50px;
      user-select: none;
      position: relative;
      z-index: 10;
    }

    .th-heading {
    position: relative;
    color:  var(--color);
    cursor: pointer;
    padding: 0 10px;
    font-family: Funnel Display;
    font-weight: 500;
    font-size: 28px;
    line-height: 100%;
    text-align: center;
    text-transform: capitalize;

    transform: scale(0.9);
    transition:
      transform .6s cubic-bezier(0.22,1,0.36,1),
      color .4s ease,
      font-size .4s ease;
  }
    .th-heading.active {
    color: var(--color);
    font-size: 62px;
    line-height: 54px;

    transform: scale(1);
  }

   .th-heading .th-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    transform: translate(-50%, -50%);
    border-radius: 16px;
    overflow: hidden;

    opacity: 0;
    pointer-events: none;

    transition: opacity 0.8s ease-in-out;

    z-index: -1;
  }

    .th-heading.active .th-img {
    opacity: 1;
  }

    .th-heading .th-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Products horizontal scroll container */
    .th-products-wrap {
      overflow: hidden;
    }

   .th-products-track{
    display:flex;
    transition: transform 1.2s cubic-bezier(0.22,1,0.36,1);
    will-change: transform;
    transform: translate3d(0,0,0);
    backface-visibility: hidden;
  }

    .th-slide {
      min-width: 100%;
      display: flex;
      justify-content: center;
      gap: 30px;
    }

    .th-heading:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
  }

  
  .custom-product-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
    position: relative;
    /* margin: 0 auto; */
  }

  .custom-product-image {
    width: 100%;
    padding-top: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
  }

  .custom-product-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: contain;
  }

  .custom-product-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0d7d7;
    padding: 0;
  }

  .custom-product-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .custom-product-title {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    color: var(--title-color);
  }

  .custom-product-title a {
    color: inherit;
    text-decoration: none;
  }

  .custom-product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
  }

  .current-price {
    color: var(--price-color);
    font-weight: 700;
  }

  .original-price {
    color: var(--compare-price-color);
    text-decoration: line-through;
    font-weight: 400;
  }

  .custom-quick-view {
    position: absolute;
    bottom: 20px;
    right: 20px;
  }

  .quick-view-button {
    background: #fff;
    border-radius: 8px;
    padding: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .quick-view-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .icon-add-to-cart svg {
    width: 20px;
    height: 20px;
    fill: #dd685b;
  }

  .custom-product-image-link {
    display: block;
    border-radius: 12px;
    overflow: hidden;
  }
  .custom-product-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* =========================
     TABLET + MOBILE
  ========================= */

  @media screen and (max-width: 989px){
    .custom-product-card {
    margin: 0 auto;
  }

  /* scroll system same rahe */
  .th-scroll-area{
    height:260vh;
  }

  .th-scroll-area{
    height:auto;
  }

  .th-sticky{
    position:relative;
    top:0;
    padding-top:0;
    gap:0;
  }

  /* headings */
  .th-headings{
    gap:0;
  }

  .th-heading{
    font-size:20px;
  }

  .th-heading.active{
    font-size:36px;
    line-height:1.2;
  }

  /* heading image smaller */

  .th-heading .th-img{
    width:120px;
  }

  /* products 2 per row */

  .th-slide{
    min-width:100%;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    padding:0 20px;
  }

  }


  /* =========================
     SMALL MOBILE
  ========================= */

  @media screen and (max-width: 600px){
    .trending-horizontal-{{ section.id }} {
      padding-top: 30px;
      padding-bottom: 30px;
    }

    .custom-product-price {
    display: flex;
    align-items: flex-start;
    gap: 0px;
    font-size: 12px;
    flex-direction: column;
}
.custom-product-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
}
.custom-product-card {
    padding: 14px;
}
  .th-heading{
    font-size:18px;
  }

  .th-heading.active{
    font-size:28px;
  }

  /* image even smaller */

  .th-heading .th-img{
    width:90px;
  }

  .th-slide{
    gap:14px;
  }

  .th-heading .th-img{
      display:none;
    }
    .th-headings {
        margin-bottom: 30px;
        gap: 12px;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    

  }
