.rus-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0 32px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.rus-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 24px;
  letter-spacing: -0.3px;
}

/* Outer: ok butonları + viewport */
.rus-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Viewport: taşanı gizle */
.rus-viewport {
  overflow: hidden;
  flex: 1;
  border-radius: 4px;
}

/* Track: flex ile yan yana */
.rus-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Slide genişliği: CSS custom property ile JS'den set edilir */
.rus-slide {
  flex: 0 0 var(--rus-slide-w, 240px);
  width: var(--rus-slide-w, 240px);
}

/* Kart */
.rus-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0f0f0;
  transition: box-shadow 0.2s, transform 0.2s;
}

.rus-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}

/* Görsel */
.rus-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f8f8f8;
}

.rus-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.rus-card:hover .rus-img-wrap img {
  transform: scale(1.04);
}

/* Kart badge */
.rus-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Bilgi */
.rus-info {
  padding: 12px 14px 14px;
}

.rus-name {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rus-price {
  font-size: 14px;
  font-weight: 700;
  color: #2c2c2c;
  margin: 0;
}

.rus-price del {
  color: #aaa;
  font-weight: 400;
  font-size: 12px;
  margin-right: 4px;
}

.rus-price ins {
  text-decoration: none;
  color: #e74c3c;
}

/* Ok butonları */
.rus-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  transition: all 0.2s;
  z-index: 2;
}

.rus-arrow:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

.rus-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* Dots */
.rus-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.rus-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d0d0d0;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}

.rus-dot.active {
  background: #1a1a1a;
  width: 20px;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .rus-arrow {
    display: none;
  }
  .rus-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .rus-viewport::-webkit-scrollbar { display: none; }
  .rus-slide {
    scroll-snap-align: start;
  }
  .rus-track {
    transition: none;
  }
}

/* Etiket renkleri (frontend) */
.rus-etiket-badge { display: inline-block; }
.rus-etiket-yeni           { background: #e8f5e9; color: #2e7d32; }
.rus-etiket-cok-satan      { background: #fff3e0; color: #e65100; }
.rus-etiket-ucretsiz-kargo { background: #e3f2fd; color: #1565c0; }
.rus-etiket-indirimli      { background: #fce4ec; color: #c62828; }
.rus-etiket-one-cikan      { background: #f3e5f5; color: #6a1b9a; }
.rus-etiket-sinirli-stok   { background: #fff8e1; color: #f57f17; }

/* Rating */
.rus-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 4px 0 6px;
}
.rus-stars { display: flex; align-items: center; gap: 1px; }
.rus-review-count { font-size: 11px; color: #999; }

/* Görüntülenme badge - sağ üst */
.rus-views-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
  z-index: 1;
  letter-spacing: 0.2px;
}

/* Sosyal kanıt mesajı - dönen */
.rus-kanit-wrap {
  position: relative;
  height: 18px;
  margin: 5px 0 0;
  overflow: hidden;
}

.rus-kanit {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 11px;
  font-weight: 700;
  color: #e74c3c;
  white-space: nowrap;
  opacity: 0;
  animation: rusKanitDon 9s infinite;
}

.rus-kanit-1 { animation-delay: 0s; }
.rus-kanit-2 { animation-delay: 3s; }
.rus-kanit-3 { animation-delay: 6s; }

@keyframes rusKanitDon {
  0%        { opacity: 0; transform: translateY(6px); }
  8%        { opacity: 1; transform: translateY(0); }
  28%       { opacity: 1; transform: translateY(0); }
  36%       { opacity: 0; transform: translateY(-6px); }
  100%      { opacity: 0; }
}
