/* Sonsuz kayan bant: iki eş genişlikte grup boşluksuz birbirini takip eder. */
.ticker > .ticker-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: stretch;
  gap: 0;
  animation: ticker-loop 18s linear infinite;
}

.ticker .ticker-group {
  min-width: 100vw;
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 28px;
  flex-shrink: 0;
}

.ticker .ticker-group span { white-space: nowrap; }

@keyframes ticker-loop {
  to { transform: translateX(-50%); }
}

/* Masaüstünde yüksek çözünürlük, mobilde hafif kaynak. */
.hero-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-orbit img {
  width: 64px;
  height: 64px;
  border-radius: 15px;
}

@media (max-width: 640px) {
  .hero-picture img { object-position: 64% center; }
  .ticker .ticker-group { min-width: max-content; padding: 0 22px; }

  /* Mobil sepet: iç içe iki daire yerine sade çanta ikonu ve küçük sayaç. */
  .header-actions .cart-button {
    position: relative;
    width: 42px;
    height: 42px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
  }

  .header-actions .cart-button::before {
    content: "";
    width: 17px;
    height: 15px;
    margin-top: 3px;
    border: 1.5px solid var(--ink);
    border-radius: 3px;
  }

  .header-actions .cart-button::after {
    content: "";
    position: absolute;
    top: 10px;
    width: 8px;
    height: 6px;
    border: 1.5px solid var(--ink);
    border-bottom: 0;
    border-radius: 7px 7px 0 0;
  }

  .header-actions .cart-button > b {
    position: absolute;
    top: 2px;
    right: 0;
    width: 17px;
    min-width: 17px;
    height: 17px;
    padding: 0;
    border: 2px solid var(--paper);
    background: var(--blue);
    color: #fff;
    font-size: .52rem;
    line-height: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker > .ticker-track { animation: none; }
}
