/* Home hub tiles */
.mock-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mock-home-grid .mock-tile {
  animation: tilePop var(--duration-slow) var(--ease-out) both;
}

.chamber.is-active .mock-home-grid .mock-tile:nth-child(1) { animation-delay: 0ms; }
.chamber.is-active .mock-home-grid .mock-tile:nth-child(2) { animation-delay: 80ms; }
.chamber.is-active .mock-home-grid .mock-tile:nth-child(3) { animation-delay: 160ms; }
.chamber.is-active .mock-home-grid .mock-tile:nth-child(4) { animation-delay: 240ms; }
.chamber.is-active .mock-home-grid .mock-tile:nth-child(5) { animation-delay: 320ms; }
.chamber.is-active .mock-home-grid .mock-tile:nth-child(6) { animation-delay: 400ms; }

@keyframes tilePop {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Client search */
.mock-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: var(--surface-high);
  margin-bottom: 10px;
  font-size: 0.7rem;
  color: var(--outline);
}

.mock-client-card {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color var(--duration-fast);
}

.mock-client-card.is-highlight {
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(201, 191, 255, 0.2);
}

.mock-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
  flex-shrink: 0;
}

.mock-client-info h4 {
  font-size: 0.8rem;
  margin: 0 0 2px;
}

.mock-client-info p {
  font-size: 0.65rem;
  color: var(--muted);
  margin: 0;
}

/* Before/after slider */
.mock-ba-slider {
  position: relative;
  height: 120px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 10px;
}

.mock-ba-before,
.mock-ba-after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
}

.mock-ba-before {
  background: linear-gradient(135deg, #3d3d4a, #2a2931);
  width: 50%;
  z-index: 2;
  transition: width 0.3s var(--ease-out);
}

.mock-ba-after {
  background: linear-gradient(135deg, var(--primary-dark), var(--strand-mauve));
}

.mock-ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--text);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  cursor: ew-resize;
}

.mock-formula {
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: rgba(201, 191, 255, 0.12);
  font-size: 0.7rem;
  margin-bottom: 8px;
}

/* Calendar */
.mock-calendar-day {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 6px;
}

.mock-time-slot {
  font-size: 0.6rem;
  color: var(--outline);
  padding-top: 4px;
}

.mock-appointment {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  margin-bottom: 4px;
  border-left: 3px solid var(--primary);
  background: rgba(201, 191, 255, 0.1);
  animation: slideIn var(--duration-med) var(--ease-out) both;
}

.chamber.is-active .mock-appointment:nth-child(1) { animation-delay: 0ms; }
.chamber.is-active .mock-appointment:nth-child(2) { animation-delay: 150ms; }
.chamber.is-active .mock-appointment:nth-child(3) { animation-delay: 300ms; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Wallet */
.mock-revenue {
  text-align: center;
  padding: var(--space-md);
}

.mock-revenue-value {
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mock-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 80px;
  margin-top: 12px;
}

.mock-chart-bar {
  width: 16px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  animation: barGrow 0.6s var(--ease-out) both;
}

.chamber.is-active .mock-chart-bar:nth-child(1) { height: 40%; animation-delay: 0ms; }
.chamber.is-active .mock-chart-bar:nth-child(2) { height: 65%; animation-delay: 80ms; }
.chamber.is-active .mock-chart-bar:nth-child(3) { height: 45%; animation-delay: 160ms; }
.chamber.is-active .mock-chart-bar:nth-child(4) { height: 80%; animation-delay: 240ms; }
.chamber.is-active .mock-chart-bar:nth-child(5) { height: 55%; animation-delay: 320ms; }

@keyframes barGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

/* Timers */
.mock-timers {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
}

.mock-timer.is-running {
  border-color: var(--secondary);
}

.mock-timer-time {
  font-family: "Manrope", monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

/* Portfolio grid */
.mock-portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.mock-portfolio-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--surface-high), var(--primary-dark));
  opacity: 0;
  animation: fadeIn var(--duration-med) var(--ease-out) both;
}

.chamber.is-active .mock-portfolio-item:nth-child(1) { animation-delay: 0ms; opacity: 1; }
.chamber.is-active .mock-portfolio-item:nth-child(2) { animation-delay: 100ms; opacity: 1; }
.chamber.is-active .mock-portfolio-item:nth-child(3) { animation-delay: 200ms; opacity: 1; }
.chamber.is-active .mock-portfolio-item:nth-child(4) { animation-delay: 300ms; opacity: 1; }

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Social post mock */
.mock-ig-post {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
}

.mock-ig-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 0.65rem;
}

.mock-ig-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--strand-lavender), var(--strand-peach));
}

/* Notifications */
.mock-notif {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  background: var(--surface);
  font-size: 0.65rem;
}

.mock-notif.is-unread {
  border-left: 3px solid var(--primary);
}

.mock-notif-badge {
  font-size: 0.55rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(201, 191, 255, 0.2);
  color: var(--primary);
}

/* AI Consultant */
.mock-ai-steps {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.mock-ai-step {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--line);
}

.mock-ai-step.is-done {
  background: var(--primary);
}

.mock-ai-preview {
  height: 140px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--surface-high) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.mock-ai-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.mock-color-swatches {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.mock-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
}

.mock-swatch.is-selected {
  border-color: var(--text);
  box-shadow: 0 0 8px var(--glow-purple);
}

/* Booking flow */
.mock-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.mock-slot {
  padding: 8px;
  text-align: center;
  font-size: 0.65rem;
  border-radius: var(--radius-sm);
  background: var(--surface-high);
  cursor: pointer;
}

.mock-slot.is-selected {
  background: var(--primary);
  color: var(--cosmic-void);
}

.mock-slot.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}
