/* Patička tvůrce — barvy z brandu salonu přes CSS proměnné (--bg, --muted, --border / --line) */
.creator-bar {
  background: var(--creator-bar-bg, var(--bg, #f5f5f5));
  color: var(--creator-bar-muted, var(--muted, #666));
  border-top: 1px solid var(--creator-bar-border, var(--border, var(--line, rgba(0, 0, 0, 0.08))));
  font-family: var(--font-body, system-ui, sans-serif);
  font-size: 0.8125rem;
  line-height: 1.4;
}

.creator-bar a {
  color: inherit;
  text-decoration: none;
}

.creator-bar a:hover {
  color: var(--creator-bar-link-hover, var(--text, inherit));
}

.creator-bar-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}

.creator-bar-copy {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.creator-bar-copy a {
  font-weight: 600;
}

.creator-bar-credits {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.85rem;
}

.creator-bar-credits > span:first-child {
  white-space: nowrap;
}

.creator-bar-sep {
  opacity: 0.45;
  user-select: none;
}

.creator-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.15s ease;
}

.creator-brand:hover {
  opacity: 0.88;
}

.creator-brand-url {
  white-space: nowrap;
}

.creator-brand img {
  display: block;
  height: 2.5rem;
  width: auto;
  max-width: 5.5rem;
  object-fit: contain;
}

@media (max-width: 720px) {
  .creator-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1rem 1.1rem;
  }

  .creator-bar-credits {
    gap: 0.6rem 0.75rem;
  }

  .creator-brand img {
    height: 2.15rem;
  }
}
