/* 产品详情标题样式 - 根据 Figma 设计 */

.product-detail__title {
  /* font-weight: 600; SemiBold */
  /* line-height: normal; */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: wrap;
  /* color: #333; */
  margin: 0;
  padding: 0;
}

/* 响应式：移动端 */
@media (max-width: 768px) {
  .product-detail__title {
    /* font-size: 18px; */
    /* margin-top: 24px; */
    margin-top: 0px;
    white-space: wrap;
  }
}


/* Responsive typography classes */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 959px) {
  .desktop-only {
    display: none;
  }
  
  .mobile-only {
    display: block;
  }
}
