/* Ürün vitrin kartları & kategori blokları */
.product-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.product-showcase .pcard {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--separator);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column;
}

.product-showcase .pcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-showcase .pcard-img {
  background: var(--fill);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s4);
}

.product-showcase .pcard-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-showcase .pcard-body {
  padding: var(--s4);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-showcase .pcard-brand {
  font-size: .7rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .4rem;
}

.product-showcase .pcard-title {
  margin: 0;
  font-size: .95rem;
  font-weight: 800;
  flex: 1;
  line-height: 1.25;
}

.product-showcase .pcard-price {
  margin-top: .75rem;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--red);
}

.product-showcase .pcard-tag {
  display: inline-block;
  padding: .2rem .6rem;
  border-radius: 99px;
  font-size: .7rem;
  font-weight: 800;
  margin-top: .5rem;
}

.product-showcase .pcard-tag.jant-tag {
  background: rgba(59, 130, 246, .1);
  color: var(--blue);
}

.product-showcase .pcard-tag.lastik-tag {
  background: rgba(255, 61, 61, .1);
  color: var(--red);
}

.showcase-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
  margin-bottom: var(--s5);
}

.showcase-cat {
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: var(--s4);
  border-radius: var(--r-md);
  border: 1px solid var(--separator);
  background: var(--surface);
  text-decoration: none;
  color: inherit;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.showcase-cat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.showcase-cat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.showcase-cat h3 {
  margin: 0 0 2px;
  font-size: 1rem;
  font-weight: 700;
}

.showcase-cat p {
  margin: 0;
  font-size: .8125rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.showcase-cat .cat-arrow {
  margin-left: auto;
  font-size: 1.4rem;
  color: var(--red);
  font-weight: 900;
}

@media(max-width:700px) {
  .showcase-cats {
    grid-template-columns: 1fr;
  }
}
