/* Remvx — bottom cookie consent bar */

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 280;
  padding: 0.75rem 1rem;
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.cookie-bar.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-bar__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  padding: 0.85rem 1.15rem;
  border-radius: 0.85rem;
  border: 1px solid #2a2a2a;
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.cookie-bar__brand {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(239, 68, 68, 0.3);
  background: #080808;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cookie-bar__brand img {
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
}

.cookie-bar__text {
  flex: 1;
  min-width: 12rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #a1a1aa;
  margin: 0;
}

.cookie-bar__text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-bar__btn {
  padding: 0.5rem 0.9rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}

.cookie-bar__btn--primary {
  background: #ef4444;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

.cookie-bar__btn--primary:hover {
  background: #dc2626;
}

.cookie-bar__btn--ghost {
  background: transparent;
  color: #a1a1aa;
  border-color: #333;
}

.cookie-bar__btn--ghost:hover {
  color: #fff;
  border-color: #555;
}

@media (max-width: 640px) {
  .cookie-bar__actions {
    width: 100%;
  }

  .cookie-bar__btn {
    flex: 1;
    text-align: center;
  }
}
