/* ===== NANNY JEWELS – ROZKLIKÁVACÍ BLOKY ===== */

.nanny-accordion-wrap {
  margin: 18px 0 26px;
}

.nanny-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nanny-acc-item {
  background: #f7f2ec;
  border-radius: 18px;
  overflow: hidden;
  border: 0;
  box-shadow: none;
}

.nanny-acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  background: #f7f2ec;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  text-align: left;
  box-shadow: none;
  appearance: none;
}

.nanny-acc-head:focus {
  outline: none;
  box-shadow: none;
}

.nanny-acc-head-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.nanny-acc-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nanny-acc-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  stroke: #8a5470;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nanny-acc-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  color: #111;
}

.nanny-acc-toggle {
  flex: 0 0 auto;
  font-size: 28px;
  line-height: 1;
  color: #111;
  margin-left: 10px;
}

.nanny-acc-body {
  display: none;
  padding: 0 22px 22px 60px;
  font-size: 15px;
  line-height: 1.7;
  color: #222;
  background: #f7f2ec;
}

.nanny-acc-item.is-open .nanny-acc-body {
  display: block;
}

.nanny-acc-body p {
  margin: 0 0 12px;
}

.nanny-acc-body p:last-child {
  margin-bottom: 0;
}

.nanny-acc-body ul {
  margin: 0 0 12px 18px;
  padding: 0;
}

.nanny-acc-body li {
  margin-bottom: 6px;
}

.nanny-acc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.nanny-acc-mini {
  text-align: center;
}

.nanny-acc-mini-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nanny-acc-mini-icon svg {
  width: 42px;
  height: 42px;
  display: block;
  stroke: #c4a86b;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nanny-acc-mini-text {
  font-size: 14px;
  line-height: 1.45;
  color: #222;
}

.nanny-acc-table {
  margin-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.nanny-acc-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nanny-acc-label {
  font-weight: 600;
  color: #222;
}

.nanny-acc-value {
  color: #222;
}

@media (max-width: 767px) {
  .nanny-accordion-wrap {
    margin: 16px 0 22px;
  }

  .nanny-acc-head {
    padding: 18px 18px;
    border-radius: 16px;
  }

  .nanny-acc-title {
    font-size: 18px;
  }

  .nanny-acc-toggle {
    font-size: 26px;
  }

  .nanny-acc-body {
    padding: 0 18px 18px 18px;
    font-size: 15px;
  }

  .nanny-acc-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .nanny-acc-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px 0;
  }
}