/* CollectWisely cookie consent banner */
.cw-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 99999;
  background: #ffffff;
  border-top: 3px solid #0f766e;
  box-shadow: 0 -6px 26px rgba(2, 6, 23, .16);
  transform: translateY(110%);
  transition: transform .28s ease;
}
.cw-consent--in { transform: translateY(0); }

.cw-consent-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.cw-consent-text { flex: 1; min-width: 0; }
.cw-consent-text strong {
  display: block;
  font-size: 15px;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.cw-consent-text p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #475569;
}
.cw-consent-text a { color: #0f766e; text-decoration: underline; }

.cw-consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* Reject and Accept are deliberately the same size, weight and visual
   prominence - a de-emphasised reject button is not valid consent. */
.cw-consent-btn {
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 9px;
  cursor: pointer;
  border: 1px solid #0f766e;
  min-width: 150px;
  transition: background .15s, color .15s;
}
.cw-consent-reject { background: #fff; color: #0f766e; }
.cw-consent-reject:hover { background: #f0fdfa; }
.cw-consent-accept { background: #0f766e; color: #fff; }
.cw-consent-accept:hover { background: #0b5e58; }

/* Footer "Cookie settings" trigger */
.cw-cookie-settings-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
}

@media (max-width: 760px) {
  .cw-consent-inner { flex-direction: column; align-items: stretch; gap: 14px; padding: 16px; }
  .cw-consent-actions { flex-direction: column-reverse; }
  .cw-consent-btn { width: 100%; }
}
