/* ===== TOP BAR — Premium ===== */
.top-bar {
  background: linear-gradient(180deg, #1a2e0a 0%, #2a4a0e 100%);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  font-size: var(--font-size-sm);
  padding: 10px 0;
  position: relative;
  z-index: 1001;
}

.top-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 0;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  transition: color var(--transition);
  padding: 0 var(--spacing-lg);
  border-right: 1px solid rgba(255,206,2,0.2);
}

.top-bar__item:first-child {
  padding-left: 0;
}

.top-bar__item:last-child {
  border-right: none;
}

.top-bar__item:hover {
  color: #fff;
}

.top-bar__item svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* top-bar__badge */
.top-bar__badge {

  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,206,2,0.1);
  border: 1px solid rgba(255,206,2,0.25);
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: var(--font-weight-bold);
  font-size: 13px;
  letter-spacing: 0.3px;
  color: var(--color-accent);
  margin-left: var(--spacing-lg);
}

.top-bar__badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.top-bar__hours {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  padding-right: var(--spacing-md);
  border-right: 1px solid rgba(255,206,2,0.2);
  margin-right: var(--spacing-sm);
}

.top-bar__hours svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.top-bar__social {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.top-bar__social a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition), filter var(--transition);
  display: flex;
  align-items: center;
}

.top-bar__social a:hover {
  color: var(--color-accent);
  filter: drop-shadow(0 0 4px rgba(255,206,2,0.4));
}

.top-bar__social svg {
  width: 16px;
  height: 14px;
  fill: currentColor;
}

@media (max-width: 1023px) {
  .top-bar__left {
    gap: 0;
  }

  
  .top-bar__badge, .top-bar__right,
  .top-bar__hours {
    display: none;
  }

  .top-bar__item {
    padding: 0 var(--spacing-md);
    border-right: 1px solid rgba(255,206,2,0.15);
  }

  .top-bar__inner {
    justify-content: center;
  }
}


/* === Mobile Fix === */
@media (max-width: 480px) {
  .top-bar__item:nth-child(2) { display: none; }
  .top-bar__badge { display: flex !important; font-size: 13px; font-weight: 700; padding: 0; margin-left: 0; white-space: nowrap; border: none; border-radius: 0; background: none; color: #FFCE02 !important; font-family: inherit; gap: 0; }
  .top-bar__badge svg { display: none !important; }
  .top-bar__right { display: flex !important; }
  .top-bar__social { display: none !important; }
  .top-bar__hours { display: flex !important; border-right: none !important; margin-right: 0 !important; padding-right: 0 !important; font-size: 11px; }
  .top-bar__item { border-right: none !important; padding: 0 !important; font-size: 13px; }
  .top-bar__inner { padding: 0 12px; justify-content: space-between !important; }
  .top-bar { padding: 7px 0; }
}

/* Divider nur auf Mobile sichtbar */
.top-bar__divider { display: none; }
@media (max-width: 480px) {
  .top-bar__divider { display: inline !important; }
}
