/* --- Ürün Kategori Sayfası Stilleri --- */
.content-section {
  padding: 5%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 700px;
  margin: 0 auto;
}


.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 320px);
  gap: 30px;
  justify-content: center;
}

.product-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease-in-out;
  display: flex; /* Eşit yükseklik için */
  flex-direction: column; /* Eşit yükseklik için */
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border-color: rgba(184, 115, 51, 0.5);
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: flex; /* Eşit yükseklik için */
  flex-direction: column; /* Eşit yükseklik için */
  height: 100%;
}

.product-card-image {
  width: 100%;
  aspect-ratio: 1 / 1; /* Görselleri kare yapar */
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Görseli bozmadan sığdırır */
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-content {
  padding: 25px;
  flex-grow: 1; /* Kartın alt kısmına kadar uzanmasını sağlar */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Üst ve alt içeriği ayırır */
}

.product-card-top h3 {
  font-size: 1.4rem;
  margin: 0 0 15px 0;
  color: var(--text-primary);
  line-height: 1.4;
}

.product-card-top p {
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
}

.product-card-bottom {
  margin-top: 20px;
}

.product-card-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 15px;
}

.product-card-price .old-price {
  font-size: 1.1rem;
  color: var(--text-dim);
  text-decoration: line-through;
  opacity: 0.7;
}

.product-card-price .current-price {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
}

.product-card-button {
  display: inline-block;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.product-card-button i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-button {
  background: var(--dynamic-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-card:hover .product-card-button i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .product-grid {
    /* Mobil ve tabletlerde tek sütunlu bir yapıya geç ve tam genişlik kullan */
    grid-template-columns: 1fr;
  }
}