/* TapTalk AAC — Post-Quantum Cookie Consent & WhatsApp Human Support Stylesheet */
:root {
  --tt-cookie-bg: #0b1120;
  --tt-cookie-border: #1e293b;
  --tt-cookie-accent: #38bdf8;
  --tt-cookie-emerald: #10b981;
  --tt-cookie-amber: #f59e0b;
  --tt-cookie-text: #f8fafc;
  --tt-whatsapp-green: #25D366;
}

/* Floating Bottom Cookie Banner */
#taptalk-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 1040px;
  margin: 0 auto;
  z-index: 99999999;
  background: rgba(11, 17, 32, 0.98);
  border: 2px solid #38bdf8;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(56, 189, 248, 0.25);
  backdrop-filter: blur(25px);
  color: #f8fafc !important;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  animation: ttCookieSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes ttCookieSlideUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* HIGH-CONTRAST COOKIE BANNER BUTTONS */
.tt-cookie-btn-accept {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 0.86rem !important;
  padding: 8px 18px !important;
  border-radius: 12px !important;
  border: 1.5px solid #34d399 !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4) !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  text-decoration: none !important;
}
.tt-cookie-btn-accept:hover {
  background: linear-gradient(135deg, #059669, #047857) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6) !important;
}

.tt-cookie-btn-essential {
  background: rgba(56, 189, 248, 0.15) !important;
  color: #38bdf8 !important;
  font-weight: 800 !important;
  font-size: 0.86rem !important;
  padding: 8px 16px !important;
  border-radius: 12px !important;
  border: 1.5px solid #38bdf8 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}
.tt-cookie-btn-essential:hover {
  background: rgba(56, 189, 248, 0.3) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

.tt-cookie-btn-customize {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #e2e8f0 !important;
  font-weight: 800 !important;
  font-size: 0.86rem !important;
  padding: 8px 16px !important;
  border-radius: 12px !important;
  border: 1.5px solid #64748b !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}
.tt-cookie-btn-customize:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
  border-color: #94a3b8 !important;
  transform: translateY(-2px) !important;
}

/* Modal Overlay */
#taptalk-cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 7, 18, 0.88);
  backdrop-filter: blur(14px);
  z-index: 999999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#taptalk-cookie-modal {
  background: #0b1120;
  border: 2px solid var(--tt-cookie-accent);
  border-radius: 24px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.95);
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.tt-cookie-category-card {
  background: #070c18;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 14px;
}

/* ══════════════════════════════════════════════════════════════════════════════
   STICKY BOTTOM-LEFT WHATSAPP "TALK TO A HUMAN" FLOATING BUTTON
   ══════════════════════════════════════════════════════════════════════════════ */
.taptalk-whatsapp-float-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999990;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0, 0, 0, 0.6);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: 0.2px;
}

.taptalk-whatsapp-float-btn i {
  font-size: 1.25rem;
  line-height: 1;
}

.taptalk-whatsapp-float-btn:hover {
  background: linear-gradient(135deg, #2bf074, #1eb8a6);
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.6), 0 6px 18px rgba(0, 0, 0, 0.8);
}

@media (max-width: 576px) {
  .taptalk-whatsapp-float-btn {
    padding: 8px 14px;
    font-size: 0.78rem;
    bottom: 14px;
    left: 14px;
  }
}
