/* Mağaza Detay Sayfası - Minimal Custom CSS */

/* Kategori linkleri */
.list-unstyled a:hover {
  color: var(--bs-primary) !important;
  padding-left: 0.25rem;
  transition: all 0.2s ease;
}

/* Görünüm değiştirici butonlar */
.btn-group .btn-outline-secondary.active {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: white;
}

/* Ürün kartları - border-radius kaldırıldı */
.card {
  border-radius: 0;
}

.card img {
  border-radius: 0;
}

/* Ürün kartları grid/list görünümü */
.products-list .col-md-3 {
  width: 100%;
  max-width: 100%;
}

.products-list .card {
  flex-direction: row;
}

.products-list .card img {
  width: 150px;
  height: 150px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .products-list .card {
    flex-direction: column;
  }
  
  .products-list .card img {
    width: 100%;
    height: 200px;
  }
}