body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
}


.main-header {
  /* background-color: #; */
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 997;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-right {
  display: flex;
  gap: 12px;
}

.logo {
  height: 30px;
}

.icon-btn {
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

#overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
}

#side-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 85%;
  max-width: 300px;
  background-color: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 9999;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

#side-menu.active {
  transform: translateX(0);
}

.top-bar {
  background-color: #2f3e46;
  padding: 16px;
  display: flex;
  justify-content: center;
}

.login-btn {
  background: none;
  color: white;
  border: 2px solid white;
  padding: 8px 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

.location-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: #ffffff;
  font-weight: bold;
  border-bottom: 1px solid #e0e0e0;
}

.menu-items {
  display: flex;
  flex-direction: column;
}

.menu-items a {
  padding: 16px;
  text-decoration: none;
  color: #111;
  font-size: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.menu-items a:hover {
  background-color: #f9f9f9;
  color: #4a90e2;
}

.shop-categories {
  text-align: center;
}

.shop-categories h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.category-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 9px;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 8px !important;
  font-size: 14px;
  cursor: pointer;
}

.category-item img {
  width: 90px !important;
  height: 90px !important;
  border-radius: 50%;
  background: #f0f0f0;
  object-fit: cover;
}

.category-item span {
  margin-top: 6px;
} 

.footer-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-around;
  padding: 6px 0;
  z-index: 997;
}

.footer-menu a {
  text-align: center;
  font-size: 12px;
  color: #111;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-menu a span {
  font-size: 11px;
}

.banner {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 8px;
}

.product-list {
  padding: 10px;
}

/*
.product-card {
  display: flex;
  background: #fff;
  border-radius: 8px;

  padding: 10px;

  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

.product-card h4 {
  margin: 0 0 6px;
  font-size: 16px;
}
*/
.strike {
  text-decoration: line-through;
  color: #888;
  margin-left: 6px;
}
