/* TC_PROFESSIONAL_COMMERCE_V2 - 专业电商设计系统 */

/* === 设计变量 === */
:root {
  --pc-primary: #6366f1;
  --pc-primary-dark: #4f46e5;
  --pc-accent: #f59e0b;
  --pc-success: #10b981;
  --pc-danger: #ef4444;
  --pc-warning: #f59e0b;
  --pc-bg: #f8fafc;
  --pc-bg-card: #ffffff;
  --pc-text: #1e293b;
  --pc-text-secondary: #64748b;
  --pc-text-muted: #94a3b8;
  --pc-border: #e2e8f0;
  --pc-border-light: #f1f5f9;
  --pc-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --pc-shadow: 0 4px 12px rgba(0,0,0,0.08);
  --pc-shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --pc-radius-sm: 8px;
  --pc-radius: 12px;
  --pc-radius-lg: 16px;
  --pc-radius-xl: 24px;
  --pc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === 全局基础 === */
.pc-root {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  color: var(--pc-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* === 容器 === */
.pc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === Hero Section === */
.pc-hero {
  position: relative;
  padding: 60px 20px 50px;
  text-align: center;
  overflow: hidden;
  color: #fff;
}
.pc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cat-gradient, linear-gradient(135deg, #6366f1, #3b82f6));
  z-index: 0;
}
.pc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.15), transparent 60%);
  z-index: 1;
}
.pc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.pc-hero-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}
.pc-hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.pc-hero p {
  font-size: 17px;
  opacity: 0.92;
  margin: 0 0 24px;
}
.pc-hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.pc-hero-stat {
  text-align: center;
}
.pc-hero-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
}
.pc-hero-stat span {
  font-size: 13px;
  opacity: 0.8;
}

/* === 信任徽章 === */
.pc-trust-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.pc-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

/* === 产品对比表格 === */
.pc-compare-section {
  padding: 50px 20px;
  background: var(--pc-bg);
}
.pc-section-title {
  text-align: center;
  margin-bottom: 32px;
}
.pc-section-title h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  margin: 0 0 8px;
}
.pc-section-title p {
  color: var(--pc-text-secondary);
  font-size: 15px;
  margin: 0;
}

.pc-compare-table-wrapper {
  overflow-x: auto;
  background: var(--pc-bg-card);
  border-radius: var(--pc-radius-lg);
  box-shadow: var(--pc-shadow);
  max-width: 1200px;
  margin: 0 auto;
}
.pc-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}
.pc-compare-table thead {
  background: linear-gradient(135deg, var(--cat-color, #6366f1), var(--cat-secondary, #3b82f6));
  color: #fff;
}
.pc-compare-table th {
  padding: 16px 14px;
  font-weight: 600;
  font-size: 14px;
  text-align: left;
  white-space: nowrap;
}
.pc-compare-table td {
  padding: 14px;
  border-bottom: 1px solid var(--pc-border-light);
  font-size: 14px;
  vertical-align: middle;
}
.pc-compare-table tbody tr:hover {
  background: var(--pc-border-light);
}
.pc-compare-table tbody tr:last-child td {
  border-bottom: none;
}
.pc-product-name-cell {
  font-weight: 600;
  color: var(--pc-text);
  max-width: 220px;
}
.pc-product-name-cell a {
  color: inherit;
  text-decoration: none;
  transition: var(--pc-transition);
}
.pc-product-name-cell a:hover {
  color: var(--pc-primary);
}
.pc-price-cell {
  font-weight: 700;
  color: var(--pc-danger);
  font-size: 16px;
}
.pc-rating-stars {
  color: #f59e0b;
  font-size: 14px;
  font-weight: 600;
}
.pc-sales-cell {
  color: var(--pc-text-secondary);
  font-size: 13px;
}
.pc-commission-cell {
  color: var(--pc-success);
  font-weight: 600;
}
.pc-cta-btn {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--cat-color, #6366f1), var(--cat-secondary, #3b82f6));
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: var(--pc-transition);
  white-space: nowrap;
}
.pc-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* === 产品卡片 === */
.pc-product-card {
  background: var(--pc-bg-card);
  border-radius: var(--pc-radius-lg);
  padding: 20px;
  box-shadow: var(--pc-shadow-sm);
  transition: var(--pc-transition);
  border: 1px solid var(--pc-border-light);
}
.pc-product-card:hover {
  box-shadow: var(--pc-shadow-lg);
  transform: translateY(-4px);
}

/* === 购买指南 === */
.pc-guide-section {
  padding: 50px 20px;
  background: var(--pc-bg-card);
}
.pc-guide-steps {
  max-width: 900px;
  margin: 0 auto;
  counter-reset: step;
}
.pc-guide-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 16px;
  background: var(--pc-bg);
  border-radius: var(--pc-radius);
  border-left: 4px solid var(--cat-color, #6366f1);
  transition: var(--pc-transition);
}
.pc-guide-step:hover {
  transform: translateX(4px);
  box-shadow: var(--pc-shadow);
}
.pc-guide-step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--cat-color, #6366f1), var(--cat-secondary, #3b82f6));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.pc-guide-step-content h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
}
.pc-guide-step-content p {
  margin: 0;
  color: var(--pc-text-secondary);
  font-size: 14px;
}

/* === Quiz Teaser === */
.pc-quiz-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, var(--cat-color, #6366f1), var(--cat-secondary, #3b82f6));
  color: #fff;
  text-align: center;
}
.pc-quiz-card {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--pc-radius-xl);
  padding: 40px 30px;
}
.pc-quiz-icon {
  font-size: 56px;
  margin-bottom: 16px;
}
.pc-quiz-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 12px;
}
.pc-quiz-card p {
  font-size: 16px;
  opacity: 0.9;
  margin: 0 0 24px;
}
.pc-quiz-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: var(--cat-color, #6366f1);
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: var(--pc-transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.pc-quiz-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* === 相关指南 === */
.pc-related-section {
  padding: 50px 20px;
  background: var(--pc-bg);
}
.pc-related-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.pc-related-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--pc-bg-card);
  border-radius: var(--pc-radius);
  box-shadow: var(--pc-shadow-sm);
  text-decoration: none;
  color: var(--pc-text);
  transition: var(--pc-transition);
  border: 1px solid var(--pc-border-light);
}
.pc-related-card:hover {
  border-color: var(--cat-color, #6366f1);
  box-shadow: var(--pc-shadow);
  transform: translateX(4px);
}
.pc-related-card-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.pc-related-card span {
  font-size: 14px;
  font-weight: 500;
}

/* === FTC披露 === */
.pc-ftc-disclosure {
  padding: 30px 20px;
  background: #fef3c7;
  border-top: 3px solid var(--pc-warning);
  text-align: center;
}
.pc-ftc-disclosure p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 13px;
  color: #92400e;
  line-height: 1.6;
}

/* === 产品深度评测页样式 === */

/* 产品摘要卡 */
.pr-summary-card {
  background: linear-gradient(135deg, #1e293b, #334155);
  color: #fff;
  border-radius: var(--pc-radius-lg);
  padding: 32px;
  margin: 20px 0;
  box-shadow: var(--pc-shadow-lg);
}
.pr-summary-card-top {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.pr-product-visual {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: var(--pc-radius);
  background: linear-gradient(135deg, var(--cat-color, #6366f1), var(--cat-secondary, #3b82f6));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.pr-product-info {
  flex: 1;
  min-width: 200px;
}
.pr-product-info h1 {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.3;
}
.pr-tagline {
  font-size: 14px;
  opacity: 0.85;
  margin: 0 0 16px;
  line-height: 1.5;
}
.pr-meta-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.pr-price-block {
  text-align: center;
  padding: 8px 16px;
  background: rgba(239, 68, 68, 0.2);
  border-radius: var(--pc-radius);
}
.pr-price-block .price {
  font-size: 24px;
  font-weight: 800;
  color: #fca5a5;
}
.pr-price-block .label {
  font-size: 11px;
  opacity: 0.7;
}
.pr-commission-block {
  text-align: center;
  padding: 8px 16px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: var(--pc-radius);
}
.pr-commission-block .val {
  font-size: 20px;
  font-weight: 800;
  color: #6ee7b7;
}
.pr-commission-block .label {
  font-size: 11px;
  opacity: 0.7;
}
.pr-rating-block {
  text-align: center;
  padding: 8px 16px;
  background: rgba(245, 158, 11, 0.2);
  border-radius: var(--pc-radius);
}
.pr-rating-block .val {
  font-size: 20px;
  font-weight: 800;
  color: #fcd34d;
}
.pr-rating-block .label {
  font-size: 11px;
  opacity: 0.7;
}
.pr-verdict-block {
  text-align: center;
  padding: 8px 16px;
  background: rgba(99, 102, 241, 0.2);
  border-radius: var(--pc-radius);
}
.pr-verdict-block .val {
  font-size: 20px;
  font-weight: 800;
  color: #a5b4fc;
}
.pr-verdict-block .label {
  font-size: 11px;
  opacity: 0.7;
}
.pr-cta-row {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.pr-cta-primary {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  border-radius: var(--pc-radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: var(--pc-transition);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}
.pr-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
}
.pr-cta-secondary {
  display: inline-block;
  padding: 14px 24px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: var(--pc-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--pc-transition);
}
.pr-cta-secondary:hover {
  background: rgba(255,255,255,0.25);
}
.pr-trust-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.pr-trust-item {
  font-size: 12px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
}

/* 评测内容区域 */
.pr-review-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.pr-section {
  margin: 40px 0;
}
.pr-section h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cat-color, #6366f1);
  color: var(--pc-text);
}
.pr-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 12px;
  color: var(--pc-text);
}
.pr-section p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--pc-text);
  margin: 0 0 12px;
}
.pr-section ul {
  padding-left: 20px;
  margin: 12px 0;
}
.pr-section ul li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 6px;
  color: var(--pc-text);
}

/* Pros & Cons */
.pr-pros-cons-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pr-pros-box, .pr-cons-box {
  padding: 20px;
  border-radius: var(--pc-radius);
}
.pr-pros-box {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #a7f3d0;
}
.pr-cons-box {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border: 1px solid #fecaca;
}
.pr-pros-box h3 {
  color: #065f46;
  margin-top: 0;
}
.pr-cons-box h3 {
  color: #991b1b;
  margin-top: 0;
}
.pr-fair-assessment {
  margin-top: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 1px solid #fde68a;
  border-radius: var(--pc-radius);
}
.pr-fair-assessment h3 {
  color: #92400e;
  margin-top: 0;
}

/* 用户画像 */
.pr-persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.pr-persona-card {
  padding: 20px;
  background: var(--pc-bg);
  border-radius: var(--pc-radius);
  border-left: 4px solid var(--cat-color, #6366f1);
}
.pr-persona-card h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}
.pr-persona-card p {
  font-size: 14px;
  color: var(--pc-text-secondary);
  margin: 0;
}

/* 对比表格 */
.pr-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.pr-compare-table th {
  background: var(--pc-bg);
  padding: 12px;
  text-align: left;
  font-weight: 600;
  border: 1px solid var(--pc-border);
}
.pr-compare-table td {
  padding: 12px;
  border: 1px solid var(--pc-border);
}
.pr-compare-table tr:nth-child(even) {
  background: var(--pc-bg);
}

/* FAQ */
.pr-faq-list {
  margin: 20px 0;
}
.pr-faq-item {
  border-bottom: 1px solid var(--pc-border-light);
}
.pr-faq-question {
  padding: 16px 0;
  font-weight: 600;
  font-size: 15px;
  color: var(--pc-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pr-faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--cat-color, #6366f1);
  transition: var(--pc-transition);
}
.pr-faq-item.open .pr-faq-question::after {
  content: '−';
}
.pr-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.pr-faq-item.open .pr-faq-answer {
  max-height: 500px;
  padding-bottom: 16px;
}
.pr-faq-answer p {
  font-size: 14px;
  color: var(--pc-text-secondary);
  line-height: 1.7;
}

/* 内部链接 */
.pr-internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.pr-internal-links a {
  display: inline-block;
  padding: 6px 14px;
  background: var(--pc-bg);
  color: var(--pc-text);
  border-radius: 100px;
  text-decoration: none;
  font-size: 13px;
  transition: var(--pc-transition);
  border: 1px solid var(--pc-border);
}
.pr-internal-links a:hover {
  background: var(--cat-color, #6366f1);
  color: #fff;
  border-color: var(--cat-color, #6366f1);
}

/* Quiz页面样式 */
.quiz-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  color: #fff;
}
.quiz-container {
  max-width: 700px;
  width: 100%;
}
.quiz-progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 100px;
  margin-bottom: 20px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: 100px;
  transition: width 0.5s ease;
}
.quiz-card {
  background: rgba(255,255,255,0.95);
  color: var(--pc-text);
  border-radius: var(--pc-radius-xl);
  padding: 36px;
  box-shadow: var(--pc-shadow-lg);
}
.quiz-category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 24px;
  padding-bottom: 8px;
}
.quiz-category-tab {
  flex-shrink: 0;
  padding: 8px 16px;
  background: var(--pc-bg);
  border-radius: 100px;
  cursor: pointer;
  font-size: 14px;
  transition: var(--pc-transition);
  border: 2px solid transparent;
}
.quiz-category-tab.active {
  background: var(--cat-color, #6366f1);
  color: #fff;
  border-color: var(--cat-color, #6366f1);
}
.quiz-question {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--pc-text);
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quiz-option {
  padding: 16px 20px;
  background: var(--pc-bg);
  border: 2px solid var(--pc-border);
  border-radius: var(--pc-radius);
  cursor: pointer;
  font-size: 15px;
  transition: var(--pc-transition);
  text-align: left;
}
.quiz-option:hover {
  border-color: var(--pc-primary);
  background: #eef2ff;
}
.quiz-option.selected {
  border-color: var(--pc-primary);
  background: #eef2ff;
  font-weight: 600;
}
.quiz-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.quiz-prev, .quiz-next {
  flex: 1;
  padding: 12px 24px;
  border: none;
  border-radius: var(--pc-radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--pc-transition);
}
.quiz-prev {
  background: var(--pc-bg);
  color: var(--pc-text-secondary);
  border: 1px solid var(--pc-border);
}
.quiz-next {
  background: linear-gradient(135deg, var(--pc-primary), var(--pc-primary-dark));
  color: #fff;
}
.quiz-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}
.quiz-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.quiz-result-section {
  text-align: center;
}
.quiz-result-card {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1px solid #86efac;
  border-radius: var(--pc-radius);
  padding: 24px;
  margin: 16px 0;
  text-align: left;
}
.quiz-result-card h4 {
  margin: 0 0 8px;
  color: #166534;
}
.quiz-reason {
  font-size: 14px;
  color: #15803d;
  margin: 8px 0 0;
}

/* === 动画 === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pc-animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* === 打印样式 === */
@media print {
  .pc-quiz-section,
  .pc-ftc-disclosure,
  .pr-cta-row,
  nav,
  header {
    display: none !important;
  }
  .pr-review-content {
    max-width: 100%;
  }
  .pr-summary-card {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
  }
  .pr-summary-card * {
    color: #000 !important;
  }
  .pc-compare-table-wrapper {
    overflow: visible;
  }
}

/* === 移动端响应式 === */
@media (max-width: 768px) {
  .pc-hero {
    padding: 40px 16px 30px;
  }
  .pc-hero h1 {
    font-size: 26px;
  }
  .pc-hero-stats {
    gap: 20px;
  }
  .pc-hero-stat strong {
    font-size: 22px;
  }
  .pr-summary-card {
    padding: 20px;
  }
  .pr-summary-card-top {
    flex-direction: column;
  }
  .pr-product-visual {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
  .pr-product-info h1 {
    font-size: 20px;
  }
  .pr-meta-row {
    gap: 12px;
  }
  .pr-pros-cons-wrapper {
    grid-template-columns: 1fr;
  }
  .pc-compare-table th,
  .pc-compare-table td {
    padding: 10px 8px;
    font-size: 13px;
  }
  .pc-compare-table {
    min-width: 600px;
  }
  .quiz-card {
    padding: 24px 20px;
  }
  .quiz-question {
    font-size: 18px;
  }
  .pc-guide-step {
    padding: 16px;
    gap: 12px;
  }
  .pr-compare-table th,
  .pr-compare-table td {
    padding: 8px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .pc-hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  .pr-meta-row {
    flex-direction: column;
    gap: 10px;
  }
  .pr-price-block,
  .pr-commission-block,
  .pr-rating-block,
  .pr-verdict-block {
    width: 100%;
  }
}
