.prod-groups { padding: 70px 0; background: #fff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 18px; }

.grid {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 28px;
  align-items: center;
}

.kicker {
  font-weight: 700;
  color: var(--text); /* görseldeki kırmızı vurgu gibi */
  letter-spacing: .2px;
  margin-bottom: 10px;
}

.intro h2 { font-size: clamp(26px, 3.2vw, 40px); line-height: 1.1; margin: 0 0 12px; }
.intro p { color: #4b5563; font-size: 16px; line-height: 1.7; margin: 0 0 18px; }

.btn {
  display: inline-block;
  background: var(--text);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

.slider { position: relative; }
.viewport {
  overflow: hidden;
  border-radius: 14px;
}

.card .thumb {
  height: 320px;              
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
}


.track {
  display: flex;
  gap: 16px;
  transition: transform 360ms ease;
  will-change: transform;
  padding: 6px; /* kartların gölge payı */
}

.card {
 
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid #eef2f7;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .08);

}

.thumb { aspect-ratio: 4/3; background: #f3f4f6; }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  background: #f8fafc;
}

.accent { width: 4px; height: 20px; background: var(--text); border-radius: 999px; }
.title { font-weight: 800; }

.card:hover { transform: translateY(-2px); transition: 180ms ease; }

.nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 26px;
  line-height: 0;
  z-index: 2;
}

.prev { left: -14px; }
.next { right: -14px; }

.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.dots button {
  width: 9px; height: 9px;
  border-radius: 999px;
  border: 0;
  background: #d1d5db;
  cursor: pointer;
}
.dots button[aria-selected="true"] { background: var(--text); }

/* Responsive */
@media (max-width: 992px) {
  .grid { grid-template-columns: 1fr; }
  .card { flex-basis: calc((100% - 16px) / 2); } /* 2’li */
  .prev { left: 6px; } .next { right: 6px; }
}
@media (max-width: 560px) {
  .card { flex-basis: 100%; } /* 1’li */
}