.product-detail-page-pc {
  --bbx-primary: #ff5f16;
  --bbx-text-main: #1f2937;
  --bbx-text-muted: #6b7280;
}

.product-detail-page-pc .product-main-card {
  padding: 20px;
}

.product-detail-page-pc .product-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f3f4f6;
}

.product-detail-page-pc .product-head-main {
  display: flex;
  align-items: center;
}

.product-detail-page-pc .product-title {
  margin: 0;
  color: var(--bbx-text-main);
  font-size: 32px;
  font-weight: 700;
}

.product-detail-page-pc .product-head-actions {
  display: flex;
  gap: 12px;
}

.product-detail-page-pc .product-follow-btn {
  height: 32px;
  padding: 0 16px;
  border-radius: 20px;
  color: var(--bbx-text-main);
  font-size: 13px;
  line-height: 32px;
  transition: all 0.3s;
}

.product-detail-page-pc .product-follow-btn:hover {
  border-color: var(--bbx-primary);
  color: var(--bbx-primary);
}

.product-detail-page-pc .product-follow-btn.is-active {
  border-color: #ffbf9d;
  background-color: #fff3ed;
  color: var(--bbx-primary);
}

.product-detail-page-pc .product-info-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 14px;
}

.product-detail-page-pc .product-logo-container {
  display: flex;
  width: 118px;
  height: 118px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.product-detail-page-pc .product-detail-logo-v2 {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-page-pc .product-table-container {
  min-width: 0;
  flex: 1;
}

.product-detail-page-pc .product-info-table {
  margin: 0;
}

.product-detail-page-pc .product-info-table td {
  padding: 12px 10px;
  border-color: #eef2f7;
  color: var(--bbx-text-main);
  font-size: 13px;
  vertical-align: middle;
}

.product-detail-page-pc .product-info-table .label {
  width: 92px;
  background: #fafafa;
  color: var(--bbx-text-muted);
  text-align: right;
}

.product-detail-page-pc .product-summary-panel {
  margin: 10px 0 14px;
  padding: 10px 12px;
  border: 1px solid #f1f5f9;
  border-left: 3px solid #ff5f16;
  border-radius: 10px;
  background: #fff;
}

.product-detail-page-pc .product-summary-panel p {
  margin: 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.85;
}

.product-detail-page-pc .product-summary-meta {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #e5e7eb;
}

.product-detail-page-pc .summary-meta-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 10px;
}

.product-detail-page-pc .summary-meta-row:last-child {
  margin-bottom: 0;
}

.product-detail-page-pc .summary-meta-label {
  min-width: 98px;
  color: #6b7280;
  font-size: 12px;
  line-height: 24px;
}

.product-detail-page-pc .summary-meta-values {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 8px;
}

.product-detail-page-pc .summary-meta-chip {
  display: inline-flex;
  height: 24px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #ffd9c7;
  border-radius: 14px;
  background: #fff7f2;
  color: #b45309;
  font-size: 12px;
  line-height: 1;
}

.product-detail-page-pc .summary-meta-chip-tag {
  border-color: #d6e4ff;
  background: #f3f7ff;
  color: #1d4ed8;
}

.product-detail-page-pc .summary-meta-text {
  color: #374151;
  font-size: 13px;
  line-height: 24px;
}

.product-detail-page-pc .product-scene-panel {
  margin: 0 0 14px;
  padding: 12px;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  background: #fff;
}

.product-detail-page-pc .product-section-title {
  margin: 0 0 10px;
  color: #111827;
  font-size: 15px;
  font-weight: 700;
}

.product-detail-page-pc .product-scene-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.product-detail-page-pc .product-scene-item {
  display: flex;
  height: 150px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
}

.product-detail-page-pc .product-scene-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-page-pc .product-intro-wrap {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
}

.product-detail-page-pc .product-intro {
  margin-top: 0;
  padding-top: 0;
}

.product-detail-page-pc .rich-text {
  overflow: hidden;
  color: #333;
  font-size: 15px;
  line-height: 1.8;
  overflow-wrap: break-word;
}

.product-detail-page-pc .rich-text img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.product-detail-page-pc .rich-text p {
  margin: 0 0 16px;
}

.product-detail-page-pc .rich-text h1,
.product-detail-page-pc .rich-text h2,
.product-detail-page-pc .rich-text h3,
.product-detail-page-pc .rich-text h4 {
  margin: 32px 0 16px;
  color: #111827;
  font-weight: 600;
  line-height: 1.4;
}

.product-detail-page-pc .rich-text ul,
.product-detail-page-pc .rich-text ol {
  margin: 0 0 16px 20px;
  padding: 0;
}

.product-detail-page-pc .rich-text li {
  margin-bottom: 8px;
}

.product-detail-page-pc .rich-text blockquote {
  margin: 0 0 16px;
  padding: 12px 20px;
  border-left: 4px solid #ff5f16;
  border-radius: 0 8px 8px 0;
  background: #f8fafc;
  color: #6b7280;
}

.product-detail-page-pc .product-intro.rich-text h1 {
  font-size: 24px;
}

.product-detail-page-pc .product-intro.rich-text h2 {
  font-size: 22px;
}

.product-detail-page-pc .product-intro.rich-text h3 {
  font-size: 20px;
}

.product-detail-page-pc .product-intro.rich-text h4 {
  font-size: 18px;
}

.product-detail-page-pc .product-intro.rich-text img {
  max-height: 520px;
  object-fit: contain;
}

.product-detail-page-pc .product-intro.rich-text table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.product-detail-page-pc .product-intro.rich-text th,
.product-detail-page-pc .product-intro.rich-text td {
  padding: 8px 10px;
  border: 1px solid #e5e7eb;
  font-size: 13px;
}

.product-detail-page-pc .product-jump-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  margin: 12px 0 0;
  padding: 10px;
  align-items: stretch;
  gap: 8px;
  border: 1px solid #ffe4d5;
  border-radius: 14px;
  background: linear-gradient(120deg, #fffaf6 0%, #fff 72%);
  box-shadow: 0 10px 24px rgba(255, 95, 22, 0.08);
}

.product-detail-page-pc .product-jump-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.product-detail-page-pc .product-jump-title {
  margin: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.product-detail-page-pc .product-jump-desc {
  margin: 4px 0 0;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.45;
}

.product-detail-page-pc .product-jump-actions {
  display: flex;
  margin-top: 6px;
  align-items: center;
  gap: 10px;
}

.product-detail-page-pc .product-apply-btn {
  min-width: 148px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff7a3d, #ff5f16);
  box-shadow: 0 10px 18px rgba(255, 95, 22, 0.24);
  font-size: 13px;
  font-weight: 600;
  line-height: 38px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-detail-page-pc .product-apply-btn:hover {
  box-shadow: 0 12px 20px rgba(255, 95, 22, 0.34);
  transform: translateY(-1px);
}

.product-detail-page-pc .product-apply-btn.is-loading {
  opacity: 0.85;
  pointer-events: none;
}

.product-detail-page-pc .product-apply-feedback {
  min-height: 16px;
  margin-top: 6px;
  color: #6b7280;
  font-size: 11px;
}

.product-detail-page-pc .product-apply-feedback.is-success {
  color: #047857;
}

.product-detail-page-pc .product-apply-feedback.is-error {
  color: #dc2626;
}

.product-detail-page-pc .product-jump-qr-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 8px;
  border: 1px solid #f3e0d5;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  background: #fff;
}

.product-detail-page-pc .product-jump-qr-head {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a4c2f;
  font-size: 12px;
  font-weight: 600;
}

.product-detail-page-pc .product-jump-qr-body {
  display: flex;
  min-height: 156px;
  margin-top: 6px;
  align-items: center;
  justify-content: center;
  border: 1px dashed #f2d1bf;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff9f5 0%, #fff 100%);
}

.product-detail-page-pc .product-jump-qr-loading {
  color: #9ca3af;
  font-size: 12px;
}

.product-detail-page-pc .product-jump-qr-body img {
  display: none;
  width: 132px;
  height: 132px;
  padding: 5px;
  border: 1px solid #f0dbce;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(255, 95, 22, 0.12);
}

.product-detail-page-pc .product-jump-qr-foot {
  display: flex;
  margin-top: 6px;
  flex-direction: column;
  gap: 3px;
}

.product-detail-page-pc .product-jump-qr-foot span {
  color: #7c5c4b;
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

@media (width <= 1024px) {
  .product-detail-page-pc .product-jump-panel {
    grid-template-columns: minmax(0, 1fr);
  }
}

.product-detail-page-pc .product-head > [data-pc-share] {
  display: none;
}

.product-detail-page-pc .product-share-float {
  position: fixed;
  top: 50%;
  left: calc(50% - 660px);
  z-index: 18;
  transform: translateY(-50%);
}

.product-detail-page-pc .product-share-float-btn {
  display: flex;
  width: 56px;
  min-height: 118px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
  color: var(--bbx-primary);
  cursor: pointer;
}

.product-detail-page-pc .product-share-float-btn .layui-icon {
  font-size: 22px;
  line-height: 1;
}

.product-detail-page-pc .product-share-float-btn span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

.product-detail-page-pc .pc-share-popover {
  position: absolute;
  top: 50%;
  left: 72px;
  z-index: 999;
  display: none;
  width: 300px;
  padding: 24px;
  transform: translateY(-50%);
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.product-detail-page-pc .product-share-float:hover .pc-share-popover,
.product-detail-page-pc .product-share-float.is-open .pc-share-popover {
  display: block;
  animation: pc-product-fade-in 0.2s ease-out;
}

.product-detail-page-pc .pc-share-popover-title {
  position: relative;
  margin-bottom: 16px;
  color: #1f2937;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.product-detail-page-pc .pc-share-popover-title::after {
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: #ff5f16;
  content: "";
  transform: translateX(-50%);
}

.product-detail-page-pc .pc-share-popover-qrcode {
  width: 180px;
  height: 180px;
  margin: 24px auto 16px;
  text-align: center;
}

.product-detail-page-pc .pc-share-popover-qrcode img {
  width: 100%;
  height: 100%;
  padding: 10px;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.product-detail-page-pc .pc-share-popover-tip {
  display: flex;
  margin-top: 12px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #6b7280;
  font-size: 13px;
  text-align: center;
}

.product-detail-page-pc .pc-share-popover-tip .layui-icon {
  color: #ff5f16;
  font-size: 16px;
}

.product-detail-page-pc .pc-share-copy-text {
  width: 100%;
  height: 42px;
  margin-top: 20px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff8c42, #ff5f16);
  font-size: 15px;
  font-weight: 600;
  line-height: 42px;
  transition: opacity 0.2s;
}

.product-detail-page-pc .pc-share-copy-text:hover {
  opacity: 0.9;
}

@keyframes pc-product-fade-in {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.product-detail-page-pc .comment-panel {
  margin-top: 16px;
  padding: 20px;
}

.product-detail-page-pc .comment-panel-title {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bbx-primary);
  color: var(--bbx-text-main);
}

.product-detail-page-pc .comment-panel-title .layui-icon {
  margin-right: 6px;
  color: var(--bbx-primary);
}

.product-detail-page-pc .comment-count {
  margin-left: 6px;
  color: #9ca3af;
  font-size: 14px;
}

.product-detail-page-pc .comment-login-tip {
  margin-bottom: 16px;
  padding: 12px;
  border-radius: 8px;
  background: #fff7ed;
  color: #9a3412;
}

.product-detail-page-pc .comment-login-tip a {
  color: #ff5f16;
  font-weight: 600;
}

.product-detail-page-pc .product-comment-form {
  margin-bottom: 20px;
  padding: 16px;
  border-radius: 12px;
  background: #fafafa;
}

.product-detail-page-pc .product-comment-form .layui-input-block {
  margin-left: 0;
}

.product-detail-page-pc .product-comment-form .layui-textarea {
  min-height: 106px;
  border-radius: 10px;
}

.product-detail-page-pc .comment-form-tools {
  display: flex;
  margin: 10px 0 8px;
  align-items: center;
  gap: 10px;
}

.product-detail-page-pc .comment-tip {
  color: #9ca3af;
  font-size: 12px;
}

.product-detail-page-pc .comment-reply-state {
  display: flex;
  margin: 4px 0 10px;
  align-items: center;
  gap: 8px;
  color: #ff5f16;
  font-size: 13px;
}

.product-detail-page-pc .comment-image-input {
  display: none;
}

.product-detail-page-pc .comment-form-submit-row {
  margin-bottom: 0;
}

.product-detail-page-pc .comment-image-preview {
  display: flex;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.product-detail-page-pc .comment-image-thumb {
  width: 66px;
  height: 66px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.product-detail-page-pc .comment-image-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-page-pc .comment-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-detail-page-pc .comment-square-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.product-detail-page-pc .comment-square-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.product-detail-page-pc .avatar {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: #e4e6eb;
  color: #ff5f16;
}

.product-detail-page-pc .avatar-image {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.product-detail-page-pc .comment-avatar-fallback-icon {
  color: #c0c4cc;
  font-size: 24px;
}

.product-detail-page-pc .head-main {
  min-width: 0;
  flex: 1;
}

.product-detail-page-pc .user-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-detail-page-pc .name {
  color: #333;
  font-size: 15px;
  font-weight: 600;
}

.product-detail-page-pc .content {
  margin-top: 12px;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
}

.product-detail-page-pc .comment-footer {
  display: flex;
  margin-top: 16px;
  align-items: center;
  justify-content: space-between;
}

.product-detail-page-pc .time {
  color: #999;
  font-size: 12px;
}

.product-detail-page-pc .comment-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-detail-page-pc .action-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #999;
  font-size: 13px;
  cursor: pointer;
  transition: color 0.2s;
}

.product-detail-page-pc .action-item:hover {
  color: #ff5f16;
}

.product-detail-page-pc .reply-list {
  display: flex;
  margin-top: 16px;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-radius: 6px;
  background: #f2f2f2;
}

.product-detail-page-pc .reply-item {
  color: #555;
  font-size: 13px;
  line-height: 1.6;
}

.product-detail-page-pc .reply-item-compact {
  margin-bottom: 8px;
}

.product-detail-page-pc .reply-item-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.product-detail-page-pc .reply-user {
  margin-right: 4px;
  color: #888;
  font-size: 13px;
}

.product-detail-page-pc .reply-user-highlight {
  color: #576b95;
  font-weight: 500;
}

.product-detail-page-pc .reply-content {
  color: #333;
  white-space: pre-wrap;
}

.product-detail-page-pc .reply-content-main {
  color: #333;
}

.product-detail-page-pc .reply-meta {
  margin-top: 4px;
  color: #999;
  font-size: 12px;
}

.product-detail-page-pc .comment-reply-avatar {
  width: 30px;
  height: 30px;
  font-size: 12px;
}

.product-detail-page-pc .comment-images {
  display: flex;
  margin-top: 8px;
  flex-wrap: wrap;
  gap: 8px;
}

.product-detail-page-pc .comment-image-box {
  display: inline-flex;
  width: 74px;
  height: 74px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.product-detail-page-pc .comment-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-page-pc .comment-empty {
  padding: 28px 0;
  color: #9ca3af;
  text-align: center;
}

@media (width <= 1520px) {
  .product-detail-page-pc .product-share-float {
    left: 16px;
  }
}

@media (width <= 1200px) {
  .product-detail-page-pc .product-share-float {
    display: none;
  }
}

.product-detail-page-v3 {
  padding-bottom: 72px;
  scroll-behavior: smooth;
}

.product-detail-page.product-detail-page-v3 .products-detail-v3.product-detail-shell {
  padding-top: calc(env(safe-area-inset-top, 0px) + 86px);
}

.product-detail-page-v3 #product-apply,
.product-detail-page-v3 #product-intro,
.product-detail-page-v3 #product-comments {
  scroll-margin-top: calc(env(safe-area-inset-top, 0px) + 68px);
}

.product-detail-page-v3 .product-sticky-head-v3 {
  min-height: 56px;
  padding: calc(env(safe-area-inset-top, 0px) + 8px) 12px 8px;
  border-bottom: 1px solid #f0f0f0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.product-detail-page-v3 .product-sticky-title {
  font-size: 16px;
  font-weight: 600;
}

.product-detail-page-v3 .product-module-v3 {
  margin-top: 10px;
  padding: 14px 0 4px;
  border-top: 1px solid #eef2f7;
  background: transparent;
}

.product-detail-page-v3 .product-module-v3::before {
  content: none;
}

.product-detail-page-v3 .product-module-v3-head {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.product-detail-page-v3 .product-module-v3-head::before {
  content: none;
}

.product-detail-page-v3 .product-module-v3-scene {
  border-left: none;
}

.product-detail-page-v3 .product-module-v3-scene::before {
  content: none;
}

.product-detail-page-v3 .product-module-v3-record {
  border-left: none;
}

.product-detail-page-v3 .product-module-v3-record::before {
  content: none;
}

.product-detail-page-v3 .product-module-v3-comment {
  border-left: none;
}

.product-detail-page-v3 .product-module-v3-comment::before {
  content: none;
}

.product-detail-page-v3 .product-back-button-v3 {
  display: inline-flex;
}

.product-detail-page-v3 .product-hero-panel-v3 {
  padding-top: 10px;
  padding-bottom: 8px;
  background:
    radial-gradient(circle at top right, rgba(255, 122, 61, 0.14), transparent 36%),
    linear-gradient(180deg, #fff8f2, #fcfdff 56%, #fff);
}

.product-detail-page-v3 .product-header-lite {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-detail-page-v3 .product-logo-lite-wrap {
  display: flex;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #edf1f7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.product-detail-page-v3 .product-logo-lite {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-page-v3 .product-header-lite-main {
  min-width: 0;
  flex: 1;
}

.product-detail-page-v3 .product-header-lite-title {
  margin: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.product-detail-page-v3 .product-header-lite-owner {
  display: inline-flex;
  margin-top: 6px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
}

.product-detail-page-v3 .product-header-lite-owner span {
  margin-left: 2px;
  color: #1f2937;
  font-weight: 500;
}

.product-detail-page-v3 .product-header-lite-stats-v3 {
  display: grid;
  width: 100%;
  margin-top: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-detail-page-v3 .product-stat-card-v3 {
  display: flex;
  min-height: 76px;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.product-detail-page-v3 .product-stat-label-v3 {
  color: #94a3b8;
  font-size: 11px;
  line-height: 1.4;
}

.product-detail-page-v3 .product-stat-value-v3 {
  margin-top: 8px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  word-break: break-word;
}

.product-detail-page-v3 .product-hero-actions-v3 {
  display: flex;
  margin-top: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.product-detail-page-v3 .product-hero-action-v3 {
  display: inline-flex;
  min-width: 0;
  height: 34px;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: #334155;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 0 12px;
}

.product-detail-page-v3 button.product-hero-action-v3 {
  appearance: none;
  -webkit-appearance: none;
}

.product-detail-page-v3 .product-hero-action-highlight-v3 {
  border-color: #ffd2bd;
  background: linear-gradient(180deg, #fff8f3 0%, #fff1e8 100%);
  color: #c2410c;
}

.product-detail-page-v3 .product-header-lite-meta {
  display: flex;
  margin-top: 7px;
  flex-wrap: wrap;
  gap: 6px;
}

.product-detail-page-v3 .product-header-lite-meta span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 7px;
  border: 1px solid #eceff5;
  border-radius: 999px;
  background: #f8fafc;
  color: #64748b;
  font-size: 11px;
  line-height: 1;
}

.product-detail-page-v3 .product-header-lite-meta strong {
  color: #0f172a;
  font-size: 11px;
  font-weight: 600;
}

.product-detail-page-v3 .product-owner-panel {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid #fee2d5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.product-detail-page-v3 .product-owner-summary {
  margin: 0;
  color: #334155;
  font-size: 13px;
  line-height: 1.75;
}

.product-detail-page-v3 .product-owner-meta {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #e5e7eb;
}

.product-detail-page-v3 .owner-meta-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.product-detail-page-v3 .owner-meta-row:last-child {
  margin-bottom: 0;
}

.product-detail-page-v3 .owner-meta-label {
  min-width: 78px;
  color: #6b7280;
  font-size: 11px;
  line-height: 22px;
}

.product-detail-page-v3 .owner-meta-values {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 6px;
}

.product-detail-page-v3 .owner-meta-chip {
  display: inline-flex;
  height: 22px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid #ffd9c7;
  border-radius: 999px;
  background: #fff7f2;
  color: #b45309;
  font-size: 11px;
}

.product-detail-page-v3 .owner-meta-chip-tag {
  border-color: #d6e4ff;
  background: #f3f7ff;
  color: #1d4ed8;
}

.product-detail-page-v3 .owner-meta-text {
  color: #374151;
  font-size: 12px;
  line-height: 1.7;
}

.product-detail-page-v3 .product-scene-panel-v3 {
  margin-top: 14px;
}

.product-detail-page-v3 .product-scene-gallery-v3 {
  display: grid;
  margin-top: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.product-detail-page-v3 .product-scene-item-v3 {
  display: flex;
  height: 136px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.product-detail-page-v3 .product-scene-item-v3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-page-v3 .product-record-panel-v3,
.product-detail-page-v3 .product-quick-panel-v3,
.product-detail-page-v3 .product-intro-panel-v3 {
  margin-top: 14px;
}

.product-detail-page-v3 .record-panel-desc {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.6;
}

.product-detail-page-v3 .record-panel-cta {
  margin-top: 10px;
}

.product-detail-page-v3 .product-quick-card-v3 {
  margin-top: 10px;
  padding: 14px;
  border: 1px solid #fed7aa;
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(255, 122, 61, 0.12), transparent 36%),
    linear-gradient(135deg, #fffaf5 0%, #fff 72%);
  box-shadow: 0 12px 28px rgba(255, 95, 22, 0.1);
}

.product-detail-page-v3 .record-panel-cta-v3 {
  display: block;
}

.product-detail-page-v3 .record-panel-apply {
  display: inline-flex;
  width: 100%;
  height: 42px;
  min-width: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid #f97316;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff8c42, #ff5f16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 10px 20px rgba(194, 65, 12, 0.22);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.product-detail-page-v3 .record-panel-apply-secondary {
  border-color: #fdba74;
  background: #fff7ed;
  box-shadow: none;
  color: #c2410c;
}

.product-detail-page-v3 .product-apply-feedback-v3 {
  min-height: 16px;
  margin-top: 6px;
  color: #6b7280;
  font-size: 11px;
}

.product-detail-page-v3 .product-apply-feedback-v3.is-success {
  color: #047857;
}

.product-detail-page-v3 .product-apply-feedback-v3.is-error {
  color: #dc2626;
}

.product-detail-page-v3 .product-intro-tip-v3 {
  margin: 8px 0 0;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  color: #64748b;
  font-size: 12px;
  line-height: 1.6;
}

.product-detail-page-v3 .product-record-richtext {
  margin-top: 12px;
  color: #374151;
  font-size: 13px;
  line-height: 1.75;
}

.product-detail-page-v3 .product-record-richtext img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 16px auto;
  border-radius: 12px;
}

.product-detail-page-v3 .product-record-richtext table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.product-detail-page-v3 .product-record-richtext th,
.product-detail-page-v3 .product-record-richtext td {
  padding: 8px 10px;
  border: 1px solid #e5e7eb;
  font-size: 12px;
}

.product-detail-page-v3 .comment-head-v3 {
  margin: 2px 0 10px;
}

.product-detail-page-v3 .comment-count-v3 {
  margin-left: 2px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 400;
}

.product-detail-page-v3 .product-main-comment-section {
  margin-bottom: 6px;
}

.product-detail-page-v3 .comment-square-item-v3 {
  padding-top: 4px;
  border-bottom-color: #f1f5f9;
}

.product-detail-page-v3 .product-section-heading {
  margin-top: 16px;
}

.product-detail-page-v3 .comment-list-v3 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: transparent;
}

.product-detail-page-v3 .comment-square-item-v3 {
  display: flex;
  gap: 12px;
  margin-bottom: 0;
  padding: 14px 12px 16px;
  border: 1px solid #eef2f7;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.product-detail-page-v3 .comment-avatar-v3 {
  display: flex;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff1e8 0%, #ffe2d0 100%);
  color: #ff5f16;
}

.product-detail-page-v3 .comment-avatar-text-v3 {
  font-size: 14px;
  font-weight: 500;
}

.product-detail-page-v3 .comment-avatar-fallback-v3 {
  color: #c0c4cc;
  font-size: 20px;
}

.product-detail-page-v3 .comment-main-v3 {
  min-width: 0;
  flex: 1;
}

.product-detail-page-v3 .comment-header-v3 {
  margin-bottom: 8px;
  padding: 0;
}

.product-detail-page-v3 .comment-user-info-v3 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-detail-page-v3 .comment-username-v3 {
  color: #576b95;
  font-size: 15px;
  font-weight: 500;
}

.product-detail-page-v3 .comment-content-v3 {
  margin-top: 4px;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

.product-detail-page-v3 .comment-images-v3 {
  display: flex;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 6px;
}

.product-detail-page-v3 .comment-image-box-v3 {
  display: inline-flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #eee;
  border-radius: 4px;
}

.product-detail-page-v3 .comment-image-v3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-page-v3 .comment-footer-v3 {
  display: flex;
  margin-top: 12px;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  border: none;
  padding: 0;
}

.product-detail-page-v3 .comment-info-v3 {
  color: #999;
  font-size: 12px;
}

.product-detail-page-v3 .comment-actions-v3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-detail-page-v3 .comment-action-v3 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  color: #64748b;
  font-size: 12px;
  padding: 0 10px;
}

.product-detail-page-v3 .comment-replies-list-v3 {
  display: flex;
  margin-top: 12px;
  flex-direction: column;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fafc;
}

.product-detail-page-v3 .comment-reply-item-v3 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: transparent;
  padding: 0;
  font-size: 13px;
  line-height: 1.5;
}

.product-detail-page-v3 .comment-reply-user-v3 {
  color: #576b95;
  font-weight: 500;
}

.product-detail-page-v3 .comment-reply-colon-v3 {
  margin: 0 2px;
  color: #333;
}

.product-detail-page-v3 .comment-reply-content-v3 {
  color: #333;
}

.product-detail-page-v3 .comment-reply-time-v3 {
  color: #999;
  font-size: 11px;
}

.product-detail-page-v3 .product-action-bar-v3 {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid #f0f0f0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}

.product-detail-page-v3 .product-action-draft-v3 {
  display: flex;
  height: 42px;
  flex: 1;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fafc;
  color: #64748b;
  font-size: 13px;
  line-height: 42px;
  text-overflow: ellipsis;
  transition: background 0.2s;
  white-space: nowrap;
  padding: 0 12px;
}

.product-detail-page-v3 .product-action-draft-icon-v3 {
  font-size: 15px;
}

.product-detail-page-v3 .product-action-group-v3 {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
}

.product-detail-page-v3 .product-action-icon-v3 {
  display: flex;
  min-width: 34px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  color: #666;
  font-size: 10px;
  line-height: 1.2;
  padding: 0;
}

.product-detail-page-v3 .product-action-icon-glyph-v3 {
  margin-bottom: 2px;
  font-size: 20px;
}

.product-detail-page-v3 .product-action-icon-glyph-active-v3 {
  color: #ff5f16;
}

.product-detail-page-v3 .product-action-apply-v3 {
  width: 112px;
  height: 42px;
  flex-shrink: 0;
  margin: 0;
  border: 1px solid #f97316;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff8c42, #ff5f16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 10px 18px rgba(194, 65, 12, 0.22);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 42px;
  text-align: center;
  letter-spacing: 0.2px;
  padding: 0;
}

.product-detail-page-v3 .product-action-apply-v3.is-loading {
  opacity: 0.8;
  pointer-events: none;
}

.product-detail-page-v3 .sheet-panel-inline-v3 {
  position: relative;
  z-index: 20000000;
  display: none;
}

.product-detail-page-v3 .related-fast-card {
  position: relative;
}

.product-detail-page-v3 .related-products-container .mobile-comment-badge {
  position: absolute;
  right: 0.12rem;
  top: 0.12rem;
  padding: 0.04rem 0.1rem;
  border: 1px solid #ffd8c8;
  border-radius: 999px;
  background: #fff5f0;
  color: #ff5f16;
  font-size: 0.2rem;
  line-height: 1;
}

.product-detail-page-v3 .related-products-container .related-fast-card .card-title {
  padding-right: 0.88rem;
}

.product-detail-page-v3 .comment-reply-state-hidden-v3 {
  display: none;
}
