/* CryptoTools Style - Neomorphism Design */

:root {
  --primary: #7dd3fc;
  --accent-purple: #d4b3ff;
  --accent-blue: #a5d8ff;
  --accent-yellow: #ffea75;
  --accent-pink: #fbcfe8;
  --accent-green: #86efac;
  --bg-light: #f7f8f5;
  --bg-dark: #0f172a;
  --shadow-neo: 4px 4px 0px 0px #000000;
  --shadow-neo-sm: 2px 2px 0px 0px #000000;
  --border-width: 3px;
  --border-color: #000000;
}

* {
  box-sizing: border-box;
}

/* Reset list styles */
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-light);
  background-image: radial-gradient(#e5e5e5 1px, transparent 1px);
  background-size: 20px 20px;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

/* Main Content */
.main-content {
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-light);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader .image-loader {
  width: 60px;
  height: 60px;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Header */
header {
  background: white;
  border-bottom: var(--border-width) solid black;
  padding: 1rem 2rem;
  box-shadow: var(--shadow-neo);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

header .left-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

header .logoimage {
  height: 48px;
  width: auto;
}

header .navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
}

header .menu-item a {
  font-weight: 700;
  color: black;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
}

header .menu-item a:hover {
  background: var(--primary);
}

/* Search Bar */
.search-block {
  flex: 1;
  max-width: 500px;
  margin: 0 2rem;
}

.search-bar {
  display: flex;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 0.875rem 1rem;
  padding-right: 3rem;
  border: var(--border-width) solid black;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  background: white;
  box-shadow: var(--shadow-neo-sm);
  outline: none;
  transition: all 0.2s;
}

.search-bar input:focus {
  box-shadow: var(--shadow-neo);
  transform: translate(-2px, -2px);
}

.search-bar button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  border: 2px solid black;
  border-radius: 0.5rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.search-bar button:hover {
  background: var(--accent-yellow);
}

/* Right Nav */
.right-nav .navbar-nav {
  display: flex;
  gap: 1rem;
}

.right-nav a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: black;
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border: var(--border-width) solid black;
  border-radius: 0.75rem;
  background: white;
  box-shadow: var(--shadow-neo-sm);
  transition: all 0.2s;
}

.right-nav a:hover {
  background: var(--primary);
  transform: translate(2px, 2px);
  box-shadow: none;
}

/* Page Title Banner */
.page-title-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-blue) 100%);
  border-bottom: var(--border-width) solid black;
  padding: 3rem 2rem;
  text-align: center;
}

.page-title-banner h2 {
  font-size: 2rem;
  font-weight: 800;
  color: black;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Main Content */
.page-content {
  padding: 2.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.p-96 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Card Styles */
.card {
  background: white;
  border: var(--border-width) solid black;
  border-radius: 1rem;
  box-shadow: var(--shadow-neo);
  overflow: hidden;
}

.card-header {
  background: var(--bg-light);
  border-bottom: var(--border-width) solid black;
  padding: 1rem 1.5rem;
}

.card-body {
  padding: 1.5rem;
}

/* Tabs */
.nav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
  border: none;
}

.nav-tabs .nav-item a {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: black;
  text-decoration: none;
  border: 2px solid black;
  border-radius: 9999px;
  background: white;
  box-shadow: var(--shadow-neo-sm);
  transition: all 0.2s;
}

.nav-tabs .nav-item a:hover,
.nav-tabs .nav-item a.active {
  background: var(--primary);
  transform: translate(1px, 1px);
  box-shadow: none;
}

/* Product Grid */
.product {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.product-card {
  background: white;
  border: var(--border-width) solid black;
  border-radius: 1rem;
  box-shadow: var(--shadow-neo);
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translate(2px, 2px);
  box-shadow: none;
  background: var(--primary);
}

.product-card .img-block {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-light);
  border-bottom: 2px solid black;
}

.product-card .goodimage {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
}

.product-card .content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card h5 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: black;
}

.product-card .bold {
  font-size: 1.5rem;
  font-weight: 800;
  color: black;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0.375rem;
  border: 2px solid black;
  margin-right: 0.375rem;
  margin-bottom: 0.375rem;
}

.text-bg-primary {
  background: var(--primary);
  color: black;
}

.text-bg-secondary {
  background: #e5e7eb;
  color: black;
}

.text-bg-warning {
  background: var(--accent-yellow);
  color: black;
}

.text-bg-success {
  background: #86efac;
  color: black;
}

/* Badge Item (Category Header) */
.badge-item {
  margin: 1.5rem 0 1rem 0;
}

.badge-item span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.875rem;
  background: var(--accent-yellow);
  border: 2px solid black;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-neo-sm);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  border: var(--border-width) solid black;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.btn-success,
.cus-btn.primary {
  background: var(--primary);
  color: black;
  box-shadow: var(--shadow-neo-sm);
}

.btn-success:hover,
.cus-btn.primary:hover {
  background: var(--accent-pink);
  transform: translate(2px, 2px);
  box-shadow: none;
}

.btn-outline-secondary {
  background: white;
  color: #6b7280;
  border-color: #9ca3af;
}

.btn-outline-secondary.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-secondary {
  background: #e5e7eb;
  color: black;
  box-shadow: var(--shadow-neo-sm);
}

.btn-block {
  margin-top: auto;
  padding-top: 1rem;
}

/* Forms */
.form-control,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  border: var(--border-width) solid black;
  border-radius: 0.75rem;
  background: white;
  box-shadow: var(--shadow-neo-sm);
  outline: none;
  transition: all 0.2s;
}

.form-control:focus,
.form-select:focus {
  box-shadow: var(--shadow-neo);
  transform: translate(-2px, -2px);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
  padding-right: 3rem;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Quantity */
.quantity-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 1rem 0;
}

.quantity-wrap input[type="button"],
.quantity-wrap .number {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  border: var(--border-width) solid black;
  background: white;
  text-align: center;
}

.quantity-wrap .decrement {
  border-radius: 0.75rem 0 0 0.75rem;
  border-right: none;
  cursor: pointer;
}

.quantity-wrap .increment {
  border-radius: 0 0.75rem 0.75rem 0;
  border-left: none;
  cursor: pointer;
}

.quantity-wrap .number {
  width: 60px;
  border-radius: 0;
}

.quantity-wrap input[type="button"]:hover {
  background: var(--primary);
}

/* Payment / Order Info */
.payment,
.cart {
  background: white;
  border: var(--border-width) solid black;
  border-radius: 1rem;
  box-shadow: var(--shadow-neo);
  padding: 2rem;
}

.radio-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-light);
  border: 2px solid black;
  border-radius: 0.5rem;
}

.radio-button input[type="radio"] {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--primary);
}

.radio-button label {
  font-weight: 600;
  color: black;
  margin: 0;
}

.total {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px dashed black;
}

.total ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.total li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Heading */
.heading {
  margin: 2rem 0 1rem 0;
}

.heading h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: black;
  text-transform: uppercase;
}

/* Detail */
.detail {
  background: white;
  border: var(--border-width) solid black;
  border-radius: 1rem;
  box-shadow: var(--shadow-neo);
  padding: 2rem;
}

.detail img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  cursor: pointer;
}

/* Newsletter */
.newsletter {
  background: white;
  border: var(--border-width) solid black;
  border-radius: 1rem;
  box-shadow: var(--shadow-neo);
  padding: 2rem;
}

.newsletter h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: black;
  margin: 0 0 1.5rem 0;
}

/* Footer */
footer {
  background: black;
  color: white;
  padding: 1.25rem 2rem;
  margin-top: 2rem;
  border-top: var(--border-width) solid black;
}

footer .container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

footer h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
}

footer a {
  color: var(--primary);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer p {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.8;
}

footer .footer-main {
  margin-bottom: 0 !important;
}

footer .mb-64 {
  margin-bottom: 0 !important;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.modal.show {
  display: flex !important;
}

.modal-dialog {
  width: 100%;
  max-width: 500px;
  margin: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
  margin: 0 auto;
}

.modal-content {
  background: white;
  border: var(--border-width) solid black;
  border-radius: 1rem;
  box-shadow: var(--shadow-neo);
  overflow: hidden;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 2px solid black;
  background: var(--bg-light);
}

.modal-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-top: 2px solid black;
  background: var(--bg-light);
}

.btn-close {
  width: 2rem;
  height: 2rem;
  background: white;
  border: 2px solid black;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  transition: all 0.2s;
}

.btn-close:hover {
  background: var(--accent-pink);
}

/* Error Page */
.error-info {
  max-width: 500px;
  margin: 4rem auto;
  text-align: center;
  background: white;
  border: var(--border-width) solid black;
  border-radius: 1rem;
  box-shadow: var(--shadow-neo);
  padding: 3rem 2rem;
}

.error-info h2 {
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.error-info .card-header {
  font-size: 1.5rem;
  color: black;
  background: none;
  border: none;
  padding: 0;
}

.error-info .card-title {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

/* QR Pay */
.main-container {
  padding: 3rem 1rem;
}

.good-card {
  max-width: 500px;
  margin: 0 auto;
}

.good-card .card {
  text-align: center;
}

.good-card .card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: black;
  margin-bottom: 0.5rem;
}

.good-card .text-muted {
  color: #6b7280;
  font-size: 0.875rem;
}

.good-card .text-warning {
  color: black;
  font-weight: 700;
  font-size: 1.25rem;
}

.err-messagep-3 {
  padding: 1.5rem;
}

.err-messagep-3 img {
  border: var(--border-width) solid black;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-neo-sm);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  border: var(--border-width) solid black;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-neo-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.2s;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translate(2px, 2px);
  box-shadow: none;
}

/* Mobile */
.small-screen {
  display: none;
}

.large-screens {
  display: block;
}

@media (max-width: 1024px) {
  .search-block {
    display: none;
  }
}

@media (max-width: 768px) {
  .large-screens {
    display: none;
  }
  
  .small-screen {
    display: block;
  }
  
  .mobile-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
  }
  
  .hamburger-menu {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid black;
    border-radius: 0.5rem;
    cursor: pointer;
  }
  
  .hamburger-menu .bar {
    width: 1.25rem;
    height: 2px;
    background: black;
    position: relative;
  }
  
  .hamburger-menu .bar::before,
  .hamburger-menu .bar::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: black;
    left: 0;
  }
  
  .hamburger-menu .bar::before {
    top: -6px;
  }
  
  .hamburger-menu .bar::after {
    top: 6px;
  }
  
  .mobile-navar {
    display: none;
    padding: 1rem 0;
  }
  
  .mobile-navar.active {
    display: block;
  }
  
  .mobile-navar ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-navar li {
    margin-bottom: 0.5rem;
  }
  
  .mobile-navar a {
    display: block;
    padding: 0.75rem 1rem;
    font-weight: 700;
    color: black;
    text-decoration: none;
    background: var(--bg-light);
    border: 2px solid black;
    border-radius: 0.5rem;
  }
  
  .mobile-navar a:hover {
    background: var(--primary);
  }
  
  .product {
    grid-template-columns: 1fr;
  }
  
  .page-title-banner {
    padding: 2rem 1rem;
  }
  
  .page-title-banner h2 {
    font-size: 1.5rem;
  }
}

/* Utility Classes */
.mb-8 { margin-bottom: 0.5rem; }
.mb-16 { margin-bottom: 1rem; }
.mb-24 { margin-bottom: 1.5rem; }
.mb-32 { margin-bottom: 2rem; }
.mb-38 { margin-bottom: 2.375rem; }
.mb-48 { margin-bottom: 3rem; }
.mb-64 { margin-bottom: 4rem; }
.mb-0 { margin-bottom: 0; }
.m-0 { margin: 0; }
.p-0 { padding: 0; }
.m-3 { margin: 1rem; }
.p-4 { padding: 1.5rem; }
.pb-0 { padding-bottom: 0; }
.w-100 { width: 100%; }
.gap-75 { gap: 0.75rem; }
.text-center { text-align: center; }
.text-start { text-align: left; }
.text-body { color: black; text-decoration: none; }
.text-primary { color: var(--primary); }
.color-white { color: white; }
.light-black { color: black; }
.bold { font-weight: 700; }
.h-27 { font-size: 1.125rem; }
.h-36 { font-size: 1.25rem; }
.h-47 { font-size: 1.5rem; }
.unstyled { list-style: none; padding: 0; }

/* Grid */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

.container-fluid {
  width: 100%;
  padding: 0 1rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -0.75rem;
}

.col-xl-12, .col-xl-7, .col-xl-5,
.col-lg-12, .col-lg-6,
.col-md-8, .col-12 {
  padding: 0.75rem;
}

.col-12 { width: 100%; }
.col-md-8 { width: 66.666667%; }

@media (min-width: 992px) {
  .col-lg-6 { width: 50%; }
  .col-lg-12 { width: 100%; }
}

@media (min-width: 1200px) {
  .col-xl-5 { width: 41.666667%; }
  .col-xl-7 { width: 58.333333%; }
  .col-xl-12 { width: 100%; }
}

.justify-content-center {
  justify-content: center;
}

/* Image Block */
.image-block {
  background: var(--bg-light);
  border: var(--border-width) solid black;
  border-radius: 1rem;
  box-shadow: var(--shadow-neo);
  padding: 2rem;
  text-align: center;
}

.image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* Buy Form */
.buy-form .content {
  background: white;
  border: var(--border-width) solid black;
  border-radius: 1rem;
  box-shadow: var(--shadow-neo);
  padding: 2rem;
}

.buy-form .tag {
  margin: 1rem 0;
}

.buy-form .category {
  margin-bottom: 0.5rem;
}

.buy-pay-grid {
  margin-bottom: 1rem;
}

/* Captcha */
.captcha-img {
  height: 48px;
  border: 2px solid black;
  border-radius: 0.5rem;
  cursor: pointer;
}

/* Tab Content */
.tab-content > .tab-pane {
  display: none;
}

.tab-content > .tab-pane.active {
  display: block;
}

.tab-content > .tab-pane.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.tab-content > .tab-pane.fade.show {
  opacity: 1;
}

/* Image Modal */
#img-modal .modal-content {
  background: transparent;
  border: none;
  box-shadow: none;
}

#img-modal .modal-body {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#img-modal .img-fluid {
  max-width: 90vw;
  max-height: 90vh;
  border: var(--border-width) solid black;
  border-radius: 1rem;
  box-shadow: var(--shadow-neo);
}

/* Hidden */
.hidden {
  display: none !important;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

/* =====================================================
   NEW NAVIGATION STYLES
   ===================================================== */
.nav-header {
  background: white;
  border-bottom: var(--border-width) solid black;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1.25rem;
  }
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: black;
}

.nav-logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-title {
  font-weight: 700;
  font-size: 1.25rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: black;
  text-decoration: none;
  border-radius: 9999px;
  transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
  background: var(--bg-light);
}

.nav-link .material-symbols-outlined {
  font-size: 1.25rem;
}

.nav-item.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 2px solid black;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-neo-sm);
  padding: 0.5rem 0;
  min-width: 150px;
  display: none;
  z-index: 1000;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown .dropdown-menu.show {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: black;
  text-decoration: none;
  font-weight: 500;
}

.dropdown-menu li a:hover {
  background: var(--bg-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: white;
  border: 2px solid black;
  border-radius: 50%;
  color: black;
  text-decoration: none;
  transition: all 0.2s;
}

.nav-action-btn:hover {
  background: var(--primary);
}

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  background: white;
  border: 2px solid black;
  border-radius: 0.5rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 1rem 0;
  border-top: 2px solid var(--bg-light);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  margin-bottom: 0.5rem;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: black;
  text-decoration: none;
  background: var(--bg-light);
  border: 2px solid black;
  border-radius: 0.5rem;
}

.mobile-nav a:hover {
  background: var(--primary);
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* =====================================================
   PRODUCT GRID & CARDS (NEO STYLE)
   ===================================================== */
.products-section {
  padding: 2.5rem 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .products-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.product-card-neo {
  background: white;
  border: var(--border-width) solid black;
  border-radius: 1rem;
  box-shadow: var(--shadow-neo-sm);
  overflow: hidden;
  transition: all 0.2s;
}

.product-card-neo:hover {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.product-image-wrap {
  position: relative;
  background: var(--bg-light);
  padding: 1rem;
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0.25rem;
  border: 2px solid black;
  z-index: 1;
}

.badge-auto {
  background: var(--accent-green);
  color: black;
}

.badge-manual {
  background: var(--primary);
  color: black;
}

.badge-soldout {
  background: #fecaca;
  color: black;
}

.product-image-link {
  display: block;
}

.product-image-link img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.5rem;
}

.product-info {
  padding: 1rem;
}

.product-title {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: black;
  text-decoration: none;
  margin-bottom: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-title:hover {
  color: var(--primary);
}

.product-price {
  font-weight: 700;
  font-size: 1rem;
  color: black;
  margin-bottom: 0.5rem;
}

.original-price {
  font-size: 0.75rem;
  font-weight: 400;
  color: #9ca3af;
  margin-left: 0.5rem;
}

.stock-bar {
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.stock-fill {
  height: 100%;
  background: black;
  border-radius: 2px;
  transition: width 0.3s;
}

.stock-text {
  font-size: 0.75rem;
  color: #6b7280;
}

/* =====================================================
   CATEGORY TABS
   ===================================================== */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 1rem 0;
  margin-bottom: 1rem;
}

.category-tab {
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: black;
  text-decoration: none;
  background: white;
  border: 2px solid black;
  border-radius: 9999px;
  box-shadow: var(--shadow-neo-sm);
  transition: all 0.2s;
}

.category-tab:hover,
.category-tab.active {
  background: var(--primary);
  transform: translate(1px, 1px);
  box-shadow: none;
}

/* =====================================================
   SEARCH BOX
   ===================================================== */
.search-box {
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 0.875rem 1rem;
  padding-left: 3rem;
  font-size: 1rem;
  font-weight: 500;
  border: var(--border-width) solid black;
  border-radius: 9999px;
  background: white;
  box-shadow: var(--shadow-neo-sm);
  outline: none;
}

.search-box input:focus {
  box-shadow: var(--shadow-neo);
}

.search-box .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
}

/* =====================================================
   BUY PAGE LAYOUT
   ===================================================== */
.buy-page {
  padding: 1.5rem 0 2.5rem;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.breadcrumb-nav a {
  color: #6b7280;
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  color: black;
}

.breadcrumb-sep {
  color: #9ca3af;
}

.breadcrumb-current {
  color: #374151;
}

.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb li::after {
  content: '>';
  color: #9ca3af;
}

.breadcrumb li:last-child::after {
  display: none;
}

.breadcrumb a {
  color: #6b7280;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: black;
}

.buy-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .buy-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.product-gallery {
  background: white;
  border: var(--border-width) solid black;
  border-radius: 1rem;
  box-shadow: var(--shadow-neo);
  overflow: hidden;
}

.product-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.product-form-card {
  background: white;
  border: var(--border-width) solid black;
  border-radius: 1rem;
  box-shadow: var(--shadow-neo);
  padding: 1.5rem;
}

.product-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.product-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-meta-item .material-symbols-outlined {
  font-size: 1.25rem;
}

.price-display {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.price-original {
  font-size: 1rem;
  font-weight: 400;
  color: #9ca3af;
  text-decoration: line-through;
  margin-left: 0.5rem;
}

/* =====================================================
   PAYMENT METHOD ICONS (USDC/USDT STYLE)
   ===================================================== */
.payment-methods {
  margin-bottom: 1.5rem;
}

.payment-methods-label {
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.payment-methods-label .required {
  color: #ef4444;
}

.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.payment-option {
  position: relative;
}

.payment-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.payment-option-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.payment-option input[type="radio"]:checked + .payment-option-label {
  border-color: #10b981;
  background: #f0fdf4;
}

.payment-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: white;
}

.payment-icon.usdc {
  background: #2775ca;
}

.payment-icon.usdt {
  background: #26a17b;
}

.payment-icon.alipay {
  background: #1677ff;
}

.payment-icon.wechat {
  background: #07c160;
}

.payment-icon.default {
  background: #6b7280;
}

.payment-name {
  font-weight: 600;
  font-size: 0.875rem;
}

/* =====================================================
   QUANTITY INPUT
   ===================================================== */
.quantity-section {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.quantity-input {
  display: flex;
  align-items: center;
  border: 2px solid black;
  border-radius: 0.5rem;
  overflow: hidden;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s;
}

.quantity-btn:hover {
  background: var(--bg-light);
}

.quantity-input input {
  width: 60px;
  height: 40px;
  text-align: center;
  font-weight: 600;
  border: none;
  border-left: 2px solid black;
  border-right: 2px solid black;
  outline: none;
}

.submit-btn {
  flex: 1;
  padding: 0.875rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  background: black;
  border: var(--border-width) solid black;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.submit-btn:hover {
  background: #333;
}

/* =====================================================
   FORM ELEMENTS
   ===================================================== */
.form-group {
  margin-bottom: 0.875rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-label .required {
  color: #ef4444;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  outline: none;
  transition: all 0.2s;
}

.form-input:focus {
  border-color: black;
}

.form-input::placeholder {
  color: #9ca3af;
}

/* =====================================================
   PRODUCT DESCRIPTION
   ===================================================== */
.product-description {
  margin-top: 3rem;
}

.description-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid black;
  margin-bottom: 1.5rem;
}

.description-tab {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: #6b7280;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.description-tab:hover,
.description-tab.active {
  color: black;
  border-bottom-color: black;
}

.description-content {
  background: white;
  border: var(--border-width) solid black;
  border-radius: 1rem;
  box-shadow: var(--shadow-neo);
  padding: 1.5rem;
}

.description-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* Toast */
.toast-container {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}

.toast {
  background: black;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  box-shadow: var(--shadow-neo);
}

/* =====================================================
   THEME TOGGLE
   ===================================================== */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: white;
  border: 2px solid black;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.theme-toggle:hover {
  background: var(--primary);
}

.theme-toggle .material-symbols-outlined {
  font-size: 1.25rem;
}

/* Dark Mode */
.dark {
  --bg-light: #0f172a;
  --bg-dark: #f7f8f5;
}

.dark body,
body.dark {
  background-color: #0f172a;
  background-image: radial-gradient(#334155 1px, transparent 1px);
  color: #f1f5f9;
}

.dark .nav-header,
.dark header {
  background: #1e293b;
  border-color: #334155;
}

.dark .nav-brand,
.dark .nav-link,
.dark .nav-title {
  color: #f1f5f9;
}

.dark .nav-link:hover,
.dark .nav-link.active {
  background: #334155;
}

.dark .nav-action-btn,
.dark .theme-toggle {
  background: #1e293b;
  border-color: #475569;
  color: #f1f5f9;
}

.dark .nav-action-btn:hover,
.dark .theme-toggle:hover {
  background: #334155;
}

.dark .dropdown-menu {
  background: #1e293b;
  border-color: #475569;
}

.dark .dropdown-menu li a {
  color: #f1f5f9;
}

.dark .dropdown-menu li a:hover {
  background: #334155;
}

.dark .card,
.dark .product-card,
.dark .product-card-neo,
.dark .product-form-card,
.dark .product-gallery,
.dark .description-content,
.dark .modal-content {
  background: #1e293b;
  border-color: #475569;
  color: #f1f5f9;
}

.dark .card-header,
.dark .modal-header,
.dark .modal-footer {
  background: #0f172a;
  border-color: #475569;
}

.dark .product-image-wrap {
  background: #0f172a;
}

.dark .category-tab {
  background: #1e293b;
  border-color: #475569;
  color: #f1f5f9;
}

.dark .category-tab:hover,
.dark .category-tab.active {
  background: var(--primary);
  color: black;
}

.dark .search-box input,
.dark .form-control,
.dark .form-select,
.dark .form-input {
  background: #1e293b;
  border-color: #475569;
  color: #f1f5f9;
}

.dark .search-box input::placeholder,
.dark .form-input::placeholder {
  color: #94a3b8;
}

.dark footer {
  background: #0f172a;
  border-color: #334155;
}

.dark .product-title,
.dark .product-name,
.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
  color: #f1f5f9;
}

.dark .btn-close {
  background: #1e293b;
  border-color: #475569;
  color: #f1f5f9;
}

.dark .mobile-nav {
  border-color: #334155;
}

.dark .mobile-nav a {
  background: #0f172a;
  border-color: #475569;
  color: #f1f5f9;
}

.dark .mobile-nav a:hover {
  background: #334155;
}

/* =====================================================
   PAYMENT SVG ICONS
   ===================================================== */
.payments {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.payments .btn-check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payments .paymentsvg {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: all 0.2s;
}

.payments .btn-check:checked + .paymentsvg {
  border-color: #10b981;
  background: #f0fdf4;
  box-shadow: 0 0 0 2px #10b981;
}

.payments span:last-child {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.dark .payments .paymentsvg {
  background: #1e293b;
  border-color: #475569;
}

.dark .payments .btn-check:checked + .paymentsvg {
  background: #064e3b;
  border-color: #10b981;
}

/* =====================================================
   BUY PAGE - NEO BRUTALISM STYLE
   ===================================================== */

.buy-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .buy-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.product-gallery {
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
}

.product-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.product-form-card {
  background: white;
  border: 3px solid black;
  padding: 2rem;
}

.product-name {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 1.25rem 0;
  color: black;
  letter-spacing: -0.02em;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e5e7eb;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.meta-tag .material-symbols-outlined {
  font-size: 1rem;
}

.price-display {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  padding: 1.25rem 0;
  color: black;
  border-bottom: 2px solid black;
}

.price-symbol {
  font-size: 1rem;
  font-weight: 400;
}

.price-original {
  font-size: 1rem;
  font-weight: 400;
  color: #9ca3af;
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: black;
}

.form-label .required {
  color: #ef4444;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  font-family: inherit;
  border: 3px solid black;
  border-radius: 0;
  background: white;
  outline: none;
  transition: all 0.15s;
}

.form-input:focus {
  border-color: black;
  box-shadow: 4px 4px 0 black;
}

.form-input::placeholder {
  color: #9ca3af;
}

.captcha-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.captcha-row .form-input {
  flex: 1;
}

.captcha-img {
  height: 42px;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  cursor: pointer;
}

/* Payment Options */
.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
}

.payment-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.payment-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: white;
  border: 3px solid black;
  border-radius: 0;
  transition: all 0.2s;
}

.payment-item input[type="radio"]:checked + .payment-box {
  border-color: #10b981;
  box-shadow: 4px 4px 0 #10b981;
  background: #ecfdf5;
}

.payment-box .material-symbols-outlined {
  font-size: 28px;
  color: #6b7280;
}

.payment-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
}

/* Buy Actions */
.buy-actions {
  display: flex;
  gap: 1rem;
  margin: 2.5rem 0 1.5rem;
  padding-top: 2rem;
  border-top: 2px solid #e5e7eb;
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 3px solid black;
  border-radius: 0;
  overflow: hidden;
  flex-shrink: 0;
}

.qty-btn {
  width: 48px;
  height: 48px;
  background: white;
  border: none;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}

.qty-btn:hover {
  background: #f3f4f6;
}

.qty-input {
  width: 60px;
  height: 48px;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-left: 3px solid black;
  border-right: 3px solid black;
  outline: none;
  appearance: textfield;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.buy-btn {
  flex: 1;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 800;
  font-family: inherit;
  color: white;
  background: black;
  border: 3px solid black;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.buy-btn:hover {
  background: white;
  color: black;
  box-shadow: 4px 4px 0 black;
}

.buy-tip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 1rem 0 0;
  padding: 1rem;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
}

.buy-tip .material-symbols-outlined {
  font-size: 1rem;
}

/* Description Section */
.description-section {
  margin-top: 3rem;
  background: white;
  border: 3px solid black;
}

.description-header {
  border-bottom: 3px solid black;
  margin-bottom: 0;
}

.desc-tab {
  display: inline-block;
  padding: 1.25rem 2rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: black;
  background: #f9fafb;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.description-body {
  padding: 2rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #374151;
}

.description-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0;
  border: 3px solid black;
  cursor: pointer;
}

/* Dark mode for buy page */
.dark .product-form-card {
  background: #0f172a;
  border-color: #475569;
}

.dark .product-name,
.dark .price-display,
.dark .form-label {
  color: #f1f5f9;
}

.dark .product-meta {
  border-color: #334155;
}

.dark .price-display {
  border-color: #475569;
}

.dark .meta-tag {
  color: #94a3b8;
}

.dark .form-input {
  background: #1e293b;
  border-color: #475569;
  color: #f1f5f9;
}

.dark .form-input::placeholder {
  color: #64748b;
}

.dark .form-input:focus {
  border-color: #94a3b8;
  box-shadow: 4px 4px 0 #475569;
}

.dark .payment-box {
  background: #1e293b;
  border-color: #475569;
}

.dark .payment-item input[type="radio"]:checked + .payment-box {
  border-color: #10b981;
}

.dark .payment-name {
  color: #e2e8f0;
}

.dark .quantity-control {
  border-color: #475569;
}

.dark .qty-btn {
  background: #1e293b;
  color: #f1f5f9;
}

.dark .qty-btn:hover {
  background: #334155;
}

.dark .qty-input {
  background: #1e293b;
  border-color: #475569;
  color: #f1f5f9;
}

.dark .buy-btn {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #f1f5f9;
}

.dark .buy-btn:hover {
  background: #0f172a;
  color: #f1f5f9;
  box-shadow: 4px 4px 0 #475569;
}

.dark .buy-tip {
  color: #94a3b8;
  background: #1e293b;
  border-color: #334155;
}

.dark .buy-actions {
  border-color: #334155;
}

.dark .description-header {
  border-color: #475569;
}

.dark .description-section {
  background: #0f172a;
  border-color: #475569;
}

.dark .desc-tab {
  color: #f1f5f9;
  background: #1e293b;
}

.dark .description-body {
  color: #cbd5e1;
}

.dark .product-gallery {
  border-color: #475569;
}

.dark .breadcrumb-nav a {
  color: #94a3b8;
}

.dark .breadcrumb-nav a:hover {
  color: #f1f5f9;
}

.dark .breadcrumb-sep {
  color: #64748b;
}

.dark .breadcrumb-current {
  color: #e2e8f0;
}
