/* ========== SZERVIZ RENDELÉS ŰRLAP ========== */

.mns-service-form {
  display: grid;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
  background: #1b1f29;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

/* Címkék */
.mns-service-form label {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
  color: #ffd947;
  display: block;
}

/* Inputok, selectek, textarea */
.mns-service-form select,
.mns-service-form input[type="text"],
.mns-service-form textarea {
  width: 100%;
  border-radius: 6px;
  border: none;
  padding: 12px 14px;
  background: #222631;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mns-service-form select:focus,
.mns-service-form input:focus,
.mns-service-form textarea:focus {
  outline: none;
  border: 1px solid #ffd947;
  box-shadow: 0 0 0 2px rgba(255, 217, 71, 0.4);
}

/* Checkbox */
.mns-service-form input[type="checkbox"] {
  accent-color: #ffd947;
  margin-right: 6px;
}
.mns-service-form label input[type="checkbox"] {
  display: inline-block;
  vertical-align: middle;
}

/* Gomb */
.mns-service-form button {
  background: #ffd947;
  color: #111;
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 8px;
}

.mns-service-form button:hover {
  background: #f5c600;
}

.mns-service-form button:active {
  transform: scale(0.97);
}

/* Textarea */
.mns-service-form textarea {
  min-height: 100px;
  resize: vertical;
}

/* ========== ÁR BECSLÉS DOBOZ ========== */

#mns-price-box {
  margin-top: 20px;
  padding: 16px;
  border-radius: 10px;
  background: #222631;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.4);
}

#mns-price-box strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  color: #ffd947;
}

#mns-price-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

/* ========== RESZPONZÍV ========== */

@media (max-width: 768px) {
  .mns-service-form {
    padding: 16px;
    gap: 12px;
  }

  .mns-service-form button {
    width: 100%;
  }

  #mns-price-text {
    font-size: 16px;
  }
}


/* ===== Accordion (Mit jelent a becsült összeg?) ===== */
.mns-acc {
  background: #1b1f29;
  border-radius: 10px;
  padding: 0;
  border: 1px solid #2a2f3a;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.mns-acc > summary {
  list-style: none;               /* eltünteti a default nyilat sok böngészőben */
  cursor: pointer;
  padding: 14px 16px;
  color: #ffd947;
  font-weight: 700;
  position: relative;
  user-select: none;
}

.mns-acc > summary::-webkit-details-marker { display: none; } /* Safari/Chrome marker off */

/* Egyedi nyíl ikon */
.mns-acc > summary::after {
  content: '▾';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.2s ease;
  opacity: 0.9;
}

.mns-acc[open] > summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.mns-acc__content {
  padding: 12px 16px 16px;
  color: #e7e7e7;
  line-height: 1.6;
  border-top: 1px solid #2a2f3a;
}

.mns-acc__content p { margin: 0 0 10px; }
.mns-acc__content strong { color: #fff; }
