/* Baner cookies / Google Consent Mode v2 - naprawiekomputer.pl */
.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: 980px;
  margin: 0 auto;
  background: #111827;
  color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  padding: 18px;
  font-family: Arial, sans-serif;
  line-height: 1.45;
}

.cookie-consent__title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}

.cookie-consent__text {
  font-size: 14px;
  margin: 0 0 14px 0;
}

.cookie-consent__text a {
  color: #93c5fd;
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-consent__button {
  border: 0;
  border-radius: 9px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
}

.cookie-consent__button--accept {
  background: #22c55e;
  color: #052e16;
}

.cookie-consent__button--reject {
  background: #374151;
  color: #ffffff;
}

.cookie-consent__button--settings {
  background: transparent;
  color: #ffffff;
  border: 1px solid #6b7280;
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent-preferences {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #374151;
  font-size: 14px;
}

.cookie-consent-preferences label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  .cookie-consent {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 14px;
  }

  .cookie-consent__actions {
    flex-direction: column;
  }

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