/**
 * ceo-shop4-dsd：DSD 专用增强样式
 * 仅在 audio_type 为 dsd 时由 ceo-shop4.php 条件加载
 */

.ceo-shop4--dsd .album-subtitle {
  font-weight: 900;
}

/* 核心规格与参数：透明容器，左右两块各自独立，间距 10px */
.ceo-shop4--dsd .master-card {
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.45fr);
  gap: 10px;
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.ceo-shop4--dsd .master-core.master-core--dsd {
  padding: 0;
  min-height: 168px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-right: 1px solid var(--color-line);
  border-radius: 10px;
}

.ceo-shop4--dsd .master-grid {
  border: 1px solid var(--color-line);
  background: var(--color-panel-2);
  border-radius: 10px;
}

.ceo-shop4--dsd .ceo-shop4-dsd-hero {
  width: 100%;
  min-height: 100%;
  position: relative;
  background:
        linear-gradient(135deg, rgb(33 23 13 / 0%) 0%, rgb(13 13 13 / 74%) 58%, rgb(23 18 15 / 0%) 100%),
        url(https://hiresimg.100tiao.cn/img/icon/133.jpg) center / cover no-repeat;
  color: #f5efe4;
  padding: 8px 111px 5px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* 圆形 DSD Logo */
.ceo-shop4-dsd-circle {
  position: absolute;
  right: 39px;
  top: 50%;
  /* 使用整像素偏移避免亚像素模糊：先 translate 后用 translateZ(0) 触发独立合成层 */
  transform: translateY(-50%) translateZ(0);
  width: 106px;
  height: 106px;
  border-radius: 50%;
  border: 2px solid rgba(255, 216, 133, 0.7);
  background: radial-gradient(circle at 38% 38%, rgba(255, 187, 77, 0.22) 0%, rgba(255, 187, 77, 0.04) 60%, transparent 100%);
  box-shadow:
    0 0 10px 2px rgba(255, 200, 80, 0.35),
    0 0 24px 6px rgba(255, 180, 40, 0.2),
    0 0 48px 12px rgba(255, 160, 20, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  will-change: transform;
}

.ceo-shop4-dsd-circle-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
  /* SVG 矢量图强制走高质量渲染通道 */
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.ceo-shop4--dsd .ceo-shop4-dsd-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: fit-content;
  padding: 5px 10px;
  border: 1px solid rgba(255, 211, 137, 0.5);
  color: #ffd885;
  background: rgba(255, 211, 137, 0.08);
  font-size: 12px;
  line-height: 1;
  margin-bottom: 12px;
}

.ceo-shop4--dsd .ceo-shop4-dsd-badge-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  display: block;
  vertical-align: middle;
  position: relative;
  top: -0.5px;
}

.ceo-shop4--dsd .ceo-shop4-dsd-title {
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 900;
  color: #fff6e8;
}

.ceo-shop4--dsd .ceo-shop4-dsd-desc {
  margin: 12px 0 0;
  color: rgba(255, 247, 230, 0.86);
  font-size: 14px;
  line-height: 1.6;
  max-width: 92%;
}
.ceo-shop4 .master-kv{
  padding: 7px 15px 7px;
}

/* 购买理由：5 等分卡片，纵向排列 icon/title/desc */
.ceo-shop4--dsd .insight-strip.insight-strip--dsd {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.ceo-shop4--dsd .insight-item.insight-item--dsd {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  min-height: 162px;
  padding: 25px 12px 6px;
}

.ceo-shop4--dsd .insight-item.insight-item--dsd .insight-item-ico {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ceo-shop4--dsd .insight-item.insight-item--dsd .insight-item-ico-img {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
}

.ceo-shop4--dsd .insight-item.insight-item--dsd > strong {
  font-size: 15px;
  line-height: 1.3;
  margin: 0;
  color: #000;
  text-align: center;
  width: 100%;
}

.ceo-shop4--dsd .insight-item.insight-item--dsd > .insight-item-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.72);
  text-align: center;
  width: 100%;
}

@media (max-width: 1200px) {
  .ceo-shop4--dsd .ceo-shop4-dsd-title {
    font-size: 40px;
  }
}

@media (max-width: 1024px) {
  .ceo-shop4--dsd .insight-strip.insight-strip--dsd {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .ceo-shop4--dsd .master-card {
    grid-template-columns: 1fr;
  }

  .ceo-shop4--dsd .master-core.master-core--dsd {
    min-height: 180px;
  }

  .ceo-shop4--dsd .ceo-shop4-dsd-hero {
    padding: 18px 110px 18px 16px;
  }

  .ceo-shop4--dsd .ceo-shop4-dsd-circle {
    width: 80px;
    height: 80px;
    right: 16px;
  }

  .ceo-shop4--dsd .ceo-shop4-dsd-circle-logo {
    width: 56px;
    height: 56px;
  }

  .ceo-shop4--dsd .ceo-shop4-dsd-title {
    font-size: 30px;
  }

  .ceo-shop4--dsd .ceo-shop4-dsd-desc {
    max-width: 100%;
  }

  .ceo-shop4--dsd .insight-strip.insight-strip--dsd {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .ceo-shop4--dsd .insight-strip.insight-strip--dsd {
    grid-template-columns: 1fr;
  }
}
