/* Eigene Anpassungen */

/* blendet oben die Leiste "Shop in Entwicklung..." ein */
body {
  padding-top: 42px !important;
}

body::before {
  content: "Shop in Entwicklung – Keine Bestellungen möglich";
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 6px 16px;
  box-sizing: border-box;
  background: #2f3a3b;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
}
/* ende der Leiste "Shop in Entwicklung..." ein */

/* Blendet das Template-Auswahlfeld im Kontaktformular aus */
div.mb-3:has(#contact-us-subject-select) {
  display: none !important;
}

/* Blendet das PrestaShop Copyright aus */
div.copyright {
  display: none !important;
}

/* Blendet das Partner-Angebote-Optin (Checkbox + Label) aus */
label[for="field-optin"],
#field-optin {
  display: none !important;
}
