/* ─────────────────────────────────────────────────────────────
   Ripple Meet — brand language aligned with rippledesign.co
   Tokens lifted from the marketing site:
     ink #1c1917 · white #fafaf8 · surface #f5f5f4 · border #e7e5e4
     indigo #3730a3 · indigo-mid #6366f1 · indigo-light #ede9fe
     Plus Jakarta Sans (UI) · Instrument Serif (display, italic-leaning)
   ───────────────────────────────────────────────────────────── */

:root {
  --ink: #1c1917;
  --ink-2: #2a2624;
  --ink-3: #44403c;
  --muted: #78716c;
  --subtle: #a8a29e;
  --white: #fafaf8;
  --surface: #f5f5f4;
  --border: #e7e5e4;
  --indigo: #3730a3;
  --indigo-mid: #6366f1;
  --indigo-light: #ede9fe;
  --amber: #d97706;
  --green: #16a34a;
  --danger: #b91c1c;

  --bg: var(--white);
  --bg-soft: var(--surface);
  --bg-elev: #ffffff;
  --fg: var(--ink);
  --fg-muted: var(--muted);
  --fg-subtle: var(--subtle);
  --accent: var(--indigo);
  --accent-soft: var(--indigo-light);
  --accent-fg: #ffffff;
  --danger-fg: #ffffff;
  --tile-bg: #1c1917;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --max: 1080px;
  --pad: clamp(1.25rem, 5vw, 3.5rem);

  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.04);
  --shadow: 0 1px 2px rgba(28, 25, 23, 0.05), 0 12px 28px -8px rgba(28, 25, 23, 0.08);
  --shadow-lg: 0 1px 2px rgba(28, 25, 23, 0.05), 0 24px 48px -16px rgba(28, 25, 23, 0.18);

  --sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --serif: 'Instrument Serif', 'Source Serif 4', 'Iowan Old Style', Georgia, serif;
  --mono: 'SF Mono', Menlo, Monaco, Consolas, ui-monospace, monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14110f;
    --bg-soft: #1c1917;
    --bg-elev: #1f1c1a;
    --fg: #faf8f6;
    --fg-muted: #b5ada6;
    --fg-subtle: #807973;
    --border: #2a2522;
    --accent: #a5b4fc;
    --accent-soft: rgba(99, 102, 241, 0.18);
    --accent-fg: #1c1917;
    --tile-bg: #0c0a09;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 16px 32px -8px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 1px 2px rgba(0, 0, 0, 0.3), 0 32px 64px -16px rgba(0, 0, 0, 0.55);
  }
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

/* ── wordmark ────────────────────────────────────────── */

.wordmark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 24px;
  font-size: 16px;
  color: var(--fg);
  user-select: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.share-btn {
  font: inherit;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  min-height: 34px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--fg);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 120ms ease;
  box-shadow: var(--shadow-sm);
}

.share-btn:hover {
  background: var(--bg-soft);
  border-color: var(--fg-subtle);
}

.share-btn:active {
  transform: translateY(1px);
}

.share-btn.copied {
  color: var(--green);
  border-color: var(--green);
  background: var(--bg-elev);
}

.share-btn .ctrl-icon {
  width: 14px;
  height: 14px;
}

.wordmark-text {
  font-weight: 500;
}

.wordmark-text em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15em;
  letter-spacing: -0.01em;
}

#app {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* ── pre-join ───────────────────────────────────────── */

.prejoin {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px var(--pad) 48px;
}

.prejoin-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 920px;
  width: 100%;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

@media (min-width: 760px) {
  .prejoin-card {
    grid-template-columns: 1.15fr 1fr;
    gap: 36px;
    padding: 28px;
  }
}

.prejoin-preview {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--tile-bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

#preview-video,
.preview-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#preview-video {
  object-fit: cover;
  transform: scaleX(-1);
}

.preview-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d6d3d1;
  font-size: 13px;
  background: var(--tile-bg);
  padding: 24px;
  text-align: center;
}

.preview-controls {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 1;
}

.prejoin-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px;
}

.eyebrow {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-muted);
}

.prejoin-form h1 {
  margin: 0 0 6px;
  font-family: var(--sans);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--fg);
}

.prejoin-form h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1em;
  color: var(--accent);
}

.presence {
  margin: 0 0 18px;
  min-height: 1.2em;
  font-size: 13px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.presence.live::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.55);
  animation: presence-pulse 1.8s ease-out infinite;
  flex-shrink: 0;
}

@keyframes presence-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(22, 163, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}

.room-label {
  margin: 0 0 24px;
  color: var(--fg-muted);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.room-label code {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg);
  letter-spacing: -0.01em;
}

label[for='name-input'] {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

#name-input {
  font: inherit;
  font-family: var(--sans);
  font-size: 16px;
  padding: 13px 16px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

#name-input:hover {
  border-color: var(--fg-subtle);
}

#name-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

button.primary {
  font: inherit;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--accent-fg);
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 160ms ease, background 160ms ease;
  box-shadow: var(--shadow-sm);
}

button.primary:hover:not(:disabled) {
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

button.primary:active:not(:disabled) {
  transform: translateY(0);
}

button.primary:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.error {
  margin: 14px 0 0;
  min-height: 1.2em;
  color: var(--danger);
  font-size: 13px;
}

/* ── in-meeting ─────────────────────────────────────── */

.room {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0;
  gap: 0;
  position: relative;
}

.room-stage {
  flex: 1;
  position: relative;
  min-height: 0;
  display: flex;
}

.grid {
  flex: 1;
  display: grid;
  gap: 4px;
  min-height: 0;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(0, 1fr);
  background: var(--tile-bg);
}

@media (min-width: 640px) {
  .grid.count-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid.count-3,
  .grid.count-4 {
    grid-template-columns: 1fr 1fr;
  }
  .grid.count-5,
  .grid.count-6 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .grid.count-many {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

.tile {
  position: relative;
  background: var(--tile-bg);
  overflow: hidden;
  min-height: 0;
  min-width: 0;
}

.tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--tile-bg);
}

.tile.local video {
  transform: scaleX(-1);
}

.tile.local.no-mirror video {
  transform: none;
}

.tile.screenshare video {
  object-fit: contain;
  background: #000;
}

.tile-name {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 12px;
  font-weight: 500;
  color: #fafaf8;
  background: rgba(28, 25, 23, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: calc(100% - 24px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: -0.005em;
}

.tile-muted {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: currentColor;
  -webkit-mask: var(--icon-mic-off) center/contain no-repeat;
  mask: var(--icon-mic-off) center/contain no-repeat;
}

.tile-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fafaf8;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 400;
  letter-spacing: -0.02em;
  background:
    radial-gradient(circle at 30% 25%, rgba(165, 180, 252, 0.18), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(99, 102, 241, 0.15), transparent 50%),
    var(--tile-bg);
}

/* ── controls ───────────────────────────────────────── */

.controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  flex-wrap: wrap;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}

.ctrl-btn {
  font: inherit;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  min-height: 44px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--fg);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 120ms ease, color 160ms ease;
  box-shadow: var(--shadow-sm);
}

.ctrl-btn:hover {
  background: var(--bg-soft);
  border-color: var(--fg-subtle);
}

.ctrl-btn:active {
  transform: translateY(1px);
}

.ctrl-btn[aria-pressed='false'] {
  background: var(--bg-soft);
  color: var(--fg-subtle);
}

.ctrl-btn[aria-pressed='false']:hover {
  background: var(--bg-elev);
  color: var(--fg);
}

.preview-controls .ctrl-btn {
  background: rgba(28, 25, 23, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fafaf8;
  border-color: rgba(250, 250, 248, 0.22);
  padding: 9px 11px;
  min-height: 0;
}

.preview-controls .ctrl-btn[aria-pressed='false'] {
  background: rgba(28, 25, 23, 0.9);
  color: var(--subtle);
}

.ctrl-btn.danger {
  background: var(--danger);
  color: var(--danger-fg);
  border-color: var(--danger);
}

.ctrl-btn.danger:hover {
  background: #991b1b;
  border-color: #991b1b;
  color: var(--danger-fg);
}

/* error toast — overlays the video, doesn't push layout */
.room > .error {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  padding: 8px 14px;
  margin: 0;
  background: rgba(28, 25, 23, 0.85);
  color: #fafaf8;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  max-width: calc(100% - 28px);
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}

.room > .error:empty {
  display: none;
}

.ctrl-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.ctrl-icon[data-icon='mic-on'] {
  -webkit-mask-image: var(--icon-mic-on);
  mask-image: var(--icon-mic-on);
}
.ctrl-icon[data-icon='mic-off'] {
  -webkit-mask-image: var(--icon-mic-off);
  mask-image: var(--icon-mic-off);
}
.ctrl-icon[data-icon='cam-on'] {
  -webkit-mask-image: var(--icon-cam-on);
  mask-image: var(--icon-cam-on);
}
.ctrl-icon[data-icon='cam-off'] {
  -webkit-mask-image: var(--icon-cam-off);
  mask-image: var(--icon-cam-off);
}
.ctrl-icon[data-icon='share'] {
  -webkit-mask-image: var(--icon-share);
  mask-image: var(--icon-share);
}
.ctrl-icon[data-icon='leave'] {
  -webkit-mask-image: var(--icon-leave);
  mask-image: var(--icon-leave);
}
.ctrl-icon[data-icon='link'] {
  -webkit-mask-image: var(--icon-link);
  mask-image: var(--icon-link);
}
.ctrl-icon[data-icon='check'] {
  -webkit-mask-image: var(--icon-check);
  mask-image: var(--icon-check);
}
.ctrl-icon[data-icon='flip'] {
  -webkit-mask-image: var(--icon-flip);
  mask-image: var(--icon-flip);
}

@media (max-width: 480px) {
  .ctrl-label {
    display: none;
  }
  .ctrl-btn {
    padding: 12px;
    min-width: 44px;
    justify-content: center;
  }
}

/* ── modal ──────────────────────────────────────────── */

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: modal-in 200ms ease-out;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  max-width: 440px;
  width: 100%;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  color: var(--fg);
  animation: modal-card-in 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal-card h2 {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.modal-body {
  margin: 0 0 22px;
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.5;
}

.modal-body strong {
  color: var(--fg);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.modal-actions .primary,
.modal-actions .secondary {
  font: inherit;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 120ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  min-height: 42px;
}

.modal-actions .primary {
  background: var(--accent);
  color: var(--accent-fg);
  border: 1px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.modal-actions .primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.modal-actions .secondary {
  background: var(--bg-elev);
  color: var(--fg);
  border: 1px solid var(--border);
}

.modal-actions .secondary:hover {
  background: var(--bg-soft);
  border-color: var(--fg-subtle);
}

@keyframes modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modal-card-in {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 480px) {
  .modal-actions {
    flex-direction: column-reverse;
  }
  .modal-actions .primary,
  .modal-actions .secondary {
    width: 100%;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* inline SVG icons via data URIs (mask-image) */
:root {
  --icon-mic-on: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3z'/><path d='M19 10v2a7 7 0 0 1-14 0v-2'/><line x1='12' y1='19' x2='12' y2='22'/></svg>");
  --icon-mic-off: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><line x1='2' y1='2' x2='22' y2='22'/><path d='M9 9v3a3 3 0 0 0 5.12 2.12'/><path d='M15 9.34V5a3 3 0 0 0-5.94-.6'/><path d='M19 10v2a7 7 0 0 1-.11 1.23'/><path d='M5 10v2a7 7 0 0 0 12 5'/><line x1='12' y1='19' x2='12' y2='22'/></svg>");
  --icon-cam-on: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M23 7l-7 5 7 5V7z'/><rect x='1' y='5' width='15' height='14' rx='2' ry='2'/></svg>");
  --icon-cam-off: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><line x1='2' y1='2' x2='22' y2='22'/><path d='M16 16v1a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2m4 0h5a2 2 0 0 1 2 2v3.5l5-3.5v10'/></svg>");
  --icon-share: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='3' width='20' height='14' rx='2' ry='2'/><line x1='8' y1='21' x2='16' y2='21'/><line x1='12' y1='17' x2='12' y2='21'/><polyline points='9 10 12 7 15 10'/><line x1='12' y1='7' x2='12' y2='14'/></svg>");
  --icon-leave: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92V21a1 1 0 0 1-1.11 1A19.86 19.86 0 0 1 2 4.11 1 1 0 0 1 3 3h4.09a1 1 0 0 1 1 .75c.12.6.31 1.2.55 1.77a1 1 0 0 1-.23 1.06L6.91 8.13a16 16 0 0 0 8.95 8.95l1.55-1.55a1 1 0 0 1 1.06-.23c.57.24 1.17.43 1.77.55a1 1 0 0 1 .76 1z' transform='rotate(135 12 12)'/></svg>");
  --icon-link: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M10 13a5 5 0 0 0 7.07 0l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.72'/><path d='M14 11a5 5 0 0 0-7.07 0l-3 3a5 5 0 0 0 7.07 7.07l1.72-1.72'/></svg>");
  --icon-check: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  --icon-flip: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M11 19H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h5'/><path d='M13 5h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-5'/><circle cx='12' cy='12' r='3'/><path d='m18 22 3-3-3-3'/><path d='m6 2-3 3 3 3'/></svg>");
}
