.k74-widget-page {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.k74-widget-page .k74-ai-widget {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.k74-ai-widget {
  --k74-cobalt: #b8892d;
  --k74-cobalt-dark: #7a5a1f;
  --k74-terracotta: #1f1f1d;
  --k74-terracotta-dark: #0f100f;
  --k74-graphite: #20211f;
  --k74-muted: #756f63;
  --k74-soft-surface: #f3efe6;
  --k74-soft-surface-2: #fbf8f1;
  --k74-white: #ffffff;
  --k74-gold-soft: #f2e4c6;
  --k74-gold-surface: #f8f1df;
  --k74-border: rgba(32, 33, 31, .11);
  --k74-border-strong: rgba(32, 33, 31, .18);
  --k74-shadow-lg: 0 24px 70px rgba(18, 18, 16, .22);
  --k74-shadow-md: 0 14px 36px rgba(18, 18, 16, .14);
  --k74-shadow-sm: 0 8px 24px rgba(18, 18, 16, .08);
  --k74-radius-xl: 36px;
  --k74-radius-lg: 28px;
  --k74-radius-md: 20px;
  --k74-radius-sm: 14px;
  --k74-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--k74-graphite);
  font-family: var(--k74-font);
  line-height: 1.35;
}

.k74-ai-widget,
.k74-ai-widget *,
.k74-ai-widget *::before,
.k74-ai-widget *::after {
  box-sizing: border-box;
}

.k74-ai-widget {
  max-width: 100%;
  overflow-x: hidden;
}

@media (min-width: 980px) {
  body.k74-ai-widget-site-shifted {
    overflow-x: hidden;
    padding-right: var(--k74-widget-panel-width, 416px);
    transition: padding-right .34s cubic-bezier(.22, .92, .25, 1);
  }

  body.k74-ai-widget-site-shifted > :not(#k74-ai-widget-root) {
    max-width: calc(100vw - var(--k74-widget-panel-width, 416px));
    transition: max-width .34s cubic-bezier(.22, .92, .25, 1);
  }

  body.k74-ai-widget-site-shifted > :not(#k74-ai-widget-root) .container {
    max-width: min(100%, calc(100vw - var(--k74-widget-panel-width, 416px) - 32px));
  }

  body.k74-ai-widget-site-shifted #k74-ai-widget-root {
    padding-right: 0;
  }
}

.k74-ai-widget .k74-widget-panel {
  display: flex;
  flex-direction: column;
  width: min(416px, 100vw);
  max-width: 100vw;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdf8 0%, var(--k74-white) 48%, #fbf8f1 100%);
  border: 1px solid var(--k74-border);
  border-radius: 0;
  box-shadow: var(--k74-shadow-lg);
}

.k74-ai-widget .k74-widget-header {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
  background: linear-gradient(180deg, rgba(255,253,248,.98), rgba(251,248,241,.94));
  border-bottom: 1px solid var(--k74-border);
  backdrop-filter: blur(18px);
}

.k74-widget-page .k74-ai-widget .k74-widget-header {
  min-height: 34px;
  gap: 6px;
  padding: 6px 58px 5px 9px;
}

.k74-widget-page .k74-ai-widget .k74-header-brand {
  gap: 5px;
}

.k74-widget-page .k74-ai-widget .k74-widget-header .k74-brand-mark {
  width: 17px;
  height: 17px;
  border-radius: 6px;
  font-size: 7px;
  box-shadow: 0 4px 10px rgba(242, 138, 34, .18);
}

.k74-widget-page .k74-ai-widget .k74-header-title {
  font-size: 8.5px;
  line-height: 1.1;
}

.k74-widget-page .k74-ai-widget .k74-header-subtitle {
  margin-top: 1px;
  font-size: 7px;
  line-height: 1.1;
}

.k74-widget-page .k74-ai-widget .k74-header-pill {
  min-height: 18px;
  padding: 0 6px;
  font-size: 7.5px;
}

.k74-ai-widget .k74-widget-servicebar {
  position: sticky;
  top: 34px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  min-height: 34px;
  padding: 5px 12px;
  border-bottom: 1px solid var(--k74-border);
  background: linear-gradient(180deg, rgba(251,248,241,.98), rgba(246,241,230,.94));
  backdrop-filter: blur(18px);
}

.k74-ai-widget .k74-servicebar-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 10px;
  border: 1px solid rgba(184, 137, 45, .30);
  border-radius: 999px;
  color: #72541c;
  background: rgba(184, 137, 45, .10);
  font: 740 10px/1 var(--k74-font);
  white-space: nowrap;
  cursor: pointer;
}

.k74-ai-widget .k74-servicebar-action:hover {
  border-color: rgba(184, 137, 45, .44);
  background: var(--k74-gold-surface);
}

.k74-ai-widget .k74-servicebar-action--clear {
  margin-left: auto;
  color: var(--k74-muted);
  border-color: rgba(32, 33, 31, .12);
  background: rgba(255,255,255,.62);
}

.k74-ai-widget .k74-pdf-editor {
  display: grid;
  gap: 9px;
  margin: 10px 12px 0;
  padding: 10px;
  border: 1px solid rgba(184, 137, 45, .22);
  border-radius: 20px;
  background: rgba(255,253,248,.96);
  box-shadow: var(--k74-shadow-md);
}

.k74-ai-widget .k74-pdf-editor__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.k74-ai-widget .k74-pdf-editor__head h2 {
  margin: 0;
  color: var(--k74-graphite);
  font-size: 13px;
  font-weight: 860;
}

.k74-ai-widget .k74-pdf-editor__head p {
  margin: 2px 0 0;
  color: var(--k74-muted);
  font-size: 10.5px;
}

.k74-ai-widget .k74-pdf-editor__list {
  display: grid;
  gap: 7px;
}

.k74-ai-widget .k74-pdf-editor__item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--k74-border);
  border-radius: 15px;
  background: var(--k74-white);
}

.k74-ai-widget .k74-pdf-editor__image {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 12px;
  color: var(--k74-muted);
  background: linear-gradient(135deg, #efebe5, #faf8f4);
  font-size: 9px;
}

.k74-ai-widget .k74-pdf-editor__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k74-ai-widget .k74-pdf-editor__copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.k74-ai-widget .k74-pdf-editor__copy h3 {
  margin: 0;
  overflow: hidden;
  color: var(--k74-graphite);
  font-size: 11px;
  font-weight: 780;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.k74-ai-widget .k74-pdf-editor__copy strong {
  color: #9a6c1d;
  font-size: 10.5px;
  font-weight: 820;
}

.k74-ai-widget .k74-pdf-editor__copy div {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.k74-ai-widget .k74-pdf-editor__copy span {
  display: inline-flex;
  min-height: 17px;
  align-items: center;
  padding: 0 6px;
  border-radius: 999px;
  color: var(--k74-muted);
  background: var(--k74-soft-surface-2);
  font-size: 8.5px;
}

.k74-ai-widget .k74-pdf-editor__remove,
.k74-ai-widget .k74-pdf-editor__actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(32, 33, 31, .12);
  border-radius: 999px;
  color: var(--k74-graphite);
  background: rgba(255,255,255,.82);
  font: 760 10px/1 var(--k74-font);
  cursor: pointer;
}

.k74-ai-widget .k74-pdf-editor__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.k74-ai-widget .k74-pdf-editor__actions button:first-child {
  color: #72541c;
  border-color: rgba(184, 137, 45, .30);
  background: rgba(184, 137, 45, .10);
}

.k74-ai-widget .k74-pdf-editor__actions button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.k74-ai-widget .k74-pdf-editor__empty {
  padding: 10px;
  border-radius: 14px;
  color: var(--k74-muted);
  background: var(--k74-soft-surface-2);
  font-size: 11px;
}

.k74-ai-widget .k74-header-brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.k74-ai-widget .k74-brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 16px;
  color: #241404;
  border: 1px solid rgba(255, 177, 90, .54);
  background: linear-gradient(135deg, #ffbd71 0%, #f28a22 52%, #c96812 100%);
  box-shadow: 0 10px 22px rgba(242, 138, 34, .26);
  font-weight: 800;
}

.k74-ai-widget .k74-header-title {
  margin: 0;
  overflow: hidden;
  color: var(--k74-graphite);
  font-size: 15px;
  font-weight: 820;
  letter-spacing: -.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.k74-ai-widget .k74-header-subtitle {
  margin-top: 2px;
  color: var(--k74-muted);
  font-size: 12px;
  white-space: nowrap;
}

.k74-ai-widget .k74-header-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(184, 137, 45, .30);
  border-radius: 999px;
  color: #72541c;
  background: rgba(184, 137, 45, .11);
  font-size: 12px;
  font-weight: 720;
  white-space: nowrap;
}

.k74-ai-widget .k74-pdf-strip {
  position: sticky;
  top: 68px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 14px 0;
  padding: 12px 12px 12px 14px;
  border: 1px solid rgba(184, 137, 45, .20);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(248, 241, 223, .96), rgba(255, 253, 248, .92));
  box-shadow: var(--k74-shadow-sm);
}

.k74-ai-widget .k74-pdf-strip.is-hidden { display: none; }

.k74-ai-widget .k74-pdf-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 14px;
  color: #f8d98d;
  border: 1px solid rgba(184, 137, 45, .34);
  background: linear-gradient(135deg, #262622, #11120f);
  box-shadow: 0 12px 22px rgba(17, 17, 15, .18);
}

.k74-ai-widget .k74-pdf-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.k74-ai-widget .k74-pdf-copy strong {
  display: block;
  color: var(--k74-graphite);
  font-size: 12.5px;
  font-weight: 830;
  letter-spacing: -.01em;
}

.k74-ai-widget .k74-pdf-copy span {
  display: block;
  margin-top: 2px;
  color: var(--k74-muted);
  font-size: 11px;
}

.k74-ai-widget .k74-pdf-cta,
.k74-ai-widget .k74-primary-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  color: var(--k74-white);
  background: linear-gradient(135deg, #262622, #11120f);
  box-shadow: 0 12px 24px rgba(17, 17, 15, .20);
  font: 760 12px/1 var(--k74-font);
  white-space: nowrap;
  cursor: pointer;
}

.k74-ai-widget .k74-pdf-cta::after,
.k74-ai-widget .k74-primary-cta::after,
.k74-ai-widget .k74-product-cta--cart::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -80%;
  width: 56%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  animation: k74-shimmer 5.8s ease-in-out infinite;
}

.k74-ai-widget .k74-icon-button {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid var(--k74-border);
  border-radius: 999px;
  color: var(--k74-muted);
  background: rgba(255,255,255,.70);
  cursor: pointer;
}

.k74-ai-widget .k74-icon-button:hover {
  border-color: rgba(184, 137, 45, .30);
  color: #72541c;
  background: var(--k74-gold-surface);
}

.k74-ai-widget .k74-message-list {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 14px 14px 18px;
  scroll-behavior: smooth;
  background:
    radial-gradient(circle at 22% 8%, rgba(184, 137, 45, .10), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(32, 33, 31, .05), transparent 26%),
    linear-gradient(180deg, var(--k74-soft-surface-2), var(--k74-white) 36%);
}

.k74-ai-widget .k74-message-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 16px;
}

.k74-ai-widget .k74-message-row.is-user { align-items: flex-end; }
.k74-ai-widget .k74-message-row.is-assistant { align-items: flex-start; }

.k74-ai-widget .k74-bubble {
  max-width: min(86%, 340px);
  padding: 12px 14px;
  border-radius: 22px;
  border: 1px solid var(--k74-border);
  background: var(--k74-white);
  box-shadow: var(--k74-shadow-sm);
  color: var(--k74-graphite);
  font-size: 14px;
}

.k74-ai-widget .k74-message-row.is-user .k74-bubble {
  color: var(--k74-white);
  border-color: rgba(184, 137, 45, .34);
  background: linear-gradient(135deg, #2a2a26, #11120f);
}

.k74-ai-widget .k74-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  padding: 1px 0;
}

.k74-ai-widget .k74-chip,
.k74-ai-widget .k74-quick-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--k74-border);
  border-radius: 999px;
  color: var(--k74-graphite);
  background: rgba(255,255,255,.86);
  box-shadow: 0 5px 18px rgba(31, 35, 40, .06);
  font: 700 12px/1 var(--k74-font);
  cursor: pointer;
}

.k74-ai-widget .k74-chip:hover,
.k74-ai-widget .k74-quick-chip:hover {
  border-color: rgba(184, 137, 45, .38);
  color: #72541c;
  background: var(--k74-gold-surface);
}

.k74-ai-widget .k74-ai-widget__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(100%, 420px);
  padding: 8px;
  border: 1px solid rgba(184, 137, 45, .16);
  border-radius: 20px;
  background: rgba(255, 253, 248, .78);
  box-shadow: var(--k74-shadow-sm);
}

.k74-ai-widget .k74-ai-widget__action {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  min-width: 0;
  max-width: 100%;
  padding: 0 12px;
  border: 1px solid var(--k74-border);
  border-radius: 999px;
  color: var(--k74-graphite);
  background: rgba(255,255,255,.90);
  font: 780 12px/1.1 var(--k74-font);
  text-align: center;
  white-space: normal;
  cursor: pointer;
}

.k74-ai-widget .k74-ai-widget__action:hover {
  border-color: rgba(184, 137, 45, .38);
  color: #72541c;
  background: var(--k74-gold-surface);
}

.k74-ai-widget .k74-ai-widget__action--primary {
  flex: 1 1 180px;
  color: #1b160d;
  border-color: transparent;
  background: linear-gradient(135deg, #f2d37d, #b8892d);
  box-shadow: 0 12px 22px rgba(184, 137, 45, .22);
}

.k74-ai-widget .k74-ai-widget__action--medium {
  color: #72541c;
  border-color: rgba(184, 137, 45, .28);
  background: rgba(184, 137, 45, .11);
}

.k74-ai-widget .k74-compare-panel {
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(184, 137, 45, .20);
  border-radius: 26px;
  background: rgba(255,253,248,.86);
  box-shadow: var(--k74-shadow-md);
}

.k74-ai-widget .k74-compare-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.k74-ai-widget .k74-compare-title {
  margin: 0;
  color: var(--k74-graphite);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -.01em;
}

.k74-ai-widget .k74-compare-subtitle {
  margin: 3px 0 0;
  color: var(--k74-muted);
  font-size: 11.5px;
}

.k74-ai-widget .k74-compare-accordion {
  display: grid;
  gap: 10px;
}

.k74-ai-widget .k74-compare-item {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--k74-border);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--k74-shadow-sm);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.k74-ai-widget .k74-compare-item.is-expanded {
  border-color: rgba(184, 137, 45, .34);
  box-shadow: var(--k74-shadow-md);
}

.k74-ai-widget .k74-compare-item.is-recommended {
  border-color: rgba(242, 138, 34, .44);
  background: linear-gradient(135deg, rgba(255, 248, 232, .98), rgba(255, 255, 255, .96));
}

.k74-ai-widget .k74-compare-image {
  align-self: stretch;
  display: grid;
  place-items: center;
  width: 76px;
  min-height: 76px;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  color: var(--k74-muted);
  background: linear-gradient(135deg, #efebe5, #faf8f4);
  font-size: 10px;
}

.k74-ai-widget .k74-compare-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k74-ai-widget .k74-compare-summary {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 9px;
  margin: 6px;
  padding: 7px;
  border: 1px solid rgba(32, 33, 31, .08);
  border-radius: 15px;
  background: rgba(255, 253, 248, .92);
}

.k74-ai-widget .k74-compare-copy {
  display: grid;
  gap: 4px;
  align-content: center;
  min-width: 0;
}

.k74-ai-widget .k74-compare-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--k74-muted);
  font-size: 9.5px;
  font-weight: 760;
}

.k74-ai-widget .k74-compare-title-row span:first-child {
  color: #72541c;
}

.k74-ai-widget .k74-compare-item.is-recommended .k74-compare-title-row span:first-child::after {
  content: " · рекомендуем";
  color: #c46d16;
}

.k74-ai-widget .k74-compare-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.k74-ai-widget .k74-compare-main .k74-compare-title {
  display: -webkit-box;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: var(--k74-graphite);
  font-size: 11.5px;
  font-weight: 820;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.k74-ai-widget .k74-compare-price {
  flex: 0 0 auto;
  max-width: 34%;
  color: #9a6c1d;
  font-size: 11.5px;
  font-weight: 860;
  text-align: right;
  white-space: nowrap;
}

.k74-ai-widget .k74-compare-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.k74-ai-widget .k74-compare-chip {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 6px;
  border: 1px solid var(--k74-border);
  border-radius: 999px;
  color: var(--k74-graphite);
  background: var(--k74-soft-surface-2);
  font-size: 9px;
  font-weight: 680;
}

.k74-ai-widget .k74-compare-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  align-self: center;
  min-height: 22px;
  padding: 0 9px;
  border: 1px solid rgba(184, 137, 45, .22);
  border-radius: 999px;
  color: #72541c;
  background: rgba(184, 137, 45, .08);
  font: 760 10px/1 var(--k74-font);
  cursor: pointer;
}

.k74-ai-widget .k74-compare-toggle:hover {
  color: #563a10;
  border-color: rgba(184, 137, 45, .34);
  background: rgba(184, 137, 45, .14);
}

.k74-ai-widget .k74-compare-details {
  display: grid;
  gap: 10px;
  padding: 0 10px 10px;
}

.k74-ai-widget .k74-compare-details dl {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 10px;
  border-radius: 16px;
  background: rgba(246, 241, 230, .66);
}

.k74-ai-widget .k74-compare-detail-row {
  display: grid;
  grid-template-columns: minmax(92px, .75fr) minmax(0, 1fr);
  gap: 8px;
  min-width: 0;
}

.k74-ai-widget .k74-compare-detail-row dt,
.k74-ai-widget .k74-compare-detail-row dd {
  margin: 0;
  min-width: 0;
  font-size: 10.5px;
  line-height: 1.3;
}

.k74-ai-widget .k74-compare-detail-row dt {
  color: var(--k74-muted);
}

.k74-ai-widget .k74-compare-detail-row dd {
  color: var(--k74-graphite);
  font-weight: 720;
}

.k74-ai-widget .k74-compare-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.k74-ai-widget .k74-compare-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 8px;
  border: 1px solid var(--k74-border);
  border-radius: 12px;
  color: var(--k74-graphite);
  background: rgba(255,255,255,.9);
  font: 760 10.5px/1.1 var(--k74-font);
  cursor: pointer;
  text-align: center;
}

.k74-ai-widget .k74-compare-actions button:hover {
  border-color: rgba(184, 137, 45, .38);
  color: #72541c;
  background: var(--k74-gold-surface);
}

.k74-ai-widget .k74-compare-actions button.is-primary {
  color: #1b160d;
  border-color: transparent;
  background: linear-gradient(135deg, #f2d37d, #b8892d);
}

.k74-ai-widget .k74-compare-footer-actions {
  display: grid;
  gap: 8px;
}

.k74-ai-widget .k74-compare-seller {
  display: grid;
  gap: 9px;
  padding: 12px;
  border: 1px solid rgba(184, 137, 45, .24);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 248, 232, .98), rgba(255, 253, 248, .94));
  box-shadow: 0 12px 28px rgba(31, 35, 40, .08);
}

.k74-ai-widget .k74-compare-seller__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.k74-ai-widget .k74-compare-seller__head h3 {
  margin: 0;
  color: var(--k74-graphite);
  font-size: 13px;
  font-weight: 880;
}

.k74-ai-widget .k74-compare-seller__head p {
  margin: 2px 0 0;
  color: var(--k74-muted);
  font-size: 10.5px;
  line-height: 1.25;
}

.k74-ai-widget .k74-compare-seller__head span {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  color: #1d1408;
  background: linear-gradient(135deg, #ffbd71, #f28a22);
  box-shadow: 0 8px 18px rgba(242, 138, 34, .18);
  font: 820 10.5px/1 var(--k74-font);
}

.k74-ai-widget .k74-compare-seller__message {
  margin: 0;
  color: var(--k74-graphite);
  font-size: 12.5px;
  line-height: 1.45;
}

.k74-ai-widget .k74-ai-widget__action--neutral {
  color: var(--k74-graphite);
  border-color: rgba(32, 33, 31, .16);
  background: rgba(255,255,255,.78);
}

.k74-ai-widget .k74-cart-confirm {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(184, 137, 45, .22);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(248, 241, 223, .98), rgba(255, 253, 248, .94));
  box-shadow: var(--k74-shadow-md);
}

.k74-ai-widget .k74-cart-confirm__copy {
  min-width: 0;
  flex: 1 1 auto;
}

.k74-ai-widget .k74-cart-confirm__copy strong {
  display: block;
  color: var(--k74-graphite);
  font-size: 12.5px;
  font-weight: 830;
}

.k74-ai-widget .k74-cart-confirm__copy span {
  display: block;
  margin-top: 2px;
  color: var(--k74-muted);
  font-size: 11px;
}

.k74-ai-widget .k74-cart-confirm__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 7px;
}

.k74-ai-widget .k74-cart-confirm__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid var(--k74-border);
  border-radius: 999px;
  color: var(--k74-graphite);
  background: rgba(255,255,255,.88);
  font: 780 11.5px/1 var(--k74-font);
  cursor: pointer;
}

.k74-ai-widget .k74-cart-confirm__button--primary {
  color: #1b160d;
  border-color: transparent;
  background: linear-gradient(135deg, #f2d37d, #b8892d);
  box-shadow: 0 10px 20px rgba(184, 137, 45, .20);
}

.k74-ai-widget .k74-products-group {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--k74-border);
  border-radius: 30px;
  background: rgba(255,253,248,.76);
  box-shadow: var(--k74-shadow-sm);
}

.k74-ai-widget .k74-products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 6px 12px;
  min-width: 0;
}

.k74-ai-widget .k74-products-title {
  margin: 0;
  color: var(--k74-graphite);
  font-size: 14px;
  font-weight: 830;
}

.k74-ai-widget .k74-products-subtitle {
  margin-top: 2px;
  color: var(--k74-muted);
  font-size: 11px;
}

.k74-ai-widget .k74-products-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 7px;
}

.k74-ai-widget .k74-products-action {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--k74-border);
  border-radius: 999px;
  color: #72541c;
  background: var(--k74-white);
  font: 760 11px/1 var(--k74-font);
  cursor: pointer;
}

.k74-ai-widget .k74-product-list {
  display: grid;
  gap: 12px;
}

.k74-ai-widget .k74-product-card {
  overflow: hidden;
  border: 1px solid var(--k74-border);
  border-radius: 28px;
  background: var(--k74-white);
  box-shadow: var(--k74-shadow-sm);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.k74-ai-widget .k74-product-card:hover {
  border-color: rgba(184, 137, 45, .28);
  box-shadow: var(--k74-shadow-md);
  transform: translateY(-1px);
}

.k74-ai-widget .k74-product-media {
  position: relative;
  height: 164px;
  overflow: hidden;
  background: linear-gradient(135deg, #efebe5, #faf8f4);
}

.k74-ai-widget .k74-product-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k74-ai-widget .k74-product-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--k74-muted);
  font-size: 12px;
}

.k74-ai-widget .k74-product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 104px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.k74-ai-widget .k74-product-pins {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.k74-ai-widget .k74-product-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 27px;
  padding: 0 9px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 999px;
  color: #271f12;
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 22px rgba(24, 22, 18, .18);
  backdrop-filter: blur(14px);
  font: 820 10.5px/1 var(--k74-font);
  cursor: pointer;
}

.k74-ai-widget .k74-product-pin-mark {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #b8892d;
  box-shadow: 0 0 0 3px rgba(184, 137, 45, .14);
}

.k74-ai-widget .k74-product-pin-mark::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 6px;
  width: 2px;
  height: 7px;
  border-radius: 2px;
  background: #b8892d;
  transform: rotate(22deg);
}

.k74-ai-widget .k74-product-pin--compare .k74-product-pin-mark,
.k74-ai-widget .k74-product-pin--compare .k74-product-pin-mark::after {
  background: #59606b;
}

.k74-ai-widget .k74-product-pin--compare .k74-product-pin-mark {
  box-shadow: 0 0 0 3px rgba(89, 96, 107, .13);
}

.k74-ai-widget .k74-product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--k74-white);
  background: rgba(32, 36, 43, .80);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 760;
}

.k74-ai-widget .k74-product-badge:first-child {
  color: #2a210f;
  background: linear-gradient(135deg, #f6dc99, #c99a3b);
}

.k74-ai-widget .k74-product-body {
  padding: 14px;
}

.k74-ai-widget .k74-product-mainline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.k74-ai-widget .k74-product-title {
  min-width: 0;
  margin: 0;
  color: var(--k74-graphite);
  font-size: 15px;
  font-weight: 830;
  letter-spacing: -.01em;
}

.k74-ai-widget .k74-product-price {
  flex: 0 0 auto;
  max-width: 38%;
  color: #9a6c1d;
  font-size: 14px;
  font-weight: 880;
  text-align: right;
  white-space: nowrap;
}

.k74-ai-widget .k74-product-old-price {
  display: block;
  margin-top: 2px;
  color: var(--k74-muted);
  font-size: 11px;
  font-weight: 600;
  text-decoration: line-through;
}

.k74-ai-widget .k74-product-collection {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  max-width: 100%;
  margin-top: 8px;
  padding: 5px 9px;
  border: 1px solid rgba(184, 137, 45, .20);
  border-radius: 999px;
  color: #72541c;
  background: rgba(248, 241, 223, .62);
  font: 740 11px/1.15 var(--k74-font);
}

.k74-ai-widget .k74-product-collection span {
  color: var(--k74-muted);
  font-weight: 680;
}

.k74-ai-widget .k74-product-collection button {
  min-width: 0;
  padding: 0;
  border: 0;
  color: #72541c;
  background: transparent;
  font: inherit;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: rgba(114, 84, 28, .28);
  text-underline-offset: 3px;
  cursor: pointer;
}

.k74-ai-widget .k74-product-collection strong {
  min-width: 0;
  font: inherit;
  color: #72541c;
}

.k74-ai-widget .k74-product-reason {
  margin: 8px 0 0;
  color: var(--k74-muted);
  font-size: 12px;
}

.k74-ai-widget .k74-product-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 11px 0 0;
}

.k74-ai-widget .k74-product-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid var(--k74-border);
  border-radius: 999px;
  color: var(--k74-graphite);
  background: var(--k74-soft-surface-2);
  font-size: 11px;
  font-weight: 690;
}

.k74-ai-widget .k74-product-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 12px;
}

.k74-ai-widget .k74-product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 34px;
  padding: 5px 8px;
  border: 1px solid var(--k74-border);
  border-radius: 13px;
  color: var(--k74-graphite);
  background: var(--k74-white);
  font: 800 11px/1.05 var(--k74-font);
  cursor: pointer;
  white-space: normal;
  text-align: center;
  overflow-wrap: anywhere;
}

.k74-ai-widget .k74-product-cta--pdf {
  color: #72541c;
  border-color: rgba(184, 137, 45, .26);
  background: rgba(184, 137, 45, .10);
}

.k74-ai-widget .k74-product-cta--compare {
  color: #72541c;
  border-color: rgba(184, 137, 45, .20);
  background: rgba(248, 241, 223, .58);
}

.k74-ai-widget .k74-product-cta--cart {
  position: relative;
  overflow: hidden;
  color: #1b160d;
  border-color: transparent;
  background: linear-gradient(135deg, #f2d37d, #b8892d);
  box-shadow: 0 8px 16px rgba(184, 137, 45, .20);
}

.k74-ai-widget .k74-product-details {
  margin-top: 8px;
}

.k74-ai-widget .k74-link-button {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0;
  border: 0;
  color: #84621f;
  background: transparent;
  font: 740 12px/1 var(--k74-font);
  cursor: pointer;
}

.k74-ai-widget .k74-typing {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--k74-muted);
  font-size: 12px;
}

.k74-ai-widget .k74-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--k74-cobalt);
  animation: k74-dot 1.1s ease-in-out infinite;
}
.k74-ai-widget .k74-dot:nth-child(2) { animation-delay: .15s; }
.k74-ai-widget .k74-dot:nth-child(3) { animation-delay: .3s; }

.k74-ai-widget .k74-composer {
  display: flex;
  gap: 9px;
  flex: 0 0 auto;
  padding: 12px;
  border-top: 1px solid var(--k74-border);
  background: rgba(255,253,248,.96);
}

.k74-ai-widget .k74-composer-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 46px;
  padding: 0 15px;
  border: 1px solid var(--k74-border-strong);
  border-radius: 18px;
  outline: none;
  color: var(--k74-graphite);
  background: var(--k74-soft-surface-2);
  font: 500 14px/1 var(--k74-font);
}

.k74-ai-widget .k74-composer-input:focus {
  border-color: rgba(184, 137, 45, .46);
  box-shadow: 0 0 0 4px rgba(184, 137, 45, .12);
}

.k74-ai-widget .k74-send-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 46px;
  border: 0;
  border-radius: 18px;
  color: var(--k74-white);
  color: #241404;
  border: 1px solid rgba(255, 177, 90, .54);
  background: linear-gradient(135deg, #ffbd71 0%, #f28a22 52%, #c96812 100%);
  box-shadow: 0 12px 22px rgba(242, 138, 34, .26);
  font: 840 18px/1 var(--k74-font);
  cursor: pointer;
}

.k74-ai-widget .k74-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 2147483000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: var(--k74-white);
  border: 1px solid rgba(255, 255, 255, .24);
  background:
    linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.28) 18%, rgba(255,255,255,0) 36%) -180% 0 / 220% 100% no-repeat,
    linear-gradient(135deg, #e3272f 0%, #bd1522 38%, #214fd6 72%, #102a8f 100%);
  box-shadow:
    0 28px 72px rgba(20, 64, 218, .34),
    0 16px 44px rgba(229, 38, 47, .30),
    0 0 0 7px rgba(255, 255, 255, .16),
    inset 0 0 0 1px rgba(255,255,255,.12);
  font: 860 13.5px/1 var(--k74-font);
  cursor: pointer;
  animation: k74-launcher-sheen 3.8s ease-in-out infinite;
}

.k74-ai-widget .k74-launcher.k74-launcher--attention {
  animation:
    k74-launcher-sheen 3.8s ease-in-out infinite,
    k74-launcher-screen-tour 13s ease-in-out 5s infinite;
  transform-origin: 76% 78%;
}

.k74-ai-widget .k74-launcher .k74-brand-mark {
  width: 38px;
  height: 38px;
  border-color: rgba(255, 255, 255, .38);
  color: #ffffff;
  background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16), 0 10px 22px rgba(12, 33, 120, .22);
}

.k74-ai-widget .k74-launcher.k74-launcher--wiggle {
  animation:
    k74-launcher-sheen 3.8s ease-in-out infinite,
    k74-launcher-wiggle .58s cubic-bezier(.3, 1.55, .55, 1) var(--k74-wiggle-repeat, 1);
  transform-origin: 72% 80%;
}

.k74-ai-widget .k74-ai-widget__greeting-bubble {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 2147482999;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  max-width: min(285px, calc(100vw - 44px));
  padding: 12px 12px 12px 14px;
  border: 1px solid rgba(184, 137, 45, .22);
  border-radius: 20px 20px 6px 20px;
  color: var(--k74-graphite);
  background: rgba(255, 253, 248, .98);
  box-shadow: 0 18px 42px rgba(17, 17, 15, .18);
  font: 780 12.5px/1.32 var(--k74-font);
  opacity: 0;
  transform: translateY(8px) scale(.98);
  pointer-events: none;
  visibility: hidden;
  cursor: pointer;
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
}

.k74-ai-widget.has-greeting .k74-ai-widget__greeting-bubble {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
  animation: k74-greeting-in .42s cubic-bezier(.18, 1.55, .42, 1) both;
}

.k74-ai-widget.has-greeting.is-greeting-touring .k74-ai-widget__greeting-bubble {
  animation:
    k74-greeting-in .42s cubic-bezier(.18, 1.55, .42, 1) both,
    k74-greeting-screen-tour 13s ease-in-out infinite;
}

.k74-ai-widget.is-open .k74-ai-widget__greeting-bubble {
  display: none;
}

.k74-ai-widget .k74-ai-widget__greeting-text {
  min-width: 0;
}

.k74-ai-widget .k74-ai-widget__greeting-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(32, 33, 31, .10);
  border-radius: 999px;
  color: var(--k74-muted);
  background: rgba(248, 241, 223, .72);
  font: 820 14px/1 var(--k74-font);
  cursor: pointer;
}

.k74-ai-widget .k74-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483001;
  width: min(416px, 100vw);
  max-width: 100vw;
  height: 100dvh;
  overflow: hidden;
  opacity: 0;
  transform: translateX(18px) scale(.985);
  pointer-events: none;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}

.k74-ai-widget.is-open .k74-drawer {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.k74-ai-widget.is-open .k74-launcher { display: none; }

.k74-ai-widget .k74-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  pointer-events: none;
}

.k74-ai-widget.is-open .k74-frame {
  pointer-events: auto;
}

.k74-ai-widget .k74-drawer-controls {
  position: absolute;
  top: 5px;
  right: 8px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.k74-ai-widget .k74-drawer-control {
  width: 22px;
  height: 22px;
  font-size: 13px;
  line-height: 1;
}

.k74-ai-widget .k74-drawer-minimize {
  font-size: 16px;
  padding-bottom: 2px;
}

.k74-ai-widget .k74-status-toast {
  position: sticky;
  bottom: 10px;
  z-index: 4;
  margin: 0 auto;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 9px 12px;
  border: 1px solid var(--k74-border);
  border-radius: 999px;
  color: var(--k74-graphite);
  background: rgba(255,255,255,.96);
  box-shadow: var(--k74-shadow-md);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.k74-ai-widget .k74-status-toast button {
  border: 0;
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--k74-graphite);
  background: rgba(242, 138, 34, .14);
  font: 800 11px/1 var(--k74-font);
  cursor: pointer;
}

@keyframes k74-shimmer {
  0%, 78% { transform: translateX(0) skewX(-18deg); opacity: 0; }
  82% { opacity: .85; }
  100% { transform: translateX(340%) skewX(-18deg); opacity: 0; }
}

@keyframes k74-wiggle {
  0%, 92%, 100% { transform: rotate(0deg); }
  94% { transform: rotate(2deg); }
  96% { transform: rotate(-2deg); }
  98% { transform: rotate(1deg); }
}

@keyframes k74-launcher-wiggle {
  0%, 100% { transform: translateX(0) rotate(0deg) scale(1); }
  12% { transform: translateX(-8px) rotate(-7deg) scale(1.04); }
  26% { transform: translateX(9px) rotate(7deg) scale(1.05); }
  42% { transform: translateX(-7px) rotate(-5deg) scale(1.03); }
  58% { transform: translateX(6px) rotate(4deg) scale(1.035); }
  76% { transform: translateX(-3px) rotate(-2deg) scale(1.015); }
}

@keyframes k74-launcher-attention {
  0%, 68%, 100% { translate: 0 0; rotate: 0deg; scale: 1; }
  70% { translate: -9px 0; rotate: -7deg; scale: 1.04; }
  73% { translate: 10px 0; rotate: 7deg; scale: 1.055; }
  76% { translate: -7px 0; rotate: -5deg; scale: 1.035; }
  79% { translate: 6px 0; rotate: 4deg; scale: 1.035; }
  82% { translate: -3px 0; rotate: -2deg; scale: 1.015; }
  85% { translate: 0 0; rotate: 0deg; scale: 1; }
}

@keyframes k74-launcher-screen-tour {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  4% { transform: translate3d(-9px, -4px, 0) rotate(-6deg) scale(1.04); }
  8% { transform: translate3d(8px, -8px, 0) rotate(5deg) scale(1.045); }
  18% { transform: translate3d(0, calc(-100vh + 138px), 0) rotate(0deg) scale(1.02); }
  34% { transform: translate3d(0, calc(-100vh + 138px), 0) rotate(0deg) scale(1.02); }
  38% { transform: translate3d(-7px, calc(-100vh + 138px), 0) rotate(-5deg) scale(1.055); }
  42% { transform: translate3d(7px, calc(-100vh + 138px), 0) rotate(5deg) scale(1.055); }
  48% { transform: translate3d(0, calc(-100vh + 138px), 0) rotate(0deg) scale(1.02); }
  68% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  76% { transform: translate3d(0, -10px, 0) rotate(0deg) scale(1.015); }
  84% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
}

@keyframes k74-greeting-screen-tour {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  4% { transform: translate3d(-7px, -4px, 0) scale(1.02); }
  8% { transform: translate3d(6px, -8px, 0) scale(1.025); }
  18% { transform: translate3d(0, calc(-100vh + 165px), 0) scale(1.01); }
  34% { transform: translate3d(0, calc(-100vh + 165px), 0) scale(1.01); }
  38% { transform: translate3d(-6px, calc(-100vh + 165px), 0) scale(1.025); }
  42% { transform: translate3d(6px, calc(-100vh + 165px), 0) scale(1.025); }
  48% { transform: translate3d(0, calc(-100vh + 165px), 0) scale(1.01); }
  68% { transform: translate3d(0, 0, 0) scale(1); }
  76% { transform: translate3d(0, -10px, 0) scale(1.01); }
  84% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes k74-launcher-sheen {
  0%, 48% { background-position: -180% 0, 0 0; }
  78%, 100% { background-position: 180% 0, 0 0; }
}

@keyframes k74-greeting-in {
  0% { opacity: 0; transform: translate(18px, 12px) scale(.84); }
  62% { opacity: 1; transform: translate(-4px, -2px) scale(1.035); }
  100% { opacity: 1; transform: translate(0, 0) scale(1); }
}

@keyframes k74-dot {
  0%, 80%, 100% { transform: translateY(0); opacity: .45; }
  40% { transform: translateY(-4px); opacity: 1; }
}

@media (max-width: 640px) {
  .k74-ai-widget .k74-widget-panel,
  .k74-ai-widget .k74-drawer {
    width: 100vw;
    height: 100dvh;
    min-height: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
  }

  .k74-ai-widget .k74-widget-panel {
    border: 0;
  }

  .k74-ai-widget .k74-launcher {
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(12px + env(safe-area-inset-bottom));
    justify-content: center;
    width: 56px;
    min-width: 56px;
    min-height: 56px;
    padding: 0;
    animation: none;
    transform: none;
    touch-action: manipulation;
  }

  .k74-ai-widget .k74-launcher.k74-launcher--attention,
  .k74-ai-widget .k74-launcher.k74-launcher--wiggle {
    animation: none;
    transform: none;
  }

  .k74-ai-widget .k74-launcher > span:not(.k74-brand-mark) {
    display: none;
  }

  .k74-ai-widget .k74-ai-widget__greeting-bubble {
    right: 12px;
    bottom: calc(76px + env(safe-area-inset-bottom));
    max-width: min(280px, calc(100vw - 24px));
    border-radius: 18px 18px 6px 18px;
  }

  .k74-ai-widget.has-greeting.is-greeting-touring .k74-ai-widget__greeting-bubble {
    animation: k74-greeting-in .42s cubic-bezier(.18, 1.55, .42, 1) both;
  }

  .k74-ai-widget .k74-pdf-strip {
    top: 68px;
    margin: 10px 10px 0;
  }

  .k74-ai-widget .k74-widget-servicebar {
    flex-wrap: wrap;
  }

  .k74-ai-widget .k74-servicebar-action--clear {
    margin-left: 0;
  }

  .k74-ai-widget .k74-pdf-editor {
    margin: 8px 10px 0;
  }

  .k74-ai-widget .k74-pdf-editor__item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .k74-ai-widget .k74-pdf-editor__remove {
    grid-column: 2;
    justify-self: start;
  }

  .k74-ai-widget .k74-product-media {
    height: 148px;
  }

  .k74-ai-widget .k74-compare-seller__head {
    align-items: stretch;
    flex-direction: column;
  }

  .k74-ai-widget .k74-compare-seller__head span {
    width: fit-content;
  }

  .k74-ai-widget .k74-compare-image {
    width: 68px;
    min-height: 68px;
  }

  .k74-ai-widget .k74-compare-main {
    flex-direction: column;
    gap: 5px;
  }

  .k74-ai-widget .k74-compare-price {
    max-width: none;
    text-align: left;
  }

  .k74-ai-widget .k74-compare-summary {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .k74-ai-widget .k74-compare-toggle {
    grid-column: 2;
    justify-self: start;
  }

  .k74-ai-widget .k74-ai-widget__actions {
    width: 100%;
    padding: 7px;
  }

  .k74-ai-widget .k74-ai-widget__action {
    flex: 1 1 calc(50% - 8px);
    min-height: 34px;
    padding: 0 10px;
    font-size: 11.5px;
  }

  .k74-ai-widget .k74-cart-confirm {
    align-items: stretch;
    flex-direction: column;
  }

  .k74-ai-widget .k74-cart-confirm__actions {
    width: 100%;
  }

  .k74-ai-widget .k74-cart-confirm__button {
    flex: 1 1 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .k74-ai-widget .k74-launcher.k74-launcher--wiggle,
  .k74-ai-widget .k74-launcher.k74-launcher--attention,
  .k74-ai-widget .k74-launcher,
  .k74-ai-widget.has-greeting.is-greeting-touring .k74-ai-widget__greeting-bubble,
  .k74-ai-widget.has-greeting .k74-ai-widget__greeting-bubble {
    animation: none;
    transition: none;
  }
}
