
/* Cookie consent banner (PECR/DUAA 2025) */
.cc-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  padding: 16px;
  pointer-events: none;
}
.cc-banner.cc-closed { display: none; }
.cc-surface {
  pointer-events: auto;
  width: 100%;
  max-width: 640px;
  background: #14201f;
  color: #f2efe6;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  padding: 20px 22px;
}
.cc-surface.cc-hidden { display: none; }
.cc-text h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}
.cc-text p {
  margin: 0 0 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #d6d2c4;
}
.cc-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.cc-btn {
  appearance: none;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(242, 239, 230, 0.55);
  background: transparent;
  color: #f2efe6;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.cc-btn:hover,
.cc-btn:focus-visible {
  background: rgba(242, 239, 230, 0.12);
  border-color: #f2efe6;
}
.cc-category {
  border-top: 1px solid rgba(242, 239, 230, 0.18);
  padding: 14px 0;
}
.cc-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cc-category-name {
  font-weight: 700;
  font-size: 0.92rem;
}
.cc-fixed-on {
  font-size: 0.78rem;
  font-weight: 600;
  color: #a9c9b4;
  border: 1px solid rgba(169, 201, 180, 0.5);
  border-radius: 999px;
  padding: 3px 10px;
}
.cc-category-desc {
  margin: 8px 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #b9b5a7;
}
.cc-toggle {
  appearance: none;
  cursor: pointer;
  border: none;
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: rgba(242, 239, 230, 0.25);
  position: relative;
  padding: 0;
  flex: 0 0 auto;
}
.cc-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f2efe6;
  transition: left 0.15s ease;
}
.cc-toggle.cc-on { background: #4fd8ee; }
.cc-toggle.cc-on .cc-toggle-knob { left: 21px; background: #14201f; }
@media (max-width: 560px) {
  .cc-surface { padding: 16px; }
  .cc-buttons { justify-content: stretch; }
  .cc-btn { flex: 1 1 auto; text-align: center; }
}
