.mac-window {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--glass-stroke-strong);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mac-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px;
  background: rgba(0, 0, 0, 0.30);
  border-bottom: 1px solid var(--glass-stroke);
}
.mac-window-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--r-pill);
  display: inline-block;
}
.mac-window-dot--r { background: #FF5F56; }
.mac-window-dot--y { background: #FFBD2E; }
.mac-window-dot--g { background: #27C93F; }
.mac-window-title {
  margin: 0 auto;
  font-size: 12px;
  color: var(--text-lo);
  font-weight: 500;
}
.mac-window-body { padding: 0; }
