/* ============================================================
   ApoLife Chat Widget — widget.css
   Official ApoLife brand design · Light + Dark · Sidebar layout
   All classes prefixed with .alc- to avoid host-page conflicts
   ============================================================ */

/* ---------- custom properties (light) ---------- */
.alc-container {
  --bg: #FFFFFF;
  --bg-2: #f6f6f6;
  --surface: #FFFFFF;
  --ink: #707070;
  --ink-1: #505050;
  --ink-2: #888888;
  --ink-3: #a8a8a8;
  --line: #e0e0e0;
  --line-soft: #eeeeee;
  --accent: #94AAA3;
  --accent-2: #9FB3AC;
  --accent-soft: #B4C3BE;
  --accent-ink: #FFFFFF;
  --amber: #b8742a;
  --rose: #D7695E;
  --chip: #f0f0f0;
  --bubble-user: #94AAA3;
  --bubble-user-ink: #FFFFFF;
  --bubble-bot: #FFFFFF;
  --bubble-bot-ink: #707070;
  --tint: rgba(148, 170, 163, 0.08);
  --shadow: 0 1px 3px rgba(0,0,0,.04), 0 6px 20px rgba(0,0,0,.04);
}

/* ---------- dark theme ---------- */
.alc-container[data-theme="dark"] {
  --bg: #1a1e20;
  --bg-2: #222729;
  --surface: #282e31;
  --ink: #d4d4d4;
  --ink-1: #e0e0e0;
  --ink-2: #a8a8a8;
  --ink-3: #787878;
  --line: #353b3e;
  --line-soft: #2e3437;
  --accent: #a8c0b9;
  --accent-2: #b8cdc6;
  --accent-soft: #8faba3;
  --accent-ink: #1a1e20;
  --amber: #d6975a;
  --rose: #cf8078;
  --chip: #2e3437;
  --bubble-user: #94AAA3;
  --bubble-user-ink: #1a1e20;
  --bubble-bot: #282e31;
  --bubble-bot-ink: #d4d4d4;
  --tint: rgba(148, 170, 163, 0.06);
  --shadow: 0 1px 3px rgba(0,0,0,.2), 0 6px 20px rgba(0,0,0,.2);
}

/* ---------- reset & base ---------- */
.alc-container,
.alc-container *,
.alc-container *::before,
.alc-container *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.alc-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  width: 100%;
  height: 100%;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.alc-container[data-sidebar="closed"] {
  grid-template-columns: 0 1fr;
}

.alc-container ::selection {
  background: color-mix(in oklab, var(--accent) 30%, transparent);
}

.alc-container button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.alc-container input {
  font-family: inherit;
  color: inherit;
}

/* ===== SIDEBAR ===== */
.alc-sidebar {
  background: var(--bg-2);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  transition: width 0.2s ease;
}

.alc-sidebar-inner {
  width: 260px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* brand */
.alc-brand {
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid var(--line-soft);
}

.alc-brand-logo {
  display: block;
  width: auto;
  height: 34px;
  max-width: 100%;
  object-fit: contain;
}

.alc-brand-dept {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

/* new chat button */
.alc-new-chat {
  margin: 12px 12px 6px;
  padding: 11px 14px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: transform 0.1s ease, background 0.15s;
}

.alc-new-chat:hover { background: var(--accent-2); }
.alc-new-chat:active { transform: scale(0.985); }

.alc-new-chat-plus {
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

/* search */
.alc-search {
  margin: 6px 12px 4px;
  position: relative;
}

.alc-search input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 8px 10px 8px 32px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.15s;
}

.alc-search input:focus { border-color: var(--accent); }
.alc-search input::placeholder { color: var(--ink-3); }

.alc-search svg {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  color: var(--ink-3);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

/* history list */
.alc-history {
  flex: 1;
  overflow-y: auto;
  padding: 8px 6px 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.alc-history::-webkit-scrollbar { width: 6px; }
.alc-history::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }

.alc-section-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 10px 10px 5px;
  font-weight: 600;
}

.alc-chat-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  margin: 1px 0;
  cursor: pointer;
  transition: background 0.12s;
  color: var(--ink-2);
}

.alc-chat-row:hover {
  background: color-mix(in oklab, var(--ink) 5%, transparent);
}

.alc-chat-row.alc-active {
  background: color-mix(in oklab, var(--accent) 12%, transparent);
  color: var(--ink);
}

.alc-chat-row-tick {
  width: 3px;
  align-self: stretch;
  border-radius: 2px;
  background: transparent;
  margin-right: 2px;
  flex-shrink: 0;
}

.alc-chat-row.alc-active .alc-chat-row-tick {
  background: var(--accent);
}

.alc-chat-row-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.alc-chat-row-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.alc-chat-row-meta {
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 2px;
}

/* sidebar footer */
.alc-sidebar-footer {
  border-top: 1px solid var(--line-soft);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-2);
}

.alc-sidebar-footer .alc-icon-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.alc-sidebar-status {
  flex: 1;
  min-width: 0;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}

/* ===== MAIN PANEL ===== */
.alc-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* topbar */
.alc-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg);
  flex-shrink: 0;
}

.alc-topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.alc-side-toggle {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--ink-2);
  transition: background 0.12s;
}

.alc-side-toggle:hover {
  background: color-mix(in oklab, var(--ink) 6%, transparent);
}

.alc-side-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
}

.alc-topbar-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.alc-topbar-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.alc-topbar-sub {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  margin-top: 2px;
}

.alc-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 22%, transparent);
  flex-shrink: 0;
}

.alc-topbar-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.alc-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--ink-3);
  transition: background 0.12s, color 0.12s;
}

.alc-icon-btn:hover {
  background: color-mix(in oklab, var(--ink) 6%, transparent);
  color: var(--ink);
}

.alc-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== MESSAGES AREA ===== */
.alc-messages {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.alc-messages::-webkit-scrollbar { width: 6px; }
.alc-messages::-webkit-scrollbar-track { background: transparent; }
.alc-messages::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px;
}

/* ===== MESSAGE ROWS ===== */
.alc-msg-row {
  display: flex;
  gap: 10px;
}

.alc-msg-row-user { justify-content: flex-end; }
.alc-msg-row-bot  { justify-content: flex-start; }

.alc-avatar {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  margin-top: 4px;
  overflow: hidden;
}

.alc-avatar img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.alc-msg-content {
  flex: 1;
  min-width: 0;
  max-width: 85%;
}

/* ===== BUBBLES ===== */
.alc-bubble {
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.55;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.alc-bubble-user {
  background: var(--bubble-user);
  color: var(--bubble-user-ink);
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

.alc-bubble-bot {
  background: var(--tint);
  color: var(--bubble-bot-ink);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}

/* ===== MARKDOWN IN BOT BUBBLES ===== */
.alc-bubble-bot h1,
.alc-bubble-bot h2,
.alc-bubble-bot h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  margin-top: 0.8em;
  margin-bottom: 0.35em;
  line-height: 1.3;
  color: var(--accent);
}

.alc-bubble-bot h1 { font-size: 1.35em; }
.alc-bubble-bot h2 { font-size: 1.2em; }
.alc-bubble-bot h3 { font-size: 1.08em; }
.alc-bubble-bot p { margin: 0.5em 0; }
.alc-bubble-bot ul, .alc-bubble-bot ol { margin: 0.5em 0 0.5em 1.4em; }
.alc-bubble-bot li { margin-bottom: 0.25em; }
.alc-bubble-bot strong { font-weight: 600; }
.alc-bubble-bot em { font-style: italic; opacity: 0.9; }

.alc-bubble-bot code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.88em;
  background: color-mix(in oklab, var(--ink) 6%, transparent);
  padding: 1px 5px;
  border-radius: 4px;
}

.alc-bubble-bot > :first-child { margin-top: 0; }
.alc-bubble-bot > :last-child  { margin-bottom: 0; }

/* ===== CALLOUT BOXES ===== */
.alc-callout {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  border-left: 3px solid var(--amber);
  background: color-mix(in oklab, var(--amber) 9%, var(--bubble-bot));
  border-radius: 4px;
  margin: 10px 0 6px;
  font-size: 13.5px;
  line-height: 1.5;
}

.alc-callout-tag {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  padding-top: 2px;
  white-space: nowrap;
}

.alc-callout-rose { border-left-color: var(--rose); background: color-mix(in oklab, var(--rose) 8%, var(--bubble-bot)); }
.alc-callout-rose .alc-callout-tag { color: var(--rose); }

/* ===== PRODUCT IMAGES (single) ===== */
.alc-bubble-bot .alc-product-img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 10px;
  margin: 12px auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ===== PRODUCT CAROUSEL ===== */
.alc-carousel {
  position: relative;
  margin: 14px -4px 6px;
  border-radius: 12px;
  background: var(--bubble-bot, #FFFFFF);
  border: 1px solid var(--line, rgba(0,0,0,0.06));
  overflow: hidden;
}
.alc-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
}
.alc-carousel-track::-webkit-scrollbar { display: none; }

.alc-carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px 8px;
}
.alc-carousel-slide img {
  width: auto;
  max-width: 200px;
  max-height: 220px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.10));
}
.alc-carousel-label {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-1, #505050);
  text-align: center;
  line-height: 1.3;
  padding: 0 8px;
}

/* Arrows */
.alc-carousel-prev,
.alc-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--bg, #FFFFFF);
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, background 0.15s;
  z-index: 2;
  padding: 0;
}
.alc-carousel-prev { left: 6px; }
.alc-carousel-next { right: 6px; }
.alc-carousel-prev:hover,
.alc-carousel-next:hover { background: var(--accent, #94AAA3); }
.alc-carousel-prev:hover svg,
.alc-carousel-next:hover svg { stroke: #fff; }
.alc-carousel-prev svg,
.alc-carousel-next svg {
  width: 16px;
  height: 16px;
  stroke: var(--ink-2, #888);
  stroke-width: 2;
  fill: none;
}

/* Dots */
.alc-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 0 12px;
}
.alc-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--accent, #94AAA3);
  opacity: 0.25;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.alc-carousel-dot.active {
  opacity: 1;
  transform: scale(1.25);
}

/* Counter badge */
.alc-carousel-counter {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3, #a8a8a8);
  background: var(--bg, #FFFFFF);
  padding: 2px 8px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  z-index: 2;
}

/* ===== MESSAGE ACTIONS ===== */
.alc-msg-actions {
  display: flex;
  gap: 2px;
  margin-top: 6px;
  color: var(--ink-3);
}

.alc-msg-action {
  width: 28px;
  height: 26px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: inherit;
  transition: background 0.12s, color 0.12s;
}

.alc-msg-action:hover {
  background: color-mix(in oklab, var(--ink) 6%, transparent);
  color: var(--ink);
}

.alc-msg-action.alc-active { color: var(--accent); }

.alc-msg-action svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.alc-msg-ts {
  margin-left: auto;
  font-size: 11px;
  color: var(--ink-3);
  align-self: center;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
}

/* ===== TYPING INDICATOR ===== */
.alc-typing-row { display: flex; gap: 10px; justify-content: flex-start; }

.alc-typing-bubble {
  padding: 14px 18px;
  background: var(--bubble-bot);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
}

.alc-typing-dots { display: inline-flex; gap: 4px; align-items: center; height: 16px; }

.alc-typing-dot {
  width: 6px; height: 6px;
  background: var(--ink-3);
  border-radius: 50%;
  opacity: 0.4;
  animation: alc-dot 1.2s infinite ease-in-out;
}

.alc-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.alc-typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes alc-dot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%           { opacity: 1; transform: translateY(-2px); }
}

/* ===== ERROR ===== */
.alc-error {
  align-self: center;
  max-width: 90%;
  padding: 10px 14px;
  background: color-mix(in oklab, var(--rose) 12%, var(--surface));
  color: var(--rose);
  border: 1px solid color-mix(in oklab, var(--rose) 25%, transparent);
  border-radius: 10px;
  font-size: 13px;
  text-align: center;
}

/* ===== EMPTY STATE ===== */
.alc-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px 20px;
  max-width: 620px;
  margin: 0 auto;
}

.alc-empty-eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: 12px;
}

.alc-empty-heading {
  font-family: 'Open Sans', sans-serif;
  font-size: 34px;
  font-weight: 300;
  margin: 0;
  line-height: 1.2;
  color: var(--ink-1);
}

.alc-empty-heading em {
  font-style: italic;
  color: var(--accent);
}

.alc-empty-sub {
  color: var(--ink-2);
  max-width: 460px;
  margin: 12px auto 28px;
  font-size: 14px;
  line-height: 1.55;
}

.alc-prompt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 540px;
}

.alc-prompt-card {
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.1s;
  font-family: inherit;
  color: var(--ink);
}

.alc-prompt-card:hover { border-color: var(--accent); }
.alc-prompt-card:active { transform: scale(0.99); }

.alc-prompt-card-cat {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 5px;
}

.alc-prompt-card-q {
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.4;
}

/* ===== COMPOSER ===== */
.alc-composer-wrap {
  padding: 10px 18px 16px;
  background: linear-gradient(to top, var(--bg) 60%, transparent);
  flex-shrink: 0;
}

.alc-composer {
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px 8px;
  box-shadow: var(--shadow);
  transition: border-color 0.15s;
}

.alc-composer:focus-within { border-color: var(--accent); }

.alc-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  resize: none;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  min-height: 22px;
  max-height: 120px;
  padding: 4px 4px;
}

.alc-input::placeholder { color: var(--ink-3); }

.alc-composer-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.alc-composer-spacer { flex: 1; }

.alc-send-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--accent-ink);
  cursor: pointer;
  transition: background 0.12s, transform 0.1s;
}

.alc-send-btn:hover { background: var(--accent-2); }
.alc-send-btn:active { transform: scale(0.94); }
.alc-send-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.alc-send-btn:disabled:hover { background: var(--accent); }
.alc-send-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.alc-send-btn svg {
  width: 16px; height: 16px;
  fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.alc-disclaimer {
  max-width: 760px;
  margin: 6px auto 0;
  text-align: center;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.03em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
  .alc-container {
    grid-template-columns: 1fr;
    border-radius: 0;
  }
  .alc-sidebar {
    position: absolute;
    z-index: 10;
    height: 100%;
    width: 82%;
    max-width: 300px;
    transition: transform 0.24s ease;
    border-right: 1px solid var(--line);
    background: var(--bg-2);
  }
  .alc-sidebar-inner { width: 100%; }
  .alc-container[data-sidebar="closed"] .alc-sidebar {
    transform: translateX(-105%);
  }
  .alc-container[data-sidebar="open"] .alc-sidebar {
    transform: translateX(0);
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
  }
  .alc-empty-heading { font-size: 30px; }
  .alc-prompt-grid { grid-template-columns: 1fr; }
  .alc-msg-content { max-width: 90%; }
  .alc-input { font-size: 16px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .alc-container *,
  .alc-container *::before,
  .alc-container *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
