.services-section {
  scroll-margin-top: 96px;
  padding: clamp(28px, 5vw, 56px) 0;
  background: var(--color-body);
  color: var(--color-body-text);
}
.services-inner { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

.services-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 6px;
}
.services-lead { margin: 0 0 18px; opacity: .95; font-size: clamp(15px, 2.6vw, 18px); }

/* MŘÍŽKA */
.services-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

/* KARTA */
.service-card {
  background: #f2e7d9;
  border: 1px solid rgba(0,0,0,.04);
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  overflow: visible;
  position: relative;
  scroll-margin-top: var(--header-h, 96px);
}
.service-card.order-open { z-index: 999; }

/* OBSAH */
.service-content {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 900px) { .service-content { grid-template-columns: 1fr; } }

/* OBRÁZEK + RESET MARGINŮ FIGURE (aby nic nepřesahovalo) */
.service-media { width: 100%; margin: 0; }
.service-media img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ČAS POD FOTKOU A CENA POD ČASEM (vždy svisle) */
.service-media .service-info {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; margin-top: 27px;
}
.info-chip {
  display: inline-flex; align-items: center;
  padding: 6px 10px; border-radius: 999px;
  background: rgba(235,221,203,0.6);
  border: 1px solid rgba(235,221,203,0.45);
  font-weight: 700; font-size: 15px;
}

/* TEXTOVÝ BLOK */
.service-body { padding: 10px 14px 16px; display:flex; flex-direction:column; }
.service-title { margin: 0 0 4px; font-weight: 700; font-size: clamp(20px, 2.8vw, 22px); color: #2f2722; }
.service-for { margin: 0 0 10px; opacity: .9; }
.service-desc { margin: 0 0 10px; line-height: 1.6; }

/* SOUČÁSTI */
.service-includes {
  margin: 0 0 10px; padding: 0; list-style: none;
  display: grid; gap: 6px 12px; grid-template-columns: 1fr;
}
@media (max-width: 600px) { .service-includes { grid-template-columns: 1fr; } }
.service-includes li::before { content: "• "; color: #b7935a; }

/* OBJEDNAT – dole pod textem */
.service-contact { margin-top: auto; text-align: match-parent; padding-top: 12px; }
.contact-chip {
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 16px; border-radius:999px; font-weight:700;
  background:var(--color-hf); color:var(--color-hf-text);
  border:1px solid rgba(235,221,203,.35);
  box-shadow:0 2px 10px rgba(0,0,0,.06), inset 0 0 0 1px rgba(235,221,203,.25);
  transition:background .16s ease, box-shadow .16s ease, color .16s ease;
}
.contact-chip:hover, .contact-chip:focus-visible {
  background:var(--hover-bg); color:var(--color-body-text);
  box-shadow:inset 0 0 0 1px var(--hover-glow); outline:none;
}

/* DROPDOWN „OBJEDNAT“ */
.order { position: relative; }
.order-toggle { position: relative; }
.order-menu {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%);
  display: none; min-width: 180px;
  background: #f2e7d9; border: 1px solid rgba(0,0,0,.08); border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,.12); padding: 6px; z-index: 100;
}
.order.open .order-menu { display: block; }
.order-item {
  display:block; padding:10px 12px; border-radius:10px; text-decoration:none;
  font-weight:700; color:var(--color-body-text);
  background:rgba(235,221,203,0.6); border:1px solid rgba(235,221,203,0.45);
  transition:background .16s ease, box-shadow .16s ease, color .16s ease;
}
.order-item + .order-item { margin-top:6px; }
.order-item:hover, .order-item:focus-visible {
  background:var(--hover-bg); box-shadow:inset 0 0 0 1px rgba(235,221,203,.45); outline:none;
}
@media (max-width: 420px) { .order-menu { min-width: 160px; } }
/* Cena mobilní pedikůry */
.service-note{
  color:#b7935a;
  font-style: italic;
  display:flex; align-items:center; gap:6px;
  margin: 12px 0 36px; /* 👈 zvětšená mezera pod textem */
}
.service-note svg{
  width:20px; height:20px;
  fill: currentColor; /* zdědí #b7935a */
  flex: 0 0 auto;
}

/* FAQ */
.services-faq {
  margin-top: clamp(20px, 4vw, 32px);
  background: #f2e7d9; border-radius: 16px; border: 1px solid rgba(0,0,0,.04);
  box-shadow: 0 2px 10px rgba(0,0,0,.06); padding: 12px 14px 14px;
}
.services-faq h3 { margin: 0 0 8px; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(20px, 2.8vw, 22px); font-weight: 700; }
.services-faq details { background: rgba(235,221,203,.35); border: 1px solid rgba(235,221,203,.45); border-radius:10px; padding:10px 12px; margin:8px 0; }
.services-faq summary { cursor: pointer; font-weight: 700; }
.services-faq summary::-webkit-details-marker { display: none; }
.services-faq summary::after { content: " +"; font-weight:700; float:right; }
.services-faq details[open] summary::after { content: " –"; }


