/* ════════════════════════════════════════════════════════════════════════
   IVARO — cookie-consent banner
   Matches the landing design system (teal ink / parchment / forest green,
   Manrope + Inter, pill buttons). Hidden until analytics.js reveals it.
   ──────────────────────────────────────────────────────────────────────── */
.cc {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: none;
}
.cc.cc--show { display: block; }

.cc-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(251, 250, 246, 0.92);
  border: 1px solid rgba(15, 41, 47, 0.12);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 22px 50px -22px rgba(15, 41, 47, 0.4);
}

.cc-text { min-width: 0; flex: 1; }
.cc-link {
  color: #2E7D32;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.cc-link:hover { color: #1c4f1f; }
.cc-title {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #0F292F;
  margin-bottom: 3px;
}
.cc-body {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #2a4e57;
  text-wrap: pretty;
}

.cc-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cc-btn {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  padding: 11px 22px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 160ms cubic-bezier(.2,.7,.2,1),
              color 160ms cubic-bezier(.2,.7,.2,1),
              transform 140ms cubic-bezier(.2,.7,.2,1);
}
.cc-btn:active { transform: translateY(1px); }
.cc-decline {
  background: transparent;
  color: #2a4e57;
  border: 1px solid rgba(15, 41, 47, 0.18);
}
.cc-decline:hover { background: rgba(15, 41, 47, 0.06); }
.cc-accept {
  background: #2E7D32;
  color: #fff;
}
.cc-accept:hover { background: #1c4f1f; }

/* Footer re-open control injected by analytics.js */
.cc-reopen {
  margin-left: 14px;
  font: inherit;
  font-size: inherit;
  color: inherit;
  opacity: 0.85;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.cc-reopen:hover { opacity: 1; }

@media (max-width: 720px) {
  .cc-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px 18px;
  }
  .cc-actions { justify-content: stretch; }
  .cc-btn { flex: 1; text-align: center; }
}
