/* ===============================
   BASE
================================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #0b0b0b;
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===============================
   SHOP LAYOUT
================================= */
.shop {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 16px 40px;
}

/* ===============================
   HEADER
================================= */
.shop-header {
  margin-bottom: 20px;
}

.shop-title {
  font-size: 24px;
  font-weight: 700;
}

/* ===============================
   FILTERS
================================= */
.shop-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.shop-filters .filter {
  padding: 8px 14px;
  border-radius: 999px;
  background: #151515;
  border: 1px solid #2a2a2a;
  font-size: 14px;
  color: #aaa;
  transition: all .2s ease;
}

.shop-filters .filter:hover {
  color: #fff;
  border-color: #444;
}

.shop-filters .filter.active {
  background: #ff7a00;
  border-color: #ff7a00;
  color: #000;
  font-weight: 600;
}

/* ===============================
   EMPTY STATE
================================= */
.shop-empty {
  padding: 40px 0;
  text-align: center;
  color: #777;
  font-size: 15px;
}

/* ===============================
   ITEMS GRID
================================= */
.shop-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

/* ===============================
   ITEM CARD
================================= */
.shop-item {
  background: #141414;
  border: 1px solid #242424;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color .2s ease, transform .2s ease;
}

.shop-item:hover {
  border-color: #ff7a00;
  transform: translateY(-2px);
}

/* ===============================
   ITEM CONTENT
================================= */
.item-content {
  margin-bottom: 12px;
}

.item-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px;
}

.item-description {
  font-size: 13px;
  line-height: 1.4;
  color: #9a9a9a;
}

/* ===============================
   ITEM FOOTER
================================= */
.item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.item-price {
  font-size: 20px;
  font-weight: 700;
  color: #ff7a00;
}

/* ===============================
   BUY BUTTON
================================= */
.item-buy {
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: #777;
  font-size: 14px;
  font-weight: 600;
  cursor: not-allowed;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 480px) {
  .shop-title {
    font-size: 20px;
  }

  .item-title {
    font-size: 16px;
  }

  .item-price {
    font-size: 18px;
  }
}


h1 {
  margin-bottom:16px;
}

.tabs {
  display:flex;
  gap:8px;
  margin-bottom:20px;
}

.tabs a {
  padding:8px 14px;
  background:#222;
  color:#fff;
  text-decoration:none;
  border-radius:10px;
  font-size:14px;
}

.tabs a.active {
  background:#ff7a00;
}

.card {
  background:#1b1b1b;
  border:1px solid #333;
  border-radius:16px;
  padding:16px;
  margin-bottom:12px;
}

.card h3 {
  margin:0 0 6px;
}

.card p {
  margin:0 0 10px;
  color:#aaa;
  font-size:14px;
}

.price {
  color:#ff7a00;
  font-weight:600;
  font-size:15px;
}
