/* ════════════════════════════════════════════
   EMAIL BUBBLE
════════════════════════════════════════════ */
#beeeye-email-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100001;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
#beeeye-email-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.36);
  background: #eee;
}
#beeeye-email-btn svg { width: 24px; height: 24px; flex-shrink: 0; }

#beeeye-email-panel {
  position: fixed;
  bottom: 172px;
  right: 28px;
  z-index: 100000;
  width: 380px;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.32);
  display: none;
  flex-direction: column;
  background: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
#beeeye-email-panel.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
#beeeye-email-panel iframe {
  width: 100%;
  flex: 1;
  border: none;
}

#beeeye-email-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 10;
  background: rgba(255,255,255,0.9);
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: #333;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  box-shadow: 0 1px 6px rgba(0,0,0,0.12);
}
#beeeye-email-close:hover {
  background: #fff;
  color: #000;
}

/* ════════════════════════════════════════════
   CHAT BUBBLE
════════════════════════════════════════════ */
#beeeye-chat-btn {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 100001;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
#beeeye-chat-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.36);
  background: #eee;
}
#beeeye-chat-btn svg { width: 26px; height: 26px; flex-shrink: 0; }

#beeeye-chat-panel {
  position: fixed;
  bottom: 172px;
  right: 28px;
  z-index: 100000;
  width: 380px;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.32);
  display: none;
  flex-direction: column;
  background: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
#beeeye-chat-panel.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
#beeeye-chat-panel iframe {
  width: 100%;
  flex: 1;
  border: none;
}

#beeeye-chat-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 10;
  background: rgba(255,255,255,0.9);
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: #333;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  box-shadow: 0 1px 6px rgba(0,0,0,0.12);
}
#beeeye-chat-close:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 600px) {
  #beeeye-email-btn { bottom: 28px; right: 16px; }
  #beeeye-email-panel {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 162px;
    height: 70vh;
  }
  #beeeye-chat-btn { right: 16px; }
  #beeeye-chat-panel {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 162px;
    height: 70vh;
  }
}
