
/* Pure CSS Slide Up Animation */
#mt-bottom-banner {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  z-index: 999999;
  font-family: Arial, sans-serif;
  
  /* Banner ko screen ke neeche chupaya hua hai */
  transform: translateY(150%);
  pointer-events: none; /* Hide hone par click na ho */
  
  /* Smooth CSS transition */
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Jab jQuery ye class add karegi to banner upar aa jayega */
#mt-bottom-banner.slide-up-active {
  transform: translateY(0);
  pointer-events: auto; /* Show hone par clicks allow honge */
}

/* Design Styles */
#mt-bottom-banner .mt-card {
  margin: 0 auto;
  width: 92%;
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#mt-bottom-banner .mt-title { font-size: 16px; font-weight: bold; margin-bottom: 5px; }
#mt-bottom-banner .mt-sub { font-size: 13px; color: #cbd5e1; line-height: 1.4; }
#mt-bottom-banner .mt-right { display: flex; align-items: center; gap: 10px; }

#mt-bottom-banner .mt-btn {
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s;
}

#mt-bottom-banner .mt-btn:hover { transform: translateY(-2px); }
#mt-bottom-banner .mt-btn.primary { background: #2563eb; color: #fff; }
#mt-bottom-banner .mt-btn.whatsapp { background: #22c55e; color: #fff; }

#mt-bottom-banner .mt-close-btn {
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 20px;
  cursor: pointer;
  margin-left: 5px;
}

#mt-bottom-banner .mt-close-btn:hover { color: #ef4444; }

@media(max-width: 768px) {
  #mt-bottom-banner .mt-card { flex-direction: column; text-align: center; gap: 15px; }
}
