.section-showcase {
    padding: 40px 166px 100px;
    width: 100%;
}

.section-showcase_title {
    text-align: center;
    font-size: 34px;
    color: #000;
    line-height: 43px;
    width: 100%;
}

.section-showcase_title img {
    width: 100%;
    height: 100%;
    max-height: 45px;
    object-fit: contain;
}

.section-showcase_follow-us {
    margin-top: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-showcase_follow-us_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 124px;
    height: 35px;
    background: linear-gradient(100.78deg, #9E34C0 -3.89%, #A735BA 10.07%, #FA117E 53.09%, #FE8465 83.73%, #FCC155 93.77%);
    border-radius: 32px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
}

.section-showcase .slick-arrow {
    width: 40px;
    height: 40px;
}

.section-showcase .slick-prev {
    left: -40px;
}

.section-showcase .slick-next {
    right: -40px;
}

.section-showcase .slick-arrow::before {
    color: #BF77F9;
    font-size: 40px;
}

.section-showcase_slider_slide_item {
    margin: 70px 15px 56px;
}

.section-showcase_slider_slide_item_image {
    width: 100%;
    height: 100%;
}

.section-showcase_slider_slide_item_image img {
    width: 100%;
    height: 100%;
}

.section-showcase_third-layer {
    display: flex;
    width: 100%;
    overflow-x: auto;
    padding: 0 15px;
}

.section-showcase_third-layer_item {
    margin-left: 30px;
}

.section-showcase_third-layer_item:first-child {
    margin-left: 0;
}

.section-showcase_slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.section-showcase_slider_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    padding: 0;
    background: transparent;
}

.section-showcase_slider_btn svg {
    width: 40px;
    height: 40px;
    color: var(--arrow-button-bg, #BF77F9);
}

.section-showcase_slider_btn[name="previous"],
.section-showcase_slider_btn[name="next"] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.section-showcase_slider_btn[name="previous"] {
    transform: translateY(-50%) rotate(-180deg);
    left: -46px;
}

.section-showcase_slider_btn[name="next"] {
    right: -46px;
}

.section-showcase_slider_btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.section-showcase_slider .product-card-wrapper .card__colors {
    padding-left: 2px;
}

.section-showcase_slider_slider {
    display: flex;
    width: 100%;
}

.section-showcase_slider .section-showcase_slider_slide:last-child {
    margin-right: 0;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
  .section-showcase {
    padding: 30px 12px 40px;
  }

  .section-showcase_title {
    font-size: 24px;
    line-height: 32px;
    height: 32px;

    svg {
      width: 90%;
    }
  }

  /* Follow Us 按钮样式 */
  .section-showcase_follow-us {
    margin-top: 12px;
  }

  .section-showcase_follow-us_btn {
    width: 100px;
    height: 30px;
    font-size: 14px;
    line-height: 18px;
  }

  .section-showcase_first-layer,
  .section-showcase_second-layer,
  .section-showcase_third-layer {
    margin-top: 20px;
  }

  /* 隐藏导航按钮 */
  .section-showcase_slider_btn {
    display: none;
  }

  /* 调整滑块布局为网格 */
  .section-showcase_slider_slider {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  /* 调整卡片样式 */
  .section-showcase_slider_slide_item {
    margin: 0;
    width: 100%;
  }

  /* 调整图片容器 */
  .section-showcase_slider_slide_item_image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
  }

  .section-showcase_slider_slide_item_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* 调整商品信息 */
  .section-showcase_third-layer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0;
    margin-top: 20px;
    overflow: visible;
  }

  .section-showcase_third-layer_item {
    margin: 0;
    position: relative;
  }

  /* 商品图片容器 */
  .section-showcase_third-layer_item .showcase-card-3 {
    width: 100%;
    height: auto;
    aspect-ratio: 0.8;
    border-radius: 10px;
    overflow: hidden;
  }

  /* 商品信息卡片 */
  .section-showcase_third-layer_item .showcase-card-3_product {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 8px;
    padding: 8px;
    border-radius: 8px;
    background: #F5F4F673;
    backdrop-filter: blur(4.75px);
    display: flex;
    align-items: center;
  }

  /* 商品缩略图 */
  .section-showcase_third-layer_item .showcase-card-3_product_image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
  }

  /* 商品信息 */
  .section-showcase_third-layer_item .showcase-card-3_product_info {
    flex: 1;
    margin-left: 8px;
    min-width: 0;
  }

  .section-showcase_third-layer_item .showcase-card-3_product_info_title {
    font-size: 12px;
    line-height: 16px;
    color: #000;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }

  .section-showcase_third-layer_item .showcase-card-3_product_info_price {
    font-size: 12px;
    line-height: 16px;
    color: var(--theme-color);
    margin: 0;
  }

  /* 添加到购物车按钮 */
  .section-showcase_third-layer_item .showcase-card-3_product_btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
  }

  .section-showcase_third-layer_item .showcase-card-3_product_btn svg {
    width: 14px;
    height: 14px;
    color: #fff;
  }

  /* 播放按钮 */
  .section-showcase_third-layer_item .showcase-card-3_video-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section-showcase_third-layer_item .showcase-card-3_video-icon svg {
    width: 12px;
    height: 12px;
    color: #666;
  }

  /* 用户头像和名称 */
  .section-showcase_slider_slide_item .user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
  }

  .section-showcase_slider_slide_item .user-name {
    font-size: 12px;
    line-height: 16px;
    margin-left: 4px;
  }

  /* Instagram 图标 */
  .section-showcase_slider_slide_item .instagram-icon {
    width: 16px;
    height: 16px;
    margin-left: 4px;
  }

  /* 商品价格 */
  .section-showcase_slider_slide_item .product-price {
    font-size: 14px;
    line-height: 18px;
    margin-top: 8px;
  }

  /* 添加购物车按钮 */
  .section-showcase_slider_slide_item .add-to-cart {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 8px;
    bottom: 8px;
  }

  .section-showcase_slider_slide_item .add-to-cart svg {
    width: 14px;
    height: 14px;
    color: #fff;
  }
}

