/* ═══════════════════════════════════════════════════════
   Авто-Сервис 52 — Base CSS
   Единая дизайн-система: переменные, reset, типографика
   ═══════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  /* Colors */
  --red:    #D23B43;
  --dark:   #1A2033;
  --bg:     #F4F5F7;
  --muted:  #6B7280;
  --border: #E5E7EB;
  --white:  #fff;

  /* Typography */
  --f-head: 'Oswald', sans-serif;
  --f-body: 'Inter', sans-serif;
  --f-num:  'Manrope', sans-serif;

  /* Layout */
  --pad: clamp(24px, 5vw, 100px);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; overflow-x: hidden; }
body  { font-family: var(--f-body); background: var(--bg); color: var(--dark); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a     { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
img   { display: block; max-width: 100%; }
ul, ol { list-style: none; }

/* ── REVEAL ANIMATION ── */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.rv.visible { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; }
.rv-d2 { transition-delay: .16s; }
.rv-d3 { transition-delay: .24s; }

/* ── SHARED LAYOUT ── */
.s-wrap  { padding: 0 var(--pad); }
.s-head  { margin-bottom: 56px; }
.s-tag   { font-size: 12px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.s-h2    { font-family: var(--f-head); font-size: clamp(28px, 3.6vw, 52px); font-weight: 600; letter-spacing: 1px; line-height: 1.15; text-transform: uppercase; }
.s-h2 .r { color: var(--red); }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--white); border-bottom: 1px solid var(--border); padding: 12px var(--pad); }
.breadcrumb nav { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 500; letter-spacing: .3px; color: var(--muted); }
.breadcrumb a { color: var(--muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb strong { color: var(--dark); }

/* ── BUTTONS ── */
.btn-hero {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red); color: #fff;
  font-family: var(--f-head); font-size: 15px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 0 44px; height: 60px; border-radius: 6px;
  box-shadow: 0 8px 28px rgba(210,59,67,.32);
  transition: background .2s, transform .15s, box-shadow .2s; white-space: nowrap;
}
.btn-hero:hover { background: #c03038; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(210,59,67,.44); }

.btn-hero-alt {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: rgba(26,32,51,.55);
  font-family: var(--f-body); font-size: 14px; font-weight: 500;
  padding: 0 4px; height: 52px; border: none; white-space: nowrap;
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: rgba(26,32,51,.2);
  transition: color .2s, text-decoration-color .2s;
}
.btn-hero-alt:hover { color: var(--dark); text-decoration-color: rgba(26,32,51,.5); }

.btn-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red); color: #fff;
  font-family: var(--f-head); font-size: 14px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 0 40px; height: 56px; border-radius: 6px;
  box-shadow: 0 6px 20px rgba(210,59,67,.4);
  transition: background .2s; white-space: nowrap;
}
.btn-cta:hover { background: #c03038; }

.btn-cta-out {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: rgba(255,255,255,.55);
  font-size: 14px; font-weight: 500;
  padding: 0 28px; height: 54px;
  border: 1.5px solid rgba(255,255,255,.2); border-radius: 6px;
  transition: border-color .2s, color .2s; white-space: nowrap;
}
.btn-cta-out:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* ── FAQ ── */
.faq-list  { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-item  { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q     { width: 100%; text-align: left; font-size: 15px; font-weight: 500; color: var(--dark); padding: 20px 28px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; transition: color .15s; background: none; border: none; font-family: inherit; }
.faq-q:hover { color: var(--red); }
.faq-icon  { width: 28px; height: 28px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 300; color: var(--muted); flex-shrink: 0; transition: background .15s, color .15s; }
.faq-item.open .faq-icon { background: var(--red); color: #fff; }
.faq-a     { display: none; padding: 0 28px 20px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── REVIEWS ── */
.rev-top  { display: flex; align-items: center; gap: 48px; margin-bottom: 56px; }
.ya-badge { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 16px 24px; flex-shrink: 0; }
.ya-ico   { width: 36px; height: 36px; background: #FC3F1D; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: #fff; }
.ya-score { font-family: var(--f-num); font-size: 24px; font-weight: 800; color: var(--dark); line-height: 1; }
.ya-stars { color: #FFB800; font-size: 14px; letter-spacing: 1px; margin-top: 2px; }
.ya-cnt   { font-size: 11px; color: var(--muted); margin-top: 2px; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rev-card { background: var(--white); border-radius: 16px; padding: 28px; box-shadow: 0 2px 12px rgba(26,32,51,.06); }
.rev-stars { color: #FFB800; font-size: 14px; letter-spacing: 1px; margin-bottom: 14px; }
.rev-text  { font-size: 14px; color: rgba(26,32,51,.7); line-height: 1.7; margin-bottom: 20px; }
.rev-author { display: flex; align-items: center; gap: 10px; }
.rev-av   { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0; }
.rev-name { font-size: 13px; font-weight: 600; color: var(--dark); }
.rev-meta { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── PRICE TABLE ── */
.price-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.price-table thead th { background: var(--dark); color: rgba(255,255,255,.8); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 14px 20px; text-align: left; font-family: var(--f-head); }
.price-table tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover td { background: rgba(210,59,67,.02); }
.price-table tbody td { padding: 14px 20px; font-size: 14px; color: var(--dark); }
.price-table tbody td:nth-child(3) { font-family: var(--f-head); font-size: 15px; font-weight: 500; color: var(--red); white-space: nowrap; }
.price-table tbody td:nth-child(4) { text-align: center; padding-right: 16px; }
.price-group td { background: var(--bg) !important; font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; font-family: var(--f-head); padding: 10px 20px !important; }
.price-note { margin-top: 14px; font-size: 12px; color: var(--muted); line-height: 1.6; }
.price-book-btn { display: inline-flex; align-items: center; background: transparent; color: var(--red); border: 1px solid rgba(210,59,67,.3); border-radius: 6px; font-size: 12px; font-weight: 600; padding: 4px 12px; height: 28px; cursor: pointer; transition: background .15s, border-color .15s; white-space: nowrap; font-family: inherit; }
.price-book-btn:hover { background: rgba(210,59,67,.08); border-color: var(--red); }

/* ── CTA STRIP ── */
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-strip-title { font-family: var(--f-head); font-size: clamp(24px, 3vw, 40px); font-weight: 600; color: #fff; letter-spacing: 1px; text-transform: uppercase; line-height: 1.1; }
.cta-strip-title .r { color: var(--red); }
.cta-strip-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ── MODAL ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .2s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box { background: #fff; border-radius: 20px; padding: 36px; width: 100%; max-width: 440px; position: relative; transform: translateY(16px); transition: transform .2s; }
.modal-overlay.open .modal-box { transform: none; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; background: #f5f5f5; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; color: #666; line-height: 1; }
.modal-close:hover { background: #eee; }
.modal-title { font-family: var(--f-head); font-size: 22px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--dark); margin-bottom: 6px; }
.modal-service { font-size: 14px; color: var(--muted); margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.modal-service strong { color: var(--dark); }
.modal-label { font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; display: block; }
.modal-input { width: 100%; border: 1.5px solid var(--border); border-radius: 8px; padding: 12px 16px; font-size: 15px; outline: none; transition: border-color .15s; font-family: var(--f-body); margin-bottom: 14px; }
.modal-input:focus { border-color: var(--red); }
.btn-modal { width: 100%; height: 52px; background: var(--red); color: #fff; border: none; border-radius: 8px; font-family: var(--f-head); font-size: 14px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: background .2s; }
.btn-modal:hover { background: #c03038; }
.modal-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.5; }

/* ── FOOTER ── */
footer { background: #0f1322; padding: 56px var(--pad) 28px; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.ft-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.ft-logo-sq { width: 32px; height: 32px; background: var(--red); display: flex; align-items: center; justify-content: center; border-radius: 6px; }
.ft-logo-sq svg { width: 18px; height: 12px; }
.ft-logo-name { font-family: var(--f-head); font-size: 14px; font-weight: 600; color: #fff; letter-spacing: .5px; }
.ft-desc { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.7; max-width: 260px; }
.ft-col-title { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.3); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.ft-links { display: flex; flex-direction: column; gap: 9px; }
.ft-links a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .15s; }
.ft-links a:hover { color: #fff; }
.ft-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.07); font-size: 11px; color: rgba(255,255,255,.2); letter-spacing: .3px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .rev-grid { grid-template-columns: 1fr; }
  .rev-top  { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .ft-grid { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .price-table thead th:nth-child(2), .price-table tbody td:nth-child(2) { display: none; }
  .price-table tbody td:nth-child(4) { display: none; }
  .faq-q { font-size: 14px; padding: 16px 20px; }
  .faq-a { padding: 0 20px 16px; }
}

/* ── INTERNAL LINKS ── */
.intlinks { background: var(--white); padding: 56px var(--pad); }
.intlinks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin-top: 32px; }
.intlink-card { display: flex; align-items: center; gap: 10px; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 14px 18px; font-size: 13px; font-weight: 500; color: var(--dark); transition: border-color .15s, color .15s, background .15s; }
.intlink-card:hover { border-color: var(--red); color: var(--red); background: rgba(210,59,67,.04); }
.intlink-icon { font-size: 18px; flex-shrink: 0; }
@media (max-width: 600px) {
  .intlinks-grid { grid-template-columns: 1fr 1fr; }
}

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.sticky-cta.visible {
  opacity: 1;
  transform: none;
  pointer-events: all;
}
.sticky-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
  transition: transform .15s, box-shadow .15s;
  flex-shrink: 0;
}
.sticky-btn:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
.sticky-btn-phone { background: var(--red); }
.sticky-btn-wa    { background: #25D366; }
.sticky-btn svg   { width: 24px; height: 24px; fill: #fff; }
@media (max-width: 600px) {
  .sticky-cta { bottom: 20px; right: 16px; }
  .sticky-btn { width: 50px; height: 50px; }
  .sticky-btn svg { width: 22px; height: 22px; }
}

/* Sticky CTA скрыт — заменён AI-чатом справа */
.sticky-cta { display: none !important; }

/* ══════════════════════════════════════════════════════
   AI CHAT WIDGET — Михаил, автомеханик
   z-index: 9000 (правый угол, вместо sticky CTA)
   ══════════════════════════════════════════════════════ */
.ai-chat-widget { position: fixed; bottom: 28px; right: 24px; z-index: 9000; }

/* Floating toggle button */
.ai-chat-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--dark);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(26,32,51,.35);
  transition: transform .18s, box-shadow .18s, background .18s;
  color: #fff;
}
.ai-chat-btn:hover  { transform: scale(1.08); box-shadow: 0 8px 30px rgba(26,32,51,.45); }
.ai-chat-btn.active { background: var(--red); }
.ai-chat-btn svg    { width: 26px; height: 26px; stroke: #fff; }

/* Chat window */
.ai-chat-window {
  position: absolute;
  bottom: 70px; right: 0;
  width: 340px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 48px rgba(26,32,51,.18);
  display: flex; flex-direction: column;
  overflow: hidden;
  opacity: 0; pointer-events: none;
  transform: translateY(12px) scale(.97);
  transition: opacity .22s ease, transform .22s ease;
}
.ai-chat-window.open { opacity: 1; pointer-events: all; transform: none; }

/* Header */
.ai-chat-header {
  background: var(--dark);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.ai-chat-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-size: 18px; font-weight: 600;
  color: #fff; flex-shrink: 0;
}
.ai-chat-meta { flex: 1; overflow: hidden; }
.ai-chat-meta strong { display: block; color: #fff; font-size: 14px; font-weight: 600; font-family: var(--f-head); letter-spacing: .5px; }
.ai-chat-role { font-size: 11px; color: rgba(255,255,255,.6); display: block; }
.ai-chat-online { color: #4ade80; }
.ai-chat-phone {
  display: inline-block; margin-top: 3px;
  font-size: 13px; font-weight: 600; color: #fff;
  text-decoration: none; font-family: var(--f-body);
  opacity: .9; transition: opacity .15s;
  border-bottom: 1px solid rgba(255,255,255,.3);
  line-height: 1.2;
}
.ai-chat-phone:hover { opacity: 1; border-bottom-color: #fff; }
.ai-chat-close {
  background: none; border: none; color: rgba(255,255,255,.5);
  font-size: 18px; line-height: 1; padding: 4px; cursor: pointer;
  transition: color .15s;
}
.ai-chat-close:hover { color: #fff; }

/* Messages area */
.ai-chat-messages {
  flex: 1; overflow-y: auto;
  padding: 16px 14px 8px;
  display: flex; flex-direction: column;
  gap: 10px;
  min-height: 220px; max-height: 320px;
  scroll-behavior: smooth;
}
.ai-chat-messages::-webkit-scrollbar { width: 4px; }
.ai-chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* Message bubbles */
.ai-msg { display: flex; }
.ai-msg-user { justify-content: flex-end; }
.ai-msg-bot  { flex-direction: column; align-items: flex-start; }
.ai-bubble {
  max-width: 82%; padding: 10px 14px;
  border-radius: 16px; font-size: 14px; line-height: 1.5;
  white-space: pre-wrap; word-break: break-word;
}
.ai-msg-user .ai-bubble { background: var(--red); color: #fff; border-bottom-right-radius: 4px; }
.ai-msg-bot  .ai-bubble { background: var(--bg); color: var(--dark); border-bottom-left-radius: 4px; }

/* Entrance animation */
.ai-msg-in { animation: aiMsgIn .22s ease both; }
@keyframes aiMsgIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

/* Typing dots */
.ai-typing-wrap { align-items: center; }
.ai-typing {
  display: flex; gap: 5px; align-items: center;
  padding: 12px 16px; background: var(--bg); border-radius: 16px; border-bottom-left-radius: 4px;
}
.ai-typing span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--muted); display: inline-block;
  animation: aiDot 1.2s infinite;
}
.ai-typing span:nth-child(2) { animation-delay: .2s; }
.ai-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes aiDot {
  0%,80%,100% { transform: scale(.8); opacity: .5; }
  40%          { transform: scale(1.1); opacity: 1; }
}

/* Footer: quick replies + input */
.ai-chat-footer { padding: 8px 12px 12px; border-top: 1px solid var(--border); flex-shrink: 0; }
.ai-chat-quick { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.ai-quick-btn {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 20px; padding: 5px 11px;
  font-size: 12px; color: var(--dark); cursor: pointer;
  transition: background .15s, border-color .15s;
  white-space: nowrap;
}
.ai-quick-btn:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

.ai-chat-input-row { display: flex; align-items: flex-end; gap: 8px; }
.ai-chat-input {
  flex: 1; border: 1.5px solid var(--border); border-radius: 12px;
  padding: 9px 12px; font-family: var(--f-body); font-size: 14px;
  color: var(--dark); background: #fff; resize: none; overflow: hidden;
  line-height: 1.4; max-height: 120px;
  transition: border-color .15s;
}
.ai-chat-input:focus { outline: none; border-color: var(--dark); }
.ai-chat-send {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: var(--dark); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, transform .12s;
}
.ai-chat-send:hover   { background: var(--red); transform: scale(1.05); }
.ai-chat-send:disabled { background: var(--border); cursor: not-allowed; transform: none; }

.ai-chat-disclaimer { font-size: 10px; color: var(--muted); text-align: center; margin-top: 8px; line-height: 1.4; }

/* Lead capture CTA */
.ai-lead-cta {
  display: inline-block; margin-top: 8px;
  background: var(--dark); color: #fff;
  border: none; border-radius: 20px;
  padding: 7px 14px; font-size: 13px; font-weight: 500;
  cursor: pointer; font-family: var(--f-body);
  transition: background .15s, transform .12s;
}
.ai-lead-cta:hover { background: var(--red); transform: scale(1.03); }

/* Lead inline form */
.ai-lead-form {
  margin-top: 10px; display: flex; flex-direction: column; gap: 7px;
  background: var(--bg); border-radius: 12px; padding: 12px;
  max-width: 260px;
}
.ai-lead-input {
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 8px 10px; font-family: var(--f-body); font-size: 14px;
  color: var(--dark); background: #fff; outline: none;
  transition: border-color .15s;
}
.ai-lead-input:focus { border-color: var(--dark); }
.ai-lead-submit {
  background: var(--red); color: #fff; border: none;
  border-radius: 8px; padding: 9px 16px;
  font-family: var(--f-body); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: background .15s;
}
.ai-lead-submit:hover { background: #b8313a; }
.ai-lead-submit:disabled { background: var(--muted); cursor: not-allowed; }

/* Mobile */
@media (max-width: 600px) {
  /* Button — fix iOS default styles */
  .ai-chat-btn {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .ai-chat-widget { bottom: 16px; right: 16px; }

  /* Switch window to fixed positioning so it never overflows viewport */
  .ai-chat-window {
    position: fixed;
    bottom: 84px;
    right: 16px;
    left: 16px;
    width: auto;
    max-height: calc(100dvh - 110px);
    border-radius: 14px;
  }

  /* Compact header */
  .ai-chat-header { padding: 10px 12px; gap: 8px; }
  .ai-chat-avatar { width: 32px; height: 32px; font-size: 15px; }
  .ai-chat-meta strong { font-size: 13px; }
  .ai-chat-role { font-size: 10px; }
  .ai-chat-phone { font-size: 12px; margin-top: 2px; }

  .ai-chat-messages { min-height: 140px; max-height: calc(100dvh - 300px); }
  .ai-chat-quick { gap: 5px; }
  .ai-quick-btn { font-size: 11px; padding: 4px 9px; }
}
