/* CMP RGPD CPO — Story 5.5 */
.cpo-cmp {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  font:
    14px/1.4 system-ui,
    sans-serif;
  color: #222;
}
.cpo-cmp__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 16px;
}
@media (max-width: 600px) {
  .cpo-cmp__inner {
    max-width: 100%;
  }
}
.cpo-cmp__text {
  margin: 0 0 12px;
}
.cpo-cmp__text a {
  color: #c2410c;
}
.cpo-cmp__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.cpo-cmp__btn {
  flex: 1 1 auto;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid #c2410c;
  background: #fff;
  color: #c2410c;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.cpo-cmp__btn--primary {
  background: #c2410c;
  color: #fff;
}
.cpo-cmp__btn--link {
  flex: 0 0 auto;
  background: none;
  border: none;
  color: #555;
  text-decoration: underline;
  font-weight: 400;
}
.cpo-cmp__btn:focus-visible {
  outline: 2px solid #c2410c;
  outline-offset: 2px;
}
.cpo-cmp__panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}
.cpo-cmp__panel label {
  display: flex;
  align-items: center;
  gap: 8px;
}
