.novedades-topbar {
  background-color: var(--color-accent);
  color: var(--color-light);
  padding: var(--space-2) 0;
  position: relative;
  z-index: calc(var(--z-sticky) + 1);
}

.novedades-topbar .container {
  justify-content: center;
  gap: var(--space-3);
}

.novedades-topbar .material-symbols-outlined {
  font-size: 1.1rem;
}

.novedades-topbar-text {
  font-size: var(--text-sm);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.novedades-topbar-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-light);
  opacity: 0.5;
  flex-shrink: 0;
}

.novedades-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--color-light);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-1) var(--space-3);
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  transition: background-color var(--transition-fast);
  white-space: nowrap;
}

.novedades-topbar-link:hover {
  background-color: rgba(255, 255, 255, 0.25);
  color: var(--color-light);
}

.novedades-topbar-link .material-symbols-outlined {
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .novedades-topbar-text {
    max-width: 220px;
  }
}

@media (max-width: 640px) {
  .novedades-topbar .container {
    gap: var(--space-2);
  }

  .novedades-topbar-text {
    max-width: 150px;
    font-size: var(--text-xs);
  }

  .novedades-topbar-link {
    font-size: var(--text-xs);
    padding: var(--space-1) var(--space-2);
  }

  .novedades-topbar .material-symbols-outlined {
    font-size: 1rem;
  }
}
