@media (max-width: 900px) {
  .header {
    height: 40px !important;
    font-size: 1rem !important;
    padding: 0 0.5rem !important;
    justify-content: center !important;
  }
  .shop-title {
    font-size: 1.1rem !important;
    letter-spacing: 1px !important;
  }
  .product-grid {
    flex-direction: column !important;
    gap: 1.2rem !important;
    align-items: center !important;
  }
  .product-card {
    width: 96vw !important;
    min-width: 0 !important;
    max-width: 340px !important;
    padding: 1rem 0.5rem 0.7rem 0.5rem !important;
  }
  .product-card img {
    width: 120px !important;
    height: 120px !important;
  }
  .product-card .btn {
    font-size: 1rem !important;
    padding: 0.5rem 1rem !important;
  }
}
@media (max-width: 600px) {
  .header {
    height: 34px !important;
    font-size: 0.93rem !important;
  }
  .shop-title {
    font-size: 0.95rem !important;
  }
  .product-card {
    max-width: 99vw !important;
    padding: 0.7rem 0.2rem 0.5rem 0.2rem !important;
  }
  .product-card img {
    width: 90px !important;
    height: 90px !important;
  }
  .product-card .btn {
    font-size: 0.97rem !important;
    padding: 0.45rem 0.7rem !important;
  }
}
body {
  background: #181A1B;
  color: #e0e0e0;
  font-family: 'Fira Mono', 'Consolas', 'monospace', 'Kanit', sans-serif;
  margin: 0;
}
.header {
  background: #22262b;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #2d3237;
}
.header .shop-title {
  font-size: 2rem;
  color: #4fc3f7;
  font-weight: bold;
  letter-spacing: 2px;
}
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}
.product-card {
  background: #23272e;
  border-radius: 12px;
  box-shadow: 0 2px 12px #000a;
  width: 260px;
  padding: 1.5rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.15s, box-shadow 0.15s;
  border: 1.5px solid #2d3237;
}
.product-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px #000c;
  border-color: #4fc3f7;
}
.product-card img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 8px;
  background: #181A1B;
  margin-bottom: 1rem;
  border: 1px solid #333;
}
.product-card .name {
  font-size: 1.1rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-align: center;
}
.product-card .desc {
  font-size: 0.95rem;
  color: #b0b0b0;
  margin-bottom: 0.7rem;
  text-align: center;
}
.product-card .price {
  color: #4fc3f7;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.product-card .sold {
  color: #8bc34a;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}
.product-card .btn {
  background: #4fc3f7;
  color: #181A1B;
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: auto;
}
.product-card .btn:hover {
  background: #0288d1;
  color: #fff;
}
::-webkit-scrollbar {
  width: 10px;
  background: #23272e;
}
::-webkit-scrollbar-thumb {
  background: #2d3237;
  border-radius: 8px;
}
