.voyqa-consent {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: var(--voyqa-z-consent);
  max-width: 560px;
  margin-inline: auto;
  background: rgba(255,250,241,.94);
  border: 1px solid rgba(201,154,69,.65);
  border-radius: 16px;
  box-shadow: var(--voyqa-shadow-lift);
  padding: 24px 26px;
  backdrop-filter: blur(16px);
  transform: translateY(140%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.voyqa-consent[data-visible="true"] { transform: translateY(0); }

.voyqa-consent__title { font-family: var(--voyqa-font-heading); font-size: 1.2rem; margin-bottom: 8px; }
.voyqa-consent__text { font-size: 0.85rem; color: var(--voyqa-blue-soft); margin-bottom: 16px; }
.voyqa-consent__text a { color: var(--voyqa-gold); text-decoration: underline; }

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

.voyqa-consent__panel {
  margin-top: 16px;
  display: none;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--voyqa-line);
  padding-top: 16px;
}
.voyqa-consent__panel[data-open="true"] { display: flex; }

.voyqa-consent__category {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.voyqa-consent__category-copy strong { display: block; font-size: 0.9rem; }
.voyqa-consent__category-copy p { font-size: 0.78rem; color: var(--voyqa-muted); margin-top: 2px; }

.voyqa-consent__switch {
  position: relative;
  width: 42px; height: 24px;
  flex: none;
  border-radius: 999px;
  background: var(--voyqa-cloud);
  border: 1px solid var(--voyqa-line);
}
.voyqa-consent__switch input {
  position: absolute; inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}
.voyqa-consent__switch input:disabled { cursor: not-allowed; }
.voyqa-consent__switch-dot {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
  transition: transform 0.25s ease;
}
.voyqa-consent__switch input:checked + .voyqa-consent__switch-dot { transform: translateX(18px); background: var(--voyqa-gold); }
.voyqa-consent__switch input:disabled + .voyqa-consent__switch-dot { background: var(--voyqa-champagne); }

@media (max-width: 480px) {
  .voyqa-consent { left: 10px; right: 10px; bottom: 10px; padding: 18px; }
}

/* Standalone /privacy/preferenze/ page (footer link, no-JS-safe fallback). */
.voyqa-consent-page__title { margin: 12px 0 20px; }
.voyqa-consent-page__intro { color: var(--voyqa-muted); margin-bottom: 24px; }
.voyqa-consent-page__list { display: flex; flex-direction: column; gap: 18px; }
.voyqa-consent-page__save { align-self: flex-start; }
