.sk-chatbot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.08);
  transition: .2s ease;
}

.social-link:hover {
  color: #070816;
  background: #19d3c5;
  transform: translateY(-2px);
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.sk-chatbot * { box-sizing: border-box; }

.sk-chatbot-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 19px;
  color: #070816;
  background: linear-gradient(135deg, #19d3c5, #fff);
  box-shadow: 0 18px 48px rgba(7,8,22,.25);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.sk-chatbot-toggle-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #070816;
  box-shadow: 0 0 0 5px rgba(7,8,22,.1);
}

.sk-chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 66px;
  width: min(370px, calc(100vw - 32px));
  max-height: min(620px, calc(100vh - 110px));
  display: none;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(7,8,22,.3);
}

.sk-chatbot-panel.is-open {
  display: flex;
  flex-direction: column;
}

.sk-chatbot-head {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,79,139,.28), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(25,211,197,.22), transparent 45%),
    #070816;
}

.sk-chatbot-head strong {
  display: block;
  font-size: 1.1rem;
}

.sk-chatbot-head span {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,.68);
  font-size: .8rem;
}

.sk-chatbot-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-size: 1.2rem;
  cursor: pointer;
}

.sk-chatbot-messages {
  min-height: 0;
  flex: 1;
  padding: 18px;
  overflow-y: auto;
  background: #f6f1e8;
}

.sk-chatbot-message {
  max-width: 88%;
  margin: 0 0 11px;
  padding: 12px 14px;
  border-radius: 16px;
  color: #454955;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7,8,22,.06);
  font-size: .92rem;
  line-height: 1.45;
}

.sk-chatbot-message.user {
  margin-left: auto;
  color: #fff;
  background: #15172f;
}

.sk-chatbot-message a {
  color: inherit;
  font-weight: 850;
}

.sk-chatbot-options {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 12px 16px 4px;
  background: #fff;
}

.sk-chatbot-option {
  border: 1px solid rgba(7,8,22,.12);
  border-radius: 999px;
  padding: 8px 11px;
  color: #151622;
  background: #f7f6fb;
  font: inherit;
  font-size: .8rem;
  font-weight: 800;
  cursor: pointer;
}

.sk-chatbot-quote-wrap {
  flex-shrink: 0;
  padding: 10px 16px 0;
  background: #fff;
}

.sk-chatbot-quote {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 999px;
  padding: 12px 16px;
  color: #070816;
  background: linear-gradient(135deg, #19d3c5, #fff);
  box-shadow: 0 10px 28px rgba(25,211,197,.18);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 900;
  transition: .2s ease;
}

.sk-chatbot-quote:hover {
  transform: translateY(-2px);
}

.sk-chatbot-form {
  flex-shrink: 0;
  display: flex;
  gap: 8px;
  padding: 12px 16px 16px;
  background: #fff;
}

.sk-chatbot-input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(7,8,22,.14);
  border-radius: 999px;
  padding: 11px 13px;
  color: #151622;
  background: #fff;
  font: inherit;
  font-size: .9rem;
}

.sk-chatbot-send {
  border: 0;
  border-radius: 999px;
  padding: 0 15px;
  color: #070816;
  background: #19d3c5;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 640px) {
  .sk-chatbot {
    right: 14px;
    bottom: 14px;
  }

  .sk-chatbot-toggle {
    padding: 13px 16px;
  }

  .sk-chatbot-panel {
    position: fixed;
    right: 12px;
    bottom: 76px;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 92px);
  }
}
