/* buy.css */

.market-filters {
  display: flex; gap: 8px; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 4px;
}

.filter-btn {
  padding: 8px 16px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  background: transparent; border: 1px solid transparent;
  transition: all 0.2s ease; flex-shrink: 0;
}

.filter-btn:hover { background: rgba(0,0,0,0.02); color: var(--text-main); }
.filter-btn.active {
  background: white; color: var(--color-primary-dark);
  box-shadow: var(--shadow-sm); border-color: var(--border-color);
}

.product-card {
  overflow: hidden; padding: 0; display: flex; flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.product-img-wrapper {
  position: relative; height: 180px; width: 100%; overflow: hidden;
  background: var(--bg-main);
}

.product-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img { transform: scale(1.05); }

.product-tag {
  position: absolute; top: 12px; left: 12px; z-index: 10;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(4px);
  padding: 4px 10px; border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 700; color: var(--color-primary-dark);
  text-transform: uppercase; letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

.btn-buy {
  background: var(--color-primary); color: white; border-color: var(--color-primary);
}
.btn-buy:hover { background: var(--color-primary-dark); color: white; transform: scale(1.1); }

.text-xl { font-size: 20px; }
.tracking-wider { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }
