/* ============================================================
   Időpontfoglaló – publikus téma
   A színek a :root-ban CSS-változóként érkeznek (beállításokból),
   így ügyfelenként átszabható a teljes megjelenés.
   ============================================================ */

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/cormorant-garamond-v21-latin_latin-ext-500.woff2') format('woff2');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/cormorant-garamond-v21-latin_latin-ext-600.woff2') format('woff2');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/cormorant-garamond-v21-latin_latin-ext-700.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/cormorant-garamond-v21-latin_latin-ext-italic.woff2') format('woff2');
    font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
    font-family: 'Jost';
    src: url('../fonts/jost-v20-latin_latin-ext-regular.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Jost';
    src: url('../fonts/jost-v20-latin_latin-ext-500.woff2') format('woff2');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Jost';
    src: url('../fonts/jost-v20-latin_latin-ext-600.woff2') format('woff2');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Jost';
    src: url('../fonts/jost-v20-latin_latin-ext-700.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Alap ---------- */

* { box-sizing: border-box; }

:root {
    /* alapértékek – felülírja az oldal fejlécében kiírt inline :root blokk */
    --primary: #a2635d;
    --accent: #c5a253;
    --bg: #fdf4f1;
    --dark: #3d2b28;

    --primary-dark: color-mix(in srgb, var(--primary) 82%, black);
    --primary-soft: color-mix(in srgb, var(--primary) 10%, white);
    --accent-soft: color-mix(in srgb, var(--accent) 16%, white);
    --muted: color-mix(in srgb, var(--dark) 55%, white);
    --line: color-mix(in srgb, var(--primary) 16%, white);
    --card: #ffffff;
    --radius: 18px;
    --shadow: 0 6px 30px rgba(61, 43, 40, .08);
    --shadow-lg: 0 14px 50px rgba(61, 43, 40, .13);
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Jost', system-ui, sans-serif;
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 .5em;
    color: var(--dark);
}

h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.45rem; }

a { color: var(--primary); }

img { max-width: 100%; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }

.section { padding: 4.5rem 0; }
.section-tight { padding: 2.5rem 0; }

.eyebrow {
    display: inline-block;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: .8rem;
}

.center { text-align: center; }
.muted { color: var(--muted); }

/* ---------- Gombok ---------- */

.btn {
    display: inline-block;
    padding: .78rem 1.9rem;
    border-radius: 999px;
    border: 0;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .02em;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s ease;
    line-height: 1.4;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 6px 18px color-mix(in srgb, var(--primary) 35%, transparent);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-ghost {
    background: transparent;
    color: var(--muted);
    padding: .78rem 1rem;
}
.btn-ghost:hover { color: var(--dark); }

.btn-sm { padding: .5rem 1.2rem; font-size: .9rem; }
.btn-lg { padding: .95rem 2.4rem; font-size: 1.1rem; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none !important; }

/* ---------- Fejléc ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--bg) 88%, white);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.site-header .inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: .65rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: .8rem;
    text-decoration: none;
    color: var(--dark);
    margin-right: auto;
}

.brand img {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-soft);
}

.brand .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
}
.brand .sub { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }

.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: .98rem;
}
.nav a:hover { color: var(--primary); }

.nav-toggle { display: none; background: none; border: 0; font-size: 1.7rem; color: var(--dark); cursor: pointer; }

@media (max-width: 820px) {
    .nav-toggle { display: block; }
    .nav {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: var(--card);
        padding: 1.2rem;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }
    .nav.open { display: flex; }
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0 6rem;
    text-align: center;
}

.hero .ornament {
    position: absolute;
    color: var(--accent);
    opacity: .35;
    pointer-events: none;
}
.hero .ornament.tl { top: -30px; left: -40px; transform: rotate(15deg); }
.hero .ornament.br { bottom: -40px; right: -30px; transform: rotate(195deg); }

.hero .logo-circle {
    width: 130px; height: 130px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 4px solid #fff;
    margin-bottom: 1.4rem;
}

.hero h1 { margin-bottom: .4rem; }

.hero .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 1.1rem;
}

.hero .intro { max-width: 620px; margin: 0 auto 2rem; color: var(--muted); }

.hero .cta-row { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

.divider {
    display: flex; align-items: center; justify-content: center;
    gap: .8rem; color: var(--accent); margin: .8rem 0 1.2rem;
}
.divider::before, .divider::after {
    content: ''; width: 70px; height: 1px; background: var(--accent);
    opacity: .6;
}

/* ---------- Kártyák ---------- */

.card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.6rem;
}

.grid { display: grid; gap: 1.4rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* Szolgáltatás kategória kártya */
.cat-card {
    text-align: center;
    padding: 2.2rem 1.6rem;
    transition: transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
    display: block;
    color: var(--dark);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-card .icon {
    width: 64px; height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--primary-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
}
.cat-card h3 { margin-bottom: .3rem; }
.cat-card p { color: var(--muted); font-size: .93rem; margin: 0; }

/* Csapat kártya */
.staff-card { text-align: center; padding: 2rem 1.5rem; }
.staff-card img {
    width: 150px; height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-soft);
    margin-bottom: 1rem;
}
.staff-card h3 { margin-bottom: .15rem; }
.staff-card .role { color: var(--accent); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; margin-bottom: .7rem; }
.staff-card p { color: var(--muted); font-size: .92rem; }
.staff-card .hours { font-size: .85rem; color: var(--muted); margin: .8rem 0 1rem; }

/* nyitvatartás – napi bontás a csapat kártyákon */
.hours-box {
    margin: 1rem auto 1.2rem;
    max-width: 230px;
    background: color-mix(in srgb, var(--bg) 55%, white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: .55rem .9rem;
    text-align: left;
}
.hours-line {
    display: flex; justify-content: space-between; align-items: baseline;
    gap: .8rem;
    padding: .22rem .2rem;
    font-size: .86rem;
    border-bottom: 1px dashed color-mix(in srgb, var(--line) 70%, transparent);
    border-radius: 6px;
}
.hours-line:last-child { border-bottom: 0; }
.hours-line .days {
    font-weight: 500;
    font-size: .82rem;
    color: var(--dark);
    display: flex; align-items: center; gap: .35rem;
}
.hours-line .time {
    color: var(--dark);
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    font-size: .82rem;
}
.hours-line.closed .days { color: var(--muted); }
.hours-line.closed .time { color: color-mix(in srgb, var(--muted) 65%, white); font-weight: 400; font-style: italic; }
.hours-line.today {
    background: var(--primary-soft);
    margin: 0 -.5rem; padding-left: .7rem; padding-right: .7rem;
}
.hours-line.today .days { font-weight: 700; color: var(--primary); }
.hours-line .today-dot { font-size: .5rem; color: var(--primary); }

/* ---------- Árlista ---------- */

.price-group { margin-bottom: 2.8rem; }

.price-group .group-head {
    display: flex; align-items: baseline; gap: .8rem;
    border-bottom: 2px solid var(--accent-soft);
    padding-bottom: .6rem; margin-bottom: .4rem;
}
.price-group .group-head .icon { font-size: 1.4rem; }
.price-group .group-head h2 { margin: 0; font-size: 1.9rem; }
.price-group .group-desc { color: var(--muted); font-size: .93rem; margin: .4rem 0 1rem; }

.price-row {
    display: flex; align-items: center; gap: 1rem;
    padding: .85rem .5rem;
    border-bottom: 1px dashed var(--line);
}
.price-row:last-child { border-bottom: 0; }
.price-row .info { flex: 1; min-width: 0; }
.price-row .name { font-weight: 500; }
.price-row .meta { font-size: .84rem; color: var(--muted); }
.price-row .desc { font-size: .84rem; color: var(--muted); margin-top: .15rem; font-style: italic; }
.price-row .price { font-weight: 600; white-space: nowrap; color: var(--primary); }
.price-row .price.soon {
    font-size: .75rem; letter-spacing: .1em;
    background: var(--accent-soft); color: var(--dark);
    padding: .25rem .7rem; border-radius: 999px;
}

@media (max-width: 560px) {
    .price-row { flex-wrap: wrap; }
    .price-row .book-btn { width: 100%; text-align: center; }
}

/* ---------- Szolgáltatások oldal (kategória fülek) ---------- */

.cat-tabs {
    display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center;
    margin-bottom: 1.8rem;
    position: sticky; top: 76px; z-index: 10;
    background: color-mix(in srgb, var(--bg) 92%, white);
    padding: .6rem .4rem; border-radius: 999px;
}
.cat-tab {
    display: inline-flex; align-items: center; gap: .45rem;
    padding: .55rem 1.15rem; border-radius: 999px;
    border: 1.5px solid var(--line); background: var(--card);
    font-family: inherit; font-size: .93rem; font-weight: 500;
    color: var(--dark); cursor: pointer;
    transition: all .18s ease;
}
.cat-tab .ic { font-size: 1.05rem; }
.cat-tab:hover { border-color: var(--primary); transform: translateY(-1px); }
.cat-tab.active {
    background: var(--primary); border-color: var(--primary); color: #fff;
    box-shadow: 0 6px 16px color-mix(in srgb, var(--primary) 35%, transparent);
}

.cat-panel { display: none; }
.cat-panel.active { display: block; animation: fadeUp .28s ease; }

.cat-desc {
    text-align: center; font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 1.15rem; color: var(--primary);
    max-width: 560px; margin: 0 auto 1.6rem;
}

.svc-line {
    display: flex; align-items: center; gap: .9rem; flex-wrap: wrap;
    background: var(--card); border-radius: 16px;
    padding: 1rem 1.25rem; margin-bottom: .7rem;
    box-shadow: 0 3px 14px rgba(61, 43, 40, .06);
    transition: box-shadow .18s;
}
.svc-line:hover { box-shadow: var(--shadow-lg); }
.svc-line-info { flex: 1; min-width: 180px; }
.svc-line-name { font-weight: 600; font-size: 1.02rem; }
.svc-line-desc { font-size: .84rem; color: var(--muted); margin-top: .15rem; }
.svc-chip {
    font-size: .78rem; color: var(--muted);
    background: var(--primary-soft); border-radius: 999px;
    padding: .25rem .7rem; white-space: nowrap;
    min-width: 130px; text-align: center;   /* fix szélesség: az árak mindig egy vonalban */
}
.svc-price { font-weight: 600; color: var(--primary); white-space: nowrap; min-width: 120px; text-align: right; }
.svc-price.soon {
    font-size: .72rem; letter-spacing: .1em; text-align: center;
    background: var(--accent-soft); color: var(--dark);
    padding: .3rem .7rem; border-radius: 999px; font-weight: 600;
    min-width: 120px;
}

.svc-line-group { flex-direction: column; align-items: stretch; }
.svc-variants { display: flex; flex-direction: column; gap: .1rem; }
.svc-variant {
    display: flex; align-items: center; gap: .9rem; flex-wrap: wrap;
    padding: .55rem 0 .55rem .9rem;
    border-top: 1px dashed var(--line);
}
.svc-variant .vlabel { font-weight: 500; flex: 1; min-width: 110px; }
.svc-variant .svc-price { min-width: 120px; }
.svc-variant .btn { margin-left: .2rem; }

@media (max-width: 620px) {
    .cat-tabs { position: static; }
    .svc-line .btn, .svc-variant .btn { width: 100%; text-align: center; margin-left: 0; }
    .svc-variant .vlabel { min-width: 0; flex-basis: 100%; }
    .svc-chip, .svc-price, .svc-price.soon { min-width: 0; text-align: left; }
}

/* ---------- Info sáv ---------- */

.info-band {
    background: var(--card);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.info-band .cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: 2.6rem 0; }
@media (max-width: 800px) { .info-band .cols { grid-template-columns: 1fr; gap: 1.4rem; } }
.info-band h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.info-band p { margin: 0; color: var(--muted); font-size: .95rem; white-space: pre-line; }

/* ---------- Lábléc ---------- */

.site-footer {
    padding: 2.6rem 0 2rem;
    text-align: center;
    color: var(--muted);
    font-size: .9rem;
}
.site-footer .heart { color: var(--primary); }

/* ============================================================
   FOGLALÁSI VARÁZSLÓ
   ============================================================ */

.wizard { max-width: 780px; margin: 0 auto; padding: 2.2rem 1.25rem 5rem; }

.steps {
    display: flex; justify-content: center; gap: .4rem;
    margin-bottom: 2rem; flex-wrap: wrap;
}
.steps .step {
    display: flex; align-items: center; gap: .45rem;
    font-size: .82rem; font-weight: 500; color: var(--muted);
    padding: .35rem .8rem; border-radius: 999px;
}
.steps .step .dot {
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--line); color: var(--dark);
    display: flex; align-items: center; justify-content: center;
    font-size: .78rem; font-weight: 600;
}
.steps .step.active { background: var(--primary-soft); color: var(--dark); }
.steps .step.active .dot { background: var(--primary); color: #fff; }
.steps .step.done .dot { background: var(--accent); color: #fff; }

.wz-panel { display: none; }
.wz-panel.active { display: block; animation: fadeUp .25s ease; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}

.wz-title { text-align: center; margin-bottom: 1.6rem; }
.wz-title h2 { margin-bottom: .2rem; }
.wz-title p { color: var(--muted); margin: 0; }

/* Szolgáltatás választó */
.svc-cat { margin-bottom: 1rem; }
.svc-cat summary {
    list-style: none; cursor: pointer;
    display: flex; align-items: center; gap: .8rem;
    background: var(--card); border-radius: var(--radius);
    padding: 1rem 1.3rem; box-shadow: var(--shadow);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 600;
}
.svc-cat summary::-webkit-details-marker { display: none; }
.svc-cat summary .icon { font-size: 1.3rem; }
.svc-cat summary .arrow { margin-left: auto; transition: transform .2s; color: var(--muted); font-size: 1rem; }
.svc-cat[open] summary .arrow { transform: rotate(180deg); }
.svc-cat .items { padding: .5rem .3rem 0; }

.svc-item {
    width: 100%; text-align: left;
    display: flex; align-items: center; gap: 1rem;
    background: var(--card); border: 2px solid transparent;
    border-radius: 14px; padding: .9rem 1.1rem;
    margin-bottom: .55rem;
    cursor: pointer; font-family: inherit; font-size: 1rem;
    transition: border-color .15s, box-shadow .15s;
    box-shadow: 0 2px 10px rgba(61,43,40,.05);
}
.svc-item:hover { border-color: var(--line); }
.svc-item.selected { border-color: var(--primary); box-shadow: 0 4px 16px color-mix(in srgb, var(--primary) 20%, transparent); }
.svc-item .nm { font-weight: 500; }
.svc-item .meta { font-size: .83rem; color: var(--muted); }
.svc-item .pr { margin-left: auto; font-weight: 600; color: var(--primary); white-space: nowrap; }
.svc-item .pr.soon { font-size: .72rem; letter-spacing: .08em; background: var(--accent-soft); color: var(--dark); padding: .2rem .6rem; border-radius: 999px; }

/* Szakember választó */
.staff-pick { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.staff-opt {
    background: var(--card); border: 2px solid transparent;
    border-radius: var(--radius); padding: 1.5rem 1rem;
    text-align: center; cursor: pointer;
    font-family: inherit; font-size: 1rem;
    transition: all .15s; box-shadow: var(--shadow);
}
.staff-opt:hover { transform: translateY(-2px); }
.staff-opt.selected { border-color: var(--primary); box-shadow: 0 4px 20px color-mix(in srgb, var(--primary) 25%, transparent); }
.staff-opt img, .staff-opt .any-icon {
    width: 84px; height: 84px; border-radius: 50%;
    object-fit: cover; margin: 0 auto .7rem;
    border: 3px solid var(--accent-soft);
}
.staff-opt .any-icon {
    background: var(--primary-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--primary);
}
.staff-opt .nm { font-weight: 600; }
.staff-opt .sub { font-size: .82rem; color: var(--muted); margin-top: .2rem; }

/* Naptár */
.cal-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
@media (max-width: 700px) { .cal-wrap { grid-template-columns: 1fr; } }

.calendar { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.2rem; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .8rem; }
.cal-head .mon { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; }
.cal-head button {
    background: var(--primary-soft); border: 0; width: 34px; height: 34px;
    border-radius: 50%; cursor: pointer; font-size: 1rem; color: var(--primary);
}
.cal-head button:disabled { opacity: .3; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .25rem; text-align: center; }
.cal-grid .dow { font-size: .72rem; font-weight: 600; color: var(--muted); padding: .3rem 0; text-transform: uppercase; }
.cal-day {
    aspect-ratio: 1; border: 0; border-radius: 50%;
    background: transparent; font-family: inherit; font-size: .92rem;
    color: var(--muted); cursor: default;
    display: flex; align-items: center; justify-content: center;
}
.cal-day.avail { background: var(--primary-soft); color: var(--dark); font-weight: 600; cursor: pointer; }
.cal-day.avail:hover { background: color-mix(in srgb, var(--primary) 22%, white); }
.cal-day.selected { background: var(--primary) !important; color: #fff; }

.slots-box { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.2rem; min-height: 200px; }
.slots-box h3 { font-size: 1.15rem; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(86px, 1fr)); gap: .5rem; }
.slot {
    padding: .55rem .3rem; border-radius: 10px;
    border: 1.5px solid var(--line); background: #fff;
    font-family: inherit; font-size: .95rem; font-weight: 500;
    cursor: pointer; transition: all .12s;
}
.slot:hover { border-color: var(--primary); }
.slot.selected { background: var(--primary); border-color: var(--primary); color: #fff; }
.slots-empty { color: var(--muted); font-size: .93rem; text-align: center; padding: 2rem .5rem; }

/* Ajánlások (láncolás) */
.rec-box { margin-top: 1.4rem; }
.rec-box h3 { font-size: 1.1rem; }

/* Űrlap */
.form-grid { display: grid; gap: 1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .3rem; }
.field input, .field textarea {
    width: 100%; padding: .75rem .9rem;
    border: 1.5px solid color-mix(in srgb, var(--primary) 24%, white);
    border-radius: 12px;
    font-family: inherit; font-size: 1rem;
    background: color-mix(in srgb, var(--bg) 45%, white);
    color: var(--dark);
    box-shadow: inset 0 1px 3px rgba(61, 43, 40, .05);
    transition: border-color .15s, background .15s;
}
.field input:hover, .field textarea:hover { border-color: color-mix(in srgb, var(--primary) 45%, white); }
.field input:focus, .field textarea:focus { background: #fff; }
.field input:focus, .field textarea:focus { outline: 2px solid color-mix(in srgb, var(--primary) 40%, transparent); border-color: var(--primary); }
.field .hint { font-size: .8rem; color: var(--muted); margin-top: .25rem; }

/* Összegzés */
.summary { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.4rem; }
.summary .line { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem 0; border-bottom: 1px dashed var(--line); font-size: .96rem; }
.summary .line:last-child { border-bottom: 0; }
.summary .line .lbl { color: var(--muted); }
.summary .total { font-weight: 700; font-size: 1.05rem; }

.wz-nav { display: flex; justify-content: space-between; margin-top: 1.8rem; gap: 1rem; }

.error-box {
    background: #fdecec; border: 1px solid #f0b9b9; color: #8f2323;
    border-radius: 12px; padding: .8rem 1.1rem; margin-bottom: 1rem;
    font-size: .93rem; display: none;
}
.error-box.show { display: block; }

/* Sikeres foglalás */
.success-box { text-align: center; padding: 1rem 0; }
.success-box .big-check {
    width: 84px; height: 84px; border-radius: 50%;
    background: #edf7ee; color: #2e7d36; font-size: 2.4rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem;
}
.success-box .code {
    font-size: 1.6rem; font-weight: 700; letter-spacing: .2em;
    color: var(--primary); font-family: 'Cormorant Garamond', serif;
}
.pending-note {
    background: var(--accent-soft); border-radius: 12px;
    padding: .8rem 1.1rem; font-size: .92rem; margin: 1rem auto; max-width: 480px;
}

/* Lemondó oldal */
.cancel-card { max-width: 560px; margin: 3rem auto; }

.spinner {
    width: 28px; height: 28px; margin: 1.5rem auto;
    border: 3px solid var(--line); border-top-color: var(--primary);
    border-radius: 50%; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Beágyazott (iframe) mód ---------- */

body.embed-mode { background: transparent; }
body.embed-mode .wizard { padding: .8rem .6rem 2.5rem; max-width: none; }

/* ---------- Mobil finomítások ---------- */

@media (max-width: 640px) {
    body { font-size: 15.5px; }
    .section { padding: 2.8rem 0; }
    .section-tight { padding: 1.8rem 0; }
    .hero { padding: 3rem 0 3.5rem; }
    .hero .logo-circle { width: 100px; height: 100px; }
    .hero .cta-row .btn { width: 100%; max-width: 320px; }
    .divider::before, .divider::after { width: 44px; }
    .card { padding: 1.2rem 1.1rem; }
    .staff-card img { width: 120px; height: 120px; }
    .wizard { padding: 1.4rem .9rem 4rem; }
    .steps .step { font-size: .74rem; padding: .3rem .6rem; }
    .steps .step .dot { width: 20px; height: 20px; font-size: .7rem; }
    .wz-nav { position: sticky; bottom: 0; background: color-mix(in srgb, var(--bg) 92%, white);
              padding: .7rem 0; margin-top: 1.2rem; z-index: 20; }
    .wz-nav .btn-lg { padding: .8rem 1.6rem; font-size: 1rem; }
    .slot-grid { grid-template-columns: repeat(auto-fill, minmax(74px, 1fr)); }
    .staff-pick { grid-template-columns: 1fr 1fr; }
    .staff-opt { padding: 1rem .6rem; }
    .staff-opt img, .staff-opt .any-icon { width: 64px; height: 64px; }
    .info-band .cols { padding: 1.8rem 0; }
    .price-group .group-head h2 { font-size: 1.5rem; }
    .cat-tab { font-size: .85rem; padding: .45rem .9rem; }
    .site-header .inner { padding: .5rem 0; }
    .brand img { width: 42px; height: 42px; }
    .brand .name { font-size: 1.2rem; }
}
