/** Shopify CDN: Minification failed

Line 141:2 Unexpected "{"
Line 141:3 Expected identifier but found "%"
Line 143:4 Unexpected "{"
Line 143:5 Expected identifier but found "%"

**/
  .mt-product-grid-container {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
  }

  .mt-product-grid-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .mt-product-card {
    flex: 1;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #000000;
    transition: transform 0.3s ease;
    overflow:hidden;
  }

  .mt-product-card:hover {
        box-shadow: 0 4px 24px rgba(0, 0, 0, .1);
  }

  .mt-product-card-image-wrapper {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: #ffffff;
    overflow: hidden;
    aspect-ratio: 1 / 1;
  }

  .mt-product-card-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.4s ease;
  }

  .mt-product-card-image {
    min-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .mt-product-card-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    pointer-events: none;
  }

  .mt-product-card:hover .mt-product-card-nav {
    opacity: 1;
    pointer-events: auto;
  }

  .mt-product-card-nav:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  }

  .mt-product-card-nav.prev {
    left: 10px;
  }

  .mt-product-card-nav.next {
    right: 10px;
  }


  .mt-product-card-nav svg {
    width: 20px;
    height: 20px;
    stroke: #000000;
    stroke-width: 2;
    fill: none;
  }

  .mt-product-card-nav:disabled {
    cursor: not-allowed;
  }

  .mt-product-card-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
  }

  .mt-product-card-dot {
    width: 20px;
    height: 3px;
    border-radius:2px;
    background: rgba(255, 255, 255, 1);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .mt-product-card-dot.active {
    background: #000;
  }

  {% comment %} .mt-product-card-dot:hover {
    background: rgba(255, 255, 255, 0.8);
  } {% endcomment %}

  .mt-product-card-separator {
    width: 40px;
    height: 1px;
    background: #000000;
    margin: 15px 0;
  }

  .mt-product-card-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 8px 0;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    display: -webkit-box; /* 旧版webkit内核使用 */
    display: box; 
  }

  .mt-product-card-price {
    font-size: 14px;
    color: #000000;
    margin: 0;
  }

  .mt-info-card {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .mt-info-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    padding:20px;
  }
  .mt-info-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.mt-info-card-image-wrapper:hover .mt-info-card-img {
  transform: scale(1.2);
}

  .mt-info-card-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    flex: 1;
    color:#222;
  }

  .mt-info-card-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    flex-shrink: 0;
  }

  .mt-info-card-arrow svg {
    width: 18px;
    height: 18px;
    transform: rotate(180deg);
  }
  .mt-info-card-arrow svg path {
    stroke:#fff;
}

  .mt-info-card-image-wrapper {
    width: 100%;
    height: 80%;
    position: relative;
    background: #ffffff;
    margin-bottom: 20px;
    overflow: hidden;
    text-decoration:none;
    position:relative;
  }


  .mt-info-card-footer {
    background:#fff;
    flex:1;
  }
  .mt-info-card-footer a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height:100%;
    padding:0 20px;
}

  .mt-info-card-link {
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    flex: 1;
  }
  .mt-product-card-box {
    padding:20px;
}


  @media screen and (max-width: 750px) {
    .mt-product-grid-container {
        padding:0 15px;
    }

    .mt-product-grid-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .mt-product-card,
    .mt-info-card {
      max-width: 100%;
      width: 100%;
    }
    .mt-product-card-title,.mt-info-card-link {
        font-size:14px;
    }
    .mt-product-card-title {
        min-height:36.5px;
    }
    .mt-product-card-box {
        padding:10px;
    }
    .mt-info-card-header ,.mt-info-card-image-wrapper{
        margin-bottom:10px;
    }
  }