/** Shopify CDN: Minification failed

Line 201:12 Unexpected "{"
Line 201:21 Expected ":"
Line 211:16 Unexpected "{"
Line 211:25 Expected ":"
Line 214:16 Unexpected "{"
Line 214:25 Expected ":"
Line 222:16 Unexpected "{"
Line 222:25 Expected ":"
Line 226:16 Unexpected "{"
Line 226:25 Expected ":"
... and 2 more hidden warnings

**/
.cl-product-design-section{

.mt-slider-track {
  display: none;
}
/* div:empty {
  display: block;
} */

.mt-slider-section {
  overflow: hidden;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}


.mt-slider-title.small {
  font-size: 20px;
}
.mt-slider-title.medium {
  font-size: 32px;
}
.mt-slider-title {
    text-align: center;
    margin: 0 0 32px 0;
    padding:0 10px;
    font-weight: 700;
    line-height: 56px;
    color: #313235;
    font-family: Metropolis;
        font-size: 48px;
}


.mt-slider-container {
  display: flex;
  /* transition: transform 0.4s ease; */
  gap: 24px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.mt-card {
  flex: 0 0 auto;
  background: #F9F9FB;
  text-align: center;
  border-radius:8px;
  text-decoration: none;
  display:block;
  overflow:hidden;
}

.mt-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .2s ease-in-out;
}
.mt-card img:hover {
    transform: scale(1.1);
}
.mt-card .mt-card-title {
font-weight: 800;
    margin: 0 0 32px 0;
    padding:0 10px;
    line-height: 28px;
    font-family: Metropolis;
    color:#313235;
    font-size:20px;
}

.mt-card .mt-card-desc {
  margin: 0 0 34px 0;
padding: 0 10px;
    font-weight: 500;
    line-height: 28px;
    font-family: Metropolis;
    font-size: 20px;
    color: #212123;
}
.mt-slider-wrapper {
  display: flex;
  align-items: center;
}
.mt-slider-container {
  flex: 1; /* 占据中间最大空间 */
  overflow-x: hidden;
}
.mt-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.mt-button {
  display: inline-block;
  padding: 12px 32px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  margin: 30px auto 0;
  display: none;
  max-width: 260px;
}

.mt-arrow {
  /* position: absolute; */
  top: 50%;
  transform: translateY(-50%);
  border: none;
  cursor: pointer;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 24px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mt-arrow img {
  width: 30%;
  height: auto;
}

.mt-arrow.left {
  margin-right: 10px;
}
.mt-arrow.right {
  margin-left: 10px;
}

/* 滚动条 */
.mt-slider-track {
  position: relative;
  width: 100%;
  height: 6px;
  background-color: #e0e0cc;
  border-radius: 3px;
  margin-top: 24px;
}

.mt-slider-thumb {
  position: absolute;
  height: 100%;
  width: 30px; /* 滑块宽度 */
  background-color: #555e3c;
  border-radius: 3px;
  left: 0;
  transition: left 0.2s ease;
}

@media screen and (max-width: 768px) {
  .mt-arrow {
    display: none !important;
  }
  .mt-slider-container {
    overflow-x: auto !important;
  }
  .mt-slider-container::-webkit-scrollbar {
    display: none;
  }
  .mt-card img {
    margin-top: 24px;
  }
  .mt-slider-progress {
    display: none;
  }
  .mt-slider-track {
    display: none;
  }
 .mt-slider-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 23px;
  }
.mt-slider-title {
        font-size: 36px;
        line-height:44px;
}
#mt-slider-{{ section.id }} .mt-card__badge {
    margin: 0 0 32px 0 !important; 
}
  .mt-card {
    scroll-snap-align: start;
    flex: 0 0 auto;
  }
}
 @media (min-width: 990px){
   
    #mt-slider-{{ section.id }} .mt-arrow:hover{ box-shadow: 0 4px 14px rgba(0,0,0,.12); }

    /* 核心：用“只显示上边框和右边框”的小盒子 + 旋转 */
    #mt-slider-{{ section.id }} .mt-arrow__icon{
      width: calc(var(--arrow-size) * .36);
      height: calc(var(--arrow-size) * .36);
      border-top: var(--arrow-line) solid currentColor;
      border-right: var(--arrow-line) solid currentColor;
      display: inline-block;
    }
    /* 右箭头：旋转 45° */
    #mt-slider-{{ section.id }} .mt-arrow.is-right .mt-arrow__icon{
      transform: rotate(45deg);
    }
    /* 左箭头：旋转 -135°（等价于 225°） */
    #mt-slider-{{ section.id }} .mt-arrow.is-left .mt-arrow__icon{
      transform: rotate(-135deg);
    }
  }

  /* “Only at Apple” 徽标样式 */
  #mt-slider-{{ section.id }} .mt-card__badge{
    margin: var(--badge-gap) 0;
    text-align: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    color: var(--badge-color);
    letter-spacing: .2px;
    user-select: none;
  }
}