/* ENO Live Chat Widget */
#eno-chat-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9985;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

#eno-chat-button {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a961, #ffd700);
  border: 3px solid #0a0a0a;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
#eno-chat-button:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(201,169,97,0.5);
}
.eno-chat-button-icon {
  font-size: 28px;
  position: relative;
  z-index: 2;
}
.eno-chat-button-pulse {
  position: absolute;
  top: -3px; left: -3px; right: -3px; bottom: -3px;
  border-radius: 50%;
  background: rgba(201,169,97,0.5);
  animation: enoChatPulse 2s infinite;
  z-index: 1;
}
@keyframes enoChatPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}
#eno-chat-button.open .eno-chat-button-pulse {
  display: none;
}

#eno-chat-panel {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 320px;
  max-width: calc(100vw - 48px);
  background: #fff;
  border: 2px solid #c9a961;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  overflow: hidden;
  animation: enoChatIn 0.3s ease-out;
}
@keyframes enoChatIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.eno-chat-header {
  background: linear-gradient(135deg, #0a0a0a, #2c2c2c);
  color: #fff;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eno-chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a961, #ffd700);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
}
.eno-chat-title {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.eno-chat-title strong {
  font-size: 14px;
}
.eno-chat-title span {
  font-size: 11px;
  color: #c9a961;
  display: flex;
  align-items: center;
  gap: 4px;
}
.eno-chat-title span::before {
  content: '●';
  color: #4ade80;
  font-size: 10px;
  animation: enoChatBlink 2s infinite;
}
@keyframes enoChatBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.eno-chat-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.eno-chat-close:hover {
  background: rgba(255,255,255,0.2);
}

.eno-chat-body {
  padding: 18px;
}
.eno-chat-message {
  background: #fff8e8;
  border: 1px solid #c9a961;
  padding: 12px 14px;
  border-radius: 12px;
  border-top-left-radius: 4px;
  font-size: 13px;
  color: #0a0a0a;
  margin-bottom: 14px;
  line-height: 1.5;
}
.eno-chat-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.eno-chat-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
  text-decoration: none !important;
  color: #0a0a0a !important;
  transition: all 0.2s;
}
.eno-chat-option:hover {
  border-color: #c9a961;
  background: #fff8e8;
  transform: translateX(3px);
}
.eno-chat-icon {
  font-size: 22px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.eno-chat-option strong {
  font-size: 13px;
  display: block;
}
.eno-chat-option small {
  font-size: 11px;
  color: #888;
}
.eno-chat-option.whatsapp .eno-chat-icon { background: #25d366; }
.eno-chat-option.messenger .eno-chat-icon { background: #0084ff; }
.eno-chat-option.email .eno-chat-icon { background: #ea4335; }
.eno-chat-option.phone .eno-chat-icon { background: #c9a961; }

@media (max-width: 480px) {
  #eno-chat-widget {
    bottom: 16px;
    left: 16px;
  }
  #eno-chat-panel {
    width: calc(100vw - 32px);
  }
}
