/* ===== Общие утилиты ===== */
.hidden {
  display: none !important;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}

#quizSection h6 {
  font-weight: 600;
  font-size: 15px;
}

#quizSection p .quiz-option {
  font-size: 13px;
}

/* ===== Кнопка Überspringen ===== */
.btn-three {
  display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #000;
    transition: all .3s ease-in-out 0s;
}

.btn-three:hover {
  color: #e14f20;
  text-decoration: none;
  outline: none;
}

/* ===== Опросник ===== */
#quizSection {
  padding: 40px 0;
  text-align: center;
}

#quizSection h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.quiz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  padding: 0 20px;
  max-width: 900px;
  margin: 0 auto;
}

.quiz-option {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 20px 15px;
  background-color: #f9f9f9;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.quiz-option:hover {
  background-color: #f0f0f0;
}

/* ===== Вывод товара ===== */
#productSection {
  padding: 40px 0;
  text-align: center;
}

.display-flex-custom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 0 20px;
}

.item {
  /* width: 100%;
  max-width: 400px; */
  border-radius: 16px;
  overflow: hidden;
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
}

.location-card-one {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: flex-end;
  border-radius: 16px;
  overflow: hidden;
}

.location-card-one::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
  z-index: 1;
}

.location-card-one .content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px;
  text-align: center;
  color: white;
}

.location-card-one h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
}

.location-card-one p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 8px;
}

/* ===== Адаптивность ===== */
@media (max-width: 600px) {
  .quiz-grid {
    grid-template-columns: 1fr;
  }

  .location-card-one {
    height: 240px;
  }

  .btn-three {
    width: 100%;
    text-align: center;
  }
}
