@import url('https://fonts.cdnfonts.com/css/sofia-sans');
@import url('https://fonts.cdnfonts.com/css/eingrantch-mono');
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'ProFontWindows', sans-serif;
  background: #0d0d0d;
  color: #fff;
  max-width: 480px;
  margin-inline: auto;
}
.no-stock-wrapper {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}
.no-stock {
  font-size: 18px;
  opacity: 0.6;
}
/* ================= HEADER ================= */
.store-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: #111;
  border-bottom: 2px solid #ff7a00;
}
.store-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ff7a00;
}
.store-title {
  display: flex;
  flex-direction: column;
}
.store-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.store-name-text {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}
.verified-badge {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  margin-left: -6px;
  object-fit: contain;
}
.subtitle {
  font-size: 12px;
  color: #ff7a00;
  margin-top: 4px;
}
/* ================= CATEGORY ================= */
.category-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #0d0d0d;
}

.scroll-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #ff7a00;
  background: #161616;
  color: #ff7a00;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.scroll-btn:hover {
  background: #ff7a00;
  color: #000;
}

.scroll-btn:active {
  transform: scale(0.95);
}

.scroll-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.category-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  flex: 1;
}

.category-bar::-webkit-scrollbar {
  display: none;
}

.category-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #222;
  color: #fff;
  border: 1px solid #333;
  cursor: pointer;
  white-space: nowrap;
  font-size: 13px;
  transition: all 0.2s;
}

.category-btn:hover {
  border-color: #ff7a00;
}

.category-btn img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: cover;
}

.category-btn.active {
  background: #ff7a00;
  color: #000;
  border-color: #ff7a00;
}

/* ================= GRID ================= */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 14px;
}

/* ================= CARD ================= */
.product-card {
  background: #161616;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 0 0 1px #222;
  display: flex;
  flex-direction: column;
}

.product-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 15px;
  font-weight: bold;
  margin: 4px 0;
  font-family: 'ProFontWindows', sans-serif;
  color: #fff;
  letter-spacing: 0.5px;
}

.price {
  font-family: 'Eingrantch Mono', sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #ff7a00;
  letter-spacing: 0px;
  margin-bottom: 6px;
  text-shadow: 0 0 10px rgba(255, 122, 0, 0.3);
}

.stock {
  font-family: 'Sofia Sans', sans-serif;
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 10px;
  color: #ccc;
}

/* ================= BUTTON ================= */
button {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  background: #ff7a00;
  color: #000;
  cursor: pointer;
  transition: all 0.2s;
}

button:hover {
  opacity: 0.9;
}

button:disabled {
  background: #333;
  color: #aaa;
  cursor: not-allowed;
}

/* ================= TABLET+ ================= */
@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}