/* =====================================================================
   LASER LEJDI — Centrum upiekszania ciala
   System wizualny: "swiatlo lasera na skorze"
   Paleta: sliwka / dusty rose / szampan / blush / krem
   Typografia: Cinzel (naglowki) + Montserrat (tekst, UI)
   ===================================================================== */

:root {
  /* Kolory */
  --ink: #2a1b26;          /* tekst glowny (sliwkowa czern) */
  --ink-soft: #6c5763;     /* tekst drugorzedny */
  --plum: #3a2336;         /* ciemne sekcje, stopka */
  --plum-deep: #2c1a29;
  --rose: #c47d93;         /* akcent glowny / przyciski */
  --rose-deep: #a85f76;    /* hover */
  --rose-soft: #e7c2cd;
  --champagne: #c4a061;    /* zloty akcent, cienkie linie */
  --champagne-soft: #e7d3ad;
  --blush: #f6e7e1;        /* miekkie tlo sekcji */
  --blush-deep: #efd9d2;
  --cream: #fcf8f5;        /* tlo strony */
  --mist: #ece0db;         /* obramowania */
  --white: #ffffff;
  --ok: #5c8a6b;
  --ok-bg: #e6f0e8;
  --pending: #c4924e;
  --pending-bg: #f7ecda;

  /* Cienie (z rozowym podtonem) */
  --shadow-sm: 0 2px 8px rgba(58, 35, 54, 0.06);
  --shadow-md: 0 10px 30px rgba(58, 35, 54, 0.10);
  --shadow-lg: 0 24px 60px rgba(58, 35, 54, 0.16);
  --shadow-rose: 0 14px 34px rgba(168, 95, 118, 0.28);

  /* Krzywe / promienie */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-pill: 999px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --container: 1160px;
  --nav-h: 76px;

  --font-display: "Cinzel", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* --------------------------------- Reset ---------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, button { font-size: 1rem; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}

::selection { background: var(--rose-soft); color: var(--plum-deep); }

/* ------------------------------- Pomocnicze ------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rose-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--champagne);
}
.eyebrow.center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--champagne);
}

.section { padding: clamp(64px, 9vw, 132px) 0; position: relative; scroll-margin-top: var(--nav-h); }
.section__head { max-width: 640px; margin-bottom: 56px; }
.section__head.center { margin-inline: auto; text-align: center; }
.section__head.center .eyebrow { justify-content: center; }
.section__title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  margin: 18px 0 14px;
}
.section__title em { font-style: italic; color: var(--rose-deep); }
.section__lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 56ch;
}
.section__head.center .section__lead { margin-inline: auto; }

/* Przyciski */
.btn {
  --bg: var(--rose);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 1.7em;
  border-radius: var(--r-pill);
  background: var(--bg);
  color: var(--fg);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    background 0.3s var(--ease);
  box-shadow: var(--shadow-rose);
  position: relative;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); background: var(--rose-deep); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--champagne); outline-offset: 3px; }

.btn--ghost {
  --bg: transparent;
  --fg: var(--plum-deep);
  box-shadow: inset 0 0 0 1.6px var(--rose);
}
.btn--soft {
  --bg: var(--blush);
  --fg: var(--plum-deep);
  box-shadow: inset 0 0 0 1.6px var(--rose);
}
.btn--soft:hover {
  --bg: var(--rose-soft);
  --fg: var(--plum-deep);
  box-shadow: inset 0 0 0 1.6px var(--rose-deep), var(--shadow-sm);
}
.btn--ghost:hover {
  background: var(--rose-soft);
  --fg: var(--plum-deep);
  box-shadow: inset 0 0 0 1.6px var(--rose-deep), var(--shadow-sm);
}
.btn--light {
  --bg: #fff;
  --fg: var(--plum);
  box-shadow: var(--shadow-md);
}
.btn--light:hover { --bg: #fff; }
.btn--block { width: 100%; }
.btn--sm { padding: 0.6em 1.1em; font-size: 0.86rem; box-shadow: none; }
.btn--sm.btn:hover { transform: none; }

.link-underline {
  position: relative;
  font-weight: 600;
  color: var(--rose-deep);
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1.5px;
  background: var(--champagne);
  transform: scaleX(0.25);
  transform-origin: left;
  opacity: 0.6;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); opacity: 1; }

/* =============================== Nawigacja =============================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav.scrolled {
  background: rgba(252, 248, 245, 0.85);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(58, 35, 54, 0.06), var(--shadow-sm);
}
.brand { display: flex; align-items: baseline; gap: 0.55rem; }
.brand__mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink);
}
.brand__mark .dot { color: var(--rose); }
.brand__sub {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__links a:hover { color: var(--rose-deep); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__userchip {
  display: none;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--plum);
}
.nav__userchip .avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--rose), var(--champagne));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.nav__burger span {
  position: relative;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.nav__burger span::before,
.nav__burger span::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }

/* ================================== Hero ================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  isolation: isolate;
}
.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.85;
  pointer-events: none;
}
.hero__glow--1 {
  width: 60vw; height: 60vw;
  max-width: 820px; max-height: 820px;
  top: -16%; right: -10%;
  background: radial-gradient(circle at 50% 50%,
    rgba(196, 125, 147, 0.55),
    rgba(196, 125, 147, 0.18) 45%,
    transparent 70%);
  animation: drift1 16s var(--ease) infinite alternate;
}
.hero__glow--2 {
  width: 46vw; height: 46vw;
  max-width: 620px; max-height: 620px;
  bottom: -18%; left: -12%;
  background: radial-gradient(circle at 50% 50%,
    rgba(196, 160, 97, 0.42),
    rgba(231, 211, 173, 0.18) 45%,
    transparent 70%);
  animation: drift2 20s var(--ease) infinite alternate;
}
.hero__glow--3 {
  width: 30vw; height: 30vw;
  max-width: 360px; max-height: 360px;
  top: 30%; left: 38%;
  background: radial-gradient(circle at 50% 50%,
    rgba(246, 231, 225, 0.7),
    transparent 70%);
  animation: drift3 14s var(--ease) infinite alternate;
}
@keyframes drift1 {
  to { transform: translate(-40px, 30px) scale(1.08); }
}
@keyframes drift2 {
  to { transform: translate(40px, -26px) scale(1.12); }
}
@keyframes drift3 {
  to { transform: translate(20px, 28px) scale(1.15); opacity: 0.5; }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr auto; /* 1fr = min. szerokosc najdluzszego slowa -> tekst nigdy nie wjedzie pod zdjecie */
  gap: 40px;
  align-items: center;
  width: 100%;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.5em 1em 0.5em 0.6em;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--rose-soft);
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--plum);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}
.hero__badge .pip {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(196, 125, 147, 0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(196, 125, 147, 0.25); }
  50% { box-shadow: 0 0 0 7px rgba(196, 125, 147, 0.08); }
}
.hero__title {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  line-height: 1.02;
  margin: 22px 0 0;
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: italic;
  color: var(--rose-deep);
  position: relative;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 26px 0 0;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 40px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--mist);
}
.hero__meta .stat .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--plum);
  display: block;
  line-height: 1;
}
.hero__meta .stat .lbl {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* Wizualizacja wiazki lasera w hero */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  /* Szerokosc zalezy od okna (takze od jego WYSOKOSCI), wiec cala sekcja miesci sie
     na ekranie bez przewijania. Limit 40vw gwarantuje, ze tekst zawsze ma swoje miejsce.
     Pierwsza linia to zapas dla starszych przegladarek, ktore nie znaja jednostki svh. */
  width: min(432px, 40vw);
  width: min(432px, 40vw, calc(56svh * 0.8));
  height: auto;
  max-width: 100%;
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 90% at 70% 0%, rgba(231, 194, 205, 0.55), transparent 60%),
    linear-gradient(160deg, #fff 0%, var(--blush) 100%);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.scroll-cue .mouse {
  width: 22px; height: 36px;
  border: 1.5px solid var(--ink-soft);
  border-radius: 12px;
  position: relative;
}
.scroll-cue .mouse::after {
  content: "";
  position: absolute;
  left: 50%; top: 7px;
  width: 3px; height: 7px;
  border-radius: 2px;
  background: var(--rose);
  transform: translateX(-50%);
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot {
  0% { opacity: 0; transform: translate(-50%, -3px); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* ============================ Jak to dziala ============================= */
.how { background: linear-gradient(180deg, var(--cream), #fff 60%); }
.how__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.how__figure {
  position: sticky;
  top: calc(var(--nav-h) + 30px);
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, var(--plum) 0%, var(--plum-deep) 100%);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.how__figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 60% 10%, rgba(196, 125, 147, 0.3), transparent 60%);
  pointer-events: none;
}
.how__figcaption {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-top: 18px;
  text-align: center;
  position: relative;
}
.steps { display: flex; flex-direction: column; gap: 14px; counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}
.step:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-soft);
}
.step__num {
  counter-increment: step;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--blush);
  color: var(--rose-deep);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  border: 1px solid var(--rose-soft);
}
.step__num::before { content: "0" counter(step); }
.step h3 { font-size: 1.22rem; margin-bottom: 5px; }
.step p { color: var(--ink-soft); font-size: 0.97rem; }

/* ============================== Korzysci =============================== */
.benefits { background: var(--blush); }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.bcard {
  background: #fff;
  border-radius: var(--r-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  border: 1px solid transparent;
}
.bcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-soft);
}
.bcard__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blush-deep), #fff);
  color: var(--rose-deep);
  margin-bottom: 18px;
}
.bcard__icon svg { width: 26px; height: 26px; }
.bcard h3 { font-size: 1.18rem; margin-bottom: 8px; }
.bcard p { color: var(--ink-soft); font-size: 0.94rem; }

/* =============================== Terminarz ============================== */
.schedule { background: linear-gradient(180deg, #fff, var(--cream)); scroll-margin-top: var(--nav-h); }

.sched {
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.sched__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  background: linear-gradient(180deg, #fff, var(--cream));
  border-bottom: 1px solid var(--mist);
  flex-wrap: wrap;
}
.sched__nav { display: flex; align-items: center; gap: 12px; }
.sched__navbtn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--plum);
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}
.sched__navbtn:hover { color: var(--rose-deep); transform: scale(1.06); }
.sched__navbtn:disabled { opacity: 0.35; cursor: not-allowed; }
.sched__range {
  font-family: var(--font-display);
  font-size: 1.18rem;
  min-width: 220px;
  text-align: center;
}
.sched__range small { display: block; font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 2px; }
.sched__today {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--rose-deep);
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  padding: 14px 26px;
  border-bottom: 1px solid var(--mist);
  font-size: 0.82rem;
  color: var(--ink-soft);
  background: var(--cream);
}
.legend span { display: inline-flex; align-items: center; gap: 0.5em; }
.legend .dot { width: 12px; height: 12px; border-radius: 4px; }
.dot--free { background: #fff; border: 1.5px solid var(--rose-soft); }
.dot--busy { background: var(--mist); border: 1.5px solid var(--mist); }
.dot--mine { background: var(--rose); }
.dot--ok { background: var(--ok); }

/* Widok tygodnia (desktop) */
.week {
  display: grid;
  grid-template-columns: 64px repeat(var(--cols, 6), 1fr);
  overflow-x: auto;
}
.week__cell {
  border-right: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  min-height: 56px;
  padding: 6px;
}
.week__corner { border-right: 1px solid var(--mist); border-bottom: 1px solid var(--mist); background: var(--cream); }
.week__dayhead {
  text-align: center;
  padding: 14px 6px;
  border-right: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  background: var(--cream);
  position: sticky; top: 0;
}
.week__dayhead .dow { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.week__dayhead .date { font-family: var(--font-display); font-size: 1.25rem; }
.week__dayhead.is-today { background: var(--blush); }
.week__dayhead.is-today .date { color: var(--rose-deep); }
.week__timecol {
  border-right: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  display: grid; place-items: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  background: var(--cream);
  font-variant-numeric: tabular-nums;
}

/* Widok dnia (mobile) */
.dayview { display: none; padding: 8px; }
.daychips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 16px;
  border-bottom: 1px solid var(--mist);
  scrollbar-width: none;
}
.daychips::-webkit-scrollbar { display: none; }
.daychip {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 54px;
  padding: 9px 6px;
  border-radius: var(--r-sm);
  background: var(--cream);
  border: 1.5px solid transparent;
  transition: all 0.3s var(--ease);
}
.daychip .dow { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.daychip .date { font-family: var(--font-display); font-size: 1.2rem; }
.daychip.active { background: var(--plum); border-color: var(--plum); }
.daychip.active .dow, .daychip.active .date { color: #fff; }
.daychip.is-today:not(.active) { border-color: var(--rose-soft); }
.daylist { display: flex; flex-direction: column; gap: 8px; padding: 14px 16px; }
.daylist .closed { text-align: center; color: var(--ink-soft); padding: 30px 0; font-size: 0.95rem; }

/* Slot (wspolny dla obu widokow) */
.slot {
  width: 100%;
  height: 100%;
  min-height: 44px;
  border-radius: var(--r-sm);
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  text-align: left;
  font-size: 0.82rem;
  line-height: 1.25;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), border-color 0.25s var(--ease);
  border: 1.5px solid transparent;
}
.dayview .slot {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 12px 16px;
}
.dayview .slot .slot__time { font-weight: 700; font-size: 0.98rem; }
.slot__time { font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.slot__label { font-size: 0.76rem; }

.slot--free {
  background: #fff;
  border-color: var(--rose-soft);
  color: var(--rose-deep);
  cursor: pointer;
}
.slot--free:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-rose);
}
.slot--free:hover .slot__time { color: #fff; }
.slot--free .slot__label::before { content: "Wolny"; }
.slot--free:hover .slot__label::before { content: "Zarezerwuj  ›"; }

.slot--busy {
  background: var(--mist);
  border-color: var(--mist);
  color: var(--ink-soft);
  cursor: default;
}
.slot--busy .slot__time { color: var(--ink-soft); }

.slot--mine { background: var(--blush); border-color: var(--rose); cursor: default; }
.slot--mine.is-approved { background: var(--ok-bg); border-color: var(--ok); }
.slot--mine .slot__time { color: var(--plum); }
.slot__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.15em 0.55em;
  border-radius: var(--r-pill);
  align-self: flex-start;
}
.dayview .slot__meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.tag--pending { background: var(--pending-bg); color: var(--pending); }
.tag--ok { background: var(--ok-bg); color: var(--ok); }
.tag--admin { background: rgba(196,125,147,0.16); color: var(--rose-deep); }

/* Slot administratorki */
.slot--admin { background: #fff; border-color: var(--rose-soft); cursor: default; }
.slot--admin.is-approved { border-color: var(--ok); background: var(--ok-bg); }
.slot--admin .who { font-weight: 700; color: var(--plum); font-size: 0.8rem; }
.slot--admin .ph { color: var(--ink-soft); font-size: 0.72rem; }
.slot__admin-actions { display: flex; gap: 6px; margin-top: 4px; }
.icon-btn {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: grid; place-items: center;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.icon-btn svg { width: 16px; height: 16px; }
.icon-btn--ok { background: var(--ok-bg); color: var(--ok); }
.icon-btn--ok:hover { background: var(--ok); color: #fff; transform: scale(1.08); }
.icon-btn--del { background: #f7e6e6; color: #b15a5a; }
.icon-btn--del:hover { background: #b15a5a; color: #fff; transform: scale(1.08); }

.sched__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 26px;
  background: var(--cream);
  border-top: 1px solid var(--mist);
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.sched__note svg { flex: 0 0 auto; width: 18px; height: 18px; color: var(--rose-deep); margin-top: 2px; }
.sched__note a { color: var(--rose-deep); font-weight: 600; }

.sched__loading {
  padding: 60px 26px;
  text-align: center;
  color: var(--ink-soft);
}
.spinner {
  width: 30px; height: 30px;
  border: 3px solid var(--mist);
  border-top-color: var(--rose);
  border-radius: 50%;
  margin: 0 auto 14px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================== Kontakt =============================== */
.contact { background: var(--blush); scroll-margin-top: var(--nav-h); }
.contact__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: stretch;
}
.contact__card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.contact__list { list-style: none; display: flex; flex-direction: column; gap: 22px; margin: 28px 0 32px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__ico {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--blush);
  color: var(--rose-deep);
}
.contact__ico svg { width: 22px; height: 22px; }
.contact__list .k { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.contact__list .v { font-size: 1.08rem; font-weight: 600; color: var(--ink); }
.contact__list .v a:hover { color: var(--rose-deep); }
.contact__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; }

.contact__map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 420px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.6);
}
.contact__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(0.2) contrast(1.02); }

/* =============================== Stopka ================================ */
.footer {
  background: var(--plum-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__brand .brand__mark { color: #fff; }
.footer__brand p { margin-top: 16px; max-width: 38ch; font-size: 0.92rem; }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 0.92rem; }
.footer ul a:hover { color: var(--rose-soft); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================= Modale (auth) =========================== */
.modal-root {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-root.open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 26, 41, 0.55);
  backdrop-filter: blur(6px);
  animation: fade 0.3s var(--ease);
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--cream);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  animation: pop 0.4s var(--ease);
  max-height: 92vh;
  overflow-y: auto;
}
@keyframes pop {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.modal__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}
.modal__close:hover { transform: rotate(90deg); color: var(--rose-deep); }
.modal__eyebrow { color: var(--rose-deep); }
.modal__title { font-size: 1.9rem; margin: 12px 0 6px; }
.modal__lead { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 26px; }

.field { margin-bottom: 16px; }
.field > label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input {
  width: 100%;
  padding: 0.85em 1em;
  border: 1.5px solid var(--mist);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input::placeholder { color: #b9a8b0; }
.field input:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(196, 125, 147, 0.14);
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field--row .field { margin-bottom: 0; }

.form-msg {
  font-size: 0.86rem;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  margin-bottom: 14px;
  display: none;
}
.form-msg.show { display: block; }
.form-msg.error { background: #f8e7e7; color: #a64a4a; }
.form-msg.success { background: var(--ok-bg); color: var(--ok); }

.modal__switch {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.modal__switch button { color: var(--rose-deep); font-weight: 700; }
.modal__switch button:hover { text-decoration: underline; }

/* Modal potwierdzenia rezerwacji */
.confirm__slot {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--rose-soft);
  border-radius: var(--r-md);
  margin: 8px 0 22px;
}
.confirm__slot .cal {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--blush);
  display: grid; place-items: center;
  color: var(--rose-deep);
}
.confirm__slot .cal svg { width: 26px; height: 26px; }
.confirm__slot .when .d { font-weight: 700; font-size: 1.05rem; color: var(--plum); text-transform: capitalize; }
.confirm__slot .when .t { color: var(--ink-soft); font-size: 0.9rem; }

/* ================================ Toast ================================ */
.toast-wrap {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(420px, calc(100vw - 40px));
}
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: var(--plum);
  color: #fff;
  box-shadow: var(--shadow-lg);
  font-size: 0.92rem;
  animation: toastin 0.4s var(--ease);
}
.toast.leaving { animation: toastout 0.35s var(--ease) forwards; }
@keyframes toastin { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes toastout { to { opacity: 0; transform: translateY(12px); } }
.toast .ico { flex: 0 0 auto; width: 22px; height: 22px; display: grid; place-items: center; }
.toast--success { background: #3c6b4c; }
.toast--error { background: #9c4646; }

/* ============================ Reveal on scroll ========================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ============================ Laser beam (SVG) ========================= */
.beam { transform-origin: top center; animation: beamPulse 3.2s var(--ease) infinite; }
@keyframes beamPulse { 0%,100% { opacity: 0.55; } 50% { opacity: 1; } }
.beam-dot { animation: beamTravel 3.2s var(--ease) infinite; }
@keyframes beamTravel {
  0% { transform: translateY(0); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(118px); opacity: 0; }
}
.follicle-glow { animation: folliclePulse 3.2s var(--ease) infinite; transform-origin: center; }
@keyframes folliclePulse {
  0%, 55% { opacity: 0; r: 8; }
  72% { opacity: 0.9; r: 18; }
  100% { opacity: 0; r: 26; }
}

/* ========================= Strefy zabiegowe =========================== */
.zones { background: var(--cream); }
.zones__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.zones__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  rotate: -2deg;
}
.zones__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.zones__copy .section__head { margin-bottom: 28px; }
.zones__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.zones__chips li {
  list-style: none;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--plum);
  background: #fff;
  border: 1px solid var(--rose-soft);
  border-radius: var(--r-pill);
  padding: 0.5em 1.05em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.zones__chips li:hover { transform: translateY(-2px); background: var(--rose); color: #fff; border-color: var(--rose); }

/* ============================== Efekty ================================= */
.results { background: linear-gradient(180deg, var(--cream), #fff); }
.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.result {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mist);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  /* równa wysokość kafelków, podpis wypełnia resztę (podpisy mają różną długość) */
  display: flex;
  flex-direction: column;
}
.result:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.result img {
  display: block;
  width: 100%;
  height: auto;          /* bez tego atrybut height="590" z HTML wygrywa i psuje kadr */
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}
.result figcaption {
  padding: 14px 16px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.4;
  flex: 1 1 auto;              /* podpis wypełnia dół kafelka */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================ Zabiegi RF ============================== */
.rf { background: var(--blush); }
.rf__feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-bottom: 56px;
}
.rf__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  max-width: 420px;
}
.rf__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.rf__list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.rf__list li {
  list-style: none;
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.rf__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(196, 125, 147, 0.18);
}
.rf__list strong { color: var(--plum); font-weight: 700; }
.rf__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 760px;
  margin-inline: auto;
}

/* ====================== Baner kontaktowy (witryna) ==================== */
.contact__banner {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  margin-bottom: 44px;
}
.contact__banner img { display: block; width: 100%; height: auto; }

/* ============================== Responsywnosc ========================== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  /* Uklad jednokolumnowy: zdjecie jest POD tekstem, wiec nie konkuruje z nim o miejsce
     - limit 40vw z wersji na komputery tu nie obowiazuje. */
  .hero__visual { width: min(380px, 82vw); max-width: 380px; margin-inline: auto; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .how__figure { position: static; }
  .zones__grid { grid-template-columns: 1fr; gap: 36px; }
  .zones__media { rotate: 0deg; max-width: 460px; margin-inline: auto; }
  .rf__feature { grid-template-columns: 1fr; gap: 32px; }
  .rf__media { margin-inline: auto; }
  .results__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__links.mobile-open {
    display: flex;
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(252, 248, 245, 0.98);
    backdrop-filter: blur(14px);
    padding: 12px 24px 24px;
    box-shadow: var(--shadow-md);
  }
  .nav__links.mobile-open li { border-bottom: 1px solid var(--mist); }
  .nav__links.mobile-open a { display: block; padding: 16px 0; }
  .how__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .week { display: none; }
  .dayview { display: block; }
  .sched__range { min-width: auto; }
}

/* Tryb adminki: linki marketingowe chowamy do menu (☰), aby Panel + Wyloguj
   zawsze mieściły się w pasku (treść była szersza niż kontener). */
body.nav-admin .nav__links { display: none; }
body.nav-admin .nav__burger { display: flex; }
body.nav-admin .nav__links.mobile-open {
  display: flex; position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column;
  align-items: stretch; gap: 0; background: rgba(252, 248, 245, 0.98); backdrop-filter: blur(14px);
  padding: 12px 24px 24px; box-shadow: var(--shadow-md);
}
body.nav-admin .nav__links.mobile-open li { border-bottom: 1px solid var(--mist); }
body.nav-admin .nav__links.mobile-open a { display: block; padding: 16px 0; }

@media (max-width: 640px) {
  .nav__cta .btn span.long { display: none; }          /* „Panel sterowania" -> „Panel" */
  .nav__userchip #userName { display: none; }          /* zostaw sam awatar, oszczędza miejsce */
  .nav__cta { gap: 8px; }
  .nav__cta .btn--sm { padding: 0.5em 0.75em; font-size: 0.76rem; white-space: nowrap; }
  .nav__userchip { flex-shrink: 0; }
}
@media (max-width: 560px) {
  .container { padding-inline: 18px; }
  .benefits__grid { grid-template-columns: 1fr; }
  .modal { padding: 28px 22px; }
  .contact__card { padding: 28px 22px; }
  .field--row { grid-template-columns: 1fr; }
  .hero__meta { gap: 18px 28px; }
  .nav__cta .btn span.long { display: none; }
  .rf__gallery { grid-template-columns: 1fr; max-width: 420px; }
}

/* Mniejsze numery / drobne korekty */
@media (min-width: 861px) {
  .nav__userchip.show { display: flex; }
}

/* ====================== Szacunek dla redukcji ruchu ==================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Gwarancja działania atrybutu hidden (np. ukryte przyciski logowania/wylogowania,
   karta użytkownika) niezależnie od reguł display dla .btn itp. */
[hidden] { display: none !important; }

/* ===== Poprawka nagłówka (nawigacji) na telefonach ≤560px ===== */
@media (max-width: 560px) {
  .nav__inner { padding-inline: 16px; gap: 12px; }
  .brand { gap: 0; min-width: 0; }
  .brand__sub { display: none; }                 /* ukryj podtytuł, by zmieścić menu */
  .brand__mark { font-size: 1.15rem; letter-spacing: 0.08em; white-space: nowrap; }
  .nav__cta { gap: 10px; }
  .nav__cta .btn--sm { padding: 0.5em 0.8em; font-size: 0.78rem; }
  #userChip { display: none !important; }         /* oszczędność miejsca na mobile */
}

/* ===== Logowanie z menu (hamburger) na telefonach ===== */
.nav__menu-auth { display: none; }
.nav__menu-auth-btn {
  display: block; width: 100%; text-align: left;
  background: none; border: 0; font: inherit; cursor: pointer;
  padding: 16px 0; font-weight: 600; color: var(--rose-deep, #b25c7d);
}
@media (max-width: 860px) {
  #navAuthBtn, #navLogoutBtn, #userChip { display: none !important; }
  .nav__menu-auth { display: block; }
}

/* ===== Poprawki mobilne: kontakt (1 kolumna, bez overflow) + hero ===== */
@media (max-width: 860px) {
  .contact__grid { grid-template-columns: minmax(0, 1fr); }
  .contact__card, .contact__map { min-width: 0; }
}
.contact__list .v { overflow-wrap: anywhere; }
@media (max-width: 560px) {
  .hero__title { font-size: clamp(2rem, 8vw, 2.7rem); }
  .hero__badge { max-width: 100%; }
  .hero__sub { max-width: 100%; }
}

/* ===== Galeria RF: pokazuj cale zdjecia (pionowy schemat) bez przycinania ===== */
.rf__gallery .result img { aspect-ratio: auto; object-fit: contain; }
.rf__gallery { align-items: start; }

/* ===================================================================
   PROMOCJE + FORMULARZ ZGŁOSZENIOWY  (dodane wg życzeń właścicielki)
   =================================================================== */
.promos { background: var(--blush); }
.promos__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
}
.promo {
  position: relative;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  padding: 36px 30px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.promo--featured { border-color: var(--rose-soft); box-shadow: var(--shadow-rose); }
.promo__badge {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rose-deep);
  background: var(--blush);
  padding: 7px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.promo--featured .promo__badge { background: var(--rose); color: #fff; }
.promo__price { display: flex; align-items: baseline; justify-content: center; gap: 6px; line-height: 1; }
.promo__amount { font-family: var(--font-display); font-size: 3.4rem; font-weight: 600; color: var(--ink); }
.promo__cur { font-family: var(--font-display); font-size: 1.4rem; color: var(--rose-deep); }
.promo__desc { color: var(--ink-soft); font-size: 0.94rem; margin: 14px 0 22px; max-width: 235px; }
.promo .promo__cta { margin-top: auto; }
.promos__consult {
  max-width: 720px;
  margin: 42px auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}
.promos__consult strong { color: var(--ink); }

/* Formularz zgłoszeniowy (modal) */
.modal--wide { max-width: 560px; max-height: 92vh; overflow-y: auto; }
.lead__promo {
  background: var(--blush);
  border: 1px solid var(--rose-soft);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 14px;
}
.lead__promo strong { color: var(--rose-deep); }
.lead__group { margin-bottom: 16px; }
.lead__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.lead__label small { font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--ink-soft); }
.lead__input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--mist);
  border-radius: var(--r-sm);
  padding: 11px 13px;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.lead__input:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px var(--rose-soft); }
#leadPartsNote { margin-top: 10px; }
.parts { display: flex; flex-wrap: wrap; gap: 8px; }
.part {
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--mist);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease), color 0.15s var(--ease);
}
.part:hover { border-color: var(--rose); }
.part.is-on { background: var(--rose); border-color: var(--rose); color: #fff; box-shadow: var(--shadow-sm); }
.lead__slotpick { display: flex; flex-direction: column; gap: 10px; }
.lead__date { cursor: pointer; }
.lead__times { display: flex; flex-wrap: wrap; gap: 8px; min-height: 38px; align-items: center; }
.lead__hint { color: var(--ink-soft); font-size: 0.86rem; }
.timepick {
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--mist);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease), color 0.15s var(--ease);
}
.timepick:hover { border-color: var(--rose); }
.timepick.is-on { background: var(--rose); border-color: var(--rose); color: #fff; }
.lead__grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead__check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 4px 0 18px;
  cursor: pointer;
}
.lead__check input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--rose); flex-shrink: 0; }
.lead__fine { font-size: 0.78rem; color: var(--ink-soft); text-align: center; margin-top: 12px; }

@media (max-width: 560px) {
  .promos__grid { grid-template-columns: minmax(0, 1fr); max-width: 360px; }
  .lead__grid2 { grid-template-columns: minmax(0, 1fr); }
  .promo__amount { font-size: 3rem; }
}

/* link powrotu na podstronie RF */
.rf__back { text-align: center; margin-top: 40px; }

/* Nawigacja na średnich ekranach (861–1200px): mniej miejsca = ciaśniej */
@media (max-width: 1200px) {
  .nav__links { gap: 18px; }
  .nav__links a { font-size: 0.85rem; }
  .brand__sub { display: none; }
}

/* =========================== GALERIA (podstrona) =========================== */
.gallery__cat {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--rose-deep);
  margin: 40px 0 18px;
  text-align: center;
}
.gallery__cat:first-of-type { margin-top: 8px; }
.gallery__grid { columns: 3 260px; column-gap: 18px; margin-bottom: 8px; }
.gallery__item {
  break-inside: avoid;
  margin: 0 0 18px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  border: 1px solid var(--mist);
}
.gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  cursor: zoom-in;
  transition: transform 0.45s var(--ease);
}
.gallery__item:hover img { transform: scale(1.03); }
.gallery__item figcaption {
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(42, 27, 38, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 94vw;
  max-height: 92vh;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-lg);
}
.lightbox__close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.32); }

/* Zdjęcie wiodące galerii */
.gallery__lead {
  max-width: 460px;
  margin: 0 auto 12px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mist);
  background: var(--white);
}
.gallery__lead img { display: block; width: 100%; height: auto; cursor: zoom-in; }
.gallery__lead figcaption {
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ===== Zabezpieczenie formularza: honeypot + „Nie jestem robotem" ===== */
.lead__hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.lead__robot {
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--mist);
  background: var(--cream);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  margin: 0 0 16px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}
.lead__robot:hover { border-color: var(--rose); }
.lead__robot input { width: 22px; height: 22px; accent-color: var(--rose); cursor: pointer; flex-shrink: 0; }
.lead__robot.is-checked { border-color: var(--rose); background: var(--blush); }

/* ===== Propozycja założenia konta (po wpisaniu e-maila w formularzu) ===== */
.lead__account {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--blush);
  border: 1px solid var(--rose-soft);
  border-radius: var(--r-md);
  padding: 14px 16px;
  margin: 0 0 6px;
  animation: leadAccIn 0.25s var(--ease);
}
@keyframes leadAccIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.lead__account-txt { display: flex; flex-direction: column; gap: 3px; }
.lead__account-txt strong { font-size: 0.92rem; color: var(--plum-deep); }
.lead__account-txt span { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.4; }
.lead__account .btn { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 480px) {
  .lead__account { flex-direction: column; align-items: flex-start; }
  .lead__account .btn { width: 100%; }
}

/* ===== Kalendarz miesięczny w formularzu promocyjnym (Funkcja B) ===== */
.leadcal { border: 1px solid var(--mist); border-radius: var(--r-md); padding: 12px 12px 10px; background: var(--white); margin-bottom: 12px; }
.leadcal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.leadcal__title { font-family: var(--font-display); font-size: 1.05rem; color: var(--plum-deep); font-weight: 600; }
.leadcal__nav { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--mist); background: var(--cream); color: var(--plum); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s var(--ease), border-color .15s var(--ease); }
.leadcal__nav:hover:not(:disabled) { background: var(--blush); border-color: var(--rose); }
.leadcal__nav:disabled { opacity: .35; cursor: default; }
.leadcal__dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 4px; }
.leadcal__dow span { text-align: center; font-size: .7rem; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; }
.leadcal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; min-height: 210px; }
.leadcal__loading { grid-column: 1 / -1; text-align: center; color: var(--ink-soft); font-size: .85rem; padding: 80px 0; }
.leadcal__cell { position: relative; aspect-ratio: 1 / 1; border: 1px solid transparent; border-radius: 10px; background: transparent; font: inherit; color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; transition: background .12s var(--ease), border-color .12s var(--ease), color .12s var(--ease); }
.leadcal__cell--empty { border: none; background: none; cursor: default; }
.leadcal__num { font-size: .92rem; }
.leadcal__cell--free { background: var(--blush); border-color: var(--rose-soft); color: var(--plum-deep); font-weight: 600; }
.leadcal__cell--free:hover { background: var(--rose); color: #fff; border-color: var(--rose); }
.leadcal__cell--free.is-selected { background: var(--plum); color: #fff; border-color: var(--plum); box-shadow: var(--shadow-sm); }
.leadcal__cell--off { cursor: default; }
.leadcal__cell--off .leadcal__num { color: #cbb9c1; }
.leadcal__cell--res { background: var(--cream); color: #b9a6ae; cursor: default; }
.leadcal__cell--res .leadcal__num { text-decoration: line-through; opacity: .7; }
.leadcal__dot { position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--rose-deep); }
.leadcal__legend { display: flex; gap: 16px; justify-content: center; margin-top: 10px; font-size: .72rem; color: var(--ink-soft); }
.leadcal__lg { display: inline-flex; align-items: center; gap: 6px; }
.leadcal__lg::before { content: ''; width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.leadcal__lg--free::before { background: var(--blush); border: 1px solid var(--rose-soft); }
.leadcal__lg--res::before { background: var(--cream); border: 1px solid var(--mist); }

/* =========================================================================
   PANEL ADMINISTRACYJNY (panel.html)
   ========================================================================= */
.panel-body { background: var(--mist); min-height: 100vh; }
.muted { color: var(--ink-soft); font-weight: 400; }

.padmin__bar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: 14px 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.padmin__brand { display: flex; align-items: baseline; gap: 12px; }
.padmin__logo { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--plum-deep); letter-spacing: .5px; }
.padmin__tag { font-size: .82rem; color: var(--rose-deep); font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; }
.padmin__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.padmin__who { font-size: .9rem; color: var(--ink-soft); }

.padmin__gate { display: grid; place-items: center; padding: 80px 22px; }
.padmin__gatecard { background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 46px 40px; max-width: 460px; text-align: center; }
.padmin__gatecard h1 { font-family: var(--font-display); font-size: 1.8rem; color: var(--plum-deep); margin-bottom: 10px; }
.padmin__gatecard p { color: var(--ink-soft); margin-bottom: 26px; }

.padmin__main { max-width: 1080px; margin: 0 auto; padding: 26px 22px 80px; }
.padmin__tabs { display: flex; gap: 10px; margin-bottom: 22px; }
.padmin__tab {
  padding: 11px 20px; border-radius: var(--r-pill);
  background: var(--white); color: var(--ink-soft);
  font-weight: 600; font-size: .95rem; box-shadow: var(--shadow-sm);
  transition: all .2s var(--ease);
}
.padmin__tab.is-on { background: var(--rose-deep); color: #fff; box-shadow: var(--shadow-rose); }
.padmin__panel { background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 24px; }
.padmin__loading { padding: 40px; text-align: center; color: var(--ink-soft); }

/* --- pasek kalendarza --- */
.calbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.calbar__nav { display: flex; align-items: center; gap: 10px; }
.calbar__arrow {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--blush); color: var(--plum-deep);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.calbar__arrow:hover { background: var(--rose-soft); }
.calbar__title { font-family: var(--font-display); font-size: 1.5rem; color: var(--plum-deep); min-width: 190px; text-align: center; }
.calbar__today { font-size: .85rem; font-weight: 600; color: var(--rose-deep); padding: 8px 14px; border-radius: var(--r-pill); background: var(--blush); }
.calbar__today:hover { background: var(--rose-soft); }
.calbar__modes { display: inline-flex; background: var(--mist); border-radius: var(--r-pill); padding: 4px; }
.calbar__mode { padding: 8px 20px; border-radius: var(--r-pill); font-weight: 600; font-size: .9rem; color: var(--ink-soft); transition: all .2s var(--ease); }
.calbar__mode.is-on { background: var(--white); color: var(--plum-deep); box-shadow: var(--shadow-sm); }

/* --- kalendarz miesięczny --- */
.mcal__dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-bottom: 8px; }
.mcal__dow span { text-align: center; font-weight: 700; font-size: .78rem; color: var(--rose-deep); text-transform: uppercase; letter-spacing: .5px; }
.mcal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.mcal__cell {
  min-height: 92px; border-radius: var(--r-sm);
  background: var(--cream); padding: 6px 6px 8px;
  display: flex; flex-direction: column; align-items: stretch; gap: 4px;
  text-align: left; transition: box-shadow .2s var(--ease), transform .15s var(--ease);
  border: 1.5px solid transparent;
}
.mcal__cell:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.mcal__cell--empty { background: transparent; pointer-events: none; }
.mcal__cell--off { background: #f3eef1; }
.mcal__cell--today { border-color: var(--rose-deep); }
.mcal__num { font-weight: 700; color: var(--ink); font-size: .95rem; }
.mcal__cell--off .mcal__num { color: var(--ink-soft); }
.mcal__chips { display: flex; flex-direction: column; gap: 3px; }
.mcal__chip { font-size: .72rem; font-weight: 600; padding: 2px 6px; border-radius: 6px; background: var(--rose-soft); color: var(--plum-deep); white-space: nowrap; }
.mcal__chip.is-pend { background: var(--pending, #f6e2c9); color: #8a5a20; }
.mcal__more { font-size: .7rem; color: var(--ink-soft); font-weight: 600; }

/* --- kalendarz roczny --- */
.ycal { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 20px; }
.ycal__month { background: var(--cream); border-radius: var(--r-md); padding: 12px; }
.ycal__mtitle { font-family: var(--font-display); font-size: 1.05rem; color: var(--plum-deep); text-align: center; margin-bottom: 8px; }
.ycal__dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 3px; }
.ycal__dow span { text-align: center; font-size: .62rem; font-weight: 700; color: var(--rose-deep); }
.ycal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.ycal__cell {
  aspect-ratio: 1 / 1; display: grid; place-items: center;
  font-size: .72rem; border-radius: 5px; color: var(--ink-soft);
  background: transparent; transition: background .15s var(--ease);
}
.ycal__cell:hover { background: var(--blush); }
.ycal__cell--empty { pointer-events: none; }
.ycal__cell--res { background: var(--rose-deep); color: #fff; font-weight: 700; }
.ycal__cell--pend { background: var(--pending, #f0c98a); color: #7a4d15; font-weight: 700; }
.ycal__cell--today { outline: 2px solid var(--plum-deep); outline-offset: -2px; }

/* --- konta klientek --- */
.users__top { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.users__h { font-family: var(--font-display); font-size: 1.5rem; color: var(--plum-deep); }
.users__sub { color: var(--ink-soft); font-size: .9rem; }
.ucard {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px 16px; border-radius: var(--r-md);
  background: var(--cream); margin-bottom: 10px; flex-wrap: wrap;
}
.ucard--admin { background: var(--blush); }
.ucard__main { flex: 1 1 260px; min-width: 0; }
.ucard__name { font-weight: 700; color: var(--ink); font-size: 1.02rem; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ucard__role { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: #fff; background: var(--rose-deep); padding: 2px 8px; border-radius: var(--r-pill); }
.ucard__inactive { font-size: .68rem; font-weight: 700; text-transform: uppercase; color: #8a5a20; background: var(--pending, #f6e2c9); padding: 2px 8px; border-radius: var(--r-pill); }
.ucard__contact { color: var(--ink-soft); font-size: .9rem; margin-top: 3px; }
.ucard__pend { display: inline-block; margin-top: 5px; font-size: .78rem; color: #8a5a20; background: #fbf0df; padding: 3px 9px; border-radius: var(--r-pill); }
.ucard__acts { display: flex; gap: 8px; flex-shrink: 0; }

/* --- panel dnia --- */
.daymodal { max-width: 560px; }
.daymodal__title { font-family: var(--font-display); font-size: 1.35rem; color: var(--plum-deep); margin: 6px 40px 18px 0; }
.daymodal__slots { display: flex; flex-direction: column; gap: 8px; }
.dayslot {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: var(--r-sm);
  background: var(--cream); flex-wrap: wrap;
}
.dayslot--free { background: #f6faf5; }
.dayslot--pend { background: #fbf3e6; }
.dayslot--ok { background: #eef6ef; }
.dayslot__time { font-weight: 700; color: var(--plum-deep); min-width: 48px; }
.dayslot__body { display: flex; flex-direction: column; gap: 3px; flex: 1 1 160px; min-width: 0; }
.dayslot__who { font-size: .92rem; color: var(--ink); }
.dayslot__badge { font-size: .72rem; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .4px; }
.dayslot--ok .dayslot__badge { color: #3c6b4c; }
.dayslot--pend .dayslot__badge { color: #8a5a20; }
.dayslot__free { flex: 1 1 auto; color: var(--ink-soft); font-style: italic; }
.dayslot__acts { display: flex; gap: 8px; margin-left: auto; }

/* --- małe przyciski --- */
.minibtn { padding: 7px 14px; border-radius: var(--r-pill); font-size: .82rem; font-weight: 600; background: var(--mist); color: var(--plum-deep); transition: all .18s var(--ease); }
.minibtn:hover { background: var(--rose-soft); }
.minibtn--ok { background: #3c6b4c; color: #fff; }
.minibtn--ok:hover { background: #315a40; }
.minibtn--del { background: #f2e0e0; color: #9c4646; }
.minibtn--del:hover { background: #eccfcf; }
.minibtn--add { background: var(--rose-deep); color: #fff; }
.minibtn--add:hover { background: var(--plum); }

#bookModal { z-index: 210; }
.btn--block { width: 100%; margin-top: 8px; }

@media (max-width: 640px) {
  .padmin__main { padding: 18px 14px 60px; }
  .padmin__panel { padding: 16px; }
  .calbar__title { min-width: 140px; font-size: 1.25rem; }
  .mcal__cell { min-height: 68px; }
  .mcal__chip { font-size: .64rem; padding: 1px 4px; }
  .ycal { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
}

/* --- panel „Moje konto" --- */
.nav__userchip { cursor: pointer; }
.profile__sep { border: none; border-top: 1px solid var(--mist); margin: 24px 0 18px; }
.profile__hint { margin-top: 9px; font-size: .82rem; color: #8a5a20; background: #fbf0df; padding: 8px 12px; border-radius: var(--r-sm); }
#profileModal .btn { margin-top: 2px; }

/* --- panel: okno potwierdzenia, odwołanie, odliczanie --- */
.confirmbox { max-width: 400px; text-align: center; }
.confirmbox__msg { color: var(--ink-soft); margin: 10px 0 22px; font-size: .96rem; line-height: 1.5; }
.confirmbox__acts { display: flex; gap: 10px; justify-content: center; }

.revoke__lead { color: var(--ink-soft); font-size: .92rem; margin-bottom: 14px; line-height: 1.5; }
.revoke__opts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.revoke__opt { padding: 9px 14px; border-radius: var(--r-pill); background: var(--mist); color: var(--plum-deep); font-weight: 600; font-size: .86rem; transition: all .18s var(--ease); }
.revoke__opt:hover { background: var(--rose-soft); }
.revoke__opt.is-on { background: var(--rose-deep); color: #fff; }
.revoke__text { width: 100%; box-sizing: border-box; border: 1.5px solid var(--rose-soft); border-radius: var(--r-sm); padding: 12px 14px; font-family: inherit; font-size: .92rem; resize: vertical; margin-bottom: 6px; }
.revoke__text:focus { outline: none; border-color: var(--rose-deep); }

.dayslot__acts { display: flex; gap: 8px; margin-left: auto; flex-wrap: wrap; align-items: center; justify-content: flex-end; }
.minibtn--warn { background: #f6e2c9; color: #8a5a20; }
.minibtn--warn:hover { background: #efd5b3; }
.dayslot__cd { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.dayslot__cdchip { padding: 6px 12px; border-radius: var(--r-pill); background: #fbf0df; color: #8a5a20; font-size: .82rem; font-weight: 600; white-space: nowrap; }
.dayslot__cdchip:hover { background: #f6e6cc; }
.dayslot__cdchip .cd__val { font-variant-numeric: tabular-nums; }
.dayslot__cdopts { display: inline-flex; gap: 6px; }
.dayslot__sending { font-size: .82rem; color: #8a5a20; font-style: italic; }

/* --- reset hasła w oknie logowania --- */
.reset-row { margin: 6px 0 10px; padding: 14px; background: var(--mist); border-radius: var(--r-md); }
.linklike { background: none; border: 0; color: var(--rose-deep); font: inherit; cursor: pointer; text-decoration: underline; padding: 0; }
.linklike:hover { color: var(--plum-deep); }

/* --- wpis w kalendarzu: nazwa / klikalny telefon / usługa (oddzielone) --- */
.dayslot__who { font-weight: 600; }
.dayslot__tel { display: inline-flex; align-items: center; gap: 4px; width: fit-content; font-size: .9rem; font-weight: 700; color: var(--rose-deep); text-decoration: none; }
.dayslot__tel:hover, .dayslot__tel:focus { text-decoration: underline; color: var(--plum-deep); }
.dayslot__svc { font-size: .82rem; color: var(--ink-soft); }

/* --- kalendarz: święta i wyjątki dni --- */
.mcal__cell--holiday { background: #fbeceb; }
.mcal__cell--holiday.mcal__cell--closed { background: #f7e0de; }
.mcal__cell--special { background: #e8f5ec; }
.mcal__hol { display: block; font-size: .62rem; font-weight: 700; color: #b05a4e; margin-top: 2px; line-height: 1.1; }
.mcal__cell--special .mcal__hol { color: #3c6b4c; }

.ycal__cell--holiday { background: #f2c9c4 !important; color: #8a3a30 !important; }
.ycal__cell--special { background: #bfe6cb !important; color: #2f6b45 !important; }
.ycal__legend { margin-top: 14px; font-size: .78rem; color: var(--ink-soft); display: flex; flex-wrap: wrap; align-items: center; gap: 4px; }
.ycal__lg { display: inline-block; width: 12px; height: 12px; border-radius: 3px; vertical-align: middle; }
.ycal__lg--hol { background: #f2c9c4; }
.ycal__lg--special { background: #bfe6cb; }
.ycal__lg--res { background: var(--rose); }

.daybanner { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; padding: 12px 14px; border-radius: var(--r-md); margin-bottom: 12px; font-size: .9rem; }
.daybanner--closed { background: #f7e0de; color: #8a3a30; }
.daybanner--open { background: #e8f5ec; color: #2f6b45; }
.daybanner--work { background: var(--mist); color: var(--ink-soft); }
.daybanner span { flex: 1 1 auto; min-width: 140px; }
.dayopenform { display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.dayopenform__t { border: 1.5px solid var(--rose-soft); border-radius: 8px; padding: 5px 8px; font: inherit; font-size: .85rem; }
.dayslot__closednote { padding: 14px; text-align: center; color: var(--ink-soft); font-style: italic; background: #faf3f4; border-radius: var(--r-sm); }

/* slot w dniu zamkniętym (święto / poza godzinami) na stronie głównej */
.slot--closed { opacity: .55; cursor: default; background: #f7ecec; }
.slot--closed .slot__label { font-size: .72rem; color: #a06056; font-weight: 600; }

/* dni świąteczne w kalendarzu rezerwacji (klientki) */
.leadcal__cell--holiday { position: relative; }
.leadcal__cell--holiday .leadcal__hol { position: absolute; top: 1px; right: 3px; font-size: .6rem; }
.leadcal__cell--special { outline: 2px solid #7cc79a; outline-offset: -2px; }

/* --- panel: blokady dnia, dłuższe wizyty, licznik odwiedzin --- */
.dayslot--block { background: #efeaea; }
.dayslot--cont { background: #f3eef0; opacity: .8; }
.dayslot__till { display: block; font-size: .68rem; font-weight: 600; color: var(--ink-soft); }
.durctl { display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.durctl__form { display: inline-flex; align-items: center; gap: 6px; }
.padmin__visits { font-size: .78rem; color: var(--ink-soft); white-space: nowrap; }

/* --- strona główna: kafelek adminki (imię / klikalny telefon / usługa) --- */
.slot--admin .slot__meta { display: flex; flex-direction: column; gap: 3px; align-items: flex-start; }
.slot--admin .who { font-weight: 700; font-size: .9rem; color: var(--plum-deep); }
.slot__tel { display: inline-flex; align-items: center; gap: 4px; font-size: .85rem; font-weight: 700; color: var(--rose-deep); text-decoration: none; }
.slot__tel:hover, .slot__tel:focus { text-decoration: underline; color: var(--plum-deep); }
.slot__svc { font-size: .8rem; color: var(--ink-soft); }

/* --- przycisk szybkiej wiadomości w oknie rezerwacji --- */
.lead__quickmsg { margin-top: 8px; display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; border: 1.5px solid var(--rose); border-radius: var(--r-pill); background: var(--blush); color: var(--plum-deep); font: inherit; font-size: .86rem; font-weight: 600; cursor: pointer; transition: background .15s, border-color .15s; }
.lead__quickmsg:hover { background: var(--rose-soft); border-color: var(--rose-deep); }
.lead__quickmsg.is-added { background: var(--ok-bg, #e8f5ec); border-color: #7cc79a; color: #2f6b45; }

/* --- przełącznik widoku (miesiąc / rok) w kalendarzu rezerwacji --- */
.leadcal__view { display: flex; gap: 6px; margin-bottom: 10px; }
.leadcal__vbtn { flex: 1; padding: 7px 10px; border: 1.5px solid var(--rose-soft); border-radius: var(--r-pill); background: transparent; color: var(--plum-deep); font: inherit; font-size: .82rem; font-weight: 600; cursor: pointer; }
.leadcal__vbtn.is-on { background: var(--rose); border-color: var(--rose); color: #fff; }
.leadcal__lg--hol { color: #a06056; }

/* --- widok roczny dla klientek --- */
.leadyear { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.leadyear__month { border: 1px solid var(--mist); border-radius: var(--r-sm); padding: 8px; }
.leadyear__mtitle { font-size: .78rem; font-weight: 700; color: var(--plum-deep); text-align: center; margin-bottom: 5px; }
.leadyear__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.leadyear__cell { aspect-ratio: 1; border: none; background: #f3eef0; border-radius: 4px; font-size: .62rem; color: var(--ink); cursor: default; padding: 0; }
.leadyear__cell--empty { background: transparent; }
.leadyear__cell--free { background: #e8f5ec; color: #2f6b45; font-weight: 700; cursor: pointer; }
.leadyear__cell--free:hover { background: #cdead7; outline: 1.5px solid #7cc79a; }
.leadyear__cell--res { background: #f4dfe4; color: #9a5568; }
.leadyear__cell--hol { background: #f2c9c4; color: #8a3a30; font-weight: 700; }
.leadyear__cell--off { background: #efeced; color: #b7adb1; }
.leadyear__legend { display: flex; flex-wrap: wrap; gap: 4px 10px; margin-top: 12px; font-size: .76rem; color: var(--ink-soft); justify-content: center; }
@media (max-width: 560px) { .leadyear { grid-template-columns: repeat(2, 1fr); } }

/* --- przełącznik widoku terminarza (Tydzień / Cały rok) --- */
.sched__views { display: inline-flex; gap: 6px; background: var(--blush); padding: 4px; border-radius: var(--r-pill); }
.sched__vbtn { padding: 7px 16px; border: none; background: transparent; color: var(--plum-deep); font: inherit; font-size: .84rem; font-weight: 600; border-radius: var(--r-pill); cursor: pointer; transition: background .15s, color .15s; }
.sched__vbtn.is-on { background: var(--rose); color: #fff; box-shadow: var(--shadow-sm); }
@media (max-width: 560px) { .sched__vbtn { padding: 7px 12px; font-size: .8rem; } }

/* --- widok całego roku na stronie głównej --- */
.yearview { margin-top: 6px; }
.homeyear { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.homeyear__month { border: 1px solid var(--mist); border-radius: var(--r-md); padding: 12px; background: var(--white); }
.homeyear__mtitle { font-family: var(--font-display); font-size: 1rem; color: var(--plum-deep); text-align: center; margin-bottom: 8px; }
.homeyear__dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 4px; }
.homeyear__dow span { text-align: center; font-size: .62rem; font-weight: 700; color: var(--ink-soft); }
.homeyear__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.homeyear__cell { aspect-ratio: 1; border: none; background: #f3eef0; border-radius: 5px; font-size: .72rem; color: var(--ink); cursor: default; padding: 0; display: flex; align-items: center; justify-content: center; }
.homeyear__cell--empty { background: transparent; }
.homeyear__cell--free { background: #e8f5ec; color: #2f6b45; font-weight: 700; cursor: pointer; transition: transform .1s, outline .1s; }
.homeyear__cell--free:hover { outline: 2px solid #7cc79a; outline-offset: -1px; transform: scale(1.06); }
.homeyear__cell--res { background: #f4dfe4; color: #9a5568; }
.homeyear__cell--res:not([disabled]) { cursor: pointer; }
.homeyear__cell--hol { background: #f2c9c4; color: #8a3a30; font-weight: 700; }
.homeyear__cell--off { background: #efeced; color: #bcb2b6; }
.homeyear__cell[disabled] { cursor: default; }
.homeyear__legend { display: flex; flex-wrap: wrap; gap: 6px 16px; align-items: center; margin-top: 16px; font-size: .8rem; color: var(--ink-soft); justify-content: center; }
.homeyear__hint { font-style: italic; }
@media (max-width: 900px) { .homeyear { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .homeyear { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 380px) { .homeyear { grid-template-columns: 1fr; } }

/* widok roczny na stronie głównej = format panelu (.ycal); nieaktywne dni wyszarzone */
#yearView .ycal__cell[disabled] { cursor: default; opacity: .5; }
#yearView .ycal__cell--holiday[disabled], #yearView .ycal__cell--special[disabled], #yearView .ycal__cell--res[disabled], #yearView .ycal__cell--pend[disabled] { opacity: 1; }
#yearView .ycal__cell[disabled]:hover { background: var(--white); }
#yearView .ycal__cell--holiday[disabled]:hover { background: #f2c9c4; }
#yearView { margin-top: 4px; }

/* okno wyboru (rezerwuj/odrezerwuj cały dzień) */
.choicebox__acts { display: flex; flex-direction: column; gap: 8px; margin: 6px 0 4px; }
.choicebox__btn { text-align: center; }
.choicebox__btn--danger { --bg: #b5453a; --fg: #fff; box-shadow: none; }
.choicebox__btn--danger:hover { --bg: #9a382f; }
.choicebox__cancel { width: 100%; margin-top: 4px; }

/* --- panel: ustawienia salonu --- */
.setbox { background: var(--white); border: 1px solid var(--mist); border-radius: var(--r-md); padding: 20px 22px; max-width: 620px; }
.setbox__h { font-family: var(--font-display); font-size: 1.05rem; color: var(--plum-deep); margin: 0 0 4px; }
.setbox__h--sep { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--mist); }
.setbox__hint { font-size: .84rem; color: var(--ink-soft); margin: 0 0 12px; line-height: 1.5; }
.setbox__row { display: flex; flex-wrap: wrap; gap: 14px; }
.setbox__field { display: flex; flex-direction: column; gap: 5px; font-size: .82rem; font-weight: 600; color: var(--plum-deep); }
.setbox__field select { border: 1.5px solid var(--rose-soft); border-radius: 10px; padding: 9px 12px; font: inherit; font-size: .92rem; background: var(--white); color: var(--ink); min-width: 150px; }
.setbox__field select:focus { outline: none; border-color: var(--rose); }
.setbox__preview { margin: 18px 0 12px; padding: 12px 14px; background: var(--blush); border-radius: var(--r-sm); font-size: .88rem; color: var(--ink); }
.setbox__pv { line-height: 1.6; }
.setbox__warn { color: #a03a30; font-weight: 600; }
@media (max-width: 560px) { .setbox { padding: 16px; } .setbox__field select { min-width: 0; width: 100%; } .setbox__field { flex: 1 1 100%; } }

/* Galeria efektów: na wąskich ekranach mniejszy odstęp = większe zdjęcia */
@media (max-width: 560px) {
  .results__grid { gap: 12px; }
  .result figcaption { padding: 10px 10px; font-size: .8rem; }
}

/* --- prośba o rozmowę w oknie rezerwacji --- */
.lead__or { display: flex; align-items: center; gap: 12px; margin: 18px 0 14px; color: var(--ink-soft); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
.lead__or::before, .lead__or::after { content: ""; flex: 1; height: 1px; background: var(--mist); }
.lead__callback { background: var(--blush); border-radius: var(--r-md); padding: 14px 16px; }
.lead__callback-txt { margin: 0 0 10px; font-size: .86rem; color: var(--ink); line-height: 1.5; }
.lead__callback-txt strong { color: var(--plum-deep); }
.slot__callback { font-size: .74rem; font-weight: 700; color: #a05a2c; }


/* Hero na niskich ekranach (np. 1280x720): ciaśniejsze odstępy, żeby cała
   sekcja — tekst i zdjęcie — mieściła się w oknie bez przewijania. */
@media (min-width: 1025px) and (max-height: 790px) {
  .hero__copy h1 { margin-top: 12px; }
  .hero__copy > p { margin-top: 18px; }
  .hero__actions { margin-top: 24px; }
  .hero__meta { margin-top: 26px; gap: 14px 26px; }
}

/* Podświetlenie brakujących pól w oknie rezerwacji */
.lead__input.is-invalid,
.lead__robot.is-invalid { border: 1.6px solid #b5453a; background: #fdf4f3; border-radius: 10px; }
.lead__robot.is-invalid { padding: 8px 10px; }
.lead__err { display: block; margin-top: 5px; font-size: .78rem; font-weight: 600; color: #b5453a; line-height: 1.35; }

/* Awaryjne zabezpieczenie: bardzo długie słowo w tytule ma się złamać,
   a nie wyjść poza kolumnę (zależy od szerokości czcionki u odwiedzającego). */
.hero__copy h1, .hero__copy p { overflow-wrap: break-word; }

/* ============ ANDROID / TELEFONY: zabezpieczenia przed rozpychaniem strony ============ */
/* Nic nie może rozepchnąć strony w poziomie (jeden za szeroki napis przesuwał całą treść). */
html, body { max-width: 100%; overflow-x: hidden; }

/* Długie napisy zawsze się łamią, niezależnie od szerokości czcionki u odwiedzającego. */
.hero__title, .section__title, .hero__sub, .section__lead,
.step h3, .step p, .contact__list .v, .contact__list .k { overflow-wrap: break-word; }

/* Elementy siatek nie mogą być szersze niż ekran */
.how__grid, .how__copy, .steps, .step, .contact__grid, .contact__card { min-width: 0; max-width: 100%; }
.step > div { min-width: 0; }

@media (max-width: 640px) {
  /* Kroki 01–05: równe marginesy po obu stronach i czytelny odstęp numeru */
  .steps { width: 100%; margin-inline: auto; }
  .step { grid-template-columns: auto minmax(0, 1fr); gap: 14px; padding: 18px 16px; }
  .step__num { width: 40px; height: 40px; font-size: 1rem; }

  /* Karta kontaktu: treść od lewej, przyciski na całą szerokość okna karty */
  .contact__card { padding: 24px 18px; text-align: left; }
  .contact__list { margin: 22px 0 26px; gap: 18px; }
  .contact__list li { align-items: flex-start; text-align: left; }
  .contact__list .v { font-size: 1rem; overflow-wrap: anywhere; }
  .contact__actions { flex-direction: column; align-items: stretch; }
  .contact__actions .btn { width: 100%; justify-content: center; text-align: center; }
}

/* Informacja o telefonicznym potwierdzeniu terminu */
.lead__confirm { margin: 8px 0 12px; padding: 10px 12px; background: var(--blush); border-radius: var(--r-sm);
  font-size: .84rem; line-height: 1.5; color: var(--ink); }
.lead__confirm strong { color: var(--plum-deep); }

/* Logo salonu (pojawia się automatycznie po wgraniu pliku /img/logo.png lub .svg) */
.brand__logo { display: block; height: 42px; width: auto; max-width: 210px; object-fit: contain; }
.footer__brand .brand__logo { height: 52px; max-width: 240px; }
.brand__mark--img { line-height: 0; }
@media (max-width: 640px) { .brand__logo { height: 34px; max-width: 150px; } }

/* Logo: dopóki trwa sprawdzanie pliku, napis jest niewidoczny — dzięki temu
   przy odświeżaniu nie „przebija” tekst przed pojawieniem się logo. */
.logo-szuka .brand__mark { visibility: hidden; }

/* Legenda kalendarza w oknie zgłoszenia — na telefonie mieści się w oknie */
@media (max-width: 560px) {
  .leadcal__legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 10px; font-size: .72rem; }
  .leadcal__lg { white-space: nowrap; }
  .leadcal { max-width: 100%; overflow: hidden; }
  .leadcal__grid, .leadcal__dow { gap: 3px; }
  .leadcal__cell { font-size: .78rem; }
}

/* ---- Pasek górny z logo: równe ułożenie, bez ściskania i „gryzienia się" z podpisem ---- */
.brand--logo {
  align-items: center;          /* obrazek nie wyrównuje się do linii tekstu */
  gap: 0.7rem;
  flex-shrink: 0;               /* logo nie kurczy się, gdy w pasku jest dużo linków */
}
.brand--logo .brand__logo { height: 46px; }
/* W górnym pasku logo niesie już nazwę salonu — podpis zostaje tylko w stopce. */
.nav .brand--logo .brand__sub { display: none; }
.footer__brand.brand--logo { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
.footer__brand.brand--logo .brand__logo { height: 56px; }
@media (max-width: 640px) {
  .brand--logo .brand__logo { height: 36px; }
  .footer__brand.brand--logo .brand__logo { height: 46px; }
}
.durctl__hint { display: block; width: 100%; font-size: .72rem; color: var(--ink-soft); margin-top: 2px; }
.durctl__form { flex-wrap: wrap; }

/* Zachęta do konta + informacja o przypomnieniach */
.sched__perk { display: block; margin-top: 8px; font-size: .88rem; color: var(--ink-soft); line-height: 1.55; }
.sched__perk strong { color: var(--plum-deep); }
.lead__perk { display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
  margin: 4px 0 14px; padding: 14px 16px; background: var(--blush); border-radius: var(--r-md); }
.lead__perk strong { color: var(--plum-deep); font-size: .92rem; }
.lead__perk span { font-size: .84rem; color: var(--ink); line-height: 1.5; }
.lead__perk .btn { margin-top: 4px; }

/* --- Zakładka „Zgłoszenia do zatwierdzenia" --- */
.padmin__badge { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px;
  margin-left: 8px; padding: 0 6px; border-radius: 999px; background: #b5453a; color: #fff;
  font-size: .72rem; font-weight: 700; }
.padmin__tab.is-on .padmin__badge { background: #fff; color: #b5453a; }
.pcard { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; padding: 14px 16px; margin-bottom: 10px;
  background: #fbf3e6; border: 1px solid var(--mist); border-radius: var(--r-md); }
.pcard__when { display: flex; flex-direction: column; min-width: 120px; }
.pcard__when strong { font-size: 1rem; color: var(--plum-deep); }
.pcard__when span { font-size: .78rem; color: var(--ink-soft); }
.pcard__time { font-weight: 700; color: var(--plum-deep) !important; font-size: .9rem !important; }
.pcard__who { display: flex; flex-direction: column; gap: 3px; flex: 1 1 200px; min-width: 0; }
.pcard__acts { display: flex; flex-wrap: wrap; gap: 8px; }
.pending__empty { padding: 26px; text-align: center; color: #3c6b4c; background: #eef6ef; border-radius: var(--r-md); font-weight: 600; }
@media (max-width: 560px) { .pcard { gap: 8px; } .pcard__acts { width: 100%; } .pcard__acts .minibtn { flex: 1 1 auto; } }

/* Przycisk „Załóż konto" w ramce zachęty — pełny kolor, żeby odcinał się od tła ramki */
.lead__perk-btn { --bg: var(--rose); --fg: #fff; box-shadow: var(--shadow-sm); }
.lead__perk-btn:hover { --bg: var(--rose-deep); --fg: #fff; }
.sched__perk-btn { display: inline-flex; margin-left: 10px; vertical-align: middle; --bg: var(--rose); --fg: #fff; }
.sched__perk-btn:hover { --bg: var(--rose-deep); }
@media (max-width: 560px) { .sched__perk-btn { display: flex; margin: 10px auto 0; } }
