/* ویجت گفتگوی یکپارچه دِلی + پشتیبانی */
.deli-chat {
  position: fixed;
  z-index: 9600;
  bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  left: 16px;
  right: auto;
  font-family: var(--font-body, Vazirmatn, IRANSans, Tahoma, sans-serif);
  -webkit-font-smoothing: antialiased;
}

.deli-chat button,
.deli-chat input,
.deli-chat textarea {
  font-family: inherit;
}

.page-charity-bazaar .deli-chat,
.page-error .deli-chat {
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
}

.deli-chat-fab {
  position: relative;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  box-shadow: 0 10px 32px rgba(45, 74, 50, 0.28);
  transition: transform 0.25s var(--ease-bounce, cubic-bezier(0.34, 1.56, 0.64, 1));
}

.deli-chat-fab-badge {
  position: absolute;
  top: -3px;
  inset-inline-end: -3px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #e53935;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.45);
  border: 2px solid #fff;
  z-index: 2;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.deli-chat-fab-badge[hidden] {
  display: none !important;
}

.deli-chat.has-unread .deli-chat-fab-img {
  box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.35);
}

.deli-chat.has-unread .deli-chat-fab-pulse {
  border-color: rgba(229, 57, 53, 0.45);
  animation-duration: 1.6s;
}

.deli-chat-fab-badge.is-bump {
  animation: deli-chat-badge-bump 0.45s var(--ease-bounce, cubic-bezier(0.34, 1.56, 0.64, 1));
}

@keyframes deli-chat-badge-bump {
  0% { transform: scale(0.6); opacity: 0.5; }
  55% { transform: scale(1.12); }
  100% { transform: scale(1); opacity: 1; }
}

.deli-chat-fab:hover {
  transform: scale(1.06);
}

.deli-chat-fab.is-booting {
  pointer-events: wait;
  cursor: wait;
}

.deli-chat-fab.is-booting .deli-chat-fab-img {
  opacity: 0.72;
}

.deli-chat-fab-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(145deg, #f7f3eb, #e8f2ea);
  border: 2px solid rgba(90, 122, 82, 0.35);
}

.deli-chat-fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(129, 176, 97, 0.35);
  animation: deli-fab-pulse 2.5s ease-out infinite;
  pointer-events: none;
}

@keyframes deli-fab-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.15); opacity: 0; }
  100% { opacity: 0; }
}

.deli-chat-panel {
  position: absolute;
  bottom: 72px;
  left: 0;
  right: auto;
  width: min(400px, calc(100vw - 24px));
  max-height: min(620px, calc(100vh - 120px));
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--bg, #fff);
  border-radius: 22px;
  border: 1px solid var(--border, #e8ece9);
  box-shadow: 0 24px 64px rgba(26, 31, 28, 0.2);
  overflow: hidden;
}

.deli-chat-panel[hidden],
.deli-chat:not(.is-open) .deli-chat-panel {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.deli-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(165deg, rgba(247, 243, 235, 0.95), rgba(232, 245, 235, 0.85));
  border-bottom: 1px solid var(--border, #e8ece9);
}

.deli-chat-header-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(45, 74, 50, 0.15);
}

.deli-chat-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--deli-olive-deep, #719552);
}

.deli-chat-sub {
  margin: 2px 0 0;
  font-size: 0.75rem;
  color: var(--text-muted, #5c6560);
}

.deli-chat-header-text {
  flex: 1;
  min-width: 0;
}

.deli-chat-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(129, 176, 97, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  color: var(--deli-olive-deep, #719552);
  flex-shrink: 0;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.deli-chat-support:hover {
  background: #eef5ef;
  border-color: #81b061;
}

.deli-chat-support-label--deli {
  display: none;
}

.deli-chat.is-staff-mode .deli-chat-support-label--support {
  display: none;
}

.deli-chat.is-staff-mode .deli-chat-support-label--deli {
  display: inline;
}

.deli-chat.is-staff-mode .deli-chat-support {
  background: linear-gradient(135deg, #f7f3eb, #e8f5eb);
  border-color: #81b061;
  color: var(--deli-olive-deep, #719552);
}

.deli-chat.is-staff-mode .deli-chat-support:hover {
  background: #eef5ef;
}

.deli-chat-support.is-active {
  background: linear-gradient(135deg, #81b061, #6f9a52);
  border-color: #6f9a52;
  color: #fff;
}

.deli-chat-support-icon {
  flex-shrink: 0;
}

.deli-chat-support-label {
  white-space: nowrap;
}

.deli-chat-sound {
  margin-right: 0;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  color: var(--text-muted, #5c6560);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
}

.deli-chat-sound:hover {
  color: var(--deli-olive-deep, #719552);
  background: rgba(255, 255, 255, 0.95);
}

.deli-chat-sound-icon--off {
  display: none;
}

.deli-chat-sound[aria-pressed='false'] .deli-chat-sound-icon--on {
  display: none;
}

.deli-chat-sound[aria-pressed='false'] .deli-chat-sound-icon--off {
  display: block;
}

.deli-chat-close {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  flex-shrink: 0;
}

.deli-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
  max-height: 360px;
}

.deli-chat-msg {
  max-width: 92%;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.deli-chat-msg--bot {
  align-self: flex-start;
  background: linear-gradient(135deg, #f7f3eb, #eef5ef);
  border: 1px solid rgba(90, 122, 82, 0.12);
  border-bottom-right-radius: 4px;
}

.deli-chat-msg--bot:has(.deli-chat-msg-products) {
  max-width: 100%;
  width: 100%;
  align-self: stretch;
}

.deli-chat-msg--user {
  align-self: flex-end;
  background: var(--brand);
  color: #fff;
  border-bottom-left-radius: 4px;
}

.deli-chat-msg--staff {
  align-self: flex-start;
  background: linear-gradient(135deg, #eef4ff, #e3ecfa);
  color: #1a2a3d;
  border: 1px solid rgba(59, 99, 140, 0.2);
  border-bottom-right-radius: 4px;
}

.deli-chat-msg-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #3b638c;
  margin-bottom: 0.35rem;
}

.deli-chat-msg--bot.is-loading {
  opacity: 0.85;
}

/* انیمیشن «در حال نوشتن» */
.deli-chat-msg--bot.is-typing .deli-chat-msg-body {
  display: flex;
  align-items: center;
  min-height: 1.5rem;
  padding: 0.15rem 0;
}

.deli-chat-typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 12px;
}

.deli-chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.45;
  animation: deli-typing-bounce 1.1s ease-in-out infinite;
}

.deli-chat-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.deli-chat-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes deli-typing-bounce {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

.deli-chat-msg strong {
  font-weight: 700;
}

/* نوار پیشنهاد — اسکرول افقی محصولات و چیپ‌ها */
.deli-chat-suggest {
  flex-shrink: 0;
  min-width: 0;
  border-top: 1px solid var(--border, #e8ece9);
  background: var(--bg-alt, #f6faf7);
  padding: 8px 10px;
  max-width: 100%;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.deli-chat-suggest-products {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  width: 100%;
  padding: 2px 4px 6px;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(129, 176, 97, 0.45) transparent;
  mask-image: linear-gradient(
    to left,
    transparent 0,
    #000 12px,
    #000 calc(100% - 12px),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to left,
    transparent 0,
    #000 12px,
    #000 calc(100% - 12px),
    transparent 100%
  );
}

.deli-chat-suggest-products::-webkit-scrollbar {
  display: block;
  height: 5px;
}

.deli-chat-suggest-products::-webkit-scrollbar-thumb {
  background: rgba(129, 176, 97, 0.35);
  border-radius: 999px;
}

.deli-chat-suggest-products::-webkit-scrollbar-track {
  background: transparent;
}

.deli-chat-suggest-products[hidden] {
  display: none !important;
  margin: 0;
}

.deli-chat-mini-product {
  flex: 0 0 min(200px, 72vw);
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 6px 8px 6px 6px;
  border-radius: 12px;
  border: 1px solid rgba(129, 176, 97, 0.16);
  background: #fff;
}

.deli-chat-mini-product.is-primary {
  border-color: rgba(129, 176, 97, 0.38);
  box-shadow: 0 4px 12px rgba(129, 176, 97, 0.1);
}

.deli-chat-mini-product-link {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.deli-chat-mini-product-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface-soft, #f0f4f1);
}

.deli-chat-mini-product-img--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--brand, #81B061);
}

.deli-chat-mini-product-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.deli-chat-mini-product-name {
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.deli-chat-mini-product-price {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand, #81B061);
}

.deli-chat-mini-product-cart {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.deli-chat-mini-product-cart.is-busy,
.deli-chat-mini-product-cart:disabled {
  opacity: 0.6;
  cursor: wait;
}

/* ——— کارت محصول در پیام چت ——— */
.deli-chat-msg-products {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  width: 100%;
}

.deli-chat-product-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(129, 176, 97, 0.18);
  background: rgba(255, 255, 255, 0.92);
}

.deli-chat-msg--bot .deli-chat-product-card {
  background: #fff;
}

.deli-chat-product-card.is-primary {
  border-color: rgba(129, 176, 97, 0.42);
  box-shadow: 0 6px 16px rgba(129, 176, 97, 0.12);
}

.deli-chat-product-card-media {
  display: block;
  flex-shrink: 0;
  text-decoration: none;
}

.deli-chat-product-card-img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  background: var(--surface-soft, #f0f4f1);
}

.deli-chat-product-card-img--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--brand, #81B061);
}

.deli-chat-product-card-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.deli-chat-product-card-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  color: inherit;
}

.deli-chat-product-card-name {
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text, #1a1f1c);
}

.deli-chat-product-card-price {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand, #81B061);
}

.deli-chat-product-card-excerpt,
.deli-chat-product-card-tip {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--text-muted, #5c665e);
}

.deli-chat-product-card-tip.is-approved {
  color: #3d6b32;
}

.deli-chat-product-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.deli-chat-product-card-view {
  flex: 1;
  text-align: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(129, 176, 97, 0.12);
  color: var(--brand, #81B061);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

.deli-chat-product-card-cart {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: var(--brand, #81B061);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.deli-chat-product-card-cart.is-busy,
.deli-chat-product-card-cart:disabled {
  opacity: 0.6;
  cursor: wait;
}

.deli-chat-product-card--dock {
  flex: 0 0 min(240px, 78vw);
  scroll-snap-align: start;
  display: flex;
  align-items: stretch;
}

.deli-chat-product-card--dock .deli-chat-product-card-img {
  width: 56px;
  height: 56px;
}

/* ——— کارت دسته‌بندی در پیام چت ——— */
.deli-chat-msg-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 10px;
  width: 100%;
}

.deli-chat-category-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(129, 176, 97, 0.18);
  background: #fff;
  text-align: right;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.deli-chat-category-card:hover {
  border-color: rgba(129, 176, 97, 0.38);
  box-shadow: 0 6px 16px rgba(129, 176, 97, 0.1);
  transform: translateY(-1px);
}

.deli-chat-category-card:focus-visible {
  outline: none;
  border-color: var(--brand, #81B061);
  box-shadow: 0 0 0 3px rgba(129, 176, 97, 0.18);
}

.deli-chat-category-card-img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  background: var(--surface-soft, #f0f4f1);
}

.deli-chat-category-card-img--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--brand, #81B061);
}

.deli-chat-category-card-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.deli-chat-category-card-name {
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text, #1a1f1c);
}

.deli-chat-category-card-count {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand, #81B061);
}

.deli-chat-category-card-desc {
  font-size: 0.68rem;
  line-height: 1.4;
  color: var(--text-muted, #5c665e);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.deli-chat-suggest-chips {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(129, 176, 97, 0.4) transparent;
  padding: 2px 4px 4px;
  mask-image: linear-gradient(
    to left,
    transparent 0,
    #000 10px,
    #000 calc(100% - 10px),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to left,
    transparent 0,
    #000 10px,
    #000 calc(100% - 10px),
    transparent 100%
  );
}

.deli-chat-suggest-chips::-webkit-scrollbar {
  display: block;
  height: 4px;
}

.deli-chat-suggest-chips::-webkit-scrollbar-thumb {
  background: rgba(129, 176, 97, 0.32);
  border-radius: 999px;
}

.deli-chat-suggest-chips:empty,
.deli-chat-suggest-chips[hidden] {
  display: none;
}

.deli-chat-suggest-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: min(11rem, 46vw);
  scroll-snap-align: start;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 32px;
  min-height: 32px;
  margin: 0;
  padding: 0 12px;
  border-radius: var(--radius-full, 999px);
  border: 1px solid rgba(90, 122, 82, 0.22);
  background: #fff;
  color: var(--brand, #81B061);
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

button.deli-chat-suggest-chip {
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1;
}

a.deli-chat-suggest-chip {
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1;
}

.deli-chat-suggest-chip:hover {
  background: var(--brand-light, #e8f2ea);
  border-color: var(--brand, #81B061);
}

.deli-chat-suggest-chip.is-accent {
  background: var(--brand);
  border-color: var(--brand, #81B061);
  color: #fff;
}

.deli-chat-suggest-chip.is-accent:hover {
  filter: brightness(1.05);
  background: var(--brand);
  color: #fff;
}

.deli-chat-msg--toast {
  font-size: 0.82rem;
  border-style: dashed;
}

.deli-chat-msg-body {
  word-break: break-word;
}

.deli-chat-inline-link {
  color: var(--deli-olive-deep, #719552);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.deli-chat-inline-link:hover {
  color: var(--primary, #81B061);
}

.deli-chat-form {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt, #f6faf7);
}

.deli-chat-input {
  flex: 1;
  resize: none;
  min-height: 40px;
  max-height: 100px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-family: inherit;
  font-size: 0.88rem;
}

.deli-chat-send {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deli-chat-footer {
  padding: 8px 14px 12px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.deli-chat-footer-btn {
  border: none;
  background: none;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-decoration: underline;
  cursor: pointer;
}

.deli-chat.is-open .deli-chat-fab {
  transform: scale(0.92);
}

@media (min-width: 900px) {
  .deli-chat {
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 640px) {
  .deli-chat-suggest {
    padding: 8px 8px;
  }

  .deli-chat-mini-product {
    flex: 0 0 min(200px, 88vw);
  }

  .deli-chat-suggest-chip {
    max-width: min(9.5rem, 52vw);
    font-size: 0.72rem;
    padding: 0 10px;
  }

  .deli-chat-panel {
    position: fixed;
    inset: auto 0 0 0;
    width: 100%;
    max-width: none;
    max-height: min(88vh, 640px);
    border-radius: 22px 22px 0 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .deli-chat-panel:not([hidden]) ~ .deli-chat-fab,
  .deli-chat.is-open .deli-chat-fab {
    opacity: 0;
    pointer-events: none;
  }

  .deli-chat-header {
    padding: 10px 12px;
    gap: 8px;
  }

  .deli-chat-support-label {
    display: none;
  }

  .deli-chat-support {
    width: 32px;
    padding: 0;
    border-radius: 50%;
  }

  .deli-chat-messages {
    max-height: min(42vh, 320px);
  }

  .deli-chat-fab-badge {
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 0.58rem;
    top: -2px;
    inset-inline-end: -2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .deli-chat-fab-pulse {
    animation: none;
  }
}
