:root {
  --sk-ai-ink: #181513;
  --sk-ai-muted: #746e68;
  --sk-ai-line: rgba(24, 21, 19, .12);
  --sk-ai-soft: #f5efe7;
  --sk-ai-white: #ffffff;
  --sk-ai-accent: #b9935f;
  --sk-ai-paper: #fffdf9;
  --sk-ai-radius: 18px;
}

.sk-ai-card,
.sk-ai-modal {
  color: var(--sk-ai-ink);
  font-family: inherit;
}

.sk-ai-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 20px 0;
  padding: 22px;
  overflow: hidden;
  border: 1px solid #d5c8a9;
  border-radius: 12px;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 255, 255, .98) 0 12%, transparent 34%),
    radial-gradient(circle at 88% 78%, rgba(165, 128, 62, .34) 0 11%, transparent 38%),
    radial-gradient(circle at 58% 14%, rgba(235, 216, 181, .74) 0 10%, transparent 34%),
    linear-gradient(132deg, #e9e1d3 0%, #fdfbf6 45%, #dcc7a3 100%);
  background-color: #ece3d4;
  background-position: 0% 50%, 100% 50%, 50% 0%, 0% 50%;
  background-size: 175% 175%, 190% 190%, 180% 180%, 240% 240%;
  box-shadow: 0 14px 32px rgba(54, 45, 24, .12);
  animation: sk-ai-product-card-surface-wave 5.8s ease-in-out infinite;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  will-change: background-position;
}

.sk-ai-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -42%;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 1) 0 14%, transparent 34%),
    radial-gradient(circle at 78% 72%, rgba(161, 121, 51, .42) 0 14%, transparent 38%),
    radial-gradient(circle at 58% 14%, rgba(235, 214, 177, .76) 0 13%, transparent 35%),
    radial-gradient(circle at 36% 82%, rgba(222, 181, 151, .48) 0 12%, transparent 34%),
    linear-gradient(125deg, rgba(215, 202, 180, .86), rgba(255, 255, 255, .66));
  opacity: .84;
  filter: saturate(1.03) contrast(1.02);
  pointer-events: none;
  transform: translate3d(-16%, 0, 0) rotate(-4deg) scale(1.08);
  transform-origin: center;
  animation: sk-ai-product-card-gradient-wave 5.2s ease-in-out infinite;
  will-change: transform, opacity;
}

.sk-ai-card:hover {
  border-color: #b99a59;
  box-shadow: 0 18px 38px rgba(54, 45, 24, .17);
  transform: translateY(-2px);
}

.sk-ai-card > * {
  position: relative;
  z-index: 1;
}

.sk-ai-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(154, 118, 45, .24);
  border-radius: 50%;
  color: #9a762d;
  background: rgba(255, 255, 255, .76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86);
}

.sk-ai-card__icon svg { width: 27px; height: 27px; }
.sk-ai-card__eyebrow { margin-bottom: 7px; color: #78602e; font-size: 9px; font-weight: 800; letter-spacing: .2em; line-height: 1; }
.sk-ai-card h2 { margin: 0 0 6px; color: #242118; font-size: clamp(18px, 2vw, 23px); line-height: 1.2; }
.sk-ai-card p { margin: 0; color: #625d52; font-size: 14px; line-height: 1.55; }

.sk-ai-card .sk-ai-button {
  min-height: 44px;
  padding: 0 17px;
  border-color: #171717;
  border-radius: 999px;
  background: #171717;
  box-shadow: 0 7px 18px rgba(54, 45, 24, .14);
  white-space: nowrap;
}

.sk-ai-card .sk-ai-button:hover {
  border-color: #171717;
  color: #171717;
  background: rgba(255, 255, 255, .86);
}

.sk-ai-button {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--sk-ai-ink);
  border-radius: var(--sk-ai-radius);
  color: var(--sk-ai-white);
  background: var(--sk-ai-ink);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, opacity .18s ease;
}

.sk-ai-button:hover { color: var(--sk-ai-ink); background: var(--sk-ai-white); }
.sk-ai-button:disabled { opacity: .4; cursor: not-allowed; }
.sk-ai-button:focus-visible,
.sk-ai-close:focus-visible,
.sk-ai-prompts button:focus-visible,
.sk-ai-composer button:focus-visible,
.sk-ai-secondary:focus-visible,
.sk-ai-link-button:focus-visible,
.sk-ai-photo__pick:focus-within { outline: 2px solid #2463eb; outline-offset: 2px; }

.sk-ai-modal[hidden] { display: none !important; }
.sk-ai-modal {
  position: fixed;
  z-index: 2147482000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .22s ease;
}

.sk-ai-modal.is-open { opacity: 1; }
.sk-ai-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 13, 12, .68);
  backdrop-filter: blur(10px) saturate(.82);
  -webkit-backdrop-filter: blur(10px) saturate(.82);
}
.sk-ai-modal-open { overflow: hidden; }

.sk-ai-dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(1040px, 100%);
  height: min(780px, calc(100dvh - 48px));
  max-height: calc(100dvh - 48px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 26px;
  outline: 0;
  background: var(--sk-ai-paper);
  box-shadow: 0 38px 110px rgba(0, 0, 0, .36), 0 1px 0 rgba(255, 255, 255, .5) inset;
  transform: translateY(18px) scale(.985);
  transition: transform .28s cubic-bezier(.2, .78, .24, 1);
}

.sk-ai-modal.is-open .sk-ai-dialog { transform: translateY(0) scale(1); }
.sk-ai-dialog__header {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 14px 20px;
  color: #fff;
  background: #171411;
}

.sk-ai-dialog__brand { min-width: 0; text-align: center; }
.sk-ai-dialog__brand h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: .13em;
  line-height: 1.05;
}
.sk-ai-dialog__brand h2 span { color: #d7b981; }
.sk-ai-dialog__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  color: rgba(255, 255, 255, .64);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: .11em;
  line-height: 1;
  text-transform: uppercase;
}
.sk-ai-dialog__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7fc68f;
  box-shadow: 0 0 0 4px rgba(127, 198, 143, .11);
}
.sk-ai-close,
.sk-ai-dialog__header-spacer { width: 42px; height: 42px; }
.sk-ai-close {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .07);
  cursor: pointer;
  transition: background-color .18s ease, transform .18s ease;
}
.sk-ai-close svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.sk-ai-close:hover { color: #fff; background: rgba(255, 255, 255, .16); transform: translateX(-2px); }

.sk-ai-product {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 10px 22px;
  border-bottom: 1px solid var(--sk-ai-line);
  background: rgba(255, 253, 249, .96);
}
.sk-ai-product__image {
  display: block;
  width: 50px !important;
  height: 50px !important;
  margin: 0 !important;
  padding: 4px;
  border-radius: 14px;
  object-fit: contain;
  background: #f3f0eb;
}
.sk-ai-product__copy { min-width: 0; }
.sk-ai-product span {
  display: block;
  margin-bottom: 3px;
  color: var(--sk-ai-muted);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: .09em;
  line-height: 1.2;
  text-transform: uppercase;
}
.sk-ai-product strong { display: block; overflow: hidden; font-size: 13px; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.sk-ai-product__view {
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #66513a;
  background: var(--sk-ai-soft);
  font: inherit;
  font-size: 10px;
  font-weight: 720;
  cursor: pointer;
}
.sk-ai-product__view:hover { color: #fff; background: var(--sk-ai-ink); }

.sk-ai-dialog__body {
  display: flex;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 2%, rgba(202, 171, 126, .18), transparent 26%),
    var(--sk-ai-paper);
}
.sk-ai-dialog__footer {
  flex: 0 0 auto;
  padding: 9px 24px 11px;
  border-top: 1px solid var(--sk-ai-line);
  color: #948d86;
  background: rgba(255, 253, 249, .97);
  font-size: 9px;
  line-height: 1.35;
  text-align: center;
}

.sk-ai-intro {
  width: min(720px, 100%);
  max-height: 100%;
  margin: auto;
  overflow: auto;
  padding: 44px 42px;
}
.sk-ai-intro h3 {
  margin: 0 0 10px;
  font-family: Georgia, 'Noto Serif Georgian', 'Times New Roman', serif;
  font-size: clamp(29px, 4vw, 40px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.08;
}
.sk-ai-intro > p { margin: 0 0 24px; color: var(--sk-ai-muted); font-size: 14px; line-height: 1.65; }
.sk-ai-notice { margin: 0 0 20px; padding: 17px 18px; border: 1px solid rgba(185, 147, 95, .22); border-radius: 17px; background: rgba(245, 239, 231, .82); }
.sk-ai-notice strong { display: block; margin-bottom: 4px; font-size: 12px; }
.sk-ai-notice p { margin: 0; color: var(--sk-ai-muted); font-size: 12px; line-height: 1.55; }
.sk-ai-consent { display: grid; grid-template-columns: 20px 1fr; gap: 11px; align-items: start; margin: 0 0 22px; font-size: 12px; line-height: 1.55; cursor: pointer; }
.sk-ai-consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--sk-ai-ink); }
.sk-ai-consent a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.sk-ai-start { width: 100%; border-radius: 999px; }

.sk-ai-chat[hidden] { display: none !important; }
.sk-ai-chat { display: flex; flex: 1; flex-direction: column; min-width: 0; min-height: 0; }
.sk-ai-chat__scroll { flex: 1; min-height: 0; overflow-x: hidden; overflow-y: auto; padding: 30px 42px 24px; scrollbar-width: thin; scrollbar-color: rgba(24, 21, 19, .2) transparent; }
.sk-ai-chat__welcome { width: min(780px, 100%); margin: 0 auto; }
.sk-ai-chat__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 15px;
  border: 1px solid rgba(185, 147, 95, .25);
  border-radius: 15px;
  color: #755930;
  background: linear-gradient(145deg, #fff, #efe2d0);
  box-shadow: 0 12px 30px rgba(96, 69, 37, .08);
}
.sk-ai-chat__mark svg { width: 22px; fill: currentColor; }
.sk-ai-chat__welcome h3 {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, 'Noto Serif Georgian', 'Times New Roman', serif;
  font-size: clamp(31px, 4vw, 43px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.04;
}
.sk-ai-chat__welcome p { max-width: 680px; margin: 11px 0 0; color: var(--sk-ai-muted); font-size: 13px; line-height: 1.6; }

.sk-ai-personalize { display: flex; width: min(780px, 100%); gap: 9px; margin: 20px auto 22px; overflow-x: auto; padding: 2px; scrollbar-width: none; }
.sk-ai-personalize::-webkit-scrollbar { display: none; }
.sk-ai-tool-shortcut {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--sk-ai-line);
  border-radius: 999px;
  color: #504942;
  background: rgba(255, 255, 255, .76);
  font: inherit;
  font-size: 10px;
  font-weight: 680;
  cursor: pointer;
}
.sk-ai-tool-shortcut i { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; color: #6c5432; background: var(--sk-ai-soft); font-size: 13px; font-style: normal; }
.sk-ai-tool-shortcut:hover,
.sk-ai-tool-shortcut[aria-expanded="true"] { border-color: rgba(185, 147, 95, .5); color: var(--sk-ai-ink); background: #fff; }

.sk-ai-profile,
.sk-ai-photo { width: min(780px, 100%); margin: 0 auto 18px; overflow: hidden; border: 1px solid rgba(24, 21, 19, .13); border-radius: 18px; background: rgba(255, 255, 255, .9); box-shadow: 0 12px 32px rgba(24, 21, 19, .05); }
.sk-ai-profile:not([open]),
.sk-ai-photo:not([open]) { display: none; }
.sk-ai-profile summary,
.sk-ai-photo summary { display: flex; justify-content: space-between; min-height: 54px; padding: 16px 18px; font-size: 12px; font-weight: 720; cursor: pointer; }
.sk-ai-profile summary span,
.sk-ai-photo summary span { color: var(--sk-ai-muted); font-size: 11px; font-weight: 400; }
.sk-ai-profile__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; padding: 18px; border-top: 1px solid var(--sk-ai-line); }
.sk-ai-profile label,
.sk-ai-profile legend { color: #333; font-size: 12px; font-weight: 650; }
.sk-ai-profile select,
.sk-ai-profile textarea { display: block; width: 100%; min-height: 44px; margin-top: 7px; padding: 10px 11px; border: 1px solid rgba(24, 21, 19, .18); border-radius: 11px; background: #fff; font: inherit; font-size: 13px; }
.sk-ai-profile fieldset { margin: 0; padding: 0; border: 0; }
.sk-ai-profile fieldset,
.sk-ai-profile label[for="sk-ai-routine"],
.sk-ai-passport { grid-column: 1 / -1; }
.sk-ai-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 8px; }
.sk-ai-chips label { cursor: pointer; }
.sk-ai-chips input { position: absolute; opacity: 0; pointer-events: none; }
.sk-ai-chips span { display: block; padding: 7px 10px; border: 1px solid #d4d4d4; border-radius: 999px; color: #444; background: #fff; font-size: 11px; font-weight: 500; }
.sk-ai-chips input:checked + span { border-color: var(--sk-ai-ink); color: #fff; background: var(--sk-ai-ink); }
.sk-ai-chips input:focus-visible + span { outline: 2px solid #2463eb; outline-offset: 2px; }

.sk-ai-passport { padding: 14px; border: 1px solid rgba(24, 21, 19, .1); border-radius: 13px; background: var(--sk-ai-soft); }
.sk-ai-passport p { margin: 0 0 9px; color: var(--sk-ai-muted); font-size: 11px; line-height: 1.45; }
.sk-ai-passport > div { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.sk-ai-passport-status { display: block; min-height: 16px; margin-top: 7px; color: #25603b; font-size: 10px; }
.sk-ai-secondary,
.sk-ai-link-button { min-height: 36px; padding: 7px 12px; border: 1px solid var(--sk-ai-ink); border-radius: 999px; background: #fff; color: var(--sk-ai-ink); font: inherit; font-size: 11px; font-weight: 700; cursor: pointer; }
.sk-ai-secondary:hover { color: #fff; background: var(--sk-ai-ink); }
.sk-ai-secondary:disabled { opacity: .55; cursor: wait; }
.sk-ai-link-button { border-color: transparent; background: transparent; text-decoration: underline; }

.sk-ai-photo__body { padding: 16px 18px 18px; border-top: 1px solid var(--sk-ai-line); }
.sk-ai-photo__body > p:first-child { margin: 10px 0 12px; color: var(--sk-ai-muted); font-size: 11px; line-height: 1.5; }
.sk-ai-photo__pick { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 8px 14px; border: 1px dashed #999; border-radius: 999px; background: var(--sk-ai-soft); font-size: 11px; font-weight: 700; cursor: pointer; }
.sk-ai-photo__preview { position: relative; width: 126px; margin-top: 12px; }
.sk-ai-photo__preview img { display: block; width: 126px; height: 126px; border: 1px solid var(--sk-ai-line); border-radius: 14px; object-fit: cover; }
.sk-ai-photo-remove { width: 100%; margin-top: 5px; border: 0; color: #6f1d1d; background: transparent; font: inherit; font-size: 10px; text-decoration: underline; cursor: pointer; }
.sk-ai-photo__consent { margin: 12px 0 0; }
.sk-ai-photo-status { min-height: 16px; margin: 7px 0 0 !important; color: var(--sk-ai-muted); font-size: 10px; }

.sk-ai-messages { display: flex; width: min(780px, 100%); min-height: 0; flex-direction: column; gap: 13px; margin: 0 auto; padding: 4px 1px 16px; scroll-behavior: smooth; }
.sk-ai-message { max-width: 86%; padding: 13px 15px; border-radius: 18px; font-size: 13px; line-height: 1.55; }
.sk-ai-message p { margin: 0; }
.sk-ai-message--user { align-self: flex-end; border-bottom-right-radius: 6px; color: #fff; background: var(--sk-ai-ink); }
.sk-ai-message--assistant { align-self: flex-start; border-bottom-left-radius: 6px; background: var(--sk-ai-soft); }
.sk-ai-message--error { align-self: flex-start; border: 1px solid #e8b5b5; color: #7f1d1d; background: #fff1f1; }
.sk-ai-message--thinking { color: var(--sk-ai-muted); }
.sk-ai-message--thinking p::after { content: ''; display: inline-block; width: 18px; height: 8px; margin-left: 7px; background: radial-gradient(circle, currentColor 2px, transparent 3px) 0 50% / 6px 6px repeat-x; animation: sk-ai-pulse 1s ease-in-out infinite; }

.sk-ai-answer { width: min(660px, 92%); max-width: 92%; padding: 17px; border: 1px solid rgba(185, 147, 95, .18); border-radius: 19px; background: linear-gradient(145deg, rgba(255,255,255,.98), #f8f1e8); }
.sk-ai-verdict { display: inline-flex; align-items: center; min-height: 24px; margin-bottom: 10px; padding: 3px 9px; border-radius: 999px; color: #303030; background: #e7e7e4; font-size: 10px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.sk-ai-verdict--suitable { color: #155e37; background: #dcf5e6; }
.sk-ai-verdict--caution,
.sk-ai-verdict--insufficient_information { color: #744b00; background: #fff1c8; }
.sk-ai-verdict--not_recommended,
.sk-ai-verdict--medical_referral { color: #7f1d1d; background: #ffe1e1; }
.sk-ai-answer__lead { font-size: 14px; }
.sk-ai-answer__section { margin-top: 15px; padding-top: 13px; border-top: 1px solid #ddddda; }
.sk-ai-answer__section h4 { margin: 0 0 7px; font-size: 12px; }
.sk-ai-answer__section ul,
.sk-ai-answer__section ol { margin: 0; padding-left: 19px; }
.sk-ai-answer__section li + li { margin-top: 4px; }
.sk-ai-answer__meta { color: #444; }
.sk-ai-answer__meta + .sk-ai-answer__meta { margin-top: 3px; }
.sk-ai-answer__follow-up { margin-top: 15px; padding: 12px; border: 1px solid #d7d7d3; border-radius: 13px; background: #fff; }
.sk-ai-answer__follow-up strong { display: block; margin-bottom: 3px; font-size: 11px; }
.sk-ai-answer__privacy { margin-top: 12px !important; color: var(--sk-ai-muted); font-size: 10px; }

.sk-ai-routine-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 9px; }
.sk-ai-routine-block { padding: 10px; border: 1px solid #d9d9d5; border-radius: 13px; background: #fff; }
.sk-ai-routine-block h5,
.sk-ai-purchase-option h5 { margin: 0 0 7px; font-size: 11px; letter-spacing: .03em; text-transform: uppercase; }
.sk-ai-routine-block ol { padding-left: 18px; }
.sk-ai-routine-block li + li { margin-top: 7px; }
.sk-ai-routine-block li span,
.sk-ai-routine-block li small { display: block; }
.sk-ai-routine-block li small { margin-top: 1px; color: var(--sk-ai-muted); font-size: 9px; }
.sk-ai-routine-notes { margin-top: 9px; padding: 9px 10px; border-radius: 4px; background: #fff; }
.sk-ai-routine-notes strong { font-size: 10px; }
.sk-ai-routine-notes ul { margin-top: 4px; }

.sk-ai-conflict { padding: 10px; border-left: 3px solid #b36a00; background: #fff8e8; }
.sk-ai-conflict + .sk-ai-conflict { margin-top: 7px; }
.sk-ai-conflict strong { display: block; margin-bottom: 3px; font-size: 11px; }
.sk-ai-conflict p + p { margin-top: 4px; }
.sk-ai-conflict__safe { color: #28563b; }

.sk-ai-purchase-option { padding: 11px; border: 1px solid #d7d7d3; border-radius: 13px; background: #fff; }
.sk-ai-purchase-option + .sk-ai-purchase-option { margin-top: 9px; }
.sk-ai-purchase-option > p { margin-bottom: 8px; color: var(--sk-ai-muted); font-size: 11px; }
.sk-ai-purchase-option .sk-ai-secondary { width: 100%; margin-top: 9px; }
.sk-ai-cart-status { min-height: 16px; margin-top: 6px !important; color: #25603b; font-size: 10px; }
.sk-ai-cart-link { color: inherit; font-weight: 700; text-decoration: underline; }
.sk-ai-human-review { display: grid; gap: 5px; margin-top: 14px; padding: 11px; border: 1px solid #e0b6b6; border-radius: 4px; color: #6f1d1d; background: #fff7f7; }
.sk-ai-human-review strong { font-size: 11px; }
.sk-ai-human-review a { color: inherit; font-size: 11px; font-weight: 700; text-decoration: underline; }

.sk-ai-save-advice { margin-top: 14px; padding-top: 13px; border-top: 1px solid #ddddda; }
.sk-ai-save-advice .sk-ai-secondary { display: inline-flex; align-items: center; justify-content: center; color: var(--sk-ai-ink); text-decoration: none; }
.sk-ai-save-advice__status { min-height: 15px; margin-top: 6px !important; color: #25603b; font-size: 10px; }
.sk-ai-save-advice__status a { color: inherit; font-weight: 700; text-decoration: underline; }

.sk-ai-recommendations__grid { display: grid; gap: 8px; }
.sk-ai-recommendation { display: grid; grid-template-columns: 58px 1fr; gap: 10px; align-items: center; padding: 8px; border: 1px solid #dadad6; border-radius: 13px; color: inherit; background: #fff; text-decoration: none !important; }
.sk-ai-recommendation:hover { border-color: #777; color: inherit; }
.sk-ai-recommendation img { width: 58px; height: 58px; object-fit: contain; background: #f7f7f5; }
.sk-ai-recommendation__body { min-width: 0; }
.sk-ai-recommendation__body strong,
.sk-ai-recommendation__body span { display: block; }
.sk-ai-recommendation__body strong { margin-bottom: 2px; font-size: 12px; line-height: 1.35; }
.sk-ai-recommendation__body > span { color: var(--sk-ai-muted); font-size: 11px; }
.sk-ai-recommendation__link { margin-top: 4px; color: var(--sk-ai-ink) !important; font-weight: 700; text-decoration: underline; }

.sk-ai-prompts-shell { width: min(780px, 100%); margin: 0 auto; }
.sk-ai-prompts__label { margin-bottom: 10px; color: #887e73; font-size: 9px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.sk-ai-prompts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 9px; margin: 0; padding: 0; }
.sk-ai-prompts button {
  position: relative;
  min-height: 82px;
  max-width: 100%;
  padding: 14px 34px 13px 14px;
  border: 1px solid transparent;
  border-radius: 17px;
  color: #2b2723;
  background: var(--sk-ai-soft);
  font: inherit;
  font-size: 11px;
  font-weight: 680;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: border-color .16s ease, transform .16s ease;
}
.sk-ai-prompts button:nth-child(2),
.sk-ai-prompts button:nth-child(3) { background: #f2eee8; }
.sk-ai-prompts button:nth-child(n+5) { display: none; }
.sk-ai-prompts.is-expanded button:nth-child(n+5) { display: block; }
.sk-ai-prompts button > span { position: absolute; top: 12px; right: 12px; color: #8f7452; font-size: 16px; font-weight: 400; }
.sk-ai-prompts button:hover { border-color: rgba(185, 147, 95, .52); transform: translateY(-1px); }
.sk-ai-prompts-more { display: block; min-height: 38px; margin: 8px auto 0; padding: 0 12px; border: 0; color: #766e66; background: transparent; font: inherit; font-size: 10px; font-weight: 650; cursor: pointer; }
.sk-ai-dialog.has-messages .sk-ai-chat__welcome,
.sk-ai-dialog.has-messages .sk-ai-prompts-shell { display: none; }
.sk-ai-dialog.has-messages .sk-ai-personalize { margin-top: 0; margin-bottom: 16px; }

body.sk-ai-modal-open iframe#hubspot-conversations-iframe,
body.sk-ai-modal-open #hubspot-messages-iframe-container { visibility: hidden !important; pointer-events: none !important; }

.sk-ai-composer {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: minmax(0, 1fr) 46px;
  align-items: end;
  gap: 7px;
  margin: 0 42px 13px;
  padding: 7px;
  border: 1px solid rgba(24, 21, 19, .18);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 9px 28px rgba(24, 21, 19, .08);
}
.sk-ai-composer:focus-within { border-color: rgba(24, 21, 19, .54); box-shadow: 0 9px 28px rgba(24, 21, 19, .08), 0 0 0 1px rgba(24, 21, 19, .22); }
.sk-ai-composer textarea { width: 100%; min-height: 42px; max-height: 132px; margin: 0; padding: 12px 8px 8px; resize: none; border: 0; outline: 0; background: transparent; font: inherit; font-size: 13px; line-height: 1.4; }
.sk-ai-composer textarea::placeholder { color: #9a938c; }
.sk-ai-composer button { display: grid; place-items: center; width: 44px; height: 44px; margin: 0; padding: 0; border: 1px solid var(--sk-ai-ink); border-radius: 50%; color: #fff; background: var(--sk-ai-ink); cursor: pointer; box-shadow: 0 8px 18px rgba(24, 21, 19, .18); }
.sk-ai-composer button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.sk-ai-composer button:disabled { opacity: .35; }
.sk-ai-composer.is-busy button { opacity: .65; }

@keyframes sk-ai-pulse { 50% { opacity: .35; } }

@keyframes sk-ai-product-card-gradient-wave {
  0%, 100% { opacity: .84; transform: translate3d(-16%, 0, 0) rotate(-4deg) scale(1.08); }
  25% { opacity: .96; transform: translate3d(-4%, -10%, 0) rotate(-1deg) scale(1.14); }
  50% { opacity: .86; transform: translate3d(14%, 0, 0) rotate(4deg) scale(1.12); }
  75% { opacity: .94; transform: translate3d(-2%, 10%, 0) rotate(1deg) scale(1.16); }
}

@keyframes sk-ai-product-card-surface-wave {
  0%, 100% { background-position: 0% 50%, 100% 50%, 50% 0%, 0% 50%; }
  25% { background-position: 42% 12%, 58% 88%, 92% 48%, 50% 42%; }
  50% { background-position: 92% 50%, 8% 50%, 50% 92%, 100% 50%; }
  75% { background-position: 45% 88%, 55% 12%, 8% 52%, 50% 58%; }
}

@media (max-width: 640px) {
  .sk-ai-card { grid-template-columns: auto 1fr; padding: 19px 18px 18px; border-radius: 16px; }
  .sk-ai-card__icon { width: 48px; height: 48px; }
  .sk-ai-card .sk-ai-button { grid-column: 1 / -1; width: 100%; }
  .sk-ai-modal {
    inset: var(--sk-ai-viewport-offset, 0px) 0 auto 0;
    height: var(--sk-ai-viewport-height, 100dvh);
    min-height: 0;
    padding: 0;
    place-items: stretch;
  }
  .sk-ai-modal__backdrop { display: none; }
  .sk-ai-dialog { width: 100%; height: 100%; max-height: none; border: 0; border-radius: 0; box-shadow: none; transform: translateY(12px); }
  .sk-ai-dialog__header { min-height: 79px; padding: max(14px, env(safe-area-inset-top)) 17px 12px; }
  .sk-ai-dialog__brand h2 { font-size: 18px; }
  .sk-ai-dialog__status { font-size: 8px; }
  .sk-ai-product { min-height: 67px; padding: 8px 17px; }
  .sk-ai-product__image { width: 46px !important; height: 46px !important; }
  .sk-ai-product strong { font-size: 12px; }
  .sk-ai-product__view { min-height: 34px; padding: 0 12px; }
  .sk-ai-intro { padding: 30px 20px; }
  .sk-ai-intro h3 { font-size: 29px; }
  .sk-ai-intro > p { font-size: 13px; }
  .sk-ai-chat__scroll { padding: 24px 18px 18px; }
  .sk-ai-chat__mark { width: 42px; height: 42px; margin-bottom: 14px; }
  .sk-ai-chat__welcome h3 { font-size: 29px; }
  .sk-ai-chat__welcome p { font-size: 12px; line-height: 1.55; }
  .sk-ai-personalize { margin-top: 18px; margin-bottom: 20px; }
  .sk-ai-tool-shortcut { min-height: 38px; padding: 0 12px; }
  .sk-ai-profile__grid { grid-template-columns: 1fr; padding: 16px; }
  .sk-ai-profile fieldset,
  .sk-ai-profile label[for="sk-ai-routine"],
  .sk-ai-passport { grid-column: auto; }
  .sk-ai-prompts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sk-ai-prompts button { min-height: 76px; }
  .sk-ai-composer { margin: 0 13px 10px; }
  .sk-ai-composer textarea,
  .sk-ai-profile select,
  .sk-ai-profile textarea { font-size: 16px; }
  .sk-ai-dialog__footer { padding: 7px 18px max(8px, env(safe-area-inset-bottom)); font-size: 8px; }
  .sk-ai-message { max-width: 90%; font-size: 12px; }
  .sk-ai-answer { width: 94%; max-width: 94%; }
  .sk-ai-routine-columns { grid-template-columns: 1fr; }
}

@media (min-width: 641px) and (max-height: 720px) {
  .sk-ai-dialog { height: calc(100dvh - 28px); max-height: calc(100dvh - 28px); }
  .sk-ai-dialog__header { min-height: 72px; }
  .sk-ai-chat__scroll { padding-top: 22px; padding-bottom: 18px; }
  .sk-ai-chat__welcome h3 { font-size: 32px; }
  .sk-ai-chat__mark { display: none; }
  .sk-ai-personalize { margin-top: 15px; margin-bottom: 16px; }
  .sk-ai-prompts button { min-height: 68px; }
}

html[lang^="ka"] .sk-ai-intro h3,
html[lang^="ka"] .sk-ai-chat__welcome h3 { font-family: 'Noto Serif Georgian', Georgia, serif; letter-spacing: -.018em; line-height: 1.12; }
html[lang^="ka"] .sk-ai-dialog__status,
html[lang^="ru"] .sk-ai-dialog__status { letter-spacing: .06em; }

@media (prefers-reduced-motion: reduce) {
  .sk-ai-card,
  .sk-ai-card::before,
  .sk-ai-modal,
  .sk-ai-dialog,
  .sk-ai-button { transition: none; }
  .sk-ai-card { animation: none; }
  .sk-ai-card::before { animation: none; transform: none; }
  .sk-ai-messages { scroll-behavior: auto; }
  .sk-ai-message--thinking p::after { animation: none; }
}
