/* Ganz oben: Wrapper – hier ggf. Abstände anpassen */
#gfs-wrapper {
    text-align: center;
    padding: 10px 5px; /* vorher 40px 20px, jetzt kompakter */
    background: linear-gradient(to bottom, #f5f3ee, #e3ddc9);
    margin-top: 0 !important;  /* sicherstellen, dass es ganz oben steht */
}



/* Hauptüberschrift */
#gfs-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;       /* kannst du z. B. auf 20px setzen */
    margin-bottom: 15px;   /* etwas kompakter */
    margin-top: 0px;
    font-weight: normal;   /* vorher nicht gesetzt = vermutlich bold → normal = ruhiger */
    color: #444;           /* dezenter als rein schwarz */
}







/* Dropdown-Feld „Bitte wählen“ */
.gfs-select {
    width: 80%;                /* halb so breit */
    padding: 8px 10px;         /* etwas kompakter */
   margin: 0px auto;           /* zentriert */
    font-size: 14px;           /* kleiner als Standard */
    color: #000;               /* Schriftfarbe schwarz */
    background: #fdfcf9;          /* kann auch z. B. #fdfcf9 sein */
    background-size: 12px;
    border-radius: 8px;        /* war wahrscheinlich Standard 6–8 → jetzt flacher */
    border: 1px solid #ccc;    /* optional harmonischer Rand */
    appearance: none;          /* einheitliches Aussehen in allen Browsern */
    -webkit-appearance: none;
     -webkit-appearance: none;
    text-align: center;                /* „Bitte wählen“ mittig */
    cursor: pointer;
}







/* Label für die Auswahlfelder */
.gfs-step label {
    display: block;
    font-weight: normal;   /* war bold → jetzt zart */
    font-size: 14px;       /* kleiner, feiner */
    margin-top: 5px;       /* vorher 10px */
    color: #555;           /* nicht rein schwarz, harmonisch dunkelgrau */
}





#gfs-buttons {
    margin-top: 20px;
}
#quiz-submit {
    background: #a6c0b2;
    color: white;
    border: none;
    padding: 8px 12px;
    font-weight: normal;
    font-size: 14px;
    cursor: pointer;
    border-radius: 6px;
}





.gfs-ergebnis-title {
  font-size: 20px;
  font-weight: bold;
  color: #444;
  text-align: center;
  margin: 0px 0 10px 0;
  font-family: 'Playfair Display', serif;
}




/* ===================== QUIZ-ERGEBNIS-KACHELN ===================== */

/* Ergebnis-Grid */
.gfs-ergebnis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  padding: 0 10px;
}

/* Ergebnis-Kachel */
.gfs-ergebnis-card {
  background: #fdfcf9;
  border-radius: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  text-align: center;
  text-decoration: none;
  color: #222;
  overflow: hidden;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.gfs-ergebnis-card:hover {
  transform: scale(1.02);
}

/* Bild */
.gfs-ergebnis-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

/* Textbox */
.gfs-info-box {
  background-color: #fdfcf9;
  color: #444641;
  padding: 6px;
  font-size: 13px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 80px;
  height: auto;
  font-family: "Source Sans Pro", sans-serif;
  border-top: 1px solid #eee;
}




/* Produktname */
.gfs-info-box strong {
  font-size: 12px;                      /* ⬅️ kleiner, dezenter */
  line-height: 1.3;
  font-weight: normal;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  margin-bottom: 4px;
}




/* Preis */
.gfs-info-box small {
  font-size: 13px;                      /* ⬅️ etwas größer als Titel */
  font-weight: normal;
  text-align: center;
  color: #666;
  margin-top: auto;
}


/* ===================== MOBIL: 2 SPALTEN ===================== */
@media (max-width: 768px) {
  .gfs-ergebnis-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gfs-ergebnis-card {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .gfs-ergebnis-card img {
    width: 100%;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    border-bottom: 1px solid #eee;
  }
}