/* ================================================= */
/* MAIN PAGE STYLES (Launcher + Iframe only)         */
/* ================================================= */

:root {
  --Jinie-green: #22c55e;
  --Jinie-green-glow: rgba(34, 197, 94, 0.5);
  --font-main: 'Plus Jakarta Sans', sans-serif;
}
/* =========================================
   PREMIUM CUSTOM SCROLLBAR – MAIN PAGE
   ========================================= */


/* Launcher Button */
.Jinie-launcher {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 50px;
  width: 140px;
  border-radius: 25px;
  background: var(--Jinie-green);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.Jinie-launcher:hover {
  transform: scale(1.05);
}

.launcher-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-text {
  font-weight: 700;
  font-size: 14px;
  color: #000;
}

/* IFRAME CONTAINER */
.jinie-frame-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 360px;
    flex-shrink: 0;
  height: 640px;
  display: none;
  z-index: 9999;
    box-shadow:
    -12px -12px 24px rgba(0, 0, 0, 0.6),   /* top-left dark shadow */
    -6px -6px 18px rgba(34, 197, 94, 0.15), /* subtle green highlight */
    6px 6px 20px rgba(0, 0, 0, 0.4);    
  
}

.jinie-frame-wrapper.open {
  display: block;
}

.jinie-frame {
  width: 100%;
  height: 100%;
  border: none;
    flex-shrink: 0;
}
/* Mobile */
@media (max-width: 480px) {
  .Jinie-launcher {
    bottom: 20px;
    right: 20px;
    width: 130px;
    height: 45px;
  }

  .jinie-frame-wrapper {
    width: calc(100% - 40px);
    height: 80vh;
    right: 20px;
    bottom: 20px;
  }
}
.jinie-frame-wrapper.open {
  display: block;
  animation: frameSlideUp 0.35s cubic-bezier(.2,.8,.2,1);
}
@keyframes frameSlideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}