/* MyTicaret Admin — mağaza rozetleri (ana site + panel + login) */
.mt-app-stores {
  --mt-store-gap: .55rem;
}
.mt-app-stores__title {
  margin: 0 0 .65rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .85;
}
.mt-app-stores__row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--mt-store-gap);
  align-items: stretch;
}
.mt-store-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 44px;
  padding: .45rem .85rem .45rem .7rem;
  border-radius: 10px;
  text-decoration: none !important;
  line-height: 1.15;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.mt-store-badge__icon {
  display: inline-flex;
  flex-shrink: 0;
}
.mt-store-badge__text {
  display: flex;
  flex-direction: column;
  gap: .05rem;
  min-width: 0;
}
.mt-store-badge__eyebrow {
  font-size: .65rem;
  font-weight: 600;
  opacity: .75;
}
.mt-store-badge__name {
  font-size: .85rem;
  font-weight: 700;
}
.mt-store-badge--soon {
  cursor: default;
  opacity: .72;
  pointer-events: none;
}

/* Dark footer (ana site) */
.mt-app-stores--dark .mt-app-stores__title { color: #fff; }
.mt-app-stores--dark .mt-store-badge {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
}
.mt-app-stores--dark a.mt-store-badge:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .32);
  transform: translateY(-1px);
  color: #fff;
}

/* Light (müşteri paneli footer) */
.mt-app-stores--light .mt-app-stores__title {
  color: #64748b;
  text-align: center;
}
.mt-app-stores--light .mt-app-stores__row {
  justify-content: center;
}
.mt-app-stores--light .mt-store-badge {
  background: #fff;
  border-color: #e2e8f0;
  color: #0f172a;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
}
.mt-app-stores--light a.mt-store-badge:hover {
  border-color: #94a3b8;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .08);
  transform: translateY(-1px);
  color: #0f172a;
}

/* Auth / login */
.mt-app-stores--auth {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px dashed rgba(15, 23, 42, .08);
}
.mt-app-stores--auth .mt-app-stores__title {
  color: #64748b;
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  font-size: .85rem;
  font-weight: 600;
  opacity: 1;
}
.mt-app-stores--auth .mt-app-stores__row {
  justify-content: center;
}
.mt-app-stores--auth .mt-store-badge {
  background: #0f172a;
  border-color: #0f172a;
  color: #fff;
}
.mt-app-stores--auth a.mt-store-badge:hover {
  background: #1e293b;
  border-color: #1e293b;
  color: #fff;
  transform: translateY(-1px);
}
.mt-app-stores--auth .mt-store-badge--soon {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #475569;
}
