:root {
  --bg: #0a0a1a;
  --bg-sidebar: #111827;
  --bg-panel: #1a1a2e;
  --accent: #6c5ce7;
  --success: #4ecdc4;
  --text: #f9fafb;
  --muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  --topbar-height: 52px;
  --bottombar-height: 52px;
  --sidebar-width: 320px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

.appshots-shell {
  height: 100%;
  background:
    radial-gradient(circle at top, rgba(108, 92, 231, 0.14), transparent 38%),
    linear-gradient(180deg, #090912 0%, #0a0a1a 100%);
}

.topbar,
.bottombar {
  position: fixed;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  background: rgba(10, 10, 26, 0.96);
  backdrop-filter: blur(14px);
  z-index: 20;
}

.topbar {
  top: 0;
  height: var(--topbar-height);
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.bottombar {
  bottom: 0;
  height: var(--bottombar-height);
  border-top: 1px solid var(--border);
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #8f7cff);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(108, 92, 231, 0.35);
}

.brand-mark-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.brand-copy {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 700;
}

.tier-badge {
  border: 1px solid rgba(78, 205, 196, 0.4);
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(78, 205, 196, 0.1);
  color: var(--success);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.topbar-actions,
.bottom-actions,
.modal-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.editor-layout {
  display: flex;
  height: 100%;
  padding-top: var(--topbar-height);
  padding-bottom: var(--bottombar-height);
  overflow: hidden;
}

.sidebar {
  flex: 0 0 var(--sidebar-width);
  width: var(--sidebar-width);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
}

.panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-panel);
}

.panel-label,
.field-label,
.modal-eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 148px;
  padding: 18px;
  border: 1.5px dashed rgba(108, 92, 231, 0.45);
  border-radius: 14px;
  background: rgba(108, 92, 231, 0.08);
  color: var(--muted);
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.upload-zone strong {
  color: var(--text);
  font-size: 0.98rem;
}

.upload-zone-small {
  min-height: 80px;
  padding: 12px;
}

.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--accent);
  background: rgba(108, 92, 231, 0.16);
  transform: translateY(-1px);
}

.upload-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text);
}

.upload-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(11, 16, 32, 0.6);
}

.upload-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.btn-sm {
  min-height: 28px;
  padding: 0 10px;
  font-size: 0.78rem;
  margin-left: auto;
}

.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;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.template-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 4px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: rgba(7, 10, 24, 0.55);
  color: var(--muted);
  font-size: 0.68rem;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.template-card:hover {
  color: var(--text);
  border-color: rgba(108, 92, 231, 0.45);
  transform: translateY(-1px);
}

.template-card.active {
  color: var(--text);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(108, 92, 231, 0.3);
}

.template-thumb {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(108, 92, 231, 0.4), rgba(255, 255, 255, 0.04));
  overflow: hidden;
}

/* Mock device (phone shape) */
.mock-device {
  width: 32%;
  height: 52%;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.mock-device-sm {
  height: 42%;
}

.mock-device-lg {
  height: 58%;
}

/* Mock text lines */
.mock-text-top,
.mock-text-bottom,
.mock-text-top-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  padding: 4px 6px;
  flex-shrink: 0;
}

.mock-text-top::before,
.mock-text-top::after,
.mock-text-bottom::before,
.mock-text-bottom::after,
.mock-text-top-left::before,
.mock-text-top-left::after {
  content: '';
  display: block;
  height: 2px;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.mock-text-top::before,
.mock-text-bottom::before,
.mock-text-top-left::before {
  width: 24px;
}

.mock-text-top::after,
.mock-text-bottom::after,
.mock-text-top-left::after {
  width: 16px;
  opacity: 0.6;
}

.mock-text-top-left {
  align-items: flex-start;
  align-self: flex-start;
  padding-left: 8px;
}

/* Rise: device cropped from bottom */
.mock-device-rise {
  height: 60%;
  margin-top: auto;
  margin-bottom: -20%;
  border-radius: 3px 3px 0 0;
}

/* Tilt: rotated device */
.mock-device-tilt {
  transform: rotate(-5deg);
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Duo: two devices side by side */
.duo-thumb {
  flex-direction: row !important;
  gap: 4px !important;
}

.mock-device-duo-l,
.mock-device-duo-r {
  width: 26%;
  height: 50%;
}

/* Peek: oversized device in corner */
.peek-thumb {
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

.mock-device-peek {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 50%;
  height: 65%;
  border-radius: 3px;
}

.showcase-thumb {
  background: linear-gradient(180deg, rgba(78, 205, 196, 0.45), rgba(255, 255, 255, 0.06));
}

.headline-thumb {
  background: linear-gradient(180deg, rgba(255, 118, 117, 0.5), rgba(255, 255, 255, 0.06));
}

.minimal-thumb {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(255, 255, 255, 0.04));
}

.rise-thumb {
  background: linear-gradient(0deg, rgba(108, 92, 231, 0.6) 30%, rgba(15, 15, 26, 0.8) 100%);
}

.tilt-thumb {
  background: linear-gradient(135deg, rgba(253, 121, 168, 0.4), rgba(108, 92, 231, 0.5));
}

.duo-thumb {
  background: linear-gradient(90deg, rgba(9, 132, 227, 0.5), rgba(78, 205, 196, 0.5));
}

.peek-thumb {
  background: linear-gradient(135deg, rgba(10, 10, 26, 0.9) 40%, rgba(108, 92, 231, 0.5));
}

.gradient-swatch {
  background: var(--swatch) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

/* Background image controls */
.bg-image-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bg-image-upload {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px dashed var(--border);
  border-radius: 8px;
  background: rgba(11, 16, 32, 0.6);
  color: var(--muted);
  font-size: 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.bg-image-upload:hover {
  border-color: var(--accent);
  background: rgba(108, 92, 231, 0.08);
}

.bg-image-upload.has-image {
  border-style: solid;
  border-color: var(--accent);
  color: var(--text);
}

.bg-image-upload-icon {
  font-size: 1rem;
}

.pro-badge-inline {
  display: inline-block;
  padding: 1px 5px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent), #8f7cff);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  vertical-align: middle;
  margin-left: 4px;
}

/* Custom gradient picker */
.custom-grad-toggle {
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 2px dashed rgba(255, 255, 255, 0.25);
}

.custom-grad-toggle.active {
  border-style: solid;
  border-color: #fff;
  background: linear-gradient(135deg, var(--accent), #8f7cff) !important;
}

.custom-gradient-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.custom-gradient-row.hidden {
  display: none;
}

.color-picker-sm {
  width: 26px;
  height: 26px;
  padding: 2px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(11, 16, 32, 0.82);
  cursor: pointer;
}

.color-picker-sm::-webkit-color-swatch-wrapper {
  padding: 0;
}

.color-picker-sm::-webkit-color-swatch {
  border: none;
  border-radius: 6px;
}

.grad-direction-select {
  padding: 3px 6px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(11, 16, 32, 0.82);
  color: var(--text);
  font-size: 0.8rem;
  cursor: pointer;
}

.text-input,
.select-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(11, 16, 32, 0.82);
  color: var(--text);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.text-input {
  padding: 12px 14px;
}

.text-area {
  resize: vertical;
  min-height: 92px;
}

.text-input::placeholder {
  color: #6b7280;
}

.text-input:focus,
.select-input:focus,
.color-picker:focus {
  outline: none;
  border-color: rgba(108, 92, 231, 0.7);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.18);
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.select-input {
  appearance: none;
  -webkit-appearance: none;
  padding: 12px 42px 12px 14px;
}

.color-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 4px 0;
}

.color-swatch {
  width: 24px;
  height: 24px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.color-swatch:hover {
  transform: scale(1.05);
}

.color-swatch.active {
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.14);
}

.color-picker-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.color-picker {
  width: 36px;
  height: 36px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(11, 16, 32, 0.82);
  cursor: pointer;
}

.color-picker::-webkit-color-swatch-wrapper {
  padding: 0;
}

.color-picker::-webkit-color-swatch {
  border: none;
  border-radius: 8px;
}

.preview-panel {
  flex: 1;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: auto;
  background:
    radial-gradient(circle at top, rgba(108, 92, 231, 0.08), transparent 36%),
    radial-gradient(circle at bottom, rgba(78, 205, 196, 0.06), transparent 30%),
    #080814;
}

.preview-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
  transition: transform 0.15s ease;
}

#previewCanvas {
  display: block;
  border-radius: 24px;
  background: linear-gradient(180deg, #18182a 0%, #0f1021 100%);
  box-shadow: var(--shadow);
}

.zoom-controls {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 10px;
  background: rgba(17, 24, 39, 0.92);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.zoom-btn {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.zoom-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.zoom-label {
  min-width: 36px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

.empty-state {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 280px;
  padding: 20px;
  border: 1px dashed var(--border-strong);
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.84);
  text-align: center;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.empty-state h1,
.modal h2 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.2;
}

.empty-state p,
.modal-copy,
.dimensions-info {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.dimensions-info {
  font-size: 0.84rem;
}

.bottom-actions {
  margin-left: auto;
}

.btn,
.topbar-link,
.modal-close {
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  font-weight: 600;
}

.btn:hover,
.topbar-link:hover,
.modal-close:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--success);
  color: #071521;
}

.btn-secondary {
  background: rgba(17, 24, 39, 0.92);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-pro {
  background: var(--accent);
  color: #fff;
}

.topbar-link {
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
}

.topbar-link:hover {
  color: var(--text);
}

.modal {
  width: min(100%, 400px);
  margin: auto;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg-panel);
  color: var(--text);
  box-shadow: var(--shadow);
}

.modal::backdrop {
  background: rgba(3, 6, 18, 0.78);
  backdrop-filter: blur(4px);
}

.modal-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.modal-close {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 1.4rem;
  line-height: 1;
}

.license-key-card {
  padding: 16px;
  border: 1px solid rgba(78, 205, 196, 0.28);
  border-radius: 14px;
  background: rgba(78, 205, 196, 0.08);
  color: var(--success);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.pro-feature {
  opacity: 0.4;
  pointer-events: none;
}

.pro-feature.unlocked {
  opacity: 1;
  pointer-events: auto;
}

.inline-controls {
  display: flex;
  gap: 8px;
}

.inline-select {
  flex: 1;
  min-width: 0;
}

.inline-select .select-input {
  padding: 8px 32px 8px 10px;
  font-size: 0.82rem;
}

/* ─── Gallery Strip ─────────────────────────────────────────── */

.gallery-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.gallery-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gallery-thumb {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.gallery-thumb:hover {
  transform: translateY(-1px);
  border-color: rgba(108, 92, 231, 0.5);
}

.gallery-thumb.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(108, 92, 231, 0.3);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-badge {
  position: absolute;
  bottom: 2px;
  left: 2px;
  min-width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0 3px;
}

.gallery-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: none;
  background: rgba(255, 50, 50, 0.8);
  color: #fff;
  font-size: 0.7rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.gallery-thumb:hover .gallery-remove {
  opacity: 1;
}

@media (max-width: 1024px) {
  .editor-layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex: 0 0 auto;
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
    padding-bottom: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .panel {
    min-width: 220px;
    flex: 0 0 220px;
  }

  .preview-panel {
    padding: 18px;
  }
}

@media (max-width: 720px) {
  .topbar,
  .bottombar {
    padding: 0 14px;
  }

  .brand-copy {
    gap: 8px;
  }

  .tier-badge,
  .dimensions-info {
    display: none;
  }

  .bottom-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* License status button */
.license-status-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}

.license-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
}

/* License info modal */
.modal-sm .modal-card {
  max-width: 380px;
}

.license-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.license-info-row:last-of-type {
  border-bottom: none;
}

.license-info-label {
  color: var(--muted);
  font-size: 0.82rem;
}

.license-info-value {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text);
}

.license-active {
  color: var(--success);
  font-weight: 600;
}

.license-key-masked {
  font-family: monospace;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.btn-icon {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 2px 4px;
  border-radius: 4px;
  opacity: 0.7;
  transition: opacity 0.15s;
}

.btn-icon:hover {
  opacity: 1;
  background: var(--border);
}

.btn-danger-outline {
  border: 1px solid #e74c3c;
  color: #e74c3c;
  background: transparent;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.btn-danger-outline:hover {
  background: #e74c3c;
  color: #fff;
}

/* Locked/Pro items */
.template-card.locked,
.color-swatch.locked {
  position: relative;
  opacity: 0.55;
  cursor: pointer;
}

.template-card.locked::after {
  content: '🔒';
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 0.65rem;
  pointer-events: none;
}

.btn-locked {
  opacity: 0.6;
}

.color-swatch.locked::after {
  content: '🔒';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: inherit;
  pointer-events: none;
}

/* Upgrade comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin: 12px 0;
}

.compare-table th,
.compare-table td {
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.compare-table .compare-pro {
  color: var(--accent);
  font-weight: 600;
}

.compare-table td:first-child {
  color: var(--text);
}

.compare-table td:not(:first-child) {
  text-align: center;
}

.compare-table th:not(:first-child) {
  text-align: center;
}
