/* ===== Ürün + Kategori Showcase ===== */
.showcase-section {
  padding: 0 0 44px;
  background: #f8fafc;
}

.showcase-container {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px;
  align-items: stretch;
}

.showcase-grid--reverse {
  grid-template-columns: 300px minmax(0, 1fr);
}

/* ----- Sol: 2x2 Ürün Kartları ----- */
.showcase-products {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  padding: 22px 22px 20px;
}

.showcase-products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.showcase-products-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a202c;
  letter-spacing: -0.01em;
}

.showcase-products-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: #718096;
  margin-top: 2px;
}

.showcase-products-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: #4a5568;
  white-space: nowrap;
  transition: color 0.2s;
}

.showcase-products-link:hover {
  color: #92c866;
}

.showcase-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.showcase-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 10px;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.showcase-card:hover {
  background: #ffffff;
  border-color: #dde4ec;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.showcase-card-media {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 8px;
  overflow: hidden;
  background: #edf2f7;
}

.showcase-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.showcase-card:hover .showcase-card-media img {
  transform: scale(1.05);
}

.showcase-card-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.showcase-card-cat {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #a0aec0;
  margin-bottom: 4px;
}

.showcase-card-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #2d3748;
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.showcase-card-name a {
  color: inherit;
  text-decoration: none;
}

.showcase-card:hover .showcase-card-name a {
  color: #1a202c;
}

.showcase-card-pricing {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
}

.showcase-card-price {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #2d3748;
}

.showcase-card-price-old {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #a0aec0;
  text-decoration: line-through;
}

.showcase-card-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 6px;
  font-size: 0.5625rem;
  font-weight: 700;
  color: #ffffff;
  background: #ff6600;
  border-radius: 4px;
  line-height: 1.3;
  width: fit-content;
}

.showcase-card-badge--new {
  background: #2d5be3;
}

/* ----- Sağ: Tek Kategori Banner ----- */
.category-banner-side {
  display: flex;
  height: 100%;
}

.category-banner {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8edf3;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  transition: box-shadow 0.25s, transform 0.25s;
}

.category-banner--featured {
  min-height: 100%;
}

.category-banner:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.category-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.category-banner:hover img {
  transform: scale(1.05);
}

.category-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.15) 0%,
    rgba(15, 23, 42, 0.55) 55%,
    rgba(15, 23, 42, 0.82) 100%
  );
  z-index: 1;
}

.category-banner-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 18px;
}

.category-banner-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #92c866;
  margin-bottom: 6px;
}

.category-banner-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.category-banner-desc {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  margin-bottom: 10px;
}

.category-banner-count {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 14px;
}

.category-banner-cta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2d3748;
  background: #ffffff;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.category-banner:hover .category-banner-cta {
  background: #92c866;
  color: #ffffff;
}

/* ===== Responsive ===== */
@media (max-width: 1292px) {
  .showcase-container {
    padding: 0 16px;
  }
}

@media (max-width: 1024px) {
  .showcase-grid,
  .showcase-grid--reverse {
    grid-template-columns: 1fr;
  }

  .category-banner-side {
    order: -1;
  }

  .showcase-grid--reverse .showcase-products {
    order: 0;
  }

  .category-banner--featured {
    min-height: 220px;
  }
}

@media (max-width: 600px) {
  .showcase-products-grid {
    grid-template-columns: 1fr;
  }

  .showcase-products {
    padding: 18px 16px 16px;
  }

  .showcase-card-media {
    width: 76px;
    height: 76px;
  }

  .category-banner--featured {
    min-height: 200px;
  }

  .category-banner-name {
    font-size: 1.125rem;
  }
}
