/*
 Theme Name:   bonner-schluesseldienst.de
 Template:     schluesseldienst-karl
 Theme URI:    https://example.com/mytheme-child/
 Description:  Дочерняя тема для MyTheme
 Author:       Ваше имя
 Author URI:   https://example.com
 Template:     mytheme
 Version:      1.0.0
 Text Domain:  mytheme-child
*/

.price-page-faq {
  padding: 80px 0;
  background: #fff;
}

.price-page-faq__title {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  margin: 0 0 40px;
}

.price-page-faq__list {
  max-width: 860px;
  margin: 0 auto;
}

/* Item */
.price-page-faq__item {
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  margin-bottom: 14px;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

.price-page-faq__item[open] {
  border-color: rgba(255,102,0,0.45);
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}

/* Summary */
.price-page-faq__question {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 18px 56px 18px 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.price-page-faq__question::-webkit-details-marker {
  display: none;
}

/* Icon (plus/minus) */
.price-page-faq__icon {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}

.price-page-faq__icon::before,
.price-page-faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #ff6600;
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

.price-page-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity .2s ease;
}

.price-page-faq__item[open] .price-page-faq__icon::after {
  opacity: 0; /* превращаем плюс в минус */
}

/* Answer */
.price-page-faq__answer {
  padding: 0 20px 18px;
  color: rgba(0,0,0,0.70);
  font-size: 16px;
  line-height: 1.7;
}

/* Hover feel */
.price-page-faq__item:hover {
  border-color: rgba(255,102,0,0.35);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

/* Mobile */
@media (max-width: 768px) {
  .price-page-faq {
    padding: 60px 0;
  }

  .price-page-faq__title {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .price-page-faq__question {
    font-size: 16px;
    padding: 16px 52px 16px 16px;
  }

  .price-page-faq__answer {
    padding: 0 16px 16px;
    font-size: 15px;
  }
}

.price-page-faq__answer ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.price-page-faq__answer ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Кастомный маркер */
.price-page-faq__answer ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: #ff6600;
  border-radius: 50%;
}

/* Если внутри есть strong — чуть аккуратнее */
.price-page-faq__answer ul li strong {
  font-weight: 600;
}