/* ============================================================
   PROPERTYDEAL — Listing Page Sidebar WhatsApp Chatbot Card
   File: listing_sidebar_whatsapp_chatbot.css
   Usage: Pair with listing_sidebar_whatsapp_chatbot.html
   ============================================================ */

.pp-sidebar-card--whatsapp {
  background: linear-gradient(180deg, #ffffff 0%, #f7fdfa 100%);
  border: 1px solid #c2ebd0;
  border-radius: 20px;
  padding: 24px 20px 20px;
  font-family: var(--pd-font-sans), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.04), 0 2px 8px rgba(15, 23, 42, 0.04);
}

.pp-sidebar-card--whatsapp .pp-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 8px;
}

.pp-sidebar-card--whatsapp .pp-sidebar-title {
  font-size: 14px;
  font-weight: 700;
  color: #128c7e;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pp-sidebar-card--whatsapp .pp-sidebar-badge {
  background: #eafce8;
  color: #128c7e;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid #a5d6a7;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

.pp-sidebar-card--whatsapp .pp-sidebar-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.pp-sidebar-card--whatsapp .pp-sidebar-check-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  color: #334155;
  line-height: 1.5;
}

.pp-sidebar-card--whatsapp .pp-check-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #eafce8;
  border: 1px solid #a5d6a7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pp-sidebar-card--whatsapp .pp-sidebar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25d366;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 12px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, transform 0.1s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.pp-sidebar-card--whatsapp .pp-sidebar-btn:hover {
  background: #1ebd5a;
}

.pp-sidebar-card--whatsapp .pp-sidebar-btn:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .pp-sidebar-card--whatsapp {
    max-width: 100%;
    border-radius: 12px;
    padding: 16px 14px;
  }

  .pp-sidebar-card--whatsapp .pp-sidebar-title {
    font-size: 13px;
  }

  .pp-sidebar-card--whatsapp .pp-sidebar-check-item {
    font-size: 12px;
  }
}
