
.cc-score-wrap.cc-score-locked {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

.cc-score-wrap.cc-score-locked:hover {
  transform: translateY(-1px);
}

.cd-overview-score-chip.cd-overview-score-chip--locked {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  border: 1px dashed rgba(var(--color-slate-400-rgb), 0.55);
  background: rgba(var(--color-slate-400-rgb), 0.08);
  color: var(--color-slate-600);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  line-height: 1;
  transition:
    border-color 0.15s ease,
    color 0.15s ease,
    background 0.15s ease;
}

.cd-overview-score-chip.cd-overview-score-chip--locked:hover {
  border-color: rgba(var(--primary-color-rgb), 0.6);
  background: rgba(var(--primary-color-rgb), 0.08);
  color: var(--color-slate-900);
}

.cd-overview-score-chip.cd-overview-score-chip--locked iconify-icon {
  font-size: 13px;
}

.cd-ai-idle.cd-ai-idle--locked .cd-ai-idle-ico--locked {
  background: rgba(var(--color-slate-400-rgb), 0.12);
  color: var(--color-slate-600);
}

.cd-ai-idle.cd-ai-idle--locked .cd-ai-idle-ico--locked iconify-icon {
  color: var(--color-slate-600);
}

/* Base Upgrade-to-Pro styling lives in components/ui/ActionButton.css under
   .v-action-btn--ai-locked. Overlay-scoped overrides below shrink the button
   for the locked-overlay placement only. */

.cd-ai-results.cd-ai-results--locked {
  position: relative;
}

.cd-ai-results-scroll.cd-ai-results-scroll--blurred {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

.cd-ai-locked-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: linear-gradient(
    180deg,
    rgba(var(--white-color-rgb), 0.55) 0%,
    rgba(var(--white-color-rgb), 0.85) 40%,
    rgba(var(--white-color-rgb), 0.92) 100%
  );
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 2;
  animation: ccLockedOverlayIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes ccLockedOverlayIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cd-ai-locked-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  text-align: center;
  max-width: 280px;
  padding: 1rem 1.25rem;
  background: var(--white-color);
  border: 1px solid rgba(var(--color-gray-200-rgb), 0.9);
  border-radius: 0.875rem;
  box-shadow: 0 10px 30px rgba(var(--color-slate-900-rgb), 0.12);
}

.cd-ai-locked-overlay-ico {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--color-slate-400-rgb), 0.12);
  color: var(--color-slate-600);
}

.cd-ai-locked-overlay-ico iconify-icon {
  font-size: 18px;
}

.cd-ai-locked-overlay-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-zinc-900);
  letter-spacing: -0.01em;
}

.cd-ai-locked-overlay-sub {
  font-size: 0.75rem;
  color: var(--color-zinc-600);
  line-height: 1.55;
}

.cd-ai-locked-overlay .v-action-btn--ai-locked {
  margin-top: 0.25rem;
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
}
