body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-thumb {
  background: #00ff88;
  border-radius: 10px;
}

.icon {
  width: 50px;
}

.category-scroll {
  overflow-x: auto;
  display: flex;
  gap: 15px;
  padding-bottom: 10px;
  flex-wrap: nowrap;
}
.category-scroll::-webkit-scrollbar {
  height: 6px;
}
.category-scroll::-webkit-scrollbar-thumb {
  background: #00ff88;
  border-radius: 10px;
}

.category-box {
  min-width: 160px;
  background: #1e1e1e;
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.3s;
}
.category-box:hover {
  background: #00ff88;
  color: black;
}

.card {
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

body.light-mode {
  background: #f4f4f4;
  color: #111;
}
body.light-mode .navbar {
  background-color: #222 !important;
}
body.light-mode .card {
  background: #fff;
  color: #111;
}

body.dark-mode {
  background: #111;
  color: #fff;
}
body.dark-mode .navbar {
  background-color: #000 !important;
}
body.dark-mode .card {
  background: #1e1e1e;
  color: #fff;
}

#darkModeToggle {
  cursor: pointer;
}

#cartModal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 90%;
  max-width: 700px;
  background: #1e1e1e;
  color: white;
  border-radius: 10px;
  padding: 20px;
  z-index: 1050;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
#cartModal::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
#cartModal:target {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#cartModal .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  float: right;
}
#cartModal table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
#cartModal th,
#cartModal td {
  border: 1px solid #444;
  padding: 8px 12px;
  text-align: center;
}
#cartModal th {
  background: #333;
}
#cartModal td {
  background: #222;
}

.remove-item {
  background: #ff4d4d;
  border: none;
  padding: 3px 7px;
  border-radius: 5px;
  cursor: pointer;
  color: white;
  font-size: 0.8rem;
  transition: 0.3s;
}
.remove-item:hover {
  background: #ff1a1a;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.card-row-animation {
  animation: fadeSlideIn 0.4s ease forwards;
}/*# sourceMappingURL=style.min.css.map */