.product-showcase-block {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.product-showcase-block * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 系列书本样式 */
.product-showcase-block .luxury-series-book-spread {
  width: 100%;
  height: 100%;
  min-height: 70vh;
  max-height: 100%;
  background: white;
  border-radius: min(1vw, 8px);
  display: flex;
  position: relative;
  overflow: hidden;
  margin: auto;
}

/* 书脊中缝效果 */
.product-showcase-block .luxury-series-book-spread::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  z-index: 15;
  transform: translateX(-50%);
}

/* 系列页面样式 */
.product-showcase-block .luxury-series-page {
  flex: 1;
  padding: min(4vh, 25px) min(4vw, 30px) min(6vh, 40px) min(4vw, 30px);
  position: relative;
  background: #fefefe;
}

.product-showcase-block .luxury-series-page-left {
  background: linear-gradient(135deg, #fefefe 0%, #f8f8f8 100%);
  background-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 85%,
    rgba(0, 0, 0, 0.02) 90%,
    rgba(0, 0, 0, 0.08) 95%,
    rgba(0, 0, 0, 0.15) 98%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

.product-showcase-block .luxury-series-page-right {
  background: linear-gradient(135deg, #f8f8f8 0%, #fefefe 100%);
  background-image: linear-gradient(
    to left,
    transparent 0%,
    transparent 85%,
    rgba(0, 0, 0, 0.02) 90%,
    rgba(0, 0, 0, 0.08) 95%,
    rgba(0, 0, 0, 0.15) 98%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

/* 页面阴影效果 */
.product-showcase-block .luxury-series-page-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(1vw, 8px);
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.15) 30%,
    rgba(0, 0, 0, 0.05) 60%,
    transparent 100%
  );
  z-index: 5;
}

.product-showcase-block .luxury-series-page-right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(1vw, 8px);
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.15) 30%,
    rgba(0, 0, 0, 0.05) 60%,
    transparent 100%
  );
  z-index: 5;
}

/* 系列页眉 */
.product-showcase-block .luxury-series-page-header {
  font-size: 14px;
  color: #666;
  font-weight: 400;
  margin-bottom: min(2.5vh, 20px);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 10;
}

/* 页面标题链接样式 */
.product-showcase-block .luxury-series-page-header-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.product-showcase-block .luxury-series-page-header-link:hover {
  color: #0066cc;
  text-decoration: underline;
}

.product-showcase-block .luxury-series-page-left .luxury-series-page-header {
  text-align: left;
}

.product-showcase-block .luxury-series-page-right .luxury-series-page-header {
  text-align: right;
}

/* 系列标题样式 */
.product-showcase-block .luxury-series-title {
  text-align: center;
  margin-bottom: min(3vh, 15px);
  position: relative;
  z-index: 10;
}

.product-showcase-block .luxury-series-title-zh {
  font-size: min(2.2vw, 18px);
  color: #333;
  font-weight: 500;
  margin-bottom: min(0.8vh, 5px);
}

.product-showcase-block .luxury-series-title-en {
  font-size: min(1.8vw, 14px);
  color: #999;
  font-weight: 300;
  letter-spacing: 1px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 英文标题装饰线 */
.product-showcase-block .luxury-series-title-en::before,
.product-showcase-block .luxury-series-title-en::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ddd;
}

.product-showcase-block .luxury-series-title-en::before {
  margin-right: min(2vw, 15px);
}

.product-showcase-block .luxury-series-title-en::after {
  margin-left: min(2vw, 15px);
}

/* 系列内容区域 */
.product-showcase-block .luxury-series-content {
  height: calc(100% - min(16vh, 120px));
  position: relative;
  z-index: 10;
}

/* 系列图片区域布局 */
.product-showcase-block .luxury-series-images-area {
  display: flex;
  gap: min(2vw, 15px);
  height: 100%;
}

/* 左页：左栏多图（滚动），右栏大图+详情 */
.product-showcase-block .luxury-series-left-three-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: min(1.5vh, 12px);
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 5px;
}

.product-showcase-block .luxury-series-right-image-detail {
  flex: 1.8;
  display: flex;
  flex-direction: column;
  gap: min(1.5vh, 12px);
}

/* 右页：左栏大图+详情，右栏多图（滚动） */
.product-showcase-block .luxury-series-left-image-detail {
  flex: 1.8;
  display: flex;
  flex-direction: column;
  gap: min(1.5vh, 12px);
}

.product-showcase-block .luxury-series-right-three-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: min(1.5vh, 12px);
  overflow-y: auto;
  overflow-x: hidden;
}

/* 滚动条样式 */
.product-showcase-block .luxury-series-left-three-images::-webkit-scrollbar,
.product-showcase-block .luxury-series-right-three-images::-webkit-scrollbar {
  width: 3px;
}

.product-showcase-block
  .luxury-series-left-three-images::-webkit-scrollbar-track,
.product-showcase-block
  .luxury-series-right-three-images::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.product-showcase-block
  .luxury-series-left-three-images::-webkit-scrollbar-thumb,
.product-showcase-block
  .luxury-series-right-three-images::-webkit-scrollbar-thumb {
  background: rgba(240, 240, 240, 0.6);
  border-radius: 3px;
  transition: background 0.3s ease;
}

.product-showcase-block
  .luxury-series-left-three-images::-webkit-scrollbar-thumb:hover,
.product-showcase-block
  .luxury-series-right-three-images::-webkit-scrollbar-thumb:hover {
  background: rgba(211, 211, 211, 0.8);
}

/* 系列图片项样式 */
.product-showcase-block .luxury-series-image-item {
  background: #f0f0f0;
  border-radius: min(0.8vw, 6px);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.product-showcase-block .luxury-series-image-item.selected {
  border: 1px solid #d6d6d6;
}



/* 小图片尺寸计算 */
.product-showcase-block
  .luxury-series-left-three-images
  .luxury-series-image-item,
.product-showcase-block
  .luxury-series-right-three-images
  .luxury-series-image-item {
  flex-shrink: 0;
  box-sizing: border-box;
}

.product-showcase-block .luxury-series-large-image {
  flex: 2;
}

/* 系列产品图片 */
.product-showcase-block .luxury-series-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
}

/* 默认装饰效果（无图片时显示） */
.product-showcase-block .luxury-series-room-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e8e8 0%, #d5d5d5 100%);
  position: relative;
}

.product-showcase-block .luxury-series-feather-wall {
  position: absolute;
  top: 20%;
  left: 20%;
  right: 20%;
  height: 40%;
  background: linear-gradient(
    135deg,
    #c8d8e8 0%,
    #a8c0d8 25%,
    #d8c8a8 50%,
    #c8a888 75%,
    #a8c8d8 100%
  );
  border-radius: min(0.5vw, 4px);
}

.product-showcase-block .luxury-series-feather-wall::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at 30% 40%,
      rgba(255, 255, 255, 0.4) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 70% 60%,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 50%
    ),
    linear-gradient(
      45deg,
      transparent 40%,
      rgba(255, 255, 255, 0.2) 50%,
      transparent 60%
    );
}

.product-showcase-block .luxury-series-furniture {
  position: absolute;
  bottom: 15%;
  left: 15%;
  right: 15%;
  height: 25%;
  background: linear-gradient(to bottom, #b8b8b8 0%, #a0a0a0 100%);
  border-radius: min(0.5vw, 4px);
}

/* 系列产品代码 */
.product-showcase-block .luxury-series-product-code {
  position: absolute;
  bottom: min(1vh, 8px);
  left: min(1vw, 8px);
  max-width: calc(100% - min(1vh, 8px) * 2);
  font-size: min(1.2vw, 10px);
  color: #666;
  background: rgba(255, 255, 255, 0.9);
  padding: min(0.3vh, 2px) min(0.8vw, 6px);
  border-radius: min(0.4vw, 3px);
  font-weight: 400;
}

/* 系列产品描述 */
.product-showcase-block .luxury-series-description {
  background: #D2B48C;
  border-radius: min(0.8vw, 6px);
  padding: 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  box-shadow: 0 min(0.3vh, 2px) min(1vh, 8px) rgba(0, 0, 0, 0.05);
  flex: 1;
  max-height: 30vh;
  overflow-y: auto;
}

.product-showcase-block .luxury-series-description-title {
  font-weight: 500;
  color: #333;
  margin-bottom: min(1vh, 8px);
}

/* 系列页码样式 */
.product-showcase-block .luxury-series-page-number-area {
  position: absolute;
  bottom: min(1vh, 10px);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-showcase-block
  .luxury-series-page-right
  .luxury-series-page-number-area {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}

.product-showcase-block .luxury-series-page-number-area::before,
.product-showcase-block .luxury-series-page-number-area::after {
  content: "";
  width: min(8vw, 60px);
  height: 1px;
  background: #ccc;
}

.product-showcase-block .luxury-series-page-number-area::before {
  margin-right: min(2vw, 15px);
}

.product-showcase-block .luxury-series-page-number-area::after {
  margin-left: min(2vw, 15px);
}

.product-showcase-block .luxury-series-page-number {
  font-size: 14px;
  color: #999;
  font-weight: 300;
}

/* 共用的翻页按钮样式 */
.product-showcase-block .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}

.product-showcase-block .nav-btn:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.product-showcase-block .nav-btn.prev {
  left: 12px;
}

.product-showcase-block .nav-btn.next {
  right: 12px;
}

.product-showcase-block .nav-btn svg {
  width: 24px;
  height: 24px;
  fill: #333;
  transition: fill 0.3s ease;
}

.product-showcase-block .nav-btn:hover svg {
  fill: #0066cc;
}

/* 当区块激活时显示按钮 */
.product-showcase-block.active .nav-btn,
.product-showcase-block:hover .nav-btn,
.product-showcase-block:focus-within .nav-btn {
  opacity: 1;
  pointer-events: auto;
}

/* 基础翻书容器 */
.product-showcase-block .flipbook-container {
  width: 100%;
  height: 100%;
  min-height: 70vh;
  max-height: 100vh;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 20px 60px rgba(0, 0, 0, 0.4),
    0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-showcase-block .flipbook-viewport {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-showcase-block .flipbook {
  width: 100%;
  height: 100%;
  position: relative;
}

/* 基础页面样式 */
.product-showcase-block .flipbook .page,
.product-showcase-block .page {
  width: 50%;
  height: 100%;
  background: white;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.product-showcase-block .page-content {
  width: 100%;
  height: 100%;
  padding: 2vh 2vw;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* 产品信息样式 */
.product-showcase-block .page-header {
  font-size: clamp(10px, 1.5vh, 14px);
  color: #666;
  margin-bottom: 2vh;
  text-align: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 1vh;
  flex-shrink: 0;
}

.product-showcase-block .product-image {
  width: 100%;
  height: 35vh;
  max-height: 35%;
  object-fit: cover;
  border-radius: 1vh;
  margin-bottom: 2vh;
  background: #f5f5f5;
  flex-shrink: 0;
}

.product-showcase-block .product-name {
  font-size: clamp(14px, 2.5vh, 20px);
  font-weight: bold;
  margin-bottom: 1vh;
  color: #333;
  line-height: 1.2;
  flex-shrink: 0;
}

.product-showcase-block .product-category {
  font-size: clamp(11px, 1.8vh, 16px);
  color: #666;
  margin-bottom: 1vh;
  flex-shrink: 0;
}

.product-showcase-block .product-sku {
  font-size: clamp(10px, 1.5vh, 14px);
  color: #999;
  margin-bottom: 2vh;
  flex-shrink: 0;
}

.product-showcase-block .product-description {
  flex: 1;
  font-size: clamp(10px, 1.6vh, 15px);
  line-height: 1.4;
  color: #555;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 6vh;
}

/* 产品详情基础样式 */
.product-showcase-block .product-description strong {
  color: #333;
  font-weight: 600;
  margin-right: 8px;
  font-size: clamp(10px, 1.4vh, 14px);
}

.product-showcase-block .product-description br {
  margin-bottom: 4px;
}

/* 产品信息项样式 */
.product-showcase-block .product-info-item {
  margin-bottom: clamp(4px, 0.8vh, 8px);
  line-height: 1.4;
  word-wrap: break-word;
}

.product-showcase-block .product-price-item {
  margin-bottom: clamp(6px, 1vh, 10px);
}

.product-showcase-block .product-stock-item {
  margin-bottom: clamp(6px, 1vh, 10px);
}

.product-showcase-block .product-desc-item {
  margin-bottom: clamp(8px, 1.2vh, 12px);
  line-height: 1.5;
}

/* 价格信息基础样式 */
.product-showcase-block .product-description del {
  color: #999;
  margin-right: 6px;
}

.product-showcase-block .product-description span[style*="color: #e74c3c"] {
  color: #e74c3c !important;
  font-weight: bold;
}

/* 库存状态基础样式 */
.product-showcase-block .product-description span[style*="color: #27ae60"] {
  color: #27ae60 !important;
  font-weight: 500;
}

.product-showcase-block .product-description span[style*="color: #f39c12"] {
  color: #f39c12 !important;
  font-weight: 500;
}

.product-showcase-block .page-number {
  position: absolute;
  bottom: 2vh;
  left: 2vw;
  right: 2vw;
  text-align: center;
  font-size: clamp(9px, 1.3vh, 12px);
  color: #999;
  padding-top: 1vh;
  border-top: 1px solid #eee;
  background: white;
  flex-shrink: 0;
}

@media (min-width: 750px) and (max-width: 1024px) {
  .product-showcase-block .luxury-series-description {
    font-size: 14px;
    padding: 18px;
    max-height: 30vh;
    overflow-y: auto;
  }
}

/* 移动端适配 - 系列专用布局 */
@media (max-width: 750px) {
  .product-showcase-block {
    min-height: auto;
    height: auto;
  }

  .product-showcase-block .luxury-series-images-area {
    height: calc(60vw + 210px);
  }

  .product-showcase-block .flipbook-container {
    width: 100%;
    height: auto;
    min-height: auto;
    max-height: none;
    overflow: visible;
    background: none;
    background-image: none;
    box-shadow: none;
    display: block;
  }

  .product-showcase-block .flipbook-viewport {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 0;
  }

  .product-showcase-block .flipbook {
    width: 100%;
    height: auto;
    display: block;
    position: static;
  }

  .product-showcase-block .flipbook + .product-showcase-block .flipbook {
    margin-top: 12px;
  }

  .product-showcase-block .flipbook .page,
  .product-showcase-block .page {
    width: 100%;
    height: auto;
    min-height: 100vh;
    position: static !important;
    display: block !important;
    transform: none !important;
    overflow: visible;
    background: none;
  }

  .product-showcase-block .luxury-series-book-spread {
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: auto;
    max-height: none;
    overflow: visible;
    background: none;
    gap: 12px;
  }

  .product-showcase-block .luxury-series-book-spread::before {
    display: none;
  }

  .product-showcase-block .nav-btn {
    display: none !important;
  }

  .product-showcase-block .page-content {
    padding: 4vh 6vw;
    height: auto;
    min-height: calc(100vh - 8vh);
  }

  .product-showcase-block .luxury-series-page {
    padding: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .product-showcase-block .luxury-series-page-left,
  .product-showcase-block .luxury-series-page-right {
    width: 100%;
    background-image: none;
    display: flex !important;
    flex-direction: column;
    min-height: auto;
    overflow: visible;
    border-radius: 8px;
  }

  .product-showcase-block .luxury-series-page-left::after,
  .product-showcase-block .luxury-series-page-right::after {
    display: none;
  }

  .product-showcase-block .luxury-series-content {
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .product-showcase-block .luxury-series-images-area {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: stretch;
    --small-image-gap: 8px;
    --container-padding: 20px;
  }

  .product-showcase-block .luxury-series-left-three-images,
  .product-showcase-block .luxury-series-right-three-images {
    max-width: 25vw;
    display: flex !important;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 4px;
    box-sizing: border-box;
    scrollbar-width: thin;
    padding-left: 0;
    padding-right: 0;
    flex: 1;
    min-height: 0;
  }

  .product-showcase-block .luxury-series-left-image-detail,
  .product-showcase-block .luxury-series-right-image-detail {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 4px;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
    flex: 1;
    min-height: 0;
  }

  .product-showcase-block
    .luxury-series-left-image-detail
    .luxury-series-image-item,
  .product-showcase-block
    .luxury-series-right-image-detail
    .luxury-series-image-item {
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #f0f0f0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0 !important;
    margin: 0;
    width: 100%;
  }

  .product-showcase-block
    .luxury-series-left-three-images
    .luxury-series-image-item,
  .product-showcase-block
    .luxury-series-right-three-images
    .luxury-series-image-item {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    box-sizing: border-box;
    object-fit: cover;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: block;
  }

  .product-showcase-block
    .luxury-series-left-three-images
    .luxury-series-image-item:last-child,
  .product-showcase-block
    .luxury-series-right-three-images
    .luxury-series-image-item:last-child {
    margin-bottom: 0 !important;
  }

  .product-showcase-block .luxury-series-title-zh {
    font-size: 4vw;
  }

  .product-showcase-block .luxury-series-title-en {
    font-size: 3vw;
  }

  .product-showcase-block .luxury-series-page-header {
    font-size: 12px;
  }

  .product-showcase-block .luxury-series-description {
    width: 100%;
    font-size: 14px;
    padding: 16px;
    line-height: 1.6;
    flex-shrink: 0;
    max-height: 30vh;
    overflow-y: auto;
  }

  .product-showcase-block .luxury-series-product-code {
    font-size: 2.2vw;
  }

  .product-showcase-block .product-image {
    height: 40vh;
    max-height: 400px;
    margin-bottom: 3vh;
  }

  .product-showcase-block .page-header {
    font-size: 16px;
    margin-bottom: 3vh;
    padding-bottom: 2vh;
  }

  .product-showcase-block .product-name {
    font-size: 24px;
    margin-bottom: 2vh;
  }

  .product-showcase-block .product-category {
    font-size: 16px;
    margin-bottom: 1.5vh;
  }

  .product-showcase-block .product-sku {
    font-size: 14px;
    margin-bottom: 2vh;
  }

  .product-showcase-block .product-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 4vh;
  }

  .product-showcase-block .page-number {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: auto;
    font-size: 14px;
    padding-top: 2vh;
  }

  .product-showcase-block .product-info-item {
    margin-bottom: 8px;
    line-height: 1.5;
  }

  .product-showcase-block .product-info-item strong {
    font-size: 14px;
    color: #333;
    display: inline-block;
    min-width: 80px;
  }
}

/* ================================
   产品选择器样式（编辑器专用）
   ================================ */
.product-selector {
  margin-bottom: 20px;
}

.product-selector-toggle {
  margin-bottom: 15px !important;
  width: 100%;
}

.product-selector-panel {
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-search {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.product-search .components-text-control__input {
  width: 100%;
  max-width: none;
}

.product-list {
  max-height: 400px;
  overflow-y: auto;
}

.loading,
.no-products {
  padding: 20px;
  text-align: center;
  color: #666;
  font-style: italic;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
}

.product-item {
  display: flex;
  align-items: flex-start;
  padding: 12px 15px;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s;
  gap: 12px;
}

.product-item:hover {
  background-color: #f9f9f9;
}

.product-item.selected {
  background-color: #e6f7ff;
  border-left: 3px solid #1890ff;
}

.product-image {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 4px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.no-image {
  font-size: 10px;
  color: #999;
  text-align: center;
  line-height: 1.2;
}

.product-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-info h4 {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.product-sku,
.product-price {
  margin: 0;
  font-size: 12px;
  color: #666;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-price {
  font-weight: 500;
  color: #e74c3c;
}

.product-actions {
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}

.product-actions .components-button {
  min-height: 32px;
  font-size: 12px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
}

.page-info {
  font-size: 12px;
  color: #666;
  white-space: nowrap;
}

/* 已选产品列表 */
.product-description-editor {
  margin-top: 10px;
}

.selected-products {
  border-radius: 6px;
  background: #f9f9f9;
  padding: 6px;
}

.selected-products h4 {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #333;
}

.selected-products-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.selected-product-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 4px;
}

.product-order {
  font-size: 12px;
  font-weight: bold;
  color: #666;
  min-width: 20px;
  flex-shrink: 0;
}

.product-name {
  flex: 1;
  font-size: 13px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-word;
}

.selected-product-item .components-button {
  flex-shrink: 0;
  font-size: 12px;
}

/* ===== 产品描述编辑器样式 ===== */

/* 产品项目包装器 */
.selected-product-item-wrapper {
  background: #fff;
  border-radius: 4px;
  margin-bottom: 15px;
  padding: 4px;
}

/* 选中的产品项目样式 */
.selected-product-item-wrapper .selected-product-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  background: transparent;
  border-radius: 0;
}

/* 产品序号 */
.selected-product-item .product-order {
  background: #0073aa;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  flex-shrink: 0;
}

/* 产品名称 */
.selected-product-item .product-name {
  flex-grow: 1;
  font-weight: 500;
  color: #333;
  font-size: 13px;
  margin: 0;
}

/* 标签样式 */
.product-description-label {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #666;
}

/* 文本区域样式 */
.product-description-textarea {
  width: 100% !important;
  padding: 8px !important;
  border: 1px solid #ddd !important;
  border-radius: 3px !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: #333 !important;
  resize: vertical !important;
  box-sizing: border-box !important;
}

.product-description-textarea:focus {
  border-color: #0073aa !important;
  outline: none !important;
  box-shadow: 0 0 0 1px #0073aa !important;
}

/* 视频支持样式 */

/* 视频缩略图容器 - 整个区域可点击 */
.product-showcase-block .luxury-series-video-thumb {
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-showcase-block .luxury-series-video-thumb:hover {
  transform: scale(1.02);
}

.product-showcase-block .luxury-series-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.product-showcase-block .luxury-series-video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* 视频播放按钮图标 - 去掉阴影，降低透明度 */
.product-showcase-block .luxury-series-video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(3vw, 30px);
  height: min(3vw, 30px);
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(1.2vw, 14px);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: none;
}

.product-showcase-block .luxury-series-video-play-icon:hover {
  background: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.05);
}

/* 大视频容器 - 去掉阴影 */
.product-showcase-block .luxury-series-video-large-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

/* 大视频容器中的播放按钮覆盖层 */
.product-showcase-block .luxury-series-video-large-container .luxury-series-video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  pointer-events: none;
}

.product-showcase-block .luxury-series-video-large-container .luxury-series-play-btn {
  color: white;
  font-size: 24px;
  margin-left: 4px; /* 视觉上居中 */
}

.product-showcase-block .luxury-series-product-video {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: min(0.5vw, 4px);
  background: #000;
  box-shadow: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: filter 0.2s ease;
}

/* 视频暂停时的视觉提示 */
.product-showcase-block .luxury-series-product-video:paused {
  filter: brightness(0.8);
}

.product-showcase-block .luxury-series-product-video:hover {
  filter: brightness(1.1);
}

/* 确保视频控件可见 */
.product-showcase-block .luxury-series-product-video::-webkit-media-controls-panel {
  background-color: rgba(0, 0, 0, 0.8);
}

/* 移动端视频样式优化 */
@media (max-width: 749px) {
  .product-showcase-block .luxury-series-video-play-icon {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
  
  .product-showcase-block .luxury-series-product-video {
    border-radius: 4px;
  }
  
  /* 移动端视频控件优化 */
  .product-showcase-block .luxury-series-product-video {
    outline: none;
  }
}

/* 超小屏幕视频样式 */
@media (max-width: 480px) {
  .product-showcase-block .luxury-series-video-play-icon {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
}

/* 视频加载状态 */
.product-showcase-block .luxury-series-product-video[data-loading="true"] {
  background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%),
              linear-gradient(-45deg, #f0f0f0 25%, transparent 25%),
              linear-gradient(45deg, transparent 75%, #f0f0f0 75%),
              linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  animation: loading-pattern 0.8s linear infinite;
}

@keyframes loading-pattern {
  0% {
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  }
  100% {
    background-position: 20px 20px, 20px 30px, 30px 10px, 10px 20px;
  }
}

/* 视频错误状态 */
.product-showcase-block .luxury-series-product-video[data-error="true"] {
  background: #f5f5f5;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(1.2vw, 14px);
}

.product-showcase-block .luxury-series-product-video[data-error="true"]:before {
  content: "视频加载失败";
}

/* 确保视频和图片在同一容器中正确显示 */
.product-showcase-block .luxury-series-large-image > .luxury-series-product-image,
.product-showcase-block .luxury-series-large-image > .luxury-series-video-large-container {
  position: relative;
  z-index: 1;
}

/* 视频缩略图选中状态特殊样式 - 更简洁的设计 */
.product-showcase-block .luxury-series-video-thumb.selected .luxury-series-video-play-icon {
  background: rgba(0, 123, 255, 0.9);
  color: white;
}

.product-showcase-block .luxury-series-video-thumb.selected:hover .luxury-series-video-play-icon {
  background: rgba(0, 123, 255, 1);
}

/* 视频封面样式 */
.product-showcase-block .luxury-series-video-cover {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.product-showcase-block .luxury-series-video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.product-showcase-block .luxury-series-video-cover:hover .luxury-series-video-play-overlay {
  background: rgba(0, 102, 204, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

.product-showcase-block .luxury-series-play-btn {
  color: white;
  font-size: 24px;
  margin-left: 3px; /* 视觉上居中 */
}

/* 移动端播放按钮优化 */
@media (max-width: 749px) {
  .product-showcase-block .luxury-series-video-play-overlay {
    width: 50px;
    height: 50px;
  }
  
  .product-showcase-block .luxury-series-play-btn {
    font-size: 20px;
  }
  
  /* 大视频容器中的移动端播放按钮 */
  .product-showcase-block .luxury-series-video-large-container .luxury-series-video-play-overlay {
    width: 60px;
    height: 60px;
  }
  
  .product-showcase-block .luxury-series-video-large-container .luxury-series-play-btn {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .product-showcase-block .luxury-series-video-play-overlay {
    width: 40px;
    height: 40px;
  }
  
  .product-showcase-block .luxury-series-play-btn {
    font-size: 16px;
  }
}

@media (min-width: 1200px) {
  .product-showcase-block {
    width: 90vw;
    margin-left: calc(50% - 45vw);
    margin-right: calc(50% - 45vw);
  }

  /* .luxury-series-book-spread {
    max-height: none;
  }

  .product-showcase-block .luxury-series-book-spread {
    max-height: none;
  } */
}