/* ===== Pełne style banera cookies ===== */
#cookie-consent-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  transform: translateY(8px);
}

#cookie-consent-banner.is-visible {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#cookie-consent-banner .cookie-consent-inner {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.97) !important;
  color: #1f1f1f !important;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

#cookie-consent-banner p,
#cookie-consent-banner span,
#cookie-consent-banner div,
#cookie-consent-banner a {
  color: #1f1f1f !important;
}

#cookie-consent-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

#cookie-consent-banner a {
  text-decoration: underline;
}

#cookie-consent-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

#cookie-consent-banner .cookie-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 10px 16px;
  min-width: 118px;
  font-size: 13px;
  line-height: 1.2;
  background: #222;
  color: #fff !important;
}

#cookie-consent-banner .cookie-btn.secondary {
  background: #f2f2f2;
  color: #1f1f1f !important;
  border: 1px solid rgba(0,0,0,0.10);
}

@media (max-width: 767px) {
  #cookie-consent-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  #cookie-consent-banner .cookie-consent-inner {
    padding: 14px;
    display: block;
  }

  #cookie-consent-banner p {
    margin-bottom: 12px;
    font-size: 13px;
  }

  #cookie-consent-banner .cookie-actions {
    display: flex;
    width: 100%;
  }

  #cookie-consent-banner .cookie-btn {
    flex: 1 1 0;
    min-width: 0;
  }
}