#pixy-chatbot-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}


.pixy-chat-button {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff640d 0%, #ab2020 100%);
  border: none;
  box-shadow: 0 4px 20px rgba(255, 100, 13, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
  outline: none;
}

.pixy-chat-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(255, 100, 13, 0.5);
}

.pixy-chat-button:active {
  transform: scale(0.95);
}

.pixy-chat-button .pixy-icon {
  width: 28px;
  height: 28px;
  position: absolute;
  transition: all 0.3s ease;
}

.pixy-chat-button .pixy-icon-close {
  opacity: 0;
  transform: rotate(90deg);
}

.pixy-chat-button.active .pixy-icon-chat {
  opacity: 0;
  transform: rotate(-90deg);
}

.pixy-chat-button.active .pixy-icon-close {
  opacity: 1;
  transform: rotate(0deg);
}

.pixy-notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4757;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  border: 2px solid white;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}


.pixy-chat-modal {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 380px;
  max-width: calc(100vw - 40px);
  height: 600px;
  max-height: calc(100vh - 120px);
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.pixy-chat-modal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}


.pixy-chat-header {
  background: linear-gradient(135deg, #ff640d 0%, #ab2020 100%);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px 16px 0 0;
}

.pixy-chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pixy-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.pixy-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pixy-chat-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.pixy-status {
  margin: 2px 0 0 0;
  font-size: 12px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pixy-status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.pixy-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s ease;
  outline: none;
}

.pixy-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.pixy-close-btn svg {
  width: 18px;
  height: 18px;
}


.pixy-chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pixy-chat-messages::-webkit-scrollbar {
  width: 6px;
}

.pixy-chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.pixy-chat-messages::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 3px;
}

.pixy-chat-messages::-webkit-scrollbar-thumb:hover {
  background: #a0aec0;
}


.pixy-message {
  display: flex;
  gap: 10px;
  animation: messageSlideIn 0.3s ease;
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pixy-bot-message {
  align-items: flex-start;
}

.pixy-user-message {
  justify-content: flex-end;
}

.pixy-message-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.pixy-message-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pixy-message-content {
  max-width: 75%;
  padding: 12px 16px;
  border-radius: 12px;
  line-height: 1.5;
  font-size: 14px;
}

.pixy-bot-message .pixy-message-content {
  background: white;
  color: #2d3748;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pixy-user-message .pixy-message-content {
  background: linear-gradient(135deg, #ff640d 0%, #ab2020 100%);
  color: white;
  border-bottom-right-radius: 4px;
}

.pixy-message-content p {
  margin: 0;
}

.pixy-message-content p+p {
  margin-top: 8px;
}


.pixy-typing-dots {
  display: flex;
  gap: 4px;
  padding: 8px 0;
}

.pixy-typing-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff640d;
  animation: typing 1.4s infinite;
}

.pixy-typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.pixy-typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }

  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}


.pixy-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: 42px;
  animation: messageSlideIn 0.3s ease;
}

.pixy-quick-reply-btn {
  padding: 8px 16px;
  background: white;
  border: 2px solid #ff640d;
  border-radius: 20px;
  color: #ff640d;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  white-space: nowrap;
}

.pixy-quick-reply-btn:hover {
  background: linear-gradient(135deg, #ff640d 0%, #ab2020 100%);
  color: white;
  border-color: #ab2020;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 100, 13, 0.3);
}

.pixy-quick-reply-btn:active {
  transform: translateY(0);
}


.pixy-summary {
  background: linear-gradient(135deg, #f6f8fb 0%, #ffffff 100%);
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid #ff640d;
}

.pixy-summary h4 {
  margin: 0 0 12px 0;
  font-size: 16px;
  color: #2d3748;
}

.pixy-summary p {
  margin: 8px 0;
  font-size: 13px;
  color: #4a5568;
}

.pixy-summary hr {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 12px 0;
}


.pixy-chat-input-container {
  padding: 16px;
  background: white;
  border-top: 1px solid #e2e8f0;
  display: flex;
  gap: 10px;
  align-items: center;
}

.pixy-chat-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.pixy-chat-input:focus {
  border-color: #ff640d;
  box-shadow: 0 0 0 3px rgba(255, 100, 13, 0.1);
}

.pixy-send-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff640d 0%, #ab2020 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s ease;
  outline: none;
  flex-shrink: 0;
}

.pixy-send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 100, 13, 0.4);
}

.pixy-send-btn:active {
  transform: scale(0.95);
}

.pixy-send-btn svg {
  width: 20px;
  height: 20px;
}


@media (max-width: 480px) {
  #pixy-chatbot-widget {
    bottom: 15px;
    right: 15px;
  }

  .pixy-chat-button {
    width: 56px;
    height: 56px;
  }

  .pixy-chat-modal {
    bottom: 80px;
    right: 15px;
    left: 15px;
    width: auto;
    max-width: none;
    height: 500px;
  }

  .pixy-message-content {
    max-width: 80%;
  }

  .pixy-quick-replies {
    margin-left: 0;
  }
}

@media (max-width: 360px) {
  .pixy-chat-modal {
    height: 450px;
  }

  .pixy-chat-header {
    padding: 16px;
  }

  .pixy-chat-messages {
    padding: 16px;
  }
}


@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


@media (prefers-color-scheme: dark) {
  .pixy-chat-modal {
    background: #1a202c;
  }

  .pixy-chat-messages {
    background: #2d3748;
  }

  .pixy-bot-message .pixy-message-content {
    background: #4a5568;
    color: #f7fafc;
  }

  .pixy-chat-input-container {
    background: #2d3748;
    border-top-color: #4a5568;
  }

  .pixy-chat-input {
    background: #4a5568;
    border-color: #718096;
    color: #f7fafc;
  }

  .pixy-quick-reply-btn {
    background: #4a5568;
    border-color: #667eea;
    color: #a0aec0;
  }

  .pixy-summary {
    background: #4a5568;
  }

  .pixy-summary h4,
  .pixy-summary p {
    color: #f7fafc;
  }
}


:root {
  --gutter: 16px;
  --gap: 16px;
  --site-max-width: 1200px;
  --radius: 6px;
  --transition: 220ms ease
}

html,
body {
  overflow-x: hidden
}

h1 {
  font-size: clamp(24px, calc(1.35rem + 1.2vw), 48px)
}

h2 {
  font-size: clamp(20px, calc(1.15rem + 1.0vw), 36px)
}

h3 {
  font-size: clamp(18px, calc(1rem + 0.6vw), 28px)
}

p,
li,
button {
  font-size: clamp(13px, calc(0.95rem + 0.2vw), 16px)
}

.container {
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 calc(var(--gutter))
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  align-items: flex-start
}

.col {
  flex: 1 1 100%;
  min-width: 0
}

.col-50 {
  flex: 1 1 100%
}

.card {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  background: #fff
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block
}

.w-button {
  padding: 12px 18px;
  border-radius: 6px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.hamburger {
  display: none
}

.nav-main {
  display: flex;
  gap: var(--gap);
  align-items: center
}

* {
  transition: var(--transition)
}

@media (min-width:768px) and (max-width:1023px) {
  :root {
    --gutter: 20px;
    --gap: 20px
  }

  .col-50 {
    flex: 1 1 calc(50% - var(--gap))
  }

  .col-33 {
    flex: 1 1 calc(33.333% - var(--gap))
  }

  .hamburger {
    display: block
  }

  .nav-main {
    flex-wrap: wrap
  }
}

@media (min-width:1024px) and (max-width:1439px) {
  :root {
    --gutter: 28px;
    --gap: 28px
  }

  .col-50 {
    flex: 1 1 calc(50% - var(--gap))
  }

  .col-33 {
    flex: 1 1 calc(33.333% - var(--gap))
  }

  .container {
    padding: 0 calc(var(--gutter) * 0.75)
  }
}

@media (min-width:1440px) {
  :root {
    --gutter: 42px;
    --gap: 32px;
    --site-max-width: 1440px
  }

  .container {
    padding: 0 calc(var(--gutter))
  }

  .col-50 {
    flex: 1 1 calc(50% - var(--gap))
  }
}