/*welcome.scss*/
/* Light theme (default) */
:root {
  --bg-color: #ffffff;
  --bottom-nav-bg: #ffffff; /* light mode background */
  --text-color: #212529;
  --nav-bg: #52a8ff;
  --footer-bg: #52a8ff;
  --orders-tab-cate: #000;
}

/* Dark theme */
.dark-mode {
  --bg-color: #121212;
  --bottom-nav-bg: #1c1c1c; /* dark mode background */
  --text-color: #f8f9fa;
  --nav-bg: #000000;
  --footer-bg: #000000;
  --orders-tab-cate: #fff;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background 0.3s ease, color 0.3s ease;
}
@media (max-width: 991.98px) {
  body {
    padding-bottom: 35px;
  }
}

.navbar {
  background-color: var(--nav-bg) !important;
}

footer {
  background-color: var(--footer-bg) !important;
}

/* Toggle button styling */
#theme-toggle {
  cursor: pointer;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  margin-left: 1rem;
  color: inherit;
}

/* iPhone-style theme switch */
.theme-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
  cursor: pointer;
}
.theme-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.theme-switch .slider {
  position: absolute;
  inset: 0;
  background-color: #ccc;
  border-radius: 34px;
  transition: background-color 0.4s;
}
.theme-switch .slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.4s;
}
.theme-switch input:checked + .slider {
  background-color: #2196F3;
}
.theme-switch input:checked + .slider::before {
  transform: translateX(22px);
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bottom-nav-bg);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.35rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1050;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}
.bottom-nav .nav-item {
  flex: 1;
  text-align: center;
  color: var(--bottom-nav-text);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}
.bottom-nav .nav-item i {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}
.bottom-nav .nav-item.active, .bottom-nav .nav-item:hover {
  color: #007bff;
}
.bottom-nav .nav-item.position-relative .cart-badge {
  top: 4px;
  right: 40%;
  transform: translate(50%, -50%);
  font-size: 0.65rem;
  padding: 0.2rem 0.4rem;
}
@media (min-width: 992px) {
  .bottom-nav {
    display: none;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.delivery-notice-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 56px;
  z-index: 1019;
  transition: all 0.3s ease;
}
.delivery-notice-banner.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.delivery-notice-banner i.bi-truck {
  font-size: 1.125rem;
  animation: bounce 2s infinite;
}
.delivery-notice-banner strong {
  font-weight: 600;
  color: #ffc107;
}
.delivery-notice-banner .btn-link {
  text-decoration: none;
  transition: transform 0.3s;
  color: white;
}
.delivery-notice-banner .btn-link:hover {
  transform: scale(1.15);
  color: #ffc107;
}
.delivery-notice-banner .btn-link i {
  font-size: 1.125rem;
}
.delivery-notice-banner .delivery-text {
  line-height: 1.4;
}
@media (max-width: 768px) {
  .delivery-notice-banner {
    top: 56px;
    font-size: 0.813rem;
    padding: 0.625rem 0;
  }
  .delivery-notice-banner i.bi-truck {
    font-size: 1rem;
  }
  .delivery-notice-banner .delivery-text {
    font-size: 0.75rem;
  }
}
@media (max-width: 576px) {
  .delivery-notice-banner {
    top: 56px;
    padding: 0.5rem 0;
  }
  .delivery-notice-banner .delivery-text {
    display: block;
  }
  .delivery-notice-banner .delivery-text br {
    display: none;
  }
}

.navbar.sticky-top {
  z-index: 1020;
}

body.dark-mode .delivery-notice-banner {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
body.dark-mode .delivery-notice-banner.scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
body.dark-mode .delivery-notice-banner .btn-link:hover {
  color: rgb(255, 205.75, 58);
}

.chatbot-modal {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}
.chatbot-modal .chatbot-header {
  background: linear-gradient(135deg, #0b3c5d, #0d6efd);
  color: #fff;
}
.chatbot-modal .chatbot-messages {
  height: 320px;
  overflow-y: auto;
  background: #e7f5ff;
  padding: 14px;
  display: flex;
  flex-direction: column;
}
.chatbot-modal .bot-message,
.chatbot-modal .user-message {
  max-width: 80%;
  padding: 10px 14px;
  margin-bottom: 10px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.4;
}
.chatbot-modal .bot-message {
  background: #ffffff;
  align-self: flex-start;
  border-left: 4px solid #0d6efd;
}
.chatbot-modal .user-message {
  background: #0d6efd;
  color: #fff;
  align-self: flex-end;
}
.chatbot-modal .chatbot-input {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
}

/* Quick Action Buttons */
.chatbot-quick-actions {
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}
.chatbot-quick-actions .quick-btn {
  flex: 1;
  border: none;
  background: #f1f9ff;
  color: #0b3c5d;
  font-size: 12px;
  padding: 6px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.chatbot-quick-actions .quick-btn:hover {
  background: #0d6efd;
  color: #fff;
}

/* Mobile bottom sheet feel */
@media (max-width: 576px) {
  .modal-dialog-bottom {
    position: fixed;
    bottom: 0;
    margin: 0;
    width: 100%;
  }
  .modal-content {
    border-radius: 20px 20px 0 0;
  }
}
.modal-chatbot-right {
  position: fixed;
  bottom: 20px;
  right: 20px;
  margin: 0;
  transform: translate(120%, 120%);
  transition: transform 0.35s ease-out;
}

/* When modal is shown */
#chatbotModal.show .modal-chatbot-right {
  transform: translate(0, 0);
}

/* Hide backdrop click animation jump */
.modal-backdrop.show {
  opacity: 0.5;
}

/* Mobile adjustment */
@media (max-width: 576px) {
  .modal-chatbot-right {
    right: 10px;
    bottom: 10px;
    width: 95%;
  }
}
.chatbot-input {
  display: flex;
  gap: 4px;
  padding: 8px;
}
.chatbot-input input {
  flex: 1;
}
.chatbot-input button {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

#chatbot-toggle {
  margin-bottom: 30px;
}

body.light-mode {
  --poke-dark: #f5f6fa;
  --poke-card: #ffffff;
  --poke-border: #e5e7eb;
  --poke-muted: #6b7280;
  background: #f5f6fa;
  color: #111;
}

body.light-mode .hero-poke {
  background: #f5f6fa !important;
}

body.light-mode .pack-card,
body.light-mode .step-card,
body.light-mode .testi-card {
  background: #fff;
  border-color: #e5e7eb;
}

body.light-mode .navbar {
  background: #ffffff !important;
}

body.light-mode .nav-link {
  color: #111 !important;
}

#creditWalletItem {
  position: relative;
}

.credit-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 100px;
  padding: 5px 12px 5px 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.credit-pill:hover {
  background: rgba(255, 215, 0, 0.22);
}

.credit-coin {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FFD700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #0d0d1a;
  flex-shrink: 0;
}

.credit-amount {
  font-size: 13px;
  font-weight: 800;
  color: #FFD700;
}

.credit-topup-hint {
  font-size: 11px;
  color: rgba(255, 215, 0, 0.6);
}

.credit-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 1050;
  width: 280px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1c1c2e;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.credit-dropdown.show {
  display: block;
}
@media (max-width: 991px) {
  .credit-dropdown {
    position: fixed;
    top: auto;
    bottom: 60px;
    right: 10px;
    left: 10px;
    width: auto;
  }
}

.credit-dd-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 215, 0, 0.06);
}

.credit-dd-coin {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFD700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #0d0d1a;
  flex-shrink: 0;
}

.credit-dd-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.credit-dd-amount {
  font-size: 20px;
  font-weight: 800;
  color: #FFD700;
  line-height: 1.1;
}
.credit-dd-amount span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.credit-dd-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.credit-dd-body {
  padding: 12px 16px;
}

.credit-dd-section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.topup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}

.topup-preset-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 800;
  padding: 7px 4px;
  cursor: pointer;
  transition: all 0.15s;
}
.topup-preset-btn:hover, .topup-preset-btn.active {
  border-color: #c97d00;
  background: rgba(201, 125, 0, 0.15);
  color: #FFD700;
}

.btn-credit-topup {
  width: 100%;
  padding: 9px;
  background: #c97d00;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: filter 0.15s;
}
.btn-credit-topup:hover {
  filter: brightness(1.12);
}

.credit-txn-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.credit-txn-row:last-of-type {
  border-bottom: none;
}

.credit-txn-info {
  display: flex;
  flex-direction: column;
}
.credit-txn-info strong {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.credit-txn-info span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.credit-txn-amt {
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.credit-txn-amt.is-credit {
  color: #4ADE80;
}
.credit-txn-amt.is-debit {
  color: #f87171;
}

.credit-view-all {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #c97d00;
  margin-top: 10px;
  text-decoration: none;
}
.credit-view-all:hover {
  text-decoration: underline;
}

.mobile-credit-wallet {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 99999 !important;
}

.credit-txn-scroll {
  max-height: 155px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}
.credit-txn-scroll::-webkit-scrollbar {
  width: 4px;
}
.credit-txn-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.credit-txn-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.credit-txn-scroll::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

@media (max-width: 991px) {
  .credit-dropdown {
    margin-bottom: 200px;
  }
}/*# sourceMappingURL=welcome.css.map */