/** Shopify CDN: Minification failed

Line 232:31 Unexpected "/"

**/
/* 产品详情页面响应式设计优化 */

/* 基础响应式变量 */
:root {
  --product-container-padding: 16px;
  --product-gap-mobile: 24px;
  --product-gap-desktop: 48px;

  --media-width-mobile: 100%;
  --media-width-desktop: 58.5%;

  --button-height-mobile: 56px;
  --button-height-desktop: 80px;

  --font-size-mobile: 14px;
  --font-size-desktop: 18px;
}

/* 移动设备优先的响应式设计 */
.product {
  display: flex;
  flex-direction: column;
  gap: var(--product-gap-mobile);
  padding: var(--product-container-padding);
}

.product__media-wrapper {
  width: var(--media-width-mobile);
  order: 1;
}

.product__info-wrapper {
  width: var(--media-width-mobile);
  order: 2;
  padding: 0 14px;
}

/* 产品表单响应式优化 */
.product-form__submit {
  height: var(--button-height-mobile);
  font-size: var(--font-size-mobile);
  width: 100%;
  /* margin: 16px 0; */
}

/* 产品图片画廊响应式优化 */
.product__media-gallery-thumbails {
  --slides-view: 4;
  --item-padding: 6px;
  margin: 8px 0 0;
}

/* 收藏按钮响应式优化 */
.product__favorite-btn {
  width: 40px;
  height: 40px;
  top: 12px;
  right: 12px;
}

.product__favorite-btn .favorite-icon {
  width: 24px;
  height: 24px;
}

/* Swiper导航按钮响应式优化 */
.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
}

.swiper-button-next {
  right: 12px;
}

.swiper-button-prev {
  left: 12px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
}

/* 分页指示器响应式优化 */
.swiper-pagination {
  bottom: 12px;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 4px;
}

/* 产品信息块响应式优化 */
.product__block {
  margin-bottom: 24px;
}

.product__title {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.product__price {
  font-size: 20px;
  margin-bottom: 16px;
}

/* PC端优化 (768px及以上) */
@media (min-width: 768px) {
  .product {
    flex-direction: row;
    gap: var(--product-gap-desktop);
    padding: calc(var(--product-container-padding) * 2);
  }

  .product__media-wrapper {
    width: var(--media-width-desktop);
    order: 1;
  }

  .product__info-wrapper {
    width: calc(100% - var(--media-width-desktop) - var(--product-gap-desktop));
    order: 2;
  }

  .product-form__submit {
    height: var(--button-height-desktop);
    font-size: var(--font-size-desktop);
  }

  .product__media-gallery-thumbails {
    --slides-view: 6;
    --item-padding: 10px;
  }

  .product__favorite-btn {
    width: 48px;
    height: 48px;
    top: 20px;
    right: 20px;
  }

  .product__favorite-btn .favorite-icon {
    width: 32px;
    height: 32px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 48px;
    height: 48px;
  }

  .swiper-button-next {
    right: 20px;
  }

  .swiper-button-prev {
    left: 20px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 20px;
  }

  /* .product__title {
    font-size: 32px;
  } */

  .product__price {
    font-size: 28px;
  }
}

/* 横屏模式优化 */
@media (orientation: landscape) and (max-height: 600px) {
  .product {
    gap: 16px;
    padding: 12px;
  }
  .product__media-gallery-thumbails {
    --slides-view: 6;
    --item-padding: 5px;
    margin: 4px 0 0;
  }

  .product__favorite-btn {
    width: 32px;
    height: 32px;
    top: 8px;
    right: 8px;
  }

  .product__favorite-btn .favorite-icon {
    width: 20px;
    height: 20px;
  }
}

/* 高对比度模式优化 */
@media (prefers-contrast: high) {
  .product__favorite-btn {
    border: 2px solid #000;
  }

  .swiper-button-next,
  .swiper-button-prev {
    border: 2px solid #000;
  }

  .swiper-pagination-bullet {
    border: 2px solid #000;
  }
}

/* 减少动画模式优化 */
@media (prefers-reduced-motion: reduce) {
  .product__favorite-btn,
  .swiper-button-next,
  .swiper-button-prev,
  .product__block--shopify\\:\\/\\/apps\\/judge-me-reviews\\/blocks\\/preview_badge,
  .product__block--icon_text_link .icon-text-link-wrapper {
    transition: none;
  }

  .product__favorite-btn:hover,
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    transform: none;
  }
}

/* 深色模式优化 */
@media (prefers-color-scheme: dark) {
  .product__favorite-btn {
    background: #333;
    color: #fff;
  }

  .swiper-button-next,
  .swiper-button-prev {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
  }

  .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
  }

  .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.8);
  }
}
