.elementor-widget-heading .elementor-heading-title{color:var( --e-global-color-primary );}.elementor-5982 .elementor-element.elementor-element-f5bb722{text-align:center;}.elementor-5982 .elementor-element.elementor-element-d8646a7{text-align:center;}#elementor-popup-modal-5982 .dialog-widget-content{animation-duration:1.2s;background-color:#0000007A;background-image:url("https://artiskuechen.de/wp-content/uploads/2025/02/artis-rott-2-2025-1512.webp");border-radius:29px 29px 29px 29px;}#elementor-popup-modal-5982 .dialog-message{width:576px;height:auto;padding:0% 5% 0% 5%;}#elementor-popup-modal-5982{justify-content:center;align-items:center;}#elementor-popup-modal-5982 .dialog-close-button{display:flex;}@media(max-width:1024px){#elementor-popup-modal-5982 .dialog-message{width:500px;}}@media(max-width:767px){#elementor-popup-modal-5982 .dialog-message{width:446px;}}/* Start custom CSS *//* Container – 4 Buttons untereinander */
.kuechenwahl {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* Einzelne Button-Zeilen */
#kuechenformular .efw-btn {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #dbd2c6; /* Heller Beige-Ton */
  color: #2b2b2b;
  text-decoration: none;
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
  font-weight: 600;
  font-size: 1.2rem; /* +20% größer auf Desktop */
  border: none;
  min-height: 56px;
  overflow: hidden;
  position: relative;
}

/* Bild links */
#kuechenformular .efw-btn img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  margin-right: 12px;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

/* Text */
#kuechenformular .efw-btn span {
  flex: 1;
  text-align: left;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover-Effekt */
#kuechenformular .efw-btn:hover {
  transform: translateY(-3px);
  background-color: #cfc4b3; /* kräftigerer Kontrast */
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  color: #000;
}

/* Hover – Text leicht nach rechts, Bild leicht größer */
#kuechenformular .efw-btn:hover span {
  transform: translateX(4px);
  color: #000;
}
#kuechenformular .efw-btn:hover img {
  transform: scale(1.08);
}

/* Aktiver Button */
#kuechenformular .efw-btn.active {
  background-color: #cfc4b3;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.08), 0 5px 12px rgba(0,0,0,0.18);
  transform: translateY(-2px);
  color: #000;
}

/* Schimmer-Effekt bei Hover */
#kuechenformular .efw-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s ease;
}
#kuechenformular .efw-btn:hover::after {
  left: 120%;
}

/* Mobile Anpassung – 10% kleiner */
@media (max-width: 600px) {
  #kuechenformular .efw-btn {
    padding: 6px 10px;
    min-height: 50px;
    font-size: 1.05rem; /* 10% kleiner */
  }
  #kuechenformular .efw-btn img {
    width: 36px;
    height: 36px;
    margin-right: 10px;
  }
}

/* Überschrift über den Buttons */
.frage-headline {
  text-align: center;
  margin-bottom: 20px;
}

.frage-headline h3 {
  font-size: 2rem;           /* größer auf Desktop */
  font-weight: 600;
  color: #dbd2c6;            /* heller Beigeton */
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

/* Tablet */
@media (max-width: 900px) {
  .frage-headline h3 {
    font-size: 1.8rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .frage-headline h3 {
    font-size: 1.5rem;       /* auch hier leicht größer als zuvor */
  }
}

/* Einrückung der zweiten Zeile beim langen Text-Button */
#kuechenformular .efw-btn .indent7 {
  display: inline-block;
  margin-left: 7ch; /* ca. 7 Zeichenbreiten Einzug */
}

/* Auf sehr kleinen Screens etwas weniger Einzug */
@media (max-width: 600px) {
  #kuechenformular .efw-btn .indent7 {
    margin-left: 5ch;
  }
}

/* Großes Bild im dritten Step */
.kuechenbild {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.kuechenbild img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* sanfte Bewegung beim Hover */
.kuechenbild img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Mobile: leicht kleiner und ohne Hover-Effekt */
@media (max-width: 600px) {
  .kuechenbild img {
    max-width: 90%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: none;
  }
  .kuechenbild img:hover {
    transform: none;
  }
}

/* Bild mit hellbeigem Hintergrundrahmen */
.kuechenbild {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #dbd2c6; /* heller Hintergrund */
  border-radius: 16px;       /* abgerundete Ecken */
  padding: 20px;             /* Abstand zwischen Bild und Rand */
  margin-top: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Bild selbst */
.kuechenbild img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* sanfter Hover-Effekt */
.kuechenbild:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}
.kuechenbild:hover img {
  transform: scale(1.02);
}

/* Mobile: weniger Schatten, kompakter */
@media (max-width: 600px) {
  .kuechenbild {
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  }
 /* Bild rechteckiger (breiter als hoch) */
/* Bild breiter und flacher (rechteckiger Look) */
.kuechenbild img {
  width: 100%;
  max-width: 900px;       /* großzügige Breite */
  max-height: 250px;      /* deutlich flacher */
  border-radius: 12px;
  object-fit: cover;      /* sauberer Beschnitt */
  object-position: center center;
  transition: transform 0.4s ease;
}

}
/* ===== STEP 4: festes 3-Spalten-Layout ===== */
.kuechenwahl-grid.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  justify-items: center;
  align-items: start;
  margin-top: 25px;
}

@media (max-width: 900px) {
  .kuechenwahl-grid.grid-3col {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
}

/* Ganze Karte klickbar */
.kuechenoption {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #dbd2c6;
  border-radius: 16px;
  padding: 16px 14px;
  text-decoration: none;
  color: #403226;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  max-width: 270px;
  cursor: pointer;
}

/* Hover-Effekt wie Step 1 & 2 */
.kuechenoption:hover,
.kuechenoption.active {
  background-color: #c7b8a7;              /* gleiche Hoverfarbe wie Buttons */
  transform: translateY(-3px);            /* leicht anheben */
  box-shadow: 0 8px 18px rgba(0,0,0,0.1); /* dezenter Schatten */
}

/* Bild */
.kuechenoption img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 6px;
  object-fit: contain;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

/* Bild leicht zoomen bei Hover */
.kuechenoption:hover img {
  transform: scale(1.03);
}

/* Text im Buttonstil */
.kuechenoption .option-text {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 10px;
  padding: 8px 10px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease;
}

/* Text leicht anheben bei Hover */
.kuechenoption:hover .option-text {
  transform: translateY(-1px);
}

/* Mobile Ansicht */
@media (max-width: 900px) {
  .kuechenwahl-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .kuechenoption {
    max-width: 320px;
  }

  .kuechenoption .option-text {
    font-size: 0.8rem;
  }
}

/* Überschrift im Step 4 etwas kleiner */
.kuechenwahl-grid ~ .frage-headline h3,
.frage-headline h3 {
  font-size: 1.4rem;      /* Desktop */
  line-height: 1.3;
  margin-bottom: 14px;
}

/* Tablet */
@media (max-width: 900px) {
  .frage-headline h3 {
    font-size: 1.25rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .frage-headline h3 {
    font-size: 1.05rem;
  }
}

/* ===== STEP 5: 4 klickbare Karten ===== */

.kuechenwahl-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.kuechenoption {
  max-width: 250px;
}

/* Mobile */
@media (max-width: 900px) {
  .kuechenwahl-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .kuechenoption {
    max-width: 320px;
  }
}

/* ===== STEP 5: skalierbare 2×2-Karten ===== */

:root {
  --scale: 0.7;               /* 🟤 HIER kannst du die Gesamtgröße einstellen */
  --card-width: calc(200px * var(--scale));
  --padding: calc(10px * var(--scale));
  --radius: calc(12px * var(--scale));
  --font-size: calc(0.8rem * var(--scale));
  --gap: calc(18px * var(--scale));
}

.kuechenwahl-grid.grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 16pxpx;      /* 🟤 vertikaler Abstand (Höhe) */
  column-gap: 2px;   /* 🟤 horizontaler Abstand */;
  justify-items: center;
  align-items: start;
  margin-top: calc(20px * var(--scale));
}

.kuechenoption {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #dbd2c6;
  border-radius: var(--radius);
  padding: var(--padding);
  text-decoration: none;
  color: #403226;
  box-shadow: 0 5px 12px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
  max-width: var(--card-width);
  cursor: pointer;
}

.kuechenoption:hover,
.kuechenoption.active {
  background-color: #c7b8a7;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Bild */
.kuechenoption img {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  margin-bottom: calc(4px * var(--scale));
  object-fit: contain;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: transform 0.25s ease;
}

.kuechenoption:hover img {
  transform: scale(1.03);
}

/* Text */
.kuechenoption .option-text {
  display: block;
  font-weight: 600;
  font-size: var(--font-size);
  border-radius: calc(var(--radius) - 4px);
  padding: calc(6px * var(--scale)) calc(8px * var(--scale));
  width: 100%;
  text-align: center;
  transition: transform 0.25s ease;
}

.kuechenoption:hover .option-text {
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 900px) {
  .kuechenwahl-grid.grid-2x2 {
    display: flex;
    flex-direction: column;
    gap: calc(14px * var(--scale));
    align-items: center;
  }

  .kuechenoption {
    max-width: calc(280px * var(--scale));
  }

  .kuechenoption .option-text {
    font-size: calc(0.85rem * var(--scale));
  }
}

/* ===== Entfernt NUR "Weiter" & "Zurück" – lässt "Absenden" sichtbar ===== */

/* Ältere Elementor-Button-Strukturen */
.elementor-button-next,
.elementor-button-previous,
.elementor-button--next,
.elementor-button--previous {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Neuere Elementor-Struktur (ab v3.22) */
.e-form__buttons__wrapper__button-next,
.e-form__buttons__wrapper__button-previous {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Abstand / leere Flächen um Step-Navigation entfernen */
.e-form__buttons__wrapper {
  gap: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  min-height: 0 !important;
}

/* Schritt-Indikator (Punkte oder Zahlen) ausblenden, falls aktiviert */
.elementor-field-type-step .elementor-field-group-step,
.elementor-step {
  display: none !important;
}


/* ===== ABSENDEN-BUTTON (Arits Stil) ===== */

.elementor-button[type="submit"],
.elementor-button.elementor-size-sm[type="submit"],
.elementor-button.elementor-size-md[type="submit"],
.elementor-button.elementor-size-lg[type="submit"] {
  background-color: #dbd2c6;       /* helles Beige */
  color: #403226;                  /* dunkles Braun */
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 14px;             /* runde Ecken */
  padding: 12px 28px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover-Effekt */
.elementor-button[type="submit"]:hover,
.elementor-button[type="submit"]:focus {
  background-color: #c7b8a7;       /* Holzton beim Hover */
  transform: translateY(-3px);     /* leichtes Anheben */
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  color: #403226;
}

/* Klick-Feedback */
.elementor-button[type="submit"]:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

/* Zentrierung (falls Elementor das Layout auf "justify" setzt) */
.e-form__buttons,
.e-form__buttons__wrapper {
  justify-content: center !important;
}

/* Mobile */
@media (max-width: 600px) {
  .elementor-button[type="submit"] {
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 12px;
  }
}/* End custom CSS */