/* ============================================
   COOKIE BANNER — Appreciart IE
   GDPR compliant, equal Accept/Decline weight
   ============================================ */

#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid #000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  font-family: Arial, sans-serif;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

#cookieBanner.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner__text {
  flex: 1;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: #000;
  letter-spacing: 0.02em;
  margin: 0;
}

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

.cookie-banner__text a:hover {
  opacity: 0.6;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid #000;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.cookie-banner__btn--decline {
  background: #fff;
  color: #000;
}

.cookie-banner__btn--decline:hover {
  background: #f5f5f5;
}

.cookie-banner__btn--accept {
  background: #000;
  color: #fff;
}

.cookie-banner__btn--accept:hover {
  background: #333;
}

/* Mobile */
@media (max-width: 768px) {
  #cookieBanner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__btn {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__btn {
    width: 100%;
  }
}
