/* Üst bilgi şeridi: kesintisiz kayan duyurular */
.topbar{overflow:hidden}
.topbar .topbar__inner{
  display:block;
  width:min(var(--container),100%);
  max-width:none;
  overflow:hidden;
}
.topbar__marquee{
  display:flex;
  width:max-content;
  height:39px;
  align-items:center;
  animation:topbar-marquee 24s linear infinite;
  will-change:transform;
}
.topbar__set{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:0;
  min-width:max-content;
  padding:0;
  white-space:nowrap;
}
.topbar__set>*{display:inline-flex;align-items:center;gap:5px;padding-right:10px}
.topbar__set>*::before{content:"•";color:var(--gold);font-size:14px;line-height:1}
.topbar:hover .topbar__marquee{animation-play-state:paused}
@keyframes topbar-marquee{to{transform:translateX(-33.333333%)}}

/* Favoriler ve sepet daima headerın sağ ucunda kalır. */
.header__actions{
  grid-column:3;
  justify-self:end;
  margin-left:auto;
}
.cart-icon{
  display:inline-grid;
  place-items:center;
  font-family:"Segoe UI Emoji","Apple Color Emoji",sans-serif;
  font-size:21px;
  line-height:1;
}
.header__actions .cart-link{display:inline-grid}

@media(max-width:576px){
  .topbar__set{gap:0;padding:0;font-size:10.5px}
  .topbar__set>*{gap:4px;padding-right:7px}
  .topbar__marquee{animation-duration:18s}
  .header__actions .cart-link{display:inline-grid!important}
  .header__actions{gap:12px}
  .cart-icon{font-size:20px}
  .header__main>.logo{transform:translateX(10px)}
}

@media(prefers-reduced-motion:reduce){
  .topbar__marquee{animation-play-state:paused}
}
