/* A&T Cookie Consent Popup */
.at-cookie-popup {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  width: 360px;
  max-width: calc(100% - 32px);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(14, 37, 70, 0.18);
  padding: 24px;
  text-align: center;
  font-family: inherit;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.at-cookie-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.at-cookie-popup__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.at-cookie-popup__logo img {
  height: 32px;
  width: auto;
}

.at-cookie-popup__text {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
  color: #585960;
}

.at-cookie-popup__text a {
  color: var(--at-blue-300, #2869c7);
  text-decoration: underline;
}

.at-cookie-popup__text a:hover {
  color: var(--at-orange, #ff7f26);
}

.at-cookie-popup__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.at-cookie-popup .btn-default {
  cursor: pointer;
}

@media (max-width: 767px) {
  .at-cookie-popup {
    right: auto;
    left: 50%;
    bottom: 16px;
    padding: 20px;
    transform: translateX(-50%) translateY(16px);
  }

  .at-cookie-popup.is-visible {
    transform: translateX(-50%) translateY(0);
  }
}
