/* =============================================
   EZ Hebrew Contact Widget - Styles
   Simple floating contact widget for Hebrew pages
   ============================================= */

#ez-hebrew-contact {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

#ez-hebrew-button {
  min-width: 90px;
  height: 56px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  background: #40E0D0;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  padding: 0 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

#ez-hebrew-button:hover {
  background: #35cfc0;
  transform: scale(1.05);
}

#ez-hebrew-bubble {
  display: none;
  max-width: 260px;
  margin-bottom: 12px;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  animation: ez-pop 0.25s ease-out;
  text-align: right;
}

@keyframes ez-pop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.ez-content {
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
}

.ez-icon {
  font-size: 20px;
  margin-top: 2px;
}

.ez-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.ez-body {
  font-size: 14px;
  color: #555;
}

.ez-footer {
  margin-top: 8px;
  font-size: 14px;
}

.ez-footer a {
  color: #40E0D0;
  font-weight: 600;
  text-decoration: underline;
}