/* Light theme (default) */
:root {
  --bg-color: #ffffff;
  --bottom-nav-bg: #ffffff; /* light mode background */
  --text-color: #212529;
  --nav-bg: #52a8ff;
  --footer-bg: #52a8ff;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background 0.3s ease, color 0.3s ease;
}

.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;
  }
}/*# sourceMappingURL=welcome.css.map */