.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  padding: 1rem;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

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

.cookie-consent__inner {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.cookie-consent__text {
  flex: 1 1 280px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.7);
}

.cookie-consent__text a {
  color: var(--bs-primary, #00204a);
  font-weight: 600;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-consent__btn {
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.cookie-consent__btn:hover {
  opacity: 0.9;
}

.cookie-consent__btn--accept {
  background: var(--bs-primary, #00204a);
  color: #fff;
}

.cookie-consent__btn--settings {
  background: #f0f4f8;
  color: #1a1a1a;
}

@media (max-width: 575.98px) {
  .cookie-consent {
    padding: 0.75rem;
  }

  .cookie-consent__inner {
    padding: 1rem;
  }

  .cookie-consent__actions {
    width: 100%;
  }

  .cookie-consent__btn {
    flex: 1;
  }
}
