:root {
  --pfd-orange: #ff6600;
  --pfd-orange-hover: #e85d00;
  --pfd-orange-light: #fff6e8;
  --pfd-orange-light: #fff6e8;
  --pfd-orange-border: rgba(255, 102, 0, 0.3);
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-tertiary: #1a1a24;
  --bg-card: #16161f;
  --bg-card-hover: #1e1e2a;
  --bg-glass: rgba(22, 22, 31, 0.85);
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #6b6b7b;
  --border-color: #2a2a35;
  --border-light: #3a3a45;
  --success: #22c55e;
  --warning: #eab308;
  --error: #ef4444;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(255, 102, 0, 0.2);
  --gradient-hero: linear-gradient(135deg, #ff6600 0%, #ff8533 50%, #ffad66 100%);
  --gradient-card: linear-gradient(180deg, rgba(255, 102, 0, 0.05) 0%, transparent 100%);
  --gradient-bg: radial-gradient(ellipse at top, #1a1520 0%, #0a0a0f 50%);
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 9999px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms ease;
}
[data-theme="light"] {
  --bg-primary: #f5f5f7;
  --bg-secondary: #ffffff;
  --bg-tertiary: #fafafa;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f0f2;
  --bg-glass: rgba(255, 255, 255, 0.9);
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-muted: #888888;
  --border-color: #e5e5e5;
  --border-color: #e5e5e5;
  --border-light: #eeeeee;
  --pfd-orange-border: #ffd9b5;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 30px rgba(255, 102, 0, 0.15);
  --gradient-bg: radial-gradient(ellipse at top, #fff5eb 0%, #f5f5f7 50%);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  background-image: var(--gradient-bg);
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
input,
textarea {
  font-family: inherit;
  font-size: inherit;
}
.app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 480px;
  margin: 0 auto;
  padding: var(--space-md);
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  margin-bottom: var(--space-lg);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
}
.logo-text {
  font-weight: 700;
  font-size: 17px;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header-actions {
  display: flex;
  gap: var(--space-sm);
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.icon-btn:hover {
  background: var(--bg-card-hover);
  color: var(--pfd-orange);
  border-color: var(--pfd-orange);
}
.search-section {
  margin-bottom: var(--space-lg);
}
.search-box {
  position: relative;
}
.search-input {
  width: 100%;
  padding: var(--space-md) var(--space-md) var(--space-md) 48px;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-size: 16px;
  transition: all var(--transition-fast);
}
.search-input::placeholder {
  color: var(--text-muted);
}
.search-input:focus {
  outline: none;
  border-color: var(--pfd-orange);
  box-shadow: var(--shadow-glow);
}
.search-icon {
  position: absolute;
  left: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 18px;
  pointer-events: none;
}
.search-clear {
  position: absolute;
  right: var(--space-sm);
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--bg-tertiary);
  color: var(--text-muted);
  display: none;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.search-clear.visible {
  display: flex;
}
.search-clear:hover {
  background: var(--pfd-orange);
  color: white;
}
.search-hint {
  margin-top: var(--space-sm);
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}
.tabs {
  display: flex;
  gap: var(--space-xs);
  background: var(--bg-card);
  padding: var(--space-xs);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}
.tab {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.tab:hover {
  color: var(--text-primary);
  background: var(--bg-tertiary);
}
.tab.active {
  background: var(--pfd-orange);
  color: white;
  box-shadow: var(--shadow-sm);
}
.deals-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.deal-card {
  background: var(--bg-card);
  background-image: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: all var(--transition-normal);
  animation: fadeInUp 0.4s ease forwards;
  opacity: 0;
}
[data-theme="light"] .deal-card {
  background: #ffffff;
  background-image: none;
}
.deal-card:hover {
  border-color: var(--pfd-orange);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  transform: translateY(-2px);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.deal-card:nth-child(1) {
  animation-delay: 0ms;
}
.deal-card:nth-child(2) {
  animation-delay: 50ms;
}
.deal-card:nth-child(3) {
  animation-delay: 100ms;
}
.deal-card:nth-child(4) {
  animation-delay: 150ms;
}
.deal-card:nth-child(5) {
  animation-delay: 200ms;
}
.deal-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.deal-logo {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
  object-fit: cover;
  flex-shrink: 0;
}
.deal-info {
  flex: 1;
  min-width: 0;
}
.deal-brand {
  font-size: 12px;
  font-weight: 600;
  color: var(--pfd-orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-xs);
}
.deal-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: var(--space-xs);
  display: block;
}
.deal-verified-label {
  font-size: 11px;
  font-weight: 600;
  color: #16a34a;
  background: rgba(22, 163, 74, 0.1);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
  margin-left: var(--space-xs);
  transform: translateY(-1px);
}
.deal-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}
.deal-desc-full {
  display: block;
  overflow: visible;
}
.deal-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 12px;
  color: var(--text-muted);
}
.deal-date {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.deal-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.deal-badge.verified {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
}
.deal-badge.expired {
  background: rgba(239, 68, 68, 0.15);
  color: var(--error);
}
.deal-badge.old {
  background: rgba(234, 179, 8, 0.15);
  color: var(--warning);
}
.deal-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-color);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition-fast);
}
.btn-primary {
  flex: 1;
  background: var(--pfd-orange);
  color: white;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.btn-primary:hover {
  background: var(--pfd-orange-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm), 0 4px 0 rgba(0, 0, 0, 0.1);
}
.btn-primary:active {
  transform: translateY(1px);
  box-shadow: none;
}
.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover {
  background: var(--bg-card-hover);
  color: var(--pfd-orange);
  border-color: var(--pfd-orange);
}
.btn-favorite.is-favorited {
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
  border-color: #eab308;
}
.btn-favorite.is-favorited:hover {
  background: rgba(234, 179, 8, 0.25);
}
.btn-ghost {
  color: var(--pfd-orange);
  padding: var(--space-sm);
}
.btn-ghost:hover {
  background: var(--pfd-orange-light);
}
.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl);
  gap: var(--space-md);
}
.loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border-color);
  border-top-color: var(--pfd-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loading-text {
  color: var(--text-muted);
  font-size: 14px;
}
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl);
  text-align: center;
}
.empty-icon {
  font-size: 48px;
  margin-bottom: var(--space-md);
  opacity: 0.5;
}
.empty-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}
.empty-desc {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 280px;
}
.error-state {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
}
.error-title {
  color: var(--error);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.error-desc {
  color: var(--text-muted);
  font-size: 14px;
}
.notice {
  background: var(--pfd-orange-light);
  border: 1px solid var(--pfd-orange-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  color: #7a3c00;
}
[data-theme="dark"] .notice {
  background: rgba(255, 102, 0, 0.1);
  border-color: rgba(255, 102, 0, 0.3);
  color: var(--pfd-orange);
}
.notice a {
  color: var(--pfd-orange);
  text-decoration: underline;
}
.firms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.firm-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}
.firm-card:hover {
  border-color: var(--pfd-orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.firm-logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
  object-fit: cover;
  margin: 0 auto var(--space-sm);
}
.firm-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}
.firm-deals {
  font-size: 12px;
  color: var(--pfd-orange);
  font-weight: 500;
}
.footer {
  margin-top: auto;
  padding: var(--space-md) 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
}
.footer-text {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-link {
  color: var(--pfd-orange);
  font-weight: 500;
}
.footer-link:hover {
  text-decoration: underline;
}
.hidden {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 380px) {
  .app {
    padding: var(--space-sm);
  }
  .deal-header {
    gap: var(--space-sm);
  }
  .deal-logo {
    width: 48px;
    height: 48px;
  }
  .firms-grid {
    gap: var(--space-sm);
  }
  .firm-logo {
    width: 48px;
    height: 48px;
  }
}
.install-prompt {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 448px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--pfd-orange);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  display: none;
  animation: slideUp 0.3s ease;
  z-index: 1000;
}
.install-prompt.visible {
  display: block;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.install-prompt-content {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.install-prompt-text {
  flex: 1;
}
.install-prompt-title {
  font-weight: 700;
  margin-bottom: var(--space-xs);
}
.install-prompt-desc {
  font-size: 13px;
  color: var(--text-muted);
}
.install-prompt-actions {
  display: flex;
  gap: var(--space-sm);
}
.reviews-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-top: var(--space-md);
  animation: fadeInUp 0.4s ease forwards;
}
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}
.reviews-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}
.btn-small {
  padding: var(--space-xs) var(--space-sm);
  font-size: 12px;
}
.reviews-stats-bar {
  display: flex;
  height: 8px;
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--bg-tertiary);
  margin-bottom: var(--space-sm);
}
.stats-segment {
  transition: width 0.3s ease;
}
.stats-positive {
  background: #22c55e;
}
.stats-neutral {
  background: #64748b;
}
.stats-warning {
  background: #eab308;
}
.stats-negative {
  background: #ef4444;
}
.stats-scam {
  background: #991b1b;
}
.reviews-stats-legend {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.legend-positive {
  color: #22c55e;
}
.legend-neutral {
  color: #64748b;
}
.legend-warning {
  color: #eab308;
}
.legend-negative {
  color: #ef4444;
}
.legend-scam {
  color: #991b1b;
}
.legend-total {
  margin-left: auto;
  color: var(--text-secondary);
  font-weight: 500;
}
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.review-item {
  padding: var(--space-sm);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xs);
}
.review-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.verified-badge {
  color: var(--success);
  font-size: 11px;
}
.review-sentiment {
  font-size: 16px;
}
.sentiment-positive {
  color: #22c55e;
}
.sentiment-neutral {
  color: #64748b;
}
.sentiment-warning {
  color: #eab308;
}
.sentiment-negative {
  color: #ef4444;
}
.sentiment-scam {
  color: #991b1b;
}
.review-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--space-xs) 0;
}
.review-excerpt {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 var(--space-xs) 0;
  line-height: 1.4;
}
.review-meta {
  display: flex;
  gap: var(--space-sm);
  font-size: 11px;
  color: var(--text-muted);
}
.review-images {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}
.no-reviews {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  padding: var(--space-md);
}
.reviews-more {
  width: 100%;
  margin-top: var(--space-sm);
}
.reviews-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.reviews-firm-block {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  animation: fadeInUp 0.4s ease forwards;
}
.reviews-firm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-color);
}
.reviews-firm-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--pfd-orange);
  margin: 0;
}
.reviews-firm-count {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg-tertiary);
  padding: 4px 8px;
  border-radius: var(--radius-full);
}
.reviews-view-all {
  width: 100%;
  margin-top: var(--space-md);
  text-decoration: none;
  text-align: center;
}
.newest-deal-notice {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 102, 0, 0.05) 100%);
  border: 1px solid var(--pfd-orange-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}
[data-theme="light"] .newest-deal-notice {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 102, 0, 0.05) 100%);
}
.notice-badge {
  font-size: 12px;
  font-weight: 600;
  color: #ffad33;
  background: rgba(255, 102, 0, 0.15);
  padding: 2px 8px;
  border-radius: 2px;
  white-space: nowrap;
  border: 1px solid var(--pfd-orange-border);
}
[data-theme="light"] .notice-badge {
  background: #ffffff;
  color: var(--pfd-orange);
}
.notice-text {
  font-size: 13px;
  color: var(--text-secondary);
}
.view-all-deals {
  display: flex;
  justify-content: center;
  margin-top: var(--space-sm);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--border-color);
}
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  font-weight: 500;
  text-decoration: none;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
}
.review-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}
.review-meta-left {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.review-author {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}
.review-verified-badge {
  font-size: 11px;
  font-weight: 500;
  color: var(--success);
  background: rgba(34, 197, 94, 0.1);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}
.review-time {
  font-size: 12px;
  color: var(--text-muted);
}
.review-country {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.review-sentiment {
  font-size: 12px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}
.review-sentiment.positive {
  color: var(--success);
}
.review-sentiment.warning {
  color: var(--warning);
}
.review-sentiment.negative {
  color: var(--error);
}
.review-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}
.review-excerpt {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}
.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}
.review-tag {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg-tertiary);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}
.review-proof {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.review-proof-images {
  display: flex;
  gap: var(--space-xs);
}
.review-proof-thumb {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-color);
}
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-color);
}
.review-useful {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 12px;
  color: var(--text-muted);
}
.reviews-notice {
  display: flex;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  font-size: 13px;
  color: var(--text-secondary);
}
.reviews-notice a {
  color: var(--pfd-orange);
  text-decoration: none;
  margin-left: var(--space-xs);
}
.reviews-notice a:hover {
  text-decoration: underline;
}
.favorites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.favorite-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}
.favorite-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--pfd-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.favorite-logo {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  object-fit: contain;
  margin-bottom: var(--space-sm);
  border: 1px solid var(--border-color);
  background: #fff;
}
.favorite-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}
.favorite-cta {
  font-size: 12px;
  color: var(--pfd-orange);
  font-weight: 500;
}
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  font-weight: 500;
  text-decoration: none;
}
.review-proof a {
  color: var(--pfd-orange);
  text-decoration: none;
}
.review-proof a:hover {
  text-decoration: underline;
}
.review-content {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}
.reviews-search-wrapper {
  margin-bottom: var(--space-md);
}
.favorite-card {
  position: relative;
}
.favorite-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 10;
}
.favorite-remove:hover {
  background: #ef4444;
  color: white;
  border-color: #ef4444;
}
.deal-logo {
  border: 1px solid var(--border-color);
  background: #fff;
}
.reviews-firm-block {
  margin-top: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}
[data-theme="light"] .reviews-firm-block {
  background: #ffffff;
}
.reviews-firm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-color);
}
.reviews-firm-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--pfd-orange);
}
.reviews-firm-count {
  background: var(--bg-tertiary);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}
.pfd-notice-container {
  display: none;
  margin: var(--space-sm) 0;
  padding: var(--space-md);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-primary);
}
.pfd-notice-container img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin-top: var(--space-sm);
}
.pfd-notice-container a {
  color: var(--pfd-orange);
  text-decoration: none;
  font-weight: 500;
}
.pfd-notice-container a:hover {
  text-decoration: underline;
}
.pfd-notice-container h3,
.pfd-notice-container h4 {
  margin-top: 0;
  margin-bottom: var(--space-sm);
  font-size: 16px;
  color: var(--pfd-orange);
}
.pfd-notice-container ul,
.pfd-notice-container ol {
  margin-left: 20px;
  margin-bottom: var(--space-sm);
}
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-color);
}
.review-useful {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 12px;
  color: var(--text-muted);
}
.reviews-notice {
  display: flex;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  font-size: 13px;
  color: var(--text-secondary);
}
.reviews-notice a {
  color: var(--pfd-orange);
  text-decoration: none;
  margin-left: var(--space-xs);
}
.reviews-notice a:hover {
  text-decoration: underline;
}
.favorites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.favorite-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}
.favorite-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--pfd-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.favorite-logo {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  object-fit: contain;
  margin-bottom: var(--space-sm);
  border: 1px solid var(--border-color);
  background: #fff;
}
.favorite-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}
.favorite-cta {
  font-size: 12px;
  color: var(--pfd-orange);
  font-weight: 500;
}
.review-proof a {
  color: var(--pfd-orange);
  text-decoration: none;
}
.review-proof a:hover {
  text-decoration: underline;
}
.review-content {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}
.reviews-search-wrapper {
  margin-bottom: var(--space-md);
}
.favorite-card {
  position: relative;
}
.favorite-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 10;
}
.favorite-remove:hover {
  background: #ef4444;
  color: white;
  border-color: #ef4444;
}
.deal-logo {
  border: 1px solid var(--border-color);
  background: #fff;
}
.reviews-firm-block {
  margin-top: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}
[data-theme="light"] .reviews-firm-block {
  background: #ffffff;
}
.reviews-firm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-color);
}
.reviews-firm-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--pfd-orange);
}
.reviews-firm-count {
  background: var(--bg-tertiary);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}
.review-verified-badge {
  font-size: 9px;
  font-weight: 700;
  color: var(--success);
  background: rgba(34, 197, 94, 0.1);
  padding: 1px 5px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.review-unverified-badge {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-tertiary);
  padding: 1px 5px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  border: 1px solid var(--border-color);
  opacity: 0.8;
}
.review-author.anonymous {
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
}
.review-sentiment.positive {
  background: rgba(22, 163, 74, 0.1);
  color: var(--success);
}
.review-sentiment.neutral {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
}
.review-sentiment.warning {
  background: rgba(234, 179, 8, 0.15);
  color: var(--warning);
}
.review-sentiment.negative {
  background: rgba(239, 68, 68, 0.1);
  color: var(--error);
}
.review-sentiment.scam {
  background: #991b1b;
  color: white;
  font-weight: 700;
}
.btn-useful {
  background: none;
  border: none;
  padding: 4px 0;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.btn-useful:hover {
  color: var(--text-primary);
}
.btn-useful.voted {
  color: var(--pfd-orange);
  font-weight: 500;
  cursor: default;
}