/* ====== Global Theme Overrides ====== */

/*
 * Hide Font Awesome icons sitewide.
 * FA is only needed inside the VPC configurator — everywhere else
 * stale FA classes from the database break the layout.
 */
.fa,
.fas,
.far,
.fab,
.fal,
.fad {
  font-family: inherit !important;
}

.fa::before,
.fas::before,
.far::before,
.fab::before,
.fal::before,
.fad::before {
  display: none !important;
}

/* Allow FA icons inside the configurator */
#vpc-container .fa,
#vpc-container .fas,
#vpc-container .far,
#vpc-container .fab,
#vpc-container .fal,
#vpc-container .fad,
.modal-configurator .fa,
.modal-configurator .fas,
.modal-configurator .far,
.modal-configurator .fab,
.modal-configurator .fal,
.modal-configurator .fad {
  font-family: 'Font Awesome 5 Free' !important;
}

#vpc-container .fab,
.modal-configurator .fab {
  font-family: 'Font Awesome 5 Brands' !important;
}

#vpc-container .fa::before,
#vpc-container .fas::before,
#vpc-container .far::before,
#vpc-container .fab::before,
#vpc-container .fal::before,
#vpc-container .fad::before,
.modal-configurator .fa::before,
.modal-configurator .fas::before,
.modal-configurator .far::before,
.modal-configurator .fab::before,
.modal-configurator .fal::before,
.modal-configurator .fad::before {
  display: inline-block !important;
}

/* ====== Datenschutz Notice Box ====== */
.datenschutz-hinweis {
  display: flex;
  gap: 1rem;
  background: white;
  border: 1px solid rgb(var(--divider));
  border-left: 3px solid rgb(var(--brand));
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin: 1.5rem 0;
}
.datenschutz-hinweis__icon {
  flex-shrink: 0;
  color: rgb(var(--brand));
  margin-top: 0.125rem;
}
.datenschutz-hinweis__body {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgb(var(--text));
}
.datenschutz-hinweis__body p {
  margin: 0 0 0.5rem;
}
.datenschutz-hinweis__body p:last-child {
  margin-bottom: 0;
}
.datenschutz-hinweis__body strong {
  color: rgb(var(--text));
}
.datenschutz-hinweis__body a {
  color: rgb(var(--brand));
  text-decoration: underline;
}
.datenschutz-hinweis__body a:hover {
  color: rgb(var(--brand-text));
}
@media (max-width: 424px) {
  .datenschutz-hinweis {
    flex-direction: column;
    gap: 0.5rem;
  }
}
