body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: #efefef;
  color: #2c2c2c;
}

p {
  text-align: left;
  line-height: 1.5em;
  color: #323232;
}

p.centered {
  text-align: center;
}

p.right {
  text-align: right !important;
}

a {
  color: #2c2c2c;
  text-decoration: underline;
}

ul {
  text-align: left;
  line-height: 1.8em;
  color: #4b4b4b;
}

span.special-span {
  font-size: 1.2em;
  color: #5c5c5c;
  text-transform: uppercase;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
input,
button {
  font-family: 'Open Sans', Arial, sans-serif;

}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #3b6e81;
}

.hide {
  display: none;
}

.notice-banner {
  background-color: #ffcc00;
  color: #000;
  text-align: center;
  padding: 8px 15px;
  font-weight: bold;
  font-size: 0.95em;
  display: none;
}

/* Topbar */
.topbar {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding: 10px 50px;
  font-size: 14px;
  background-color: #efefef;
}

/* Header */
header {
  background-color: #fff;
  padding-bottom: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 50px;
  flex-wrap: wrap;
}

.logo img {
  max-width: 180px;
  height: auto;
}

.footer-columns .logo img {
  max-width: 250px;
  margin-bottom: 10px;
}


.col-full.centered {
  max-width: 50vw;
  margin-left: auto;
  margin-right: auto;
}

.search {
  position: relative;
  display: flex;
  align-items: center;
}

.search input {
  width: 280px;
  height: 20px;
  padding: 8px 44px 8px 12px;
  border: none;
  border-radius: 0;
  background-color: #efefef;
  color: #333;
  font-size: 14px;
}

.search button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 35px;
  width: 35px;
  background-color: #3b6e81;
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search button i {
  color: #ffffff;
  font-size: 14px;
}

.header-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Menü */
.main-menu {
  display: flex;
  justify-content: center;
  background-color: #3b6e81;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 15px;
}

.main-menu a {
  margin: 0 15px;
  text-decoration: none;
  color: #efefef;
  font-weight: bold;
}

.menu-item-with-sub {
  position: relative;
  display: inline-block;
}

.menu-item-with-sub>a {
  margin: 0 15px;
  text-decoration: none;
  color: #efefef;
  font-weight: bold;
}

.submenu {
  display: none;
  position: absolute;
  background-color: #efefef;
  top: 30px;
  left: 0;
  z-index: 10;
}

.submenu a {
  display: block;
  font-size: 0.9em;
  padding: 10px;
  text-decoration: none;
  color: #3b6e81;
  background-color: #efefef;
  white-space: nowrap;
}

.submenu a:hover {
  background-color: #dedede;
}

.menu-item-with-sub:hover .submenu {
  display: block;
}


/* Content */
.content:not(#world-dynamic-content > .content) {
  /* padding: 60px 50px; */
  min-height: 275px;
  text-align: center;
  background-color: #fff;
  overflow: hidden;
  
}
.content section.wrapper {
    padding: 2em;
}

.col-full.centered {
    text-align: center;
}
.col-full.centered p {
    text-align: center;
}

div#world-dynamic-content {
  padding: 0 !important;
}

.content .framed {
  text-align: left;
  width: max-content;
  position: relative;
  display: grid;
  align-content: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  /* border: 1px solid; */
  border-radius: 1em;
  padding: 2em;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


/* Footer */
footer {
  background-color: #efefef;
  color: #2c2c2c;
  padding: 30px 50px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin: 5px 0;
}

.footer-col a {
  color: #2c2c2c;
  text-decoration: underline;
  font-size: 14px;
}

/* Bottomline */
.bottomline {
  background-color: #fff;
  color: #2c2c2c;
  font-size: 12px;
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.bottomline-left a {
  color: #2c2c2c;
  text-decoration: underline;
  margin-right: 10px;
}

.bottomline-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.payment-icons i,
.payment-icons img {
  font-size: 34px !important;
  color: #2c2c2c;
}

.payment-icons span {
  display: inline-block;
  margin-right: 10px;
}

.language-switcher {
  font-size: 12px;
  color: #2c2c2c;
}


.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.newsletter-form button {
  background-color: #3b6e81;
  color: #efefef;
  border: none;
  padding: 8px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.newsletter-form button:hover {
  background-color: #0b4c63;
  color: #ededed;
}

.newsletter-consent {
  font-size: 12px;
  color: #2c2c2c;
  display: flex;
  align-items: flex-start;
}

.newsletter-consent a {
  color: #2c2c2c;
  text-decoration: underline;
  font-size: 12px;
}




/* Burger Icon */
.burger {
  display: none;
  font-size: 24px;
  color: #3b6e81;
  cursor: pointer;
}


.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  padding: 40px 20px;
  overflow-y: auto;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a,
.mobile-submenu>button {
  font-size: 0.9em;
  color: #3b6e81;
  background: none;
  border: none;
  padding: 10px 0;
  text-align: left;
  font-family: 'Open Sans', Arial, sans-serif;
  cursor: pointer;
  font-weight: bold;
}

.mobile-submenu>button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.submenu-links {
  display: none;
  padding-left: 16px;
}

.submenu-links a {
  display: block;
  font-size: 0.85em;
  padding: 6px 0;
}

.mobile-bottom {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9em;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
}

/* Mobile Header Bar */
.mobile-header-bar {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.mobile-search-bar {
  display: none;
}

/* Burger Icon */
.burger {
  font-size: 24px;
  color: #3b6e81;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #3b6e81;
  color: #efefef;
  z-index: 9999;
  overflow-y: auto;
  padding: 20px;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-header img {
  max-width: 120px;
}

.close-icon {
  font-size: 24px;
  color: #efefef;
  cursor: pointer;
}

/* Mobile Navigation */
.mobile-nav a,
.mobile-submenu>button {
  display: block;
  font-size: 0.9em;
  color: #efefef;
  background: none;
  border: none;
  padding: 14px 0;
  text-align: left;
  font-family: 'Open Sans', Arial, sans-serif;
  text-decoration: none;
  width: 100%;
  cursor: pointer;
}

.mobile-submenu>button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.submenu-links {
  display: none;
  padding-left: 16px;
}

.submenu-links a {
  display: block;
  font-size: 0.85em;
  padding: 10px 0;
  text-decoration: none;
  color: #efefef;
}

.submenu-links a:hover {
  color: #ccc;
}

.mobile-bottom {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 0.85em;
}

.mobile-bottom .language-switcher,
.mobile-bottom .cart {
  color: #efefef;
}

hr {
  border: none;
  border-top: 1px solid #444;
  margin: 20px 0;
}


@media (max-width: 768px) {
  .col-full.centered {
    max-width: 100%;
  }

  .bottomline {
    font-size: 0.8em;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .logo,
  .search {
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }

  .header-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .search input {
    width: 100%;
  }

  .burger {
    display: flex;
    position: relative;
    right: 20px;
    top: 0;
  }

  .mobile-header-bar {
    display: flex;
    align-items: center;
  }

  .mobile-search-bar {
    display: block;
    padding-bottom: 1em;
  }

  .main-menu {
    display: none;
  }

  .header-container {
    display: none;
  }

  .header-right {
    display: none;
  }

  .search {
    justify-content: center;
    margin: 0 20px;
  }

  .mobile-header-bar .logo {
    max-width: fit-content;
    margin: 0;
  }

  .topbar {
    font-size: 0.8em;
    justify-content: center;
  }

  footer,
  .content,
  .topbar,
  .bottomline {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  footer .logo {
    text-align: left;
  }

}

form.custum-form {
  text-align: left;
  background-color: #fff;
  padding: 30px;
  max-width: 700px;
  margin: 20px auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form label {
  font-weight: bold;
  font-size: 14px;
  display: block;
  color: #2c2c2c;
  width: 100%;

}



form input[type="text"],
form input[type="date"],
form input[type="email"],
form input[type="password"],
form select {

  padding: 10px;
  margin-top: 10px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Open Sans', Arial, sans-serif;
}

form input[type="text"],
form input[type="date"],
form input[type="email"],
form input[type="password"] {
  width: 93%;
}

form select {
  width: 100%;
}

form input[type="checkbox"] {
  margin-right: 8px;
}

form button[type="submit"] {
  background-color: #3b6e81;
  color: #efefef;
  border: none;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  width: 100%;
}

form button[type="submit"]:hover {
  background-color: #0b4c63;
  color: #ededed;
}

#artistFields,
#donationFields,
#otherArtistType {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 3px solid #ddd;
}

form div {
  grid-column: span 2;
}


@media (min-width: 768px) {
  .popup-overlay {
    padding-top: 10em;
    overflow: scroll;
    text-align: left;
  }

  .popup-content {
    padding: 1em;
  }

  /* form input[type="text"],
form input[type="date"],
form input[type="email"],
form select {
  width: 100%;
} */
  form.custum-form {
    padding: 60px 50px;
    max-width: 700px;
    margin: 40px auto;
  }

  form.custum-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
  }

  form.custum-form div {
    grid-column: span 1;
  }

  form.custum-form button[type="submit"] {
    justify-self: start;
    width: 100%;
  }

  #artistFields,
  #donationFields,
  #otherArtistType {
    grid-column: span 2;
    display: flex;
    width: 100%;
    gap: 20px 40px;
    flex-wrap: wrap;
  }


  form.custum-form>div {
    width: 100%;
  }
}

form.custum-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}

form.custum-form div {
  display: flex;
  flex-direction: row;
}

form.custum-form div.block {
  display: block;
  width: 100%;
  grid-column: span 2;
}

form.custum-form div.block label {
  margin-bottom: 15px;
}



.profilbereich {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.tabs {
  display: flex;
  border-bottom: 2px solid #ddd;
  margin-bottom: 20px;
}

.tab-button {
  background: none;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  border-bottom: 3px solid transparent;
}

.tab-button.active {
  border-bottom: 3px solid #000;
}

.tab-content {
  display: none;
}

.profil-tabelle,
.rahmen-tabelle {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.profil-tabelle td,
.rahmen-tabelle th,
.rahmen-tabelle td {
  border: 1px solid #ddd;
  padding: 10px;
}

.rahmen-tabelle th {
  background-color: #f2f2f2;
  text-align: left;
}

.rahmen-tabelle img {
  border: 1px solid #ccc;
}

.rahmen-tabelle button {
  background-color: #3b6e81;
  color: #efefef;
  border: none;
  padding: 8px 10px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-weight: bold;
}

.tab-content {
  text-align: left;
}



.rahmen-shop-wrapper {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.rahmen-grid {
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.rahmen-card {
  background: #fff;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 350px;
}

.rahmen-card img {
  width: 100%;
  height: auto;
  display: block;
}

.rahmen-card-content {
  padding: 1em;
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  gap: 1em;
  align-items: flex-start;
  text-align: left;
  flex-wrap: wrap;
}

.rahmen-card-content .color-field {
  align-items: flex-end;
  width: 100px;
}

.rahmen-card-content h3 {
  margin: 0;
  font-size: 1.1em;
}

.rahmen-card-content input[type="text"] {
  padding: 6px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: crimson;
  color: #fff;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.75em;
  font-weight: bold;
}

.btn-delete {
  margin-top: auto;
  width: 100%;
  padding: 8px;
  background-color: #d9534f;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}

.rahmen-abschluss {
  margin-top: 2em;
  text-align: right;
}

.rahmen-abschluss .btn-row {
  flex-wrap: wrap;
  display: flex;
  column-gap: 1em;
  flex-direction: row;
  justify-content: flex-end;
}

.rahmen-abschluss .btn-kaufen {
  width: auto;
}

.rahmen-abschluss .btn-weiter-einkaufen {
  width: auto;
}

.rahmen-abschluss p {
  margin: 2em 0;
}

.rahmen-abschluss input[type="text"] {
  margin-top: 5px;
  padding: 6px;
  width: 100px;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
}

.zahloptionen {
  margin-top: 20px;
}

.zahlmethoden-icons a {
  display: inline-block;
  margin-right: 20px;
  font-size: 1.2em;
  text-decoration: none;
  color: #333;
}

.zahlmethoden-icons a i {
  margin-right: 5px;
}

.zahlmethoden-radio {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px 0;
}

.zahlmethoden-radio label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1em;
  cursor: pointer;
}

.zahlmethoden-radio input[type="radio"] {
  accent-color: #3b6e81;
}

.btn-cancel,
.btn-weiter-einkaufen {
  background-color: #e6e6e6;
  color: #333;
}

.btn-kaufen,
.btn-save,
.btn-gotocart,
.btn-removefromcart {
  background-color: #3b6e81;
  color: white;
}

.btn-kaufen,
.btn-save,
.btn-gotocart,
.btn-removefromcart,
.btn-cancel,
.btn-weiter-einkaufen {
  text-decoration: none;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 1em;
}

.btn-cancel:hover,
.btn-weiter-einkaufen:hover {
  background-color: #5b5b5b;
  color: white;
}

.btn-kaufen:hover,
.btn-save:hover,
.btn-removefromcart:hover,
.btn-gotocart:hover {
  background-color: #0b4c63;
  color: #ededed;
}




.popup-content {
  background: white;
  /* max-width: 600px; */
  max-width: fit-content;
  margin: 10% auto;
  padding: 3em;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}



.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 25px;
  color: #fff;
  background: #3b6e81;
  border-radius: 50%;
  padding: 10px;
  line-height: 16px;
  border: none;
  z-index: 999;
}

.close-btn:hover {
  background-color: #0b4c63;
  color: #ededed;

}

.edit-frame-btn {
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
  position: absolute;
  top: 10px;
  left: 15px;
  cursor: pointer;
  font-size: 25px;
  color: #fff;
  background: #a2a2a2;
  border-radius: 50%;
  padding: 10px;
  line-height: 16px;
  border: none;
  z-index: 999;
}

.edit-frame-btn:hover {
  background: #eaeaea;
}

.image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  max-width: 400px;
}

.image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.upload-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 0, 0, .0);
  color: #fff;
  text-transform: none;
  font-weight: 600;
  letter-spacing: .2px;
  cursor: pointer;
  opacity: 0;
  transition: opacity .2s ease, background .2s ease;
}

.image-wrap:hover .upload-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, .35);
}

.upload-icon {
  display: inline-flex;
  padding: 10px;
  background: rgba(255, 255, 255, .15);
  border-radius: 999px;
}

.upload-text {
  font-size: 14px;
}

.frame-settings {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 16px;
  margin: 16px 0 8px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field span {
  font-size: 14px;
  color: #222;
}

.field input[type="text"] {
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.color-field {
  align-items: start;
}

.color-field input[type="color"] {
  appearance: none;
  width: 44px;
  height: 34px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.color-hex {
  color: #828282 !important;
}

.popup-info {
  margin-top: 1em;
  font-size: 15px;
  line-height: 1.5;
}

.popup-info p {
  margin: .35rem 0;
}

.frame-meta {
  margin-top: 10px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.frame-color-dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid #ccc;
  vertical-align: middle;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

@media (max-width: 680px) {
  .frame-settings {
    grid-template-columns: 1fr;
  }
}

:root {
  --cell: 1em;
}


.map-wrap {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.map-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  object-fit: cover;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 120ms ease-out;
  background-size: var(--cell) var(--cell);
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255, 99, 132, var(--overlay-opacity)) 0 100%),
    radial-gradient(circle at 75% 25%, rgba(54, 162, 235, var(--overlay-opacity)) 0 100%),
    radial-gradient(circle at 25% 75%, rgba(255, 206, 86, var(--overlay-opacity)) 0 100%),
    radial-gradient(circle at 75% 75%, rgba(75, 192, 192, var(--overlay-opacity)) 0 100%);
  mix-blend-mode: multiply;
  cursor: crosshair;
}

.map-wrap:hover .grid-overlay {
  opacity: 1;
}

.sold-marker {
  position: absolute;
  width: var(--cell);
  height: var(--cell);
  pointer-events: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  background-color: rgba(255, 0, 200, 0.4);
}

/* Popups */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 50;
}

.popup-overlay[aria-hidden="false"] {
  display: flex;
}




.popup-head {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .75rem 0;
}

.popup-head h2 {
  margin: 0;
  font-size: 1.2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem 1rem;
  justify-content: start;
  justify-items: start;
  margin: 1em 0;
  text-align: left;
}

.info-grid p {
  margin: 0;
}

.buy-actions {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: .65rem 1rem;
  border-radius: 10px;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #f0f0f0;
  color: #111;
}

.sold-note,
.unavaible-note {
  display: block;
  padding: .5rem 1rem;
  border-radius: 10px;
  background: #fff2f2;
  color: #7a0b0b;
  border: 1px solid #ffd6d6;
  margin-top: .5rem;
  font-size: 0.8em;
}

.toast {
  position: fixed;
  left: 16px;
  top: 16px;
  background: rgba(0, 0, 0, .75);
  color: #fff;
  border-radius: 10px;
  padding: .5rem .75rem;
  z-index: 60;
  opacity: 0;
  transform: translateY(-8px);
  transition: all .18s ease-out;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.unavailable-marker {
  position: absolute;
  width: 0.8em;
  height: 0.8em;
  background: #999;
  opacity: 0.7;
  pointer-events: none;
}




.how-it-works {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.how-it-works h1 {
  text-align: center;
  margin-bottom: 40px;
}

.step {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-number {
  font-size: 4rem;
  font-weight: 700;
  color: #3b6e81;
  line-height: 1;
  flex-shrink: 0;
  width: 100%;
  text-align: center;
}

.step-content {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 450px;
  text-align: center;

}

@media (max-width: 700px) {
  .step {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number {
    margin-bottom: 10px;
  }
}

div#start-dynamic-content {
  padding: 0 !important;
}



form.contact-form {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1em;
  padding: 2em;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

}

.contact-form .form-row {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.contact-form .field {
  width: 100%;
  text-align: center;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 5px;
}

#contactForm.contact-form input,
#contactForm.contact-form textarea {
  /* width: 100%; */
  padding: 8px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.contact-form input[type="text"],
.contact-form input[type="date"],
.contact-form input[type="email"],
.contact-form input[type="password"] {
  width: 100%;
}

.contact-form .textarea-large {
  resize: vertical;
}

.contact-form .form-actions {
  text-align: center;
}

.contact-form button {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-form #captcha {
  margin: 10px auto;
  padding: 20px;
  /*background: #f0f0f0;*/
  width: fit-content;
  border-radius: 5px;
}

.contact-form #login-notice {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  margin: 20px auto;
  text-align: center;
}

.contact-form .btn-link {
  color: #0073e6;
  text-decoration: none;
}

.contact-form .btn-link:hover {
  text-decoration: underline;
}

.contact-form #thankYou {
  text-align: center;
}



.grid-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  align-items: start;
  margin-top: 50px;

}

.grid-icons .card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
}

.grid-icons .icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 10px;
  color: #bcbcbc;
}

.grid-icons .title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 6px 0 10px;
}

.grid-icons .text {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
  font-size: 0.9em;
}

/* Optional: responsive Fallbacks */
@media (max-width: 900px) {
  .grid-icons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-icons {
    grid-template-columns: 1fr;
  }
}

.logo {
  cursor: pointer;
}

/* FAQ Seite */

    .faq-page { max-width: 1100px; margin: 0 auto; padding: 2em; }
    .faq-hero { text-align: center; margin: 0 auto 2em auto; max-width: 900px; }
    .faq-hero h1 { margin: 0 0 0.25em 0; }
    .faq-hero p { text-align: center; margin: 0; }

    .faq-search { position: relative; max-width: 80%; margin: 1.5em auto 2em auto; }
    .faq-search input {
      width: 100%;
      padding: 10px 0 10px 10px;
      border: none;
      border-radius: 0;
      background-color: #efefef;
      color: #333;
      font-size: 14px;
      font-family: 'Open Sans', Arial, sans-serif;
    }
    .faq-search button {
    position: absolute;
    right: -10px;
    top: 0;
    height: 100%;
    width: 44px;
    background-color: #3b6e81;
    border: none;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
input#faqSearchInput {
    outline-color: #3b6e81;
}
.faq-search button svg { width: 18px; height: 18px; fill: #ffffff; }

.faq-category { text-align: left; margin: 2.5em auto 0 auto; max-width: 900px; }
.faq-category h2 {
  margin: 0 0 0.75em 0;
  padding-bottom: 0.4em;
  border-bottom: 2px solid #efefef;
  color: #3b6e81;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: rgba(149, 157, 165, 0.2) 3px 7px 24px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  padding: 16px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 1em;
  font-weight: 700;
  color: #2c2c2c;
  font-family: 'Open Sans', Arial, sans-serif;
}
.faq-q:hover { background: #fafafa; }
.faq-q .chev { width: 28px; height: 28px; transition: transform 0.2s ease; fill: #3b6e81; }
.faq-item[aria-expanded="true"] .faq-q .chev { transform: rotate(180deg); }

.faq-a { padding: 0 18px 16px 18px; display: none; }
.faq-item[aria-expanded="true"] .faq-a { display: block; }
.faq-a p { margin: 0.6em 0 0 0; text-align: left; }

.faq-empty {
  max-width: 900px;
  margin: 1.5em auto 0 auto;
  background: #fff;
  padding: 16px 18px;
  border-radius: 12px;
  box-shadow: rgba(149, 157, 165, 0.18) 0px 8px 24px;
  text-align: left;
  display: none;
}

.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0; padding: 0; margin: -1px;
}

@media (max-width: 768px) {
  .faq-page { padding: 1.25em; }
}