/* ============================================
   Cookie Consent Banner
   ============================================ */
#arg-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #ffffff;
  color: #111111;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.55;
  animation: arg-cookie-slide-up 0.3s ease-out;
}

@keyframes arg-cookie-slide-up {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

#arg-cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 220px;
  color: #111111;
}

#arg-cookie-banner a {
  color: #7904FD;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#arg-cookie-banner a:hover {
  opacity: 0.75;
}

.arg-cookie-actions {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  flex-shrink: 0;
}

.arg-cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.375rem;
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.18s, border-color 0.18s;
  white-space: nowrap;
  font-family: inherit;
  letter-spacing: 0.01em;
}

.arg-cookie-btn--accept {
  background: linear-gradient(90deg, #F0060D 0%, #C924D7 49%, #7904FD 100%);
  color: #ffffff;
}

.arg-cookie-btn--accept:hover {
  opacity: 0.82;
}

.arg-cookie-btn--decline {
  background: transparent;
  color: #111111;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.arg-cookie-btn--decline:hover {
  border-color: rgba(0, 0, 0, 0.45);
}

@media (max-width: 600px) {
  #arg-cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1.75rem;
  }

  .arg-cookie-actions {
    width: 100%;
  }

  .arg-cookie-btn {
    flex: 1;
  }
}
