.elementor-2 .elementor-element.elementor-element-72997f7{--display:flex;}.elementor-2 .elementor-element.elementor-element-b2e244f > .elementor-widget-container{padding:0px 0px 100px 0px;}.elementor-2 .elementor-element.elementor-element-2fe2a9f .elementor-button{background-color:var( --e-global-color-base2 );fill:var( --e-global-color-base9 );color:var( --e-global-color-base9 );}.elementor-2 .elementor-element.elementor-element-2fe2a9f .elementor-button:hover, .elementor-2 .elementor-element.elementor-element-2fe2a9f .elementor-button:focus{background-color:var( --e-global-color-base1 );color:#30373e;}.elementor-2 .elementor-element.elementor-element-2fe2a9f .elementor-button:hover svg, .elementor-2 .elementor-element.elementor-element-2fe2a9f .elementor-button:focus svg{fill:#30373e;}/* Start custom CSS for html, class: .elementor-element-b2e244f *//* GRID-LAYOUT FÜR AUSWAHLSEKTIONEN */
.material-grid,
.color-grid,
.glazing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

/* ALLGEMEINE OPTIONEN (Material & Verglasung) */
.option {
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.option img {
  width: auto;
  height: 180px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 10px;
}

.option:hover {
  border-color: #ff7a00;
  transform: scale(1.02);
}

.option.active {
  border-color: #ff7a00;
  box-shadow: 0 0 10px rgba(255, 122, 0, 0.4);
}

/* FARBAUSWAHL */
.color-option {
  display: none; /* wird durch JS ein-/ausgeblendet */
  height: 80px;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  padding: 10px;
  display: flex; /* wird aktiv durch JS auf flex gesetzt */
  position: relative;
  transition: all 0.2s ease;
}

.color-option span {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}

.color-option:hover {
  transform: scale(1.02);
}

.color-option.active {
  outline: 2px solid #ff7a00;
  box-shadow: 0 0 10px rgba(255, 122, 0, 0.4);
}

/* EINGABEFELDER FÜR GRÖSSE */
input[type="text"] {
  padding: 8px;
  margin-right: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  width: 160px;
}

input[type="text"]:focus {
  border-color: #ff7a00;
  outline: none;
  box-shadow: 0 0 5px rgba(255, 122, 0, 0.4);
}/* End custom CSS */