/* =============================
   🛍️ Ürün Grid – Trendyol Stili
   ============================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* Kart kutusu */
.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Görsel oranı sabit */
.product-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.3; /* Trendyol oranı */
  overflow: hidden;
  background: #f8f8f8;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

/* İndirim etiketi */
.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff3b30;
  color: #fff;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
}

/* Hover’da çıkan buton */
.add-to-cart {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  background: #ff6600;
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 10px 0;
  transition: all 0.3s ease;
  font-size: 14px;
  opacity: 0;
}

.product-card:hover .add-to-cart {
  bottom: 0;
  opacity: 1;
}

/* Ürün bilgileri */
.product-info {
  padding: 12px 14px 14px;
}

.product-name {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 6px;
}

.price-section {
  display: flex;
  align-items: center;
  gap: 6px;
}

.price {
  color: #ff6600;
  font-size: 17px;
  font-weight: 700;
}

.old-price {
  color: #aaa;
  text-decoration: line-through;
  font-size: 14px;
}

.stock-info {
  font-size: 13px;
  color: #777;
  margin-top: 4px;
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-img {
    aspect-ratio: 1 / 1.2;
  }
}
/* === Cart badge (mini sepet) – animasyonlu === */
#cart-count {
  background: linear-gradient(135deg, #ff6600, #ffa040);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  font-size: 0.75rem;
  padding: 4px 7px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  transform-origin: center;
  animation: pop 0.3s ease;
  border: 2px solid #fff;           /* opsiyonel parlak çerçeve */
  text-shadow: 0 0 2px rgba(0,0,0,0.25);
}

@keyframes pop {
  0%   { transform: scale(0.5); opacity: 0.3; }
  70%  { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(1); }
}
