/* Navbar container */
.navbar {
  width: 100%;
  background: #011320;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
  TRANSFORM-STYLE: PRESERVE-3D;
}

/* Inner container */
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  TRANSFORM-STYLE: PRESERVE-3D;
}

/* Logo */
.navbar .logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  TRANSFORM-STYLE: PRESERVE-3D;
}

/* Links */
.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
}

.nav-links li a:hover {
  color: #ffd700;
  transform: scale(1.1);
}

/* Burger menu for mobile */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 4px;
  transition: all 0.3s ease;
}

/* Responsive */
/* Responsive */
@media screen and (max-width: 768px) {
  .nav-links {
    position: fixed;
    left: 0;  /* Changed from right to left */
    height: 100vh;
    top: 0;
    background: #011320;
    flex-direction: column;
    width: 200px;
    transform: translateX(-100%); /* Slide out to the left initially */
    transition: transform 0.3s ease-in-out;
    padding-top: 60px;
  }

  .nav-links li {
    margin: 20px 0;
    text-align: center;
  }

  .nav-links.active {
    transform: translateX(0); /* Slide in from left */
  }

  .burger {
    display: flex;
  }
}


/* Overlays */
#overlay {
  position: fixed; inset: 0;
  background: #112b42;
  display: none;
}
body.noscroll { overflow: hidden; }

/* Login Popup */
#login-popup {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  background: #fff; width: 300px; max-width: 92%;
  padding: 24px; border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: none; z-index: 9999;
  transition: transform .25s ease;
  font-family: Arial, sans-serif;
}
#login-popup.active { display: block; transform: translate(-50%, -50%) scale(1); }
#login-popup h2 { margin: 0 0 8px; color: #222; text-align: center; }
#login-popup p { color: #666; text-align: center; font-size: 14px; margin: 0 0 16px; }
#login-popup .input-wrap { position: relative; }
#login-popup input {
  width: -webkit-fill-available; padding: 12px 44px 12px 12px;
  border: 1px solid #ddd; border-radius: 10px; font-size: 16px;
}
#login-popup .hint {
  font-size: 12px; color: #888; margin-top: 6px; text-align: center;
}


.btn:disabled { opacity: .7; cursor: not-allowed; }
.spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff; animation: spin 1s linear infinite; display: none;
}
.btn.loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Payment Slide */
.slide-popup {
  position: fixed; right: -480px; top: 0;
  width: 460px; max-width: 95%; height: 100%;
  background: #fff; box-shadow: -5px 0 20px rgba(0,0,0,0.3);
  transition: right .35s ease; z-index: 10000;
  font-family: Arial, sans-serif; overflow-y: auto;
  border-top-left-radius: 16px; border-bottom-left-radius: 16px;
}
.slide-popup.active { right: 0; }

/* Mobile: slide from bottom */
@media (max-width: 768px) {
  .slide-popup {
    width: 100%; height: 75%;
    left: 0; right: auto; top: auto; bottom: -100%;
    border-radius: 20px 20px 0 0; transition: bottom .35s ease;
  }
  .slide-popup.active { bottom: 0; }
}

.slide-header {
  background: #2b4358; color: #fff; padding: 16px 18px;
  display: flex; align-items: center; justify-content: space-between;
  border-top-left-radius: 16px;
}
.slide-header h2 { margin: 0; font-size: 18px; }
.slide-header button {
  background: transparent; border: 0; color: #fff; font-size: 20px; cursor: pointer;
}
.slide-body { padding: 18px; }
.payment-method {
  background: #f8f9fa; padding: 14px; margin-bottom: 14px;
  border-radius: 10px; box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}
.payment-method h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 16px; margin: 0 0 8px;
}
.payment-method img { width: 20px; height: 20px; border-radius: 5px; }
.payment-method ol { padding-left: 20px; margin: 0; }
.payment-method li { margin-bottom: 6px; font-size: 14px; color: #333; }
.payment-note { text-align: center; font-size: 14px; color: #2b4358; margin-top: 12px; }

/* Toast */
#toast {
  visibility: hidden; min-width: 260px; max-width: 90%;
  background: rgba(50,50,50,0.95); color: #fff; text-align: center;
  border-radius: 12px; padding: 14px 16px;
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: 24px; font-size: 14px; z-index: 11000;
  opacity: 0; transition: opacity .3s, transform .3s, bottom .3s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

#loginBtn{
width: -webkit-fill-available;
height: 35px;
  background: #2b4358; color: #fff; border: 0; border-radius: 10px;
  font-size: 16px; cursor: pointer; display: inline-flex; gap: 8px;
  align-items: center; justify-content: center;
}
#toast.show { visibility: visible; opacity: 1; bottom: 36px; }

#phone:focus {
  outline: none !important;
 
}

#loginBtn:focus{
	outline: none !important;
}

.btn{
 background: #2b4358; color: #fff; border: 0; border-radius: 10px; focus: none;
}



