﻿/* LuxInterior — home + alap (blue_logo) */

    :root {
      --navy-950: #020813;
      --navy-900: #06101f;
      --navy-850: #071528;
      --navy-800: #0a1d35;
      --blue: #0064cc;
      --blue-2: #0059c7;
      --blue-3: #60a5fa;
      --white: #f7fbff;
      --text: #202838;
      --muted: #6b7280;
      --line: rgba(255,255,255,.12);
      --shadow: 0 28px 80px rgba(1, 13, 31, .28);
      --radius: 12px;
      --sans: var(--font-urbanist), Urbanist, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      /* Reszponzív töréspontok (tartalom + Bootstrap-kompatibilis: 768 / 992 környéke) */
      --bp-nav-max: 1099px;
      --bp-tab-max: 991px;
      --bp-tab-min: 768px;
      --bp-phone-max: 767px;
      --bp-sm-phone-max: 575px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      background-color: #f6f8fb;
    }

    body {
      min-height: 100vh;
      background: #f6f8fb;
      color: var(--text);
      font-family: var(--sans);
      font-weight: 500;
      line-height: 1.55;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img,
    svg {
      display: block;
    }

    .container {
      width: min(
        1130px,
        calc(100% - 40px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
      );
      margin-inline: auto;
    }

    .container--readable {
      max-width: 42rem;
    }

    .home-seo-cluster {
      padding-block: clamp(2rem, 4vw, 3rem);
      border-top: 1px solid rgba(15, 23, 42, 0.06);
    }

    .home-seo-cluster h2 {
      font-size: clamp(1.15rem, 2.5vw, 1.35rem);
      font-weight: 800;
      margin-bottom: 1rem;
      color: var(--navy-900);
    }

    .home-seo-cluster p {
      margin-bottom: 1rem;
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.6;
    }

    .home-seo-cluster p:last-child {
      margin-bottom: 0;
    }

    .home-seo-cluster a {
      color: var(--blue);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .logo-mark {
      width: 50px;
      aspect-ratio: 1;
      color: var(--blue);
      flex: 0 0 auto;
      filter: drop-shadow(0 0 18px rgba(8,119,255,.28));
    }

    .logo-mark.white {
      color: #ffffff;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
    }

    .brand-text {
      line-height: 1;
    }

    .brand-name {
      display: block;
      font-size: 1.78rem;
      font-weight: 900;
      letter-spacing: -.055em;
      color: #f7fbff;
    }

    .brand-name .blue {
      color: var(--blue-2);
    }

    .brand-tagline {
      display: block;
      margin-top: 5px;
      color: rgba(247,251,255,.74);
      font-size: .57rem;
      font-weight: 900;
      letter-spacing: .22em;
      text-transform: uppercase;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      /* backdrop-filter nélkül: görgetéskor kevesebb GPU-teljesítmény; enyhén sűrűbb háttér */
      background: rgba(2, 8, 19, 0.97);
      border-bottom: 1px solid rgba(8,119,255,.42);
      --bottom-distance-progress: 1;
    }

    .site-header::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -1px;
      height: 1px;
      width: 100%;
      background: linear-gradient(90deg, rgba(56, 189, 248, 0.55), rgba(37, 99, 235, 0.5));
      transform-origin: left center;
      transform: scaleX(var(--bottom-distance-progress, 1));
      transition: transform .12s linear;
      opacity: 0.7;
      pointer-events: none;
    }

    .nav {
      height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .menu {
      display: flex;
      align-items: center;
      gap: clamp(18px, 3vw, 42px);
      color: rgba(247,251,255,.82);
      font-size: .82rem;
      font-weight: 900;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .menu a {
      position: relative;
      color: rgba(247, 251, 255, 0.86);
      transition: color .2s ease;
    }

    .menu a:hover,
    .menu a.active {
      color: #fff;
    }

    .menu a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -25px;
      height: 2px;
      background: var(--blue);
      box-shadow: 0 0 16px rgba(8,119,255,.9);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      padding: 0 28px;
      border-radius: 12px;
      border: 1px solid transparent;
      font-size: .82rem;
      font-weight: 950;
      letter-spacing: .06em;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-blue {
      background: var(--blue);
      color: #fff;
      box-shadow: 0 14px 28px rgba(8, 119, 255, 0.35);
    }

    .btn-blue:hover {
      background: var(--blue-2);
      box-shadow: 0 18px 36px rgba(8, 119, 255, 0.42);
    }

    .btn-ghost {
      border-color: rgba(255,255,255,.22);
      color: #fff;
      background: rgba(255,255,255,.04);
    }

    .btn-ghost:hover {
      border-color: rgba(84,173,255,.75);
      background: rgba(8,119,255,.12);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      color: #fff;
      font-size: 1.4rem;
    }

    .hero {
      position: relative;
      min-height: 690px;
      color: #fff;
      isolation: isolate;
      background:
        linear-gradient(90deg, rgba(2,8,19,.98) 0%, rgba(2,8,19,.87) 36%, rgba(2,8,19,.36) 72%, rgba(2,8,19,.9) 100%),
        linear-gradient(180deg, rgba(2,8,19,.2), rgba(2,8,19,.96)),
        url("../../img/home/luxinterior-gyor-szabadhegy-autobelso.webp") center / cover;  
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      opacity: .32;
      background:
        radial-gradient(circle at 70% 40%, rgba(8,119,255,.28), transparent 22rem),
        radial-gradient(circle at 20% 86%, rgba(8,119,255,.28), transparent 20rem);
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 190px;
      pointer-events: none;
      background: radial-gradient(ellipse at 40% 100%, rgba(8,119,255,.48), transparent 36rem);
      mask-image: linear-gradient(transparent, black 38%);
      opacity: .55;
    }

    .hero-grid {
      min-height: 690px;
      display: grid;
      grid-template-columns: minmax(0, 540px) minmax(280px, 1fr);
      align-items: center;
      gap: 56px;
      padding: 72px 0 82px;
    }

    .eyebrow {
      color: rgba(247,251,255,.74);
      font-size: .84rem;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
      margin-bottom: 22px;
    }

    h1 {
      font-size: clamp(2.65rem, 5.5vw, 4.65rem);
      line-height: 1.07;
      letter-spacing: .02em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    h1 span {
      display: block;
      color: var(--blue-2);
    }

    .hero-lead {
      max-width: 500px;
      color: rgba(247,251,255,.84);
      font-size: 1.08rem;
      font-weight: 600;
      margin-bottom: 34px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 44px;
    }

    .hero-mini {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      max-width: 520px;
      gap: 0;
    }

    .mini-item {
      display: grid;
      grid-template-columns: 40px 1fr;
      align-items: center;
      gap: 12px;
      padding-right: 22px;
      margin-right: 22px;
      border-right: 1px solid rgba(255,255,255,.13);
      color: rgba(247,251,255,.8);
      font-size: .78rem;
      font-weight: 950;
      letter-spacing: .06em;
      text-transform: uppercase;
      line-height: 1.22;
    }

    .mini-item:last-child {
      margin-right: 0;
      padding-right: 0;
      border-right: 0;
    }

    .mini-icon,
    .feature-icon,
    .service-icon {
      width: 34px;
      height: 34px;
      color: var(--blue-2);
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .hero-logo-card {
      align-self: end;
      justify-self: end;
      display: flex;
      align-items: center;
      gap: 24px;
      padding: 20px 24px;
      border: 1px solid rgba(84,173,255,.14);
      background: linear-gradient(135deg, rgba(2,8,19,.12), rgba(2,8,19,.42));
      backdrop-filter: blur(4px);
    }

    .hero-logo-card .logo-mark {
      width: 112px;
    }

    .hero-logo-card .brand-name {
      font-size: clamp(2.6rem, 5vw, 4.1rem);
      font-style: italic;
    }

    .hero-logo-card .brand-tagline {
      font-size: .8rem;
      letter-spacing: .3em;
    }

    .section-white {
      position: relative;
      z-index: 2;
      background: #fff;
      border-radius: 18px 18px 0 0;
      margin-top: -18px;
      padding: 40px 0 34px;
      box-shadow: 0 -18px 80px rgba(2,8,19,.18);
    }

    .section-label {
      color: var(--blue);
      font-size: .82rem;
      font-weight: 950;
      letter-spacing: .16em;
      text-transform: uppercase;
      text-align: center;
      margin-bottom: 10px;
    }

    .section-title {
      max-width: 780px;
      margin: 0 auto 26px;
      color: #1f2937;
      font-size: clamp(1.85rem, 3vw, 2.5rem);
      line-height: 1.15;
      letter-spacing: .055em;
      text-align: center;
      text-transform: uppercase;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .service-card {
      min-height: 372px;
      overflow: hidden;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: stretch;
      padding: 22px 20px 50px;
      border-radius: var(--radius);
      color: #fff;
      background: var(--navy-900);
      box-shadow: 0 12px 30px rgba(2,8,19,.18);
      isolation: isolate;
    }

    a.service-card {
      cursor: pointer;
    }

    a.service-card:focus-visible {
      outline: 2px solid var(--blue-3);
      outline-offset: 3px;
    }

    .service-card__body {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-end;
      gap: 10px;
      width: 100%;
      min-width: 0;
      margin-top: auto;
    }

    .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background: var(--image) center 38% / cover;
      filter: grayscale(100%);
      transform: scale(1.02);
      transition: transform .35s ease, filter .35s ease;
    }

    .service-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(180deg, rgba(2,8,19,.2) 0%, rgba(2,8,19,.28) 42%, rgba(2,8,19,.93) 100%);
    }

    .service-card:hover::before {
      transform: scale(1.08);
      filter: grayscale(40%);
    }

    .service-bubble {
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--blue);
      box-shadow: 0 10px 26px rgba(8,119,255,.36);
    }

    .service-bubble .service-icon {
      width: 26px;
      height: 26px;
      color: #fff;
    }

    .service-card h3 {
      margin: 0;
      width: 100%;
      min-width: 0;
      font-size: clamp(0.82rem, 1.35vw, 1.02rem);
      line-height: 1.22;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-weight: 800;
      word-break: break-word;
      overflow-wrap: anywhere;
    }

    .service-card p {
      margin: 0;
      width: 100%;
      min-width: 0;
      color: rgba(247,251,255,.9);
      font-size: clamp(0.8rem, 1.1vw, 0.95rem);
      font-weight: 600;
      line-height: 1.4;
      word-break: break-word;
      overflow-wrap: anywhere;
    }

    .blue-strip {
      padding: 30px 0;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(0,70,170,.96), rgba(0,111,255,.94)),
        radial-gradient(circle at 12% 80%, rgba(255,255,255,.18), transparent 18rem);
    }

    .blue-strip__h2 {
      margin: 0 0 22px;
      font-size: clamp(0.88rem, 2.6vw, 1rem);
      font-weight: 950;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-align: center;
      color: rgba(247, 251, 255, 0.92);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      align-items: stretch;
    }

    .feature {
      display: grid;
      grid-template-columns: 55px 1fr;
      gap: 16px;
      padding: 0 28px;
      border-right: 1px solid rgba(255,255,255,.18);
    }

    .feature:first-child {
      padding-left: 0;
    }

    .feature:last-child {
      border-right: 0;
      padding-right: 0;
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      color: rgba(247,251,255,.42);
    }

    .feature h3 {
      font-size: .92rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 7px;
    }

    .feature p {
      color: rgba(247,251,255,.72);
      font-size: .88rem;
      font-weight: 600;
    }

    .about {
      padding: 54px 0;
      background: #fff;
    }

    .about-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 62px;
      align-items: center;
    }

    .about-ba {
      margin: 0;
      max-width: none;
      width: 100%;
      min-width: 0;
    }

    .about-ba .lux-ba__frame {
      min-height: min(320px, 52vw);
    }

    .about .section-label,
    .about .section-title {
      text-align: left;
      margin-left: 0;
      margin-right: 0;
    }

    .about .section-title {
      margin-bottom: 18px;
    }

    .about p {
      max-width: 610px;
      color: #4b5563;
      font-weight: 600;
      margin-bottom: 28px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .stat strong {
      display: block;
      color: var(--blue);
      font-size: 2.25rem;
      line-height: 1;
      font-weight: 950;
      letter-spacing: -.04em;
    }

    .stat span {
      display: block;
      margin-top: 7px;
      color: #1f2937;
      font-size: .78rem;
      font-weight: 950;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .about .about-partners {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 272px), 1fr));
      gap: 16px 18px;
      margin-top: 28px;
      width: 100%;
      max-width: 820px;
    }

    .about .about-partners .about-partner-card {
      margin-top: 0;
      margin-bottom: 0;
      max-width: none;
      min-width: 0;
    }

    .about .about-partner-card {
      margin-top: 28px;
      margin-bottom: 0;
      max-width: 610px;
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      gap: 16px 20px;
      padding: 18px 20px;
      border-radius: 16px;
      border: 1px solid rgba(8, 119, 255, 0.22);
      background: linear-gradient(135deg, rgba(240, 246, 255, 0.94) 0%, rgba(255, 255, 255, 0.98) 72%);
      box-shadow: 0 10px 32px rgba(2, 8, 19, 0.06);
    }

    .about .about-partner-card__brand {
      flex: 0 0 auto;
      display: block;
      line-height: 0;
      border-radius: 12px;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .about .about-partner-card__brand:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 22px rgba(8, 119, 255, 0.18);
    }

    .about .about-partner-card__brand:focus-visible {
      outline: 2px solid var(--blue);
      outline-offset: 3px;
    }

    .about .about-partner-card__logo-wrap {
      display: inline-block;
      padding: 10px 14px;
      border-radius: 12px;
      background: #0a0a0a;
      line-height: 0;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    }

    .about .about-partner-card__logo {
      display: block;
      width: auto;
      max-width: min(220px, 100%);
      height: auto;
      max-height: 52px;
      object-fit: contain;
    }

    .about .about-partner-card__logo--kapu {
      max-height: 70px;
      max-width: min(240px, 100%);
    }

    .about .about-partner-card__body {
      flex: 1 1 min(280px, 100%);
      min-width: 0;
    }

    .about .about-partner-card__kicker {
      display: block;
      font-size: 0.72rem;
      font-weight: 850;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 8px;
    }

    .about .about-partner-card__copy {
      margin: 0;
      font-size: 0.92rem;
      font-weight: 650;
      line-height: 1.55;
      color: #475569;
    }

    .about .about-partner-card__copy a {
      color: var(--blue);
      font-weight: 850;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .about .about-partner-card__copy a:hover {
      color: #0059c7;
    }

    /* Partnerek: teljes szélességű sáv — finom „editorial” megjelenés */
    .about-partners-strip {
      width: 100%;
      position: relative;
      isolation: isolate;
      background:
        radial-gradient(ellipse 92% 72% at 50% -12%, rgba(8, 119, 255, 0.075), transparent 55%),
        radial-gradient(ellipse 50% 40% at 12% 88%, rgba(8, 119, 255, 0.035), transparent 55%),
        radial-gradient(ellipse 50% 40% at 88% 88%, rgba(30, 58, 138, 0.045), transparent 55%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 46%, #fafbfc 100%);
      border-top: 1px solid rgba(15, 23, 42, 0.06);
      padding: clamp(40px, 6vw, 72px) 0 clamp(36px, 5vw, 64px);
      margin-top: clamp(16px, 3vw, 32px);
    }

    .about-partners-strip__head {
      text-align: center;
      max-width: 40rem;
      margin: 0 auto clamp(28px, 4vw, 44px);
      padding: 0 clamp(8px, 2vw, 16px);
    }

    .about-partners-strip__eyebrow {
      display: inline-block;
      margin: 0 0 14px;
      padding: 6px 14px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.06);
      border: 1px solid rgba(15, 23, 42, 0.08);
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #475569;
      line-height: 1.2;
    }

    .about-partners-strip__title {
      margin: 0 0 14px;
      font-family: var(--sans);
      font-size: clamp(1.35rem, 3.2vw, 1.85rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      text-transform: none;
      color: #0f172a;
      line-height: 1.18;
    }

    .about-partners-strip__title::after {
      content: '';
      display: block;
      width: 3rem;
      height: 4px;
      margin: 18px auto 0;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--blue-3), var(--blue), #0063dc);
      opacity: 0.92;
    }

    .about-partners-strip__lead {
      margin: 0;
      margin-top: 18px;
      font-size: clamp(0.94rem, 1.9vw, 1.05rem);
      font-weight: 520;
      line-height: 1.62;
      color: #64748b;
      letter-spacing: -0.01em;
    }

      .about .about-partners--strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(18px, 2.8vw, 26px);
      margin-top: 0;
      max-width: 1180px;
      margin-left: auto;
      margin-right: auto;
      width: 100%;
      align-items: stretch;
    }

    @media (max-width: 1024px) {
      .about .about-partners--strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 720px) {
      .about .about-partners--strip {
        grid-template-columns: 1fr;
      }
    }

    .about .about-partner-card--strip {
      margin-top: 0;
      margin-bottom: 0;
      max-width: none;
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: stretch;
      padding: 0;
      overflow: hidden;
      background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.98) 100%);
      border: 1px solid rgba(15, 23, 42, 0.07);
      border-radius: clamp(16px, 2.4vw, 22px);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 12px 32px rgba(15, 23, 42, 0.055);
      transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
    }

    .about .about-partner-card--strip:hover {
      border-color: rgba(8, 119, 255, 0.19);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 16px 40px rgba(8, 119, 255, 0.1);
      transform: translateY(-3px);
    }

    .about .about-partner-card--strip .about-partner-card__brand--strip {
      flex: 0 0 clamp(128px, 30%, 168px);
      max-width: 168px;
      align-self: stretch;
      border-radius: 0;
      line-height: 0;
      display: flex;
    }

    .about .about-partner-card--strip .about-partner-card__brand--strip:focus-visible {
      outline: none;
    }

    .about .about-partner-card--strip .about-partner-card__brand--strip:focus-visible .about-partner-card__logo-wrap--strip {
      outline: 3px solid rgba(8, 119, 255, 0.5);
      outline-offset: -3px;
    }

    .about .about-partner-card__logo-wrap--strip {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 1;
      width: 100%;
      min-height: 100%;
      padding: clamp(16px, 3vw, 22px) clamp(12px, 2vw, 16px);
      box-sizing: border-box;
      background:
        linear-gradient(152deg, #eef2f7 0%, #e2e8f0 48%, #f1f5f9 100%);
      border-right: 1px solid rgba(15, 23, 42, 0.06);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    }

    .about .about-partner-card__brand--strip:hover {
      box-shadow: none;
      transform: none;
    }

    .about .about-partner-card__brand--strip:hover .about-partner-card__logo-wrap--strip {
      background:
        linear-gradient(152deg, #e8ecf2 0%, #dde4ed 48%, #eef2f7 100%);
    }

    .about .about-partner-card--strip .about-partner-card__body {
      flex: 1;
      min-width: 0;
      padding: clamp(18px, 3.2vw, 24px) clamp(18px, 3vw, 24px) clamp(20px, 3.2vw, 26px);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .about .about-partner-card--strip .about-partner-card__kicker {
      margin-bottom: 8px;
      font-size: 0.66rem;
      font-weight: 850;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: #64748b;
    }

    .about .about-partner-card--strip .about-partner-card__copy {
      margin: 0;
      font-size: clamp(0.88rem, 1.6vw, 0.96rem);
      font-weight: 600;
      line-height: 1.58;
      color: #334155;
      letter-spacing: -0.012em;
    }

    .about .about-partner-card--strip .about-partner-card__copy a {
      color: var(--blue);
      font-weight: 850;
      text-decoration: none;
      background-image: linear-gradient(currentColor, currentColor);
      background-size: 100% 1px;
      background-position: 0 100%;
      background-repeat: no-repeat;
      text-underline-offset: 3px;
    }

    .about .about-partner-card--strip .about-partner-card__copy a:hover {
      color: #0059c7;
    }

    .about .about-partner-card__logo--strip {
      max-height: 44px;
      width: auto;
      max-width: min(200px, 100%);
      object-fit: contain;
      filter:
        drop-shadow(0 1px 2px rgba(15, 23, 42, 0.06))
        drop-shadow(0 4px 14px rgba(15, 23, 42, 0.08));
    }

    .about .about-partner-card__logo--strip.about-partner-card__logo--kapu {
      max-height: 56px;
    }

    /* Gerant: fehér ovális jelölés — világosabb háttér a kártyán */
    .about .about-partner-card--strip-gerant .about-partner-card__logo-wrap--strip {
      background: linear-gradient(152deg, #ffffff 0%, #f5f7fa 50%, #eef2f6 100%);
    }

    .about .about-partner-card--strip-gerant .about-partner-card__brand--strip:hover .about-partner-card__logo-wrap--strip {
      background: linear-gradient(152deg, #fafcfd 0%, #eff3f8 50%, #e8edf4 100%);
    }

    .about .about-partner-card__logo--strip.about-partner-card__logo--gerant {
      max-height: 52px;
      max-width: min(230px, 100%);
    }

    /* Kapu-MH: keskenyebb logómező + középen sötét „doboz” — a világos PNG részletek kivehetők */
    .about .about-partner-card--strip-kapu-mh .about-partner-card__brand--strip {
      flex: 0 0 clamp(100px, 24%, 142px);
      max-width: 142px;
    }

    .about .about-partner-card--strip-kapu-mh .about-partner-card__logo-wrap--strip {
      position: relative;
      isolation: isolate;
      padding: clamp(14px, 2.5vw, 20px) clamp(6px, 1.4vw, 10px);
    }

    .about .about-partner-card--strip-kapu-mh .about-partner-card__logo-wrap--strip::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: min(100px, 82%);
      height: min(62px, 70%);
      min-height: 44px;
      border-radius: 11px;
      background: linear-gradient(155deg, #1e293b 0%, #0f172a 50%, #172033 100%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 8px 24px rgba(15, 23, 42, 0.4);
      z-index: 0;
      pointer-events: none;
    }

    .about .about-partner-card--strip-kapu-mh .about-partner-card__logo--strip.about-partner-card__logo--kapu {
      position: relative;
      z-index: 1;
      max-height: 50px;
      filter:
        drop-shadow(0 1px 0 rgba(255, 255, 255, 0.1))
        drop-shadow(0 3px 14px rgba(0, 0, 0, 0.5));
    }

    .about .about-partner-card--strip-kapu-mh .about-partner-card__brand--strip:hover .about-partner-card__logo-wrap--strip::after {
      background: linear-gradient(155deg, #273549 0%, #111827 48%, #1e293b 100%);
    }

    /* Keskeny képernyő (egyoszlopos partnerrács): Kapu-MH — ugyanaz a tiszta megjelenés, mint mobilon */
    @media (max-width: 720px) {
      .about .about-partner-card--strip-kapu-mh .about-partner-card__logo-wrap--strip::after {
        display: none;
      }

      .about .about-partner-card--strip-kapu-mh .about-partner-card__logo--strip.about-partner-card__logo--kapu {
        max-height: none;
        max-width: min(260px, 92%);
        height: auto;
        filter:
          drop-shadow(0 1px 2px rgba(15, 23, 42, 0.07))
          drop-shadow(0 2px 8px rgba(15, 23, 42, 0.06));
      }

      .about .about-partner-card--strip-kapu-mh .about-partner-card__brand--strip {
        flex: 0 0 clamp(118px, 36%, 190px);
        max-width: 190px;
      }

      .about .about-partner-card__logo--strip.about-partner-card__logo--gerant {
        max-height: none;
        max-width: min(240px, 90%);
        height: auto;
      }
    }

    @media (max-width: 540px) {
      .about .about-partner-card--strip {
        flex-direction: column;
      }

      .about .about-partner-card--strip .about-partner-card__brand--strip {
        flex: none;
        max-width: none;
        width: 100%;
      }

      .about .about-partner-card__logo-wrap--strip {
        min-height: 92px;
        border-right: 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
      }

      .about .about-partner-card__logo--strip {
        max-height: 48px;
      }

      .about .about-partner-card__logo--strip.about-partner-card__logo--kapu {
        max-height: 56px;
      }

      .about .about-partner-card__logo--strip.about-partner-card__logo--gerant {
        max-height: none;
        max-width: min(260px, 88vw);
        height: auto;
      }

      .about .about-partner-card--strip-gerant .about-partner-card__logo-wrap--strip {
        min-height: 96px;
        padding: 18px 14px;
      }

      /* Kapu-MH mobil: nincs szűk sötét „pill” + nincs erős drop-shadow — nem törik meg a PNG, egységes a Kapulan kártyával */
      .about .about-partner-card--strip-kapu-mh .about-partner-card__logo-wrap--strip {
        min-height: 100px;
        padding: 20px 16px;
      }

      .about .about-partner-card--strip-kapu-mh .about-partner-card__logo-wrap--strip::after {
        display: none;
      }

      .about .about-partner-card--strip-kapu-mh .about-partner-card__logo--strip.about-partner-card__logo--kapu {
        max-height: none;
        max-width: min(260px, 88vw);
        height: auto;
        filter:
          drop-shadow(0 1px 2px rgba(15, 23, 42, 0.07))
          drop-shadow(0 2px 8px rgba(15, 23, 42, 0.06));
      }

      .about-partners-strip__title::after {
        margin-top: 14px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .about .about-partner-card--strip:hover {
        transform: none;
      }

      .about .about-partner-card__brand--strip:hover .about-partner-card__logo-wrap--strip {
        background:
          linear-gradient(152deg, #eef2f7 0%, #e2e8f0 48%, #f1f5f9 100%);
      }
    }

    .lux-ba__frame {
      --ba-pos: 22%;
      position: relative;
      aspect-ratio: 16 / 10;
      border-radius: 3px;
      overflow: hidden;
      box-shadow: var(--shadow);
      touch-action: none;
      user-select: none;
    }

    .lux-ba__img {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .lux-ba__img--after {
      z-index: 0;
    }

    .lux-ba__img--before {
      z-index: 1;
      clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
    }

    .lux-ba__divider {
      position: absolute;
      z-index: 2;
      top: 0;
      bottom: 0;
      width: 2px;
      left: var(--ba-pos);
      margin-left: -1px;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 0 14px rgba(2, 8, 19, 0.35);
      pointer-events: none;
    }

    .lux-ba__handle {
      position: absolute;
      z-index: 3;
      top: 0;
      bottom: 0;
      left: var(--ba-pos);
      width: 48px;
      margin-left: -24px;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: ew-resize;
      touch-action: none;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lux-ba__handle:focus-visible {
      outline: 3px solid rgba(8, 119, 255, 0.55);
      outline-offset: 3px;
    }

    .lux-ba__handle:focus:not(:focus-visible) {
      outline: none;
    }

    .lux-ba__grip {
      display: block;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--blue);
      border: 3px solid #fff;
      box-shadow: 0 8px 24px rgba(2, 8, 19, 0.38);
    }

    .lux-ba__legend {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin: 12px 0 0;
      padding: 0;
      flex-wrap: wrap;
    }

    .lux-ba__tag {
      font-size: 0.68rem;
      font-weight: 950;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #64748b;
    }

    .lux-ba__hint {
      flex: 1;
      min-width: min(100%, 200px);
      margin: 0;
      font-size: 0.72rem;
      font-weight: 650;
      color: #475569;
      text-align: center;
      line-height: 1.35;
    }

    button.lux-ba__jump {
      font: inherit;
      font-size: 0.68rem;
      font-weight: 950;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #64748b;
      margin: 0;
      padding: 6px 10px;
      border: 1px solid rgba(100, 116, 139, 0.35);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.85);
      cursor: pointer;
      transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
    }

    button.lux-ba__jump:hover {
      color: var(--blue);
      border-color: rgba(8, 119, 255, 0.45);
      background: #fff;
    }

    button.lux-ba__jump:focus-visible {
      outline: 3px solid rgba(8, 119, 255, 0.45);
      outline-offset: 2px;
    }

    .about-equip {
      max-width: 610px;
      margin-top: 0;
      margin-bottom: 12px;
      color: #475569;
      font-size: 0.92rem;
      font-weight: 650;
      line-height: 1.55;
    }

    .about-more-link {
      margin: 0 0 22px;
    }

    .link-forward {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 800;
      font-size: 0.92rem;
      color: var(--blue);
      text-decoration: none;
      border-bottom: 1px solid transparent;
    }

    .link-forward:hover {
      border-bottom-color: rgba(8, 119, 255, 0.45);
    }

    .home-section-forward {
      margin: 26px 0 0;
      text-align: center;
    }

    .home-discover {
      padding: 56px 0 62px;
    }

    .home-discover__grid {
      list-style: none;
      margin: 28px 0 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .home-discover__card {
      display: flex;
      flex-direction: column;
      gap: 8px;
      min-height: 120px;
      padding: 18px 18px 16px;
      border-radius: 14px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      background: linear-gradient(165deg, #fff 0%, #f4f7fb 100%);
      box-shadow: 0 14px 36px rgba(2, 8, 19, 0.06);
      text-decoration: none;
      color: inherit;
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }

    .home-discover__card:hover {
      transform: translateY(-3px);
      border-color: rgba(8, 119, 255, 0.22);
      box-shadow: 0 22px 48px rgba(2, 8, 19, 0.1);
    }

    .home-discover__kicker {
      font-size: 0.62rem;
      font-weight: 950;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--blue);
    }

    .home-discover__label {
      font-size: 1rem;
      font-weight: 850;
      letter-spacing: -0.02em;
      color: #0f172a;
      line-height: 1.25;
      overflow-wrap: anywhere;
      hyphens: auto;
    }

    .home-discover__go {
      margin-top: auto;
      font-size: 0.82rem;
      font-weight: 800;
      color: var(--blue);
    }

    .home-blog-teaser {
      padding: 0 0 64px;
    }

    .home-blog-teaser__head {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 22px;
    }

    .home-blog-teaser__title {
      font-size: clamp(1.35rem, 3.5vw, 1.75rem);
      font-weight: 950;
      letter-spacing: -0.04em;
      color: #0f172a;
      margin: 0;
    }

    .home-blog-teaser__grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .home-blog-card {
      display: flex;
      flex-direction: column;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(15, 23, 42, 0.08);
      background: #fff;
      box-shadow: 0 16px 42px rgba(2, 8, 19, 0.07);
      min-height: 100%;
    }

    .home-blog-card__media {
      display: block;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #e2e8f0;
    }

    .home-blog-card__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.35s ease;
    }

    .home-blog-card:hover .home-blog-card__media img {
      transform: scale(1.04);
    }

    .home-blog-card__body {
      padding: 18px 18px 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
    }

    .home-blog-card__date {
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #64748b;
    }

    .home-blog-card__title {
      margin: 0;
      font-size: 1.05rem;
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.3;
    }

    .home-blog-card__title a {
      color: #0f172a;
      text-decoration: none;
    }

    .home-blog-card__title a:hover {
      color: var(--blue);
    }

    .home-blog-card__excerpt {
      margin: 0;
      font-size: 0.88rem;
      font-weight: 600;
      color: #475569;
      line-height: 1.5;
      flex: 1;
    }

    .home-blog-card__more {
      font-size: 0.84rem;
      font-weight: 800;
      color: var(--blue);
      text-decoration: none;
      margin-top: 4px;
    }

    .home-blog-card__more:hover {
      text-decoration: underline;
    }

    @media (max-width: 991px) {
      .home-discover__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .home-blog-teaser__grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 767px) {
      body.page-home .home-blog-teaser .container {
        width: 100%;
        max-width: 100%;
        padding-inline: 0;
      }

      body.page-home .home-blog-teaser__head {
        padding-inline: max(14px, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
        gap: 0.65rem;
        margin-bottom: 1rem;
      }

      body.page-home .home-blog-teaser__grid {
        gap: 0.65rem;
      }

      body.page-home .home-blog-card {
        border-radius: 0;
        border-left: none;
        border-right: none;
        box-shadow: 0 10px 32px rgba(1, 13, 31, 0.07);
      }

      body.page-home .home-blog-card__body {
        padding: 0.95rem max(14px, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px)) 1.05rem;
      }

      body.page-home .home-blog-card__title {
        font-size: 1.02rem;
      }

      body.page-home .home-blog-card__more {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
      }
    }

    @media (max-width: 575px) {
      .home-discover__grid {
        grid-template-columns: 1fr;
      }

      .lux-ba__legend {
        flex-direction: column;
        align-items: stretch;
      }

      .lux-ba__hint {
        order: 3;
        text-align: left;
      }

      button.lux-ba__jump {
        width: 100%;
      }
    }

    .cta {
      position: relative;
      color: #fff;
      padding: 46px 0;
      background:
        linear-gradient(90deg, rgba(2,8,19,.95), rgba(2,8,19,.84)),
        url("../../img/home/auto-belso-galeria-03.webp") center / cover;
      overflow: hidden;
    }

    .cta::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 170px;
      background: repeating-radial-gradient(circle at 68% 88%, rgba(8,119,255,.48) 0 1px, transparent 1px 10px);
      opacity: .42;
      pointer-events: none;
    }

    .cta-inner {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .cta h2 {
      font-size: clamp(1.75rem, 3.2vw, 2.65rem);
      line-height: 1.15;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .cta p {
      color: rgba(247,251,255,.8);
      font-weight: 650;
      margin-bottom: 22px;
    }

    .footer {
      color: rgba(247,251,255,.76);
      background: linear-gradient(180deg, #0b1628 0%, #07101d 52%, #050d18 100%);
      border-top: 1px solid rgba(255, 255, 255, 0.09);
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 50px;
      padding: 34px 0 30px;
    }

    .footer .brand-name {
      font-size: 1.45rem;
    }

    .footer .logo-mark {
      width: 42px;
    }

    .footer h3 {
      color: #fff;
      font-size: .82rem;
      font-weight: 950;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .footer p,
    .footer a {
      color: rgba(247,251,255,.66);
      font-size: .9rem;
      font-weight: 600;
    }

    .footer a:hover:not(.social-icon) {
      color: var(--blue-3);
    }

    .footer-links {
      display: grid;
      gap: 6px;
    }

    .socials {
      display: flex;
      gap: 12px;
    }

    .socials a {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.1);
      font-weight: 900;
    }

    .copyright {
      padding: 14px 0;
      border-top: 1px solid rgba(255,255,255,.07);
      text-align: center;
      color: rgba(247,251,255,.52);
      font-size: .82rem;
    }

    @media (max-width: 1099px) {
      .menu,
      .nav > .btn {
        display: none;
      }

      .menu-toggle {
        display: grid;
        place-items: center;
      }

      .hero-grid,
      .about-grid {
        grid-template-columns: 1fr;
      }

      .hero-logo-card {
        justify-self: start;
        align-self: center;
      }

      .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
      }

      .features-grid,
      .footer-main {
        grid-template-columns: repeat(2, 1fr);
      }

      .feature:nth-child(2) {
        border-right: 0;
      }

      .feature:nth-child(n+3) {
        margin-top: 26px;
      }
    }

    @media (max-width: 767px) {
      .container {
        width: min(
          1130px,
          calc(100% - 28px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
        );
      }

      .nav {
        height: 74px;
      }

      .brand {
        min-width: 0;
        flex: 1 1 auto;
        max-width: none;
      }

      .brand-name {
        font-size: 1.35rem;
      }

      .brand-tagline {
        font-size: .48rem;
        letter-spacing: .15em;
      }

      .logo-mark {
        width: 42px;
      }

      .hero,
      .hero-grid {
        min-height: auto;
      }

      .hero-grid {
        padding: 62px 0 78px;
      }

      .hero-mini,
      .features-grid,
      .stats,
      .footer-main {
        grid-template-columns: 1fr;
      }

      .mini-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
        margin-right: 0;
        padding: 12px 0;
      }

      .hero-logo-card {
        padding: 18px 0;
        border: 0;
        background: transparent;
        gap: 14px;
      }

      .hero-logo-card .logo-mark {
        width: 72px;
      }

      .hero-logo-card .brand-name {
        font-size: 2.1rem;
      }

      .hero-logo-card .brand-tagline {
        font-size: .55rem;
      }

      .service-card {
        min-height: 328px;
      }

      .feature,
      .feature:first-child,
      .feature:last-child {
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.14);
      }

      .feature:nth-child(n+3) {
        margin-top: 0;
      }

      .about-ba .lux-ba__frame {
        min-height: 240px;
      }
    }
  

/* LuxInterior — foglaló + auth + űrlap (kiegészítő blokk) */

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      color: #fff;
      font-size: 1.4rem;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .auth-area {
      min-width: 188px;
      display: flex;
      justify-content: flex-start;
    }

    .google-login-btn {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 18px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.96);
      color: #172033;
      font-size: .78rem;
      font-weight: 950;
      letter-spacing: .04em;
      text-transform: uppercase;
      cursor: pointer;
      box-shadow: 0 14px 34px rgba(0,0,0,.18);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .google-login-btn:hover {
      transform: translateY(-2px);
      border-color: rgba(84,173,255,.55);
      box-shadow: 0 20px 42px rgba(8,119,255,.22);
    }

    .google-icon {
      width: 19px;
      height: 19px;
      flex: 0 0 auto;
    }

    .account-card {
      display: none;
      align-items: center;
      gap: 11px;
      min-height: 54px;
      padding: 7px 12px 7px 8px;
      border-radius: 16px;
      border: 1px solid rgba(84,173,255,.2);
      background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
      box-shadow: 0 18px 36px rgba(0,0,0,.16);
      backdrop-filter: blur(12px);
    }

    .account-card.is-visible {
      display: flex;
    }

    .account-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(84,173,255,.8);
      background: rgba(255,255,255,.12);
      box-shadow: 0 0 18px rgba(8,119,255,.34);
    }

    .account-meta {
      display: grid;
      gap: 2px;
      min-width: 0;
      line-height: 1.15;
    }

    .account-name {
      max-width: 145px;
      color: #fff;
      font-size: .82rem;
      font-weight: 950;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .account-email {
      max-width: 145px;
      color: rgba(247,251,255,.62);
      font-size: .7rem;
      font-weight: 700;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      text-transform: none;
      letter-spacing: 0;
    }

    .logout-btn {
      width: 27px;
      height: 27px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 9px;
      background: rgba(255,255,255,.06);
      color: rgba(247,251,255,.78);
      cursor: pointer;
      font-size: .85rem;
      transition: .18s ease;
    }

    .logout-btn:hover {
      color: #fff;
      background: rgba(8,119,255,.22);
      border-color: rgba(84,173,255,.42);
    }

    .booking-hero {
      position: relative;
      color: #fff;
      overflow: hidden;
      isolation: isolate;
      background:
        linear-gradient(90deg, rgba(2,8,19,.98), rgba(2,8,19,.78), rgba(2,8,19,.92)),
        url("../../img/home/luxinterior-gyor-szabadhegy-autobelso.webp") center / cover;  
    }

    .booking-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      opacity: .58;
      background:
        radial-gradient(circle at 74% 38%, rgba(8,119,255,.34), transparent 24rem),
        repeating-radial-gradient(circle at 18% 88%, rgba(8,119,255,.38) 0 1px, transparent 1px 10px);
      mask-image: linear-gradient(black 35%, transparent 105%);
    }

    .booking-hero-grid {
      min-height: 360px;
      display: grid;
      grid-template-columns: minmax(0, 700px) 1fr;
      align-items: center;
      gap: 48px;
      padding: 78px 0 88px;
    }

    .eyebrow {
      color: rgba(247,251,255,.74);
      font-size: .84rem;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    h1 {
      font-size: clamp(2.4rem, 5vw, 4.35rem);
      line-height: 1.07;
      letter-spacing: .03em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    h1 span {
      display: block;
      color: var(--blue-2);
    }

    .hero-lead {
      max-width: 620px;
      color: rgba(247,251,255,.82);
      font-size: 1.08rem;
      font-weight: 600;
    }

    .hero-note {
      justify-self: end;
      width: min(100%, 330px);
      padding: 24px;
      border-radius: 18px;
      border: 1px solid rgba(84,173,255,.18);
      background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
      box-shadow: 0 24px 70px rgba(0,0,0,.24);
      backdrop-filter: blur(10px);
    }

    .hero-note strong {
      display: block;
      font-size: 1.2rem;
      margin-bottom: 8px;
    }

    .hero-note p {
      color: rgba(247,251,255,.74);
      font-weight: 600;
    }

    .booking-section {
      position: relative;
      z-index: 2;
      margin-top: -42px;
      padding: 0 0 62px;
    }

    .booking-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
      gap: 28px;
      align-items: start;
    }

    .panel {
      border-radius: 20px;
      background: #fff;
      box-shadow: var(--shadow);
      border: 1px solid rgba(15, 23, 42, .06);
      overflow: hidden;
    }

    .panel-header {
      padding: 28px 30px;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(8,119,255,.96), rgba(0,88,205,.96)),
        radial-gradient(circle at 84% 20%, rgba(255,255,255,.2), transparent 15rem);
    }

    .panel-header .section-label {
      color: rgba(255,255,255,.72);
      text-align: left;
      margin-bottom: 8px;
    }

    .panel-header h2 {
      font-size: clamp(1.45rem, 2.5vw, 2.1rem);
      line-height: 1.15;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .booking-form {
      padding: 30px;
      display: grid;
      gap: 22px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .field {
      display: grid;
      gap: 8px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    label {
      color: #1f2937;
      font-size: .78rem;
      font-weight: 950;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    input,
    select,
    textarea {
      width: 100%;
      min-height: 52px;
      border: 1px solid #d9e2ef;
      border-radius: 12px;
      background: #f8fafc;
      color: #111827;
      font: inherit;
      font-weight: 650;
      padding: 13px 15px;
      outline: none;
      transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(8,119,255,.82);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(8,119,255,.12);
    }

    textarea {
      min-height: 126px;
      resize: vertical;
    }

    .service-options {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .option {
      position: relative;
    }

    .option input {
      position: absolute;
      inset: 0;
      opacity: 0;
      cursor: pointer;
    }

    .option span {
      min-height: 58px;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 13px 14px;
      border-radius: 14px;
      border: 1px solid #d9e2ef;
      background: #f8fafc;
      color: #243041;
      font-size: .9rem;
      font-weight: 850;
      transition: .18s ease;
    }

    .option span::before {
      content: "";
      width: 18px;
      height: 18px;
      border-radius: 6px;
      border: 2px solid #b8c5d6;
      background: #fff;
      flex: 0 0 auto;
      transition: .18s ease;
    }

    .option input:checked + span {
      border-color: rgba(8,119,255,.72);
      background: rgba(8,119,255,.07);
      color: #0b63d8;
      box-shadow: 0 12px 28px rgba(8,119,255,.1);
    }

    .option input:checked + span::before {
      border-color: var(--blue);
      background: var(--blue);
      box-shadow: inset 0 0 0 4px #fff;
    }

    .form-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding-top: 4px;
    }

    .privacy {
      max-width: 430px;
      color: var(--muted);
      font-size: .86rem;
      font-weight: 600;
    }

    /* — Foglalás (/foglalas): egyszerűbb UX, mobil bar — */
    body.page-booking-lux .booking-hero--wizard .booking-hero-grid {
      min-height: clamp(220px, 42vw, 340px);
      padding: 62px 0 72px;
    }

    body.page-booking-lux .panel-header-hint {
      margin: 10px 0 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: clamp(0.86rem, 2.8vw, 0.94rem);
      font-weight: 600;
      text-transform: none;
      letter-spacing: 0;
      line-height: 1.45;
      max-width: 52rem;
    }

    body.page-booking-lux .booking-step-dots {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin: 12px 0 2px;
    }

    body.page-booking-lux .booking-step-dot {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      font-size: 0.82rem;
      font-weight: 950;
      border: 1px solid rgba(255, 255, 255, 0.35);
      background: rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.88);
    }

    body.page-booking-lux .booking-step-dot.is-current {
      background: #fff;
      color: #064cae;
      border-color: #fff;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    }

    body.page-booking-lux .booking-step-dot.is-past {
      cursor: pointer;
      color: #fff;
      background: rgba(16, 185, 129, 0.35);
      border-color: rgba(167, 243, 208, 0.65);
    }

    body.page-booking-lux .booking-step-dot.is-past:hover {
      background: rgba(16, 185, 129, 0.5);
    }

    body.page-booking-lux .booking-step-dot.is-past:focus-visible {
      outline: 3px solid rgba(255, 255, 255, 0.95);
      outline-offset: 2px;
    }

    body.page-booking-lux .booking-service-picker .option span {
      min-height: 62px;
      font-size: 0.95rem;
    }

    body.page-booking-lux .booking-wizard-scroll-panel {
      display: grid;
      gap: 22px;
      max-height: min(58vh, 560px);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding-right: 6px;
      margin-right: -4px;
    }

    body.page-booking-lux .booking-privacy-details summary {
      cursor: pointer;
      font-weight: 850;
      font-size: 0.82rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
      list-style: none;
    }

    body.page-booking-lux .booking-privacy-details summary::-webkit-details-marker {
      display: none;
    }

    body.page-booking-lux .booking-privacy-details .privacy {
      max-width: none;
      margin-top: 8px;
    }

    body.page-booking-lux .form-footer {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
    }

    body.page-booking-lux .booking-wizard-scroll-spacer {
      display: none;
      height: 0;
    }

    body.page-booking-lux .booking-wizard-action-bar {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 10px;
    }

    body.page-booking-lux .step--navigable {
      cursor: pointer;
      border-radius: 12px;
      margin: 0 -8px;
      padding-left: 8px;
      padding-right: 8px;
      transition: background 0.18s ease;
    }

    body.page-booking-lux .step--navigable:hover {
      background: rgba(8, 119, 255, 0.06);
    }

    body.page-booking-lux .step--navigable:focus-visible {
      outline: 3px solid rgba(8, 119, 255, 0.45);
      outline-offset: 2px;
    }

    body.page-booking-lux .step--active {
      border-radius: 12px;
      box-shadow: inset 0 0 0 2px rgba(8, 119, 255, 0.35);
    }

    /* Foglalás v2 — 4 lépés, egyszerűbb kártyák */
    body.page-booking-lux .booking-hero--v2 .booking-hero-grid {
      min-height: clamp(180px, 32vw, 280px);
      padding: 48px 0 56px;
    }

    body.page-booking-lux .booking-layout--v2 {
      align-items: start;
    }

    body.page-booking-lux .booking-v2-progress {
      margin-top: 14px;
      height: 6px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.22);
      overflow: hidden;
    }

    body.page-booking-lux .booking-v2-progress__fill {
      height: 100%;
      border-radius: 999px;
      background: linear-gradient(90deg, #fff, rgba(147, 197, 253, 0.95));
      transition: width 0.25s ease;
    }

    body.page-booking-lux .booking-v2-step {
      display: grid;
      gap: 22px;
    }

    body.page-booking-lux .booking-v2-segment {
      display: grid;
      gap: 12px;
    }

    body.page-booking-lux .booking-v2-segment--highlight {
      padding: 16px;
      border-radius: 16px;
      border: 1px solid rgba(8, 119, 255, 0.18);
      background: linear-gradient(135deg, rgba(8, 119, 255, 0.06), rgba(33, 212, 253, 0.05));
    }

    body.page-booking-lux .booking-v2-segment__label {
      margin: 0;
      font-size: 0.78rem;
      font-weight: 950;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #0b63d8;
    }

    body.page-booking-lux .booking-v2-segment__lead {
      margin: 0;
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.45;
    }

    body.page-booking-lux .booking-v2-category-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    body.page-booking-lux .booking-v2-category {
      position: relative;
      display: grid;
      gap: 6px;
      padding: 16px 14px;
      border-radius: 16px;
      border: 2px solid #e2e8f0;
      background: #fff;
      cursor: pointer;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
    }

    body.page-booking-lux .booking-v2-category input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    body.page-booking-lux .booking-v2-category strong {
      font-size: 0.98rem;
      color: #0f172a;
    }

    body.page-booking-lux .booking-v2-category span:last-child {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.35;
    }

    body.page-booking-lux .booking-v2-category__icon {
      font-size: 1.35rem;
      line-height: 1;
    }

    body.page-booking-lux .booking-v2-category.is-selected {
      border-color: #0877ff;
      box-shadow: 0 12px 28px rgba(8, 119, 255, 0.14);
    }

    body.page-booking-lux .booking-v2-package-list {
      display: grid;
      gap: 10px;
    }

    body.page-booking-lux .booking-v2-package {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px 16px;
      border-radius: 14px;
      border: 1px solid #e2e8f0;
      background: #f8fafc;
      cursor: pointer;
      transition: border-color 0.15s ease, background 0.15s ease;
    }

    body.page-booking-lux .booking-v2-package input {
      margin-top: 4px;
      accent-color: #0877ff;
    }

    body.page-booking-lux .booking-v2-package__body {
      display: grid;
      gap: 4px;
      min-width: 0;
    }

    body.page-booking-lux .booking-v2-package__body strong {
      font-size: 0.92rem;
      color: #0f172a;
    }

    body.page-booking-lux .booking-v2-package__body span {
      font-size: 0.82rem;
      color: #0b63d8;
      font-weight: 800;
    }

    body.page-booking-lux .booking-v2-package.is-selected {
      border-color: #0877ff;
      background: rgba(8, 119, 255, 0.06);
    }

    body.page-booking-lux .booking-v2-extra-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
      gap: 10px;
    }

    body.page-booking-lux .booking-v2-extra {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 12px;
      border-radius: 12px;
      border: 1px solid #e2e8f0;
      background: #fff;
      cursor: pointer;
    }

    body.page-booking-lux .booking-v2-extra input {
      margin-top: 3px;
      accent-color: #0877ff;
    }

    body.page-booking-lux .booking-v2-extra span {
      display: grid;
      gap: 4px;
      min-width: 0;
    }

    body.page-booking-lux .booking-v2-extra strong {
      font-size: 0.84rem;
      line-height: 1.3;
    }

    body.page-booking-lux .booking-v2-extra em {
      font-style: normal;
      font-size: 0.78rem;
      font-weight: 800;
      color: #0b63d8;
    }

    body.page-booking-lux .booking-v2-extra.is-selected {
      border-color: #0877ff;
      background: rgba(8, 119, 255, 0.05);
    }

    body.page-booking-lux .booking-v2-extra--rec.is-selected {
      border-color: #0d9488;
      background: rgba(13, 148, 136, 0.06);
    }

    body.page-booking-lux .booking-v2-extra-grid--all {
      max-height: none;
    }

    body.page-booking-lux .booking-v2-step--details {
      gap: 28px;
    }

    body.page-booking-lux .booking-v2-recap {
      display: grid;
      gap: 10px;
      padding: 16px;
      border-radius: 16px;
      border: 1px solid #e2e8f0;
      background: #f8fafc;
    }

    body.page-booking-lux .booking-v2-recap-row {
      display: grid;
      gap: 4px;
      font-size: 0.88rem;
    }

    body.page-booking-lux .booking-v2-recap-row > span:first-child {
      font-size: 0.72rem;
      font-weight: 950;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #64748b;
    }

    body.page-booking-lux .booking-v2-recap-row > div {
      font-weight: 700;
      color: #1e293b;
      line-height: 1.4;
    }

    body.page-booking-lux .booking-v2-recap-edit {
      justify-self: start;
      margin-top: 4px;
      padding: 0;
      border: 0;
      background: none;
      font: inherit;
      font-size: 0.84rem;
      font-weight: 800;
      color: #0b63d8;
      cursor: pointer;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    body.page-booking-lux .booking-v2-step--service {
      max-height: min(70vh, 720px);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding-right: 4px;
    }

    body.page-booking-lux .booking-v2-collapse-trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 12px 14px;
      border-radius: 12px;
      border: 1px dashed #cbd5e1;
      background: #fff;
      font: inherit;
      font-weight: 800;
      font-size: 0.86rem;
      color: #334155;
      cursor: pointer;
    }

    body.page-booking-lux .booking-v2-price-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 14px 16px;
      border-radius: 16px;
      border: 1px solid rgba(8, 119, 255, 0.2);
      background: linear-gradient(135deg, rgba(8, 119, 255, 0.08), rgba(33, 212, 253, 0.1));
    }

    body.page-booking-lux .booking-v2-price-bar__label {
      display: block;
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
    }

    body.page-booking-lux .booking-v2-price-bar__hint {
      display: block;
      margin-top: 4px;
      font-size: 0.76rem;
      color: var(--muted);
      font-weight: 650;
      max-width: 28rem;
    }

    body.page-booking-lux .booking-v2-price-bar__amount {
      font-size: 1.2rem;
      color: #064cae;
      white-space: nowrap;
    }

    body.page-booking-lux .booking-v2-price-bar__amounts {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 2px;
    }

    body.page-booking-lux .booking-v2-price-bar__subtotal {
      font-size: 0.82rem;
      color: var(--muted);
      text-decoration: line-through;
      font-weight: 650;
    }

    body.page-booking-lux .booking-v2-price-bar__hint--promo {
      color: #0a7a3e;
    }

    body.page-booking-lux .booking-v2-price-bar__hint--discount {
      color: #c2410c;
      font-weight: 800;
    }

    body.page-booking-lux .booking-v2-coupon input {
      width: 100%;
      min-height: 48px;
      padding: 0 14px;
      border-radius: 12px;
      border: 1px solid #dbe4ef;
    }

    body.page-booking-lux .booking-v2-first-buyer,
    body.page-booking-lux .booking-v2-quote-error {
      margin: 8px 0 0;
      font-size: 0.85rem;
      font-weight: 650;
    }

    body.page-booking-lux .booking-v2-first-buyer {
      color: #0a7a3e;
    }

    body.page-booking-lux .booking-v2-quote-error {
      color: #b91c1c;
    }

    body.page-booking-lux .booking-v2-note {
      width: 100%;
      min-height: 88px;
      padding: 12px 14px;
      border-radius: 12px;
      border: 1px solid #dbe4ef;
      resize: vertical;
    }

    body.page-booking-lux .booking-v2-billing-details {
      margin-top: 8px;
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      padding: 12px 14px;
      background: #f8fafc;
    }

    body.page-booking-lux .booking-v2-billing-details summary {
      cursor: pointer;
      font-weight: 850;
      color: #334155;
    }

    body.page-booking-lux .booking-v2-billing-body {
      display: grid;
      gap: 14px;
      margin-top: 14px;
    }

    body.page-booking-lux .booking-v2-summary-card {
      display: grid;
      gap: 0;
      border: 1px solid #e5eaf2;
      border-radius: 16px;
      overflow: hidden;
      background: #fff;
    }

    body.page-booking-lux .booking-v2-summary-row {
      display: grid;
      gap: 6px;
      padding: 14px 16px;
      border-bottom: 1px solid #eef2f7;
    }

    body.page-booking-lux .booking-v2-summary-row:last-child {
      border-bottom: 0;
    }

    body.page-booking-lux .booking-v2-summary-row__label {
      font-size: 0.72rem;
      font-weight: 950;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #64748b;
    }

    body.page-booking-lux .booking-v2-summary-row__value {
      font-size: 0.92rem;
      font-weight: 700;
      color: #1e293b;
      line-height: 1.45;
    }

    body.page-booking-lux .booking-v2-summary-sub {
      display: block;
      margin-top: 4px;
      font-size: 0.84rem;
      font-weight: 650;
      color: #64748b;
    }

    body.page-booking-lux .booking-v2-summary-foot {
      margin: 0;
      font-size: 0.86rem;
      color: var(--muted);
      line-height: 1.45;
    }

    body.page-booking-lux .booking-v2-privacy {
      margin: 0;
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.4;
    }

    body.page-booking-lux .booking-v2-btn-back {
      border: 1px solid #d9e2ef;
      background: #eef2f7;
      color: #172033;
    }

    body.page-booking-lux .booking-v2-aside {
      display: grid;
      gap: 16px;
    }

    body.page-booking-lux .booking-v2-aside-price {
      padding: 18px 20px;
      border-radius: 16px;
      background: #fff;
      border: 1px solid #e2e8f0;
      box-shadow: 0 12px 32px rgba(1, 13, 31, 0.06);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    body.page-booking-lux .booking-v2-aside-price span {
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
    }

    body.page-booking-lux .booking-v2-aside-price strong {
      font-size: 1.15rem;
      color: #064cae;
    }

    body.page-booking-lux .booking-addr-section--embedded .booking-addr-lead {
      font-size: 0.88rem;
    }

    @media (max-width: 720px) {
      body.page-booking-lux .booking-v2-category-grid {
        grid-template-columns: 1fr;
      }

      body.page-booking-lux .booking-v2-price-bar {
        flex-direction: column;
        align-items: stretch;
      }

      body.page-booking-lux .booking-v2-aside-price {
        position: sticky;
        bottom: 12px;
        z-index: 5;
      }
    }

    .side-card {
      padding: 30px;
    }

    .side-card.dark {
      color: #fff;
      background:
        linear-gradient(180deg, rgba(2,8,19,.96), rgba(6,16,31,.98)),
        radial-gradient(circle at 82% 12%, rgba(8,119,255,.35), transparent 18rem);
    }

    .side-card h2,
    .side-card h3 {
      font-size: 1.35rem;
      line-height: 1.2;
      letter-spacing: .04em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .side-card p {
      color: rgba(247,251,255,.72);
      font-weight: 600;
      margin-bottom: 22px;
    }

    .info-list {
      display: grid;
      gap: 16px;
      margin: 22px 0 28px;
    }

    .info-item {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 14px;
      align-items: center;
    }

    .info-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: rgba(8,119,255,.14);
      color: var(--blue-3);
      border: 1px solid rgba(84,173,255,.16);
      font-weight: 950;
    }

    .info-item strong {
      display: block;
      color: #fff;
      font-size: .9rem;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .info-item span,
    .info-item a {
      display: block;
      color: rgba(247,251,255,.7);
      font-size: .92rem;
      font-weight: 600;
    }

    .process {
      margin-top: 22px;
      border-radius: 20px;
      background: #fff;
      box-shadow: 0 18px 55px rgba(1, 13, 31, .12);
      border: 1px solid rgba(15, 23, 42, .06);
      overflow: hidden;
    }

    .process-title {
      padding: 24px 28px 0;
      color: var(--blue);
      font-size: .82rem;
      font-weight: 950;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .steps {
      display: grid;
      gap: 0;
      padding: 16px 28px 26px;
    }

    .step {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid #e5eaf2;
    }

    .step:last-child {
      border-bottom: 0;
    }

    .step-num {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(8,119,255,.1);
      color: var(--blue);
      font-weight: 950;
    }

    .step strong {
      display: block;
      color: #172033;
      font-size: .94rem;
      letter-spacing: .04em;
      text-transform: uppercase;
      margin-bottom: 3px;
    }

    .step span {
      color: var(--muted);
      font-size: .9rem;
      font-weight: 600;
    }



    @media (max-width: 1099px) {
      .menu {
        display: none;
      }

      .menu-toggle {
        display: grid;
        place-items: center;
      }

      .booking-hero-grid,
      .booking-layout {
        grid-template-columns: 1fr;
      }

      .hero-note {
        justify-self: start;
      }

      .features-grid,
      .footer-main {
        grid-template-columns: repeat(2, 1fr);
      }

      .feature:nth-child(2) {
        border-right: 0;
      }

      .feature:nth-child(n+3) {
        margin-top: 26px;
      }
    }

    @media (max-width: 767px) {
      .container {
        width: min(
          1130px,
          calc(100% - 28px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
        );
      }

      .brand {
        min-width: 0;
        flex: 1 1 auto;
        max-width: none;
      }

      .nav {
        height: 74px;
      }

      .brand-name {
        font-size: 1.35rem;
      }

      .brand-tagline {
        font-size: .48rem;
        letter-spacing: .15em;
      }

      .logo-mark {
        width: 42px;
      }

      .auth-area {
        min-width: auto;
      }

      .google-login-btn {
        min-height: 42px;
        padding: 0 12px;
        font-size: 0;
      }

      .google-login-btn .google-icon {
        width: 20px;
        height: 20px;
      }

      .account-card {
        padding: 6px;
        border-radius: 14px;
      }

      .account-avatar {
        width: 38px;
        height: 38px;
      }

      .account-meta,
      .logout-btn {
        display: none;
      }

      .booking-hero-grid {
        min-height: auto;
        padding: 58px 0 86px;
      }

      .form-grid,
      .service-options,
      .features-grid,
      .footer-main {
        grid-template-columns: 1fr;
      }

      .booking-form,
      .panel-header,
      .side-card {
        padding: 24px 20px;
      }

      .form-footer {
        align-items: stretch;
        flex-direction: column;
      }

      .form-footer .btn {
        width: 100%;
      }

      body.page-booking-lux .booking-section {
        padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
      }

      body.page-booking-lux .booking-hero--wizard .booking-hero-grid {
        padding: 40px 0 52px;
      }

      body.page-booking-lux .booking-step-hint {
        display: none;
      }

      body.page-booking-lux .booking-wizard-scroll-spacer {
        display: block;
        height: calc(80px + env(safe-area-inset-bottom, 0px));
      }

      body.page-booking-lux .booking-wizard-action-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 120;
        padding: 10px max(14px, env(safe-area-inset-right, 0px))
          calc(10px + env(safe-area-inset-bottom, 0px))
          max(14px, env(safe-area-inset-left, 0px));
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 -12px 40px rgba(15, 23, 42, 0.12);
        justify-content: stretch;
        gap: 8px;
      }

      body.page-booking-lux .booking-wizard-action-bar .btn {
        width: auto;
        flex: 1 1 calc(50% - 4px);
        min-height: 52px;
      }

      .feature,
      .feature:first-child,
      .feature:last-child {
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.14);
      }

      .feature:nth-child(n+3) {
        margin-top: 0;
      }
    }
  

/* LuxInterior — blog */

    .btn-light {
      background: #fff;
      color: #0b63d8;
      box-shadow: 0 16px 32px rgba(0,0,0,.16);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      color: #fff;
      font-size: 1.4rem;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .auth-area {
      min-width: 188px;
      display: flex;
      justify-content: flex-start;
    }

    .google-login-btn {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 18px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.96);
      color: #172033;
      font-size: .78rem;
      font-weight: 950;
      letter-spacing: .04em;
      text-transform: uppercase;
      cursor: pointer;
      box-shadow: 0 14px 34px rgba(0,0,0,.18);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .google-login-btn:hover {
      transform: translateY(-2px);
      border-color: rgba(84,173,255,.55);
      box-shadow: 0 20px 42px rgba(8,119,255,.22);
    }

    .google-icon {
      width: 19px;
      height: 19px;
      flex: 0 0 auto;
    }

    .account-card {
      display: none;
      align-items: center;
      gap: 11px;
      min-height: 54px;
      padding: 7px 12px 7px 8px;
      border-radius: 16px;
      border: 1px solid rgba(84,173,255,.2);
      background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
      box-shadow: 0 18px 36px rgba(0,0,0,.16);
      backdrop-filter: blur(12px);
    }

    .account-card.is-visible {
      display: flex;
    }

    .account-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(84,173,255,.8);
      background: rgba(255,255,255,.12);
      box-shadow: 0 0 18px rgba(8,119,255,.34);
    }

    .account-meta {
      display: grid;
      gap: 2px;
      min-width: 0;
      line-height: 1.15;
    }

    .account-name {
      max-width: 145px;
      color: #fff;
      font-size: .82rem;
      font-weight: 950;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .account-email {
      max-width: 145px;
      color: rgba(247,251,255,.62);
      font-size: .7rem;
      font-weight: 700;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      text-transform: none;
      letter-spacing: 0;
    }

    .logout-btn {
      width: 27px;
      height: 27px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 9px;
      background: rgba(255,255,255,.06);
      color: rgba(247,251,255,.78);
      cursor: pointer;
      font-size: .85rem;
      transition: .18s ease;
    }

    .logout-btn:hover {
      color: #fff;
      background: rgba(8,119,255,.22);
      border-color: rgba(84,173,255,.42);
    }

    .blog-hero {
      position: relative;
      color: #fff;
      overflow: hidden;
      isolation: isolate;
      background:
        linear-gradient(90deg, rgba(2,8,19,.98), rgba(2,8,19,.78), rgba(2,8,19,.92)),
        url("../../img/home/auto-belso-galeria-05.webp") center / cover;
    }

    .blog-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      opacity: .58;
      background:
        radial-gradient(circle at 74% 38%, rgba(8,119,255,.34), transparent 24rem),
        repeating-radial-gradient(circle at 18% 88%, rgba(8,119,255,.38) 0 1px, transparent 1px 10px);
      mask-image: linear-gradient(black 35%, transparent 105%);
    }

    .blog-hero-grid {
      min-height: 420px;
      display: grid;
      grid-template-columns: minmax(0, 720px) minmax(280px, 1fr);
      align-items: center;
      gap: 48px;
      padding: 78px 0 104px;
    }

    .eyebrow {
      color: rgba(247,251,255,.74);
      font-size: .84rem;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    h1 {
      font-size: clamp(2.4rem, 5vw, 4.35rem);
      line-height: 1.07;
      letter-spacing: .03em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    h1 span {
      display: block;
      color: var(--blue-2);
    }

    .hero-lead {
      max-width: 640px;
      color: rgba(247,251,255,.82);
      font-size: 1.08rem;
      font-weight: 600;
      margin-bottom: 30px;
    }

    .hero-card {
      justify-self: end;
      width: min(100%, 360px);
      padding: 24px;
      border-radius: 20px;
      border: 1px solid rgba(84,173,255,.18);
      background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
      box-shadow: 0 24px 70px rgba(0,0,0,.24);
      backdrop-filter: blur(10px);
    }

    .hero-card strong {
      display: block;
      font-size: 1.18rem;
      margin-bottom: 8px;
    }

    .hero-card p {
      color: rgba(247,251,255,.74);
      font-weight: 600;
      margin-bottom: 18px;
    }

    .blog-section {
      position: relative;
      z-index: 2;
      margin-top: -48px;
      padding: 0 0 64px;
    }

    .blog-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 28px;
      align-items: start;
    }

    .featured-post {
      overflow: hidden;
      display: grid;
      grid-template-columns: .98fr 1.02fr;
      border-radius: 22px;
      background: #fff;
      box-shadow: var(--shadow);
      border: 1px solid rgba(15, 23, 42, .06);
      margin-bottom: 28px;
    }

    .featured-image {
      min-height: 360px;
      background:
        linear-gradient(180deg, rgba(2,8,19,.05), rgba(2,8,19,.24)),
        url("../../img/home/auto-belso-galeria-02.webp") center / cover;
    }

    a.featured-image {
      display: block;
      text-decoration: none;
      color: inherit;
      outline-offset: 4px;
    }

    a.featured-image:focus-visible {
      outline: 3px solid rgba(8, 119, 255, .55);
    }

    .featured-content {
      padding: 38px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .tag {
      width: max-content;
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(8,119,255,.1);
      color: #0b63d8;
      font-size: .72rem;
      font-weight: 950;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .featured-content h2,
    .post-card h2 {
      color: #172033;
      font-size: clamp(1.45rem, 2.2vw, 2.2rem);
      line-height: 1.15;
      letter-spacing: .035em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .featured-content h2 a,
    .post-card h2 a {
      color: inherit;
      text-decoration: none;
    }

    .featured-content h2 a:hover,
    .post-card h2 a:hover {
      color: var(--blue);
    }

    .featured-content p,
    .post-card p {
      color: var(--muted);
      font-weight: 650;
      margin-bottom: 20px;
    }

    .post-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      color: #8090a5;
      font-size: .84rem;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .read-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: max-content;
      color: var(--blue);
      font-size: .82rem;
      font-weight: 950;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .read-link:hover {
      color: #0059c7;
    }

    .posts-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    .post-card {
      overflow: hidden;
      border-radius: 20px;
      background: #fff;
      border: 1px solid rgba(15, 23, 42, .06);
      box-shadow: 0 18px 55px rgba(1, 13, 31, .1);
      transition: transform .22s ease, box-shadow .22s ease;
    }

    .post-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 26px 70px rgba(1, 13, 31, .16);
    }

    .post-image {
      min-height: 210px;
      background: var(--image) center / cover;
      position: relative;
    }

    .post-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(2,8,19,.05), rgba(2,8,19,.28));
    }

    a.post-image--link {
      display: block;
      text-decoration: none;
      color: inherit;
      outline-offset: 4px;
    }

    a.post-image--link:focus-visible {
      outline: 3px solid rgba(8, 119, 255, .55);
    }

    .post-body {
      padding: 24px;
    }

    .post-card h2 {
      font-size: 1.22rem;
      margin-bottom: 12px;
    }

    .post-card p {
      font-size: .94rem;
      margin-bottom: 18px;
    }

    .sidebar {
      display: grid;
      gap: 22px;
    }

    .side-panel {
      border-radius: 20px;
      background: #fff;
      border: 1px solid rgba(15, 23, 42, .06);
      box-shadow: 0 18px 55px rgba(1, 13, 31, .1);
      overflow: hidden;
    }

    .side-panel.dark {
      color: #fff;
      background:
        linear-gradient(180deg, rgba(2,8,19,.96), rgba(6,16,31,.98)),
        radial-gradient(circle at 82% 12%, rgba(8,119,255,.35), transparent 18rem);
    }

    .side-content {
      padding: 26px;
    }

    .side-panel h3 {
      color: #172033;
      font-size: 1.05rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .side-panel.dark h3 {
      color: #fff;
    }

    .search-box {
      display: flex;
      overflow: hidden;
      border: 1px solid #d9e2ef;
      border-radius: 14px;
      background: #f8fafc;
    }

    .search-box input {
      min-width: 0;
      flex: 1;
      min-height: 50px;
      border: 0;
      background: transparent;
      padding: 0 14px;
      color: #111827;
      font: inherit;
      font-weight: 650;
      outline: 0;
    }

    .search-box button {
      width: 52px;
      border: 0;
      background: var(--blue);
      color: #fff;
      font-weight: 950;
      cursor: pointer;
    }

    .category-list,
    .popular-list {
      display: grid;
      gap: 12px;
    }

    .category-list a {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid #edf1f6;
      color: #344052;
      font-weight: 850;
    }

    .category-list a:last-child {
      border-bottom: 0;
    }

    .category-list span {
      color: var(--blue);
    }

    .popular-list a {
      display: grid;
      grid-template-columns: 74px 1fr;
      gap: 14px;
      align-items: center;
    }

    .popular-thumb {
      width: 74px;
      height: 62px;
      border-radius: 12px;
      background: var(--image) center / cover;
    }

    .popular-list strong {
      display: block;
      color: #172033;
      font-size: .9rem;
      line-height: 1.25;
      margin-bottom: 4px;
    }

    .popular-list small {
      color: #8090a5;
      font-weight: 800;
    }

    .newsletter p {
      color: rgba(247,251,255,.72);
      font-weight: 650;
      margin-bottom: 18px;
    }

    .newsletter-form {
      display: grid;
      gap: 12px;
    }

    .newsletter-form input {
      width: 100%;
      min-height: 52px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 13px;
      background: rgba(255,255,255,.08);
      color: #fff;
      font: inherit;
      font-weight: 700;
      padding: 0 14px;
      outline: 0;
    }

    .newsletter-form input::placeholder {
      color: rgba(247,251,255,.5);
    }

    .cta-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .cta-row h2 {
      font-size: clamp(1.55rem, 3vw, 2.35rem);
      line-height: 1.15;
      letter-spacing: .07em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .cta-row p {
      color: rgba(247,251,255,.75);
      font-weight: 650;
    }



    @media (max-width: 1099px) {
      .menu {
        display: none;
      }

      .menu-toggle {
        display: grid;
        place-items: center;
      }

      .blog-hero-grid,
      .blog-layout,
      .featured-post {
        grid-template-columns: 1fr;
      }

      .hero-card {
        justify-self: start;
      }

      .posts-grid,
      .footer-main {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 767px) {
      .container {
        width: min(
          1130px,
          calc(100% - 28px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
        );
      }

      .brand {
        min-width: 0;
        flex: 1 1 auto;
        max-width: none;
      }

      .nav {
        height: 74px;
      }

      .brand-name {
        font-size: 1.35rem;
      }

      .brand-tagline {
        font-size: .48rem;
        letter-spacing: .15em;
      }

      .logo-mark {
        width: 42px;
      }

      .auth-area {
        min-width: auto;
      }

      .google-login-btn {
        min-height: 42px;
        padding: 0 12px;
        font-size: 0;
      }

      .google-login-btn .google-icon {
        width: 20px;
        height: 20px;
      }

      .account-card {
        padding: 6px;
        border-radius: 14px;
      }

      .account-avatar {
        width: 38px;
        height: 38px;
      }

      .account-meta,
      .logout-btn {
        display: none;
      }

      .blog-hero-grid {
        min-height: auto;
        padding: 58px 0 92px;
      }

      .featured-image {
        min-height: 260px;
      }

      .featured-content,
      .post-body,
      .side-content {
        padding: 24px 20px;
      }

      .posts-grid,
      .footer-main {
        grid-template-columns: 1fr;
      }

      .cta-row {
        align-items: flex-start;
        flex-direction: column;
      }

      .cta-row .btn {
        width: 100%;
      }
    }

/* —— PHP app kiegészítések —— */
.narrow {
  width: min(
    1130px,
    calc(100% - 40px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
  );
  max-width: 720px;
  margin-inline: auto;
}
.section.padded {
  padding: 48px 0;
}

.menu a.nav-external {
  opacity: 0.92;
  border-bottom: 1px dashed rgba(84, 173, 255, 0.45);
  padding-bottom: 2px;
}

.menu a.nav-external:hover {
  color: #fff;
  border-bottom-color: var(--blue-3);
}

/* Szolgáltatások + almenü (pl. Teljes paletta) */
.menu-cluster {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
}

.menu-cluster__sub {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.9;
  padding: 6px 0 6px 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.menu-cluster__sub:hover,
.menu-cluster__sub.active {
  opacity: 1;
  color: #fff;
}

.lux-alert {
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 650;
  margin: 12px 0;
}
.lux-alert--err {
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 100, 100, 0.35);
  color: #7f1d1d;
}
.lux-alert--ok {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #14532d;
}

.booking-form .lux-consent {
  margin-top: 4px;
}
.booking-form .lux-consent-legend {
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1f2937;
  margin-bottom: 8px;
}

/* Foglalás — szállítási cím: kereső + részletes űrlap (MVVM mezők változatlanul RHF-ben) */
.booking-addr-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-addr-heading {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 850;
  letter-spacing: 0.04em;
  color: #0f172a;
}

.booking-addr-lead {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.5;
  color: #475569;
}

.booking-addr-search-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-addr-search-field > label {
  color: #15803d;
  font-weight: 900;
}

.booking-addr-search-wrap {
  position: relative;
}

.booking-addr-search-input {
  width: 100%;
  min-height: 52px;
  padding: 13px 48px 13px 15px;
  border-radius: 12px;
  border: 2px solid #22c55e;
  background: #fff;
  font: inherit;
  font-weight: 650;
  color: #0f172a;
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.22);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.booking-addr-search-input:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2), 0 0 0 1px rgba(250, 204, 21, 0.35);
}

.booking-addr-search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  display: grid;
  place-items: center;
}

.booking-addr-suggest-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  margin: 0;
  padding: 6px;
  list-style: none;
  z-index: 30;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
}

.booking-addr-suggest-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 650;
  color: #1e293b;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}

.booking-addr-suggest-item:hover,
.booking-addr-suggest-item.is-active {
  background: rgba(8, 119, 255, 0.08);
}

.booking-addr-suggest-text {
  flex: 1;
  min-width: 0;
}

.booking-addr-suggest-pin {
  flex-shrink: 0;
  color: #64748b;
}

.booking-addr-hint {
  margin: 4px 0 0;
  font-size: 0.82rem;
  font-weight: 650;
  color: #64748b;
}

.booking-addr-hint--warn {
  color: #b45309;
}

.booking-addr-toolbar {
  display: flex;
  justify-content: flex-start;
}

.booking-addr-back-search {
  border: 0;
  background: transparent;
  color: #0369a1;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}

.booking-addr-back-search:hover {
  color: #075985;
}

.booking-addr-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.booking-addr-row {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr;
  gap: 12px 18px;
  align-items: start;
}

@media (max-width: 640px) {
  .booking-addr-row {
    grid-template-columns: 1fr;
  }
}

.booking-addr-row-label {
  margin: 14px 0 0;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #15803d;
}

.booking-addr-row--street .booking-addr-row-label {
  color: #334155;
}

.booking-addr-zip-city {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  align-items: start;
}

@media (max-width: 480px) {
  .booking-addr-zip-city {
    grid-template-columns: 1fr;
  }
}

.booking-addr-zip-cell,
.booking-addr-city-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-addr-street-house {
  display: grid;
  grid-template-columns: 1fr 100px;
  gap: 12px;
}

@media (max-width: 520px) {
  .booking-addr-street-house {
    grid-template-columns: 1fr;
  }
}

.booking-addr-input {
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
  border: 2px solid #22c55e;
  background: #fff;
  padding: 13px 14px;
  font: inherit;
  font-weight: 650;
  color: #0f172a;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.booking-addr-input:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

.booking-addr-city-cell .booking-addr-input {
  border-color: #cbd5e1;
  box-shadow: none;
}

.booking-addr-city-cell .booking-addr-input:focus {
  border-color: rgba(8, 119, 255, 0.75);
  box-shadow: 0 0 0 3px rgba(8, 119, 255, 0.12);
}

.booking-addr-micro {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
}

.booking-addr-micro--ok {
  color: #0b63d8;
}

.booking-addr-micro--warn {
  color: #b45309;
}

.booking-addr-field-err {
  font-size: 0.75rem;
  font-weight: 750;
  color: #b91c1c;
}

.booking-addr-field-err--full {
  grid-column: 1 / -1;
}

@media (min-width: 641px) {
  .booking-addr-row > .booking-addr-field-err--full {
    grid-column: 2 / -1;
  }
}

.booking-addr-more {
  border-radius: 14px;
  border: 1px dashed #cbd5e1;
  padding: 4px 12px;
  background: #f8fafc;
}

.booking-addr-more-summary {
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  color: #0369a1;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 4px;
}

.booking-addr-more-summary::-webkit-details-marker {
  display: none;
}

.booking-addr-more-icon {
  font-weight: 900;
  color: #0369a1;
}

.booking-addr-more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 4px 12px;
}

@media (max-width: 520px) {
  .booking-addr-more-grid {
    grid-template-columns: 1fr;
  }
}

.booking-addr-more-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-addr-more-field--full {
  grid-column: 1 / -1;
}

.booking-addr-more-field label {
  font-size: 0.72rem;
  color: #475569;
}

.booking-addr-more-field input,
.booking-addr-more-field textarea {
  min-height: 48px;
}

.booking-addr-more-field textarea {
  min-height: 100px;
}
.lux-radio-grid {
  display: grid;
  gap: 10px;
}
.lux-radio-grid label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 650;
  color: #374151;
  text-transform: none;
  letter-spacing: 0;
}
.lux-radio-grid input {
  margin-top: 4px;
}

/* Csak mobil hamburger menüben; asztalon rejtett (a fejléc .nav-actions--desktop tartalmazza) */
.menu-cta {
  display: none !important;
}

@media (max-width: 1099px) {
  .site-header .nav {
    position: relative;
    flex-wrap: wrap;
  }

  /* Teljes képernyős drawer: jobbról becsúszik, tartalom szétosztva 100dvh magasságban */
  #main-menu.menu {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    z-index: 2000;
    margin: 0;
    padding: max(10px, env(safe-area-inset-top, 0px)) max(20px, env(safe-area-inset-right, 0px))
      max(20px, env(safe-area-inset-bottom, 0px)) max(20px, env(safe-area-inset-left, 0px));
    background:
      radial-gradient(ellipse 100% 70% at 100% 0%, rgba(0, 163, 255, 0.22), transparent 52%),
      radial-gradient(ellipse 80% 50% at 0% 100%, rgba(0, 212, 255, 0.1), transparent 45%),
      linear-gradient(165deg, #030810 0%, #071528 48%, #040a14 100%);
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    gap: 2px;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transform: translate3d(105%, 0, 0);
    transition:
      opacity 0.36s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.42s cubic-bezier(0.32, 0.72, 0.26, 1),
      visibility 0.42s;
  }

  #main-menu.menu.is-open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    justify-content: space-between;
  }

  .menu-drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    width: 48px;
    height: 48px;
    margin: 0 0 clamp(8px, 2vh, 16px);
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    color: #f1f5f9;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.12);
  }

  .menu-drawer-close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.45);
  }

  .menu-drawer-close:active {
    transform: scale(0.96);
  }

  .menu-drawer-close__icon {
    display: block;
  }

  @keyframes lux-menu-item-in {
    from {
      opacity: 0;
      transform: translate3d(18px, 0, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  #main-menu.menu.is-open > * {
    animation: lux-menu-item-in 0.36s cubic-bezier(0.32, 0.72, 0.26, 1) both;
  }

  #main-menu.menu.is-open > *:nth-child(1) {
    animation-delay: 0.03s;
  }

  #main-menu.menu.is-open > *:nth-child(2) {
    animation-delay: 0.08s;
  }

  #main-menu.menu.is-open > *:nth-child(3) {
    animation-delay: 0.18s;
  }

  .menu.is-open .menu-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(0.25rem, 2.5vh, 1rem);
    width: 100%;
    padding: clamp(0.75rem, 3vh, 2rem) 0;
    min-height: 0;
  }

  .menu.is-open .menu-links a {
    display: flex;
    align-items: center;
    min-height: clamp(52px, 9vh, 76px);
    padding: 0.35rem 0;
    font-size: clamp(1.35rem, 5.2vw, 2rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    width: 100%;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.08);
  }

  .menu.is-open a {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.08);
  }
  .menu.is-open a.active::after {
    display: none;
  }
  .menu.is-open .menu-cluster {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 2px;
  }
  .menu.is-open .menu-cluster__sub {
    border-left: 3px solid rgba(8, 119, 255, 0.45);
    padding-left: 16px;
    margin-left: 6px;
    font-size: clamp(1.05rem, 4vw, 1.35rem);
    opacity: 1;
  }

  .nav-actions--desktop {
    display: none !important;
  }

  .menu.is-open .menu-cta {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    flex-shrink: 0;
    margin-top: auto;
    padding-top: clamp(12px, 2.5vh, 20px);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    gap: clamp(10px, 2vh, 14px);
  }

  .menu.is-open .auth-login-details {
    width: 100%;
  }

  .menu.is-open .auth-login-details__summary--modal {
    width: 100%;
    min-height: clamp(52px, 8vh, 64px);
    padding: 10px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    font-size: clamp(0.95rem, 3.5vw, 1.15rem);
    font-weight: 750;
    letter-spacing: 0.04em;
    justify-content: space-between;
    box-sizing: border-box;
  }

  .menu.is-open .auth-login-details__title {
    font-size: inherit;
    font-weight: inherit;
  }

  .menu.is-open .auth-login-details__mark {
    width: clamp(34px, 8vw, 40px);
    height: clamp(34px, 8vw, 40px);
  }

  .menu.is-open .menu-cta__user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0 4px;
    color: rgba(247, 251, 255, 0.88);
  }

  .menu.is-open .menu-cta__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(84, 173, 255, 0.55);
    flex-shrink: 0;
  }

  .menu.is-open .menu-cta__avatar--ph {
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(247, 251, 255, 0.85);
  }

  .menu.is-open .menu-cta__who {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .menu.is-open .menu-cta__name {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
  }

  .menu.is-open .menu-cta__email {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(247, 251, 255, 0.55);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu.is-open .menu-cta__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #f1f5f9;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-sizing: border-box;
    width: 100%;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.08);
  }

  .menu.is-open .menu-cta__link:hover {
    border-color: rgba(0, 212, 255, 0.45);
    background: rgba(255, 255, 255, 0.1);
  }

  .menu.is-open .menu-cta__link--google .menu-cta__gwrap {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  }

  .menu.is-open .menu-cta__link--google .menu-cta__g {
    display: block;
    width: 17px;
    height: 17px;
  }

  .menu.is-open .menu-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: clamp(56px, 9vh, 72px);
    padding: 0 20px;
    border-radius: 14px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--blue), #0063dc);
    color: #fff;
    font-size: clamp(0.9rem, 3.8vw, 1.1rem);
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(8, 119, 255, 0.35);
    width: 100%;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.12);
  }

  .menu.is-open .menu-cta__btn:hover {
    box-shadow: 0 18px 38px rgba(8, 119, 255, 0.45);
  }

  .menu.is-open .menu-cta__btn .lux-icon {
    flex-shrink: 0;
    width: clamp(20px, 5vw, 24px);
    height: clamp(20px, 5vw, 24px);
  }

  @media (prefers-reduced-motion: reduce) {
    #main-menu.menu {
      transform: none !important;
      transition: opacity 0.18s ease, visibility 0.18s;
    }

    #main-menu.menu.is-open > * {
      animation: none !important;
    }
  }
}

/* —— Saját képek (public/img) —— */
img.logo-mark-img {
  width: 50px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(8, 119, 255, 0.28));
}
.footer .logo-mark-img {
  width: 42px;
}
.hero-logo-card__img {
  width: 112px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(8, 119, 255, 0.35));
}

.booking-hero {
  background:
    linear-gradient(90deg, rgba(2, 8, 19, 0.98), rgba(2, 8, 19, 0.78), rgba(2, 8, 19, 0.92)),
    url("../../img/home/luxinterior-gyor-szabadhegy-autobelso.webp") center / cover !important;
}

.blog-hero {
  background:
    linear-gradient(90deg, rgba(2, 8, 19, 0.98), rgba(2, 8, 19, 0.78), rgba(2, 8, 19, 0.92)),
    url("../../img/home/kep3-1600.webp") center / cover !important;
}

@media (min-width: 768px) {
  .blog-hero {
    background:
      linear-gradient(90deg, rgba(2, 8, 19, 0.95), rgba(2, 8, 19, 0.84)),
      url("../../img/home/auto-belso-galeria-02.webp") center / cover !important;
  }
}

/* Beltéri csomagok aloldal — táblázatok, lépéslisták */
.section-light {
  position: relative;
  z-index: 2;
  background: #f5f8fc;
  padding: 40px 0 34px;
}

.interior-packages-page .padded {
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
}

/* Csomag leírások — kereső, bal TOC (anchor), világos / sötét váltakozás */
.ip-info {
  position: relative;
}

.ip-info__toolbar {
  position: sticky;
  top: 82px;
  z-index: 45;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 24px rgba(2, 8, 19, 0.06);
}

.ip-info__toolbar-inner {
  padding: 14px 0 16px;
}

.ip-search-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.55);
  margin-bottom: 8px;
}

.ip-search-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.ip-search-input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border-radius: var(--radius, 12px);
  border: 1px solid rgba(15, 23, 42, 0.12);
  font: inherit;
  font-size: 1rem;
  background: #fff;
}

.ip-search-clear {
  flex: 0 0 auto;
  width: 44px;
  border-radius: var(--radius, 12px);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: rgba(15, 23, 42, 0.55);
}

.ip-info__layout {
  display: grid;
  gap: 8px 36px;
  grid-template-columns: minmax(0, 1fr);
  padding-top: 12px;
  padding-bottom: 48px;
}

@media (min-width: 992px) {
  .ip-info__layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 28px 40px;
    align-items: start;
    padding-top: 20px;
  }
}

@media (min-width: 992px) {
  .ip-info__sidebar {
    position: sticky;
    top: 168px;
    align-self: start;
    max-height: calc(100vh - 180px);
    overflow: auto;
    padding-bottom: 24px;
  }
}

.ip-toc {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ip-toc__title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.45);
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .ip-toc {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 6px;
    padding: 10px 0 14px;
    margin: 0 -6px;
    padding-left: max(6px, env(safe-area-inset-left));
    padding-right: max(6px, env(safe-area-inset-right));
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  .ip-toc__title {
    display: none;
  }
}

.ip-toc__link {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.72);
  padding: 8px 10px;
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

@media (max-width: 991px) {
  .ip-toc__link {
    flex: 0 0 auto;
    white-space: nowrap;
    border-left: none;
    border-bottom: 3px solid transparent;
    border-radius: 8px 8px 0 0;
    padding: 8px 12px;
  }
}

.ip-toc__link:hover {
  color: var(--blue);
  background: rgba(8, 119, 255, 0.08);
}

.ip-toc__link.is-active {
  color: var(--blue);
  background: rgba(8, 119, 255, 0.12);
  border-left-color: var(--blue);
}

@media (max-width: 991px) {
  .ip-toc__link.is-active {
    border-left-color: transparent;
    border-bottom-color: var(--blue);
  }
}

.ip-toc__link.ip-toc__link--dim {
  opacity: 0.35;
  pointer-events: none;
}

.ip-band {
  scroll-margin-top: calc(82px + 92px);
}

.ip-band--light {
  background: #ffffff;
  color: rgba(15, 23, 42, 0.92);
}

.ip-band--dark {
  background: linear-gradient(165deg, #0e1118 0%, #06080d 100%);
  color: rgba(247, 251, 255, 0.9);
}

.ip-band--dark h2,
.ip-band--dark h3 {
  color: #fff;
}

.ip-band--dark .lead,
.ip-band--dark p,
.ip-band--dark li {
  color: rgba(247, 251, 255, 0.88);
}

.ip-band--dark a {
  color: #8ecbff;
}

.ip-band--dark a:hover {
  color: #cce9ff;
}

.ip-band--dark .small.muted,
.ip-band--dark .source-note {
  color: rgba(247, 251, 255, 0.62) !important;
}

.ip-band--dark .package-card-sample {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.ip-band--dark .btn.btn-ghost {
  color: #e8f2ff;
  border-color: rgba(142, 203, 255, 0.45);
}

.ip-band--dark .review-prompt {
  border-left-color: rgba(142, 203, 255, 0.55);
  color: rgba(247, 251, 255, 0.9);
}

.ip-band.padded {
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
}

.ip-band--nomatch {
  display: none !important;
}

.interior-packages-page .ip-info__layout.container {
  width: min(
    1130px,
    calc(100% - 40px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
  );
}

.interior-packages-page .ip-seo-context {
  margin-top: 1.25rem;
  font-size: 0.84rem;
  line-height: 1.58;
  color: rgba(15, 23, 42, 0.52);
  max-width: 48rem;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

/* —— Információk / csomagok oldal: hős kártyák, szekciófejek —— */
.ip-hero__lead {
  max-width: 44rem;
  line-height: 1.62;
}

.ip-hero-pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 232px), 1fr));
  gap: clamp(12px, 2vw, 18px);
  margin-top: clamp(22px, 3vw, 32px);
}

.ip-hero-pack {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.ip-hero-pack:hover {
  box-shadow: 0 20px 50px rgba(8, 119, 255, 0.12);
  border-color: rgba(8, 119, 255, 0.22);
  transform: translateY(-2px);
}

.ip-hero-pack--refresh {
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07), inset 0 0 0 1px rgba(8, 119, 255, 0.06);
}

.ip-hero-pack--premium {
  box-shadow: 0 16px 44px rgba(8, 119, 255, 0.1), inset 0 0 0 1px rgba(8, 119, 255, 0.12);
}

.ip-hero-pack--reset {
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08), inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.ip-hero-pack__main {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 14px;
  text-decoration: none;
  color: inherit;
  min-height: 0;
  gap: 4px;
}

.ip-hero-pack__main:hover {
  color: inherit;
}

.ip-hero-pack__main:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px rgba(8, 119, 255, 0.35);
}

.ip-hero-pack__tag {
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.ip-hero-pack__title {
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 4px 0 2px;
  color: #0f172a;
}

.ip-hero-pack__meta {
  font-size: 0.8rem;
  font-weight: 650;
  color: #64748b;
}

.ip-hero-pack__price {
  font-size: 1.15rem;
  font-weight: 950;
  letter-spacing: -0.03em;
  color: var(--blue);
  margin-top: 6px;
}

.ip-hero-pack__more {
  margin-top: auto;
  padding-top: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.45);
}

.ip-hero-pack__ext {
  display: block;
  padding: 10px 16px;
  font-size: 0.74rem;
  font-weight: 750;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.65);
  background: rgba(248, 250, 252, 0.95);
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  transition: background 0.15s ease, color 0.15s ease;
}

.ip-hero-pack__ext:hover {
  background: rgba(8, 119, 255, 0.09);
  color: var(--blue);
}

.ip-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(20px, 3vw, 28px);
  align-items: center;
}

.ip-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.ip-hero__cta:active {
  transform: translateY(1px);
}

.ip-hero__cta--primary {
  background: linear-gradient(135deg, var(--blue), #0063dc);
  color: #fff;
  box-shadow: 0 10px 28px rgba(8, 119, 255, 0.32);
}

.ip-hero__cta--primary:hover {
  box-shadow: 0 14px 34px rgba(8, 119, 255, 0.4);
  color: #fff;
}

.ip-hero__cta--secondary {
  background: #0f172a;
  color: #f8fafc;
  border-color: rgba(15, 23, 42, 0.2);
}

.ip-hero__cta--secondary:hover {
  color: #fff;
  background: #1e293b;
}

.ip-hero__cta--ghost {
  background: #fff;
  color: #334155;
  border-color: rgba(15, 23, 42, 0.14);
}

.ip-hero__cta--ghost:hover {
  border-color: rgba(8, 119, 255, 0.35);
  color: var(--blue);
}

.ip-section-head {
  margin-bottom: 0.5rem;
}

.ip-section-head__kicker {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(8, 119, 255, 0.1);
  border: 1px solid rgba(8, 119, 255, 0.16);
}

.ip-section-head--on-dark .ip-section-head__kicker {
  color: #b7ddff;
  background: rgba(142, 203, 255, 0.12);
  border-color: rgba(142, 203, 255, 0.28);
}

.ip-section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  letter-spacing: -0.03em;
}

.ip-section-head__lead {
  margin: 0;
  max-width: 44rem;
  color: #475569;
  line-height: 1.55;
}

.ip-section-head--on-dark .ip-section-head__lead {
  color: rgba(247, 251, 255, 0.78);
}

.ip-prose-panel {
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ip-prose-panel p:last-child {
  margin-bottom: 0;
}

.ip-table-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 650;
  color: #64748b;
}

.ip-table-hint__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(8, 119, 255, 0.1);
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 900;
}

.content-table-wrap--lux {
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
  border-radius: 16px;
}

.compare-table__cap {
  caption-side: top;
  padding: 14px 16px;
  text-align: left;
  font-size: 0.84rem;
  font-weight: 700;
  color: #475569;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.ip-inline-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(8, 119, 255, 0.06);
  border: 1px solid rgba(8, 119, 255, 0.14);
}

.ip-inline-nav__label {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.5);
  margin-right: 4px;
}

.ip-inline-nav a {
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
  color: var(--blue);
  padding: 4px 8px;
  border-radius: 8px;
}

.ip-inline-nav a:hover {
  background: rgba(8, 119, 255, 0.12);
}

.ip-final-cta__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.ip-final-cta__btn {
  min-height: 46px;
  padding-left: 22px !important;
  padding-right: 22px !important;
}

.ip-info__toolbar.ip-band--light {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (prefers-reduced-motion: reduce) {
  .ip-hero-pack:hover {
    transform: none;
  }

  .ip-hero__cta:active {
    transform: none;
  }
}

.cta-inline {
  margin: 1rem 0 0;
}

.content-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  margin: 1.25rem 0 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.9rem;
  line-height: 1.45;
}

.compare-table th,
.compare-table td {
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 0.65rem 0.75rem;
  vertical-align: top;
}

.compare-table thead th {
  background: rgba(8, 119, 255, 0.09);
  font-weight: 800;
  text-align: left;
}

.compare-table tbody th[scope="row"] {
  background: rgba(15, 23, 42, 0.04);
  font-weight: 750;
  max-width: 140px;
}

.td-ol {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.86rem;
}

.td-ol li {
  margin-bottom: 0.25rem;
}

.package-block h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 0.75rem;
}

.package-block h3 {
  margin-top: 1.35rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.package-steps {
  padding-left: 1.25rem;
  line-height: 1.55;
}

.package-steps li {
  margin-bottom: 0.45rem;
}

.package-exclude li {
  margin-bottom: 0.35rem;
}

.package-card-sample {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(8, 119, 255, 0.05);
}

.package-card-sample p {
  margin: 0.35rem 0;
}

.prose p {
  margin-bottom: 1rem;
  line-height: 1.65;
}

.review-prompt {
  margin: 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--blue);
  background: #f8fbff;
  font-style: italic;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.source-note {
  line-height: 1.55;
}

@media (max-width: 640px) {
  .compare-table {
    font-size: 0.82rem;
  }
}

/* —— Footer közösségi ikonok: alap szürkés doboz, szín csak hover / fókusz —— */
.footer .socials {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
  padding: 4px 2px 10px;
  margin: 0 -2px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.footer .socials .social-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 14px;
  color: rgba(247, 251, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.footer .socials .social-icon__svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.footer .socials .social-icon:focus {
  outline: none;
}

.footer .socials .social-icon:hover,
.footer .socials .social-icon:focus-visible {
  transform: scale(1.06);
  color: #fff;
  border-color: rgba(84, 173, 255, 0.5);
  box-shadow: 0 10px 26px rgba(8, 119, 255, 0.28);
}

.footer .socials .social-icon:focus-visible {
  outline: 2px solid var(--blue-3);
  outline-offset: 3px;
}

.footer .socials .social-icon--facebook:hover,
.footer .socials .social-icon--facebook:focus-visible {
  background: rgba(24, 119, 242, 0.4);
}

.footer .socials .social-icon--instagram:hover,
.footer .socials .social-icon--instagram:focus-visible {
  background: linear-gradient(145deg, rgba(225, 48, 108, 0.5), rgba(253, 29, 29, 0.4), rgba(245, 96, 64, 0.38));
}

.footer .socials .social-icon--tiktok:hover,
.footer .socials .social-icon--tiktok:focus-visible {
  background: rgba(34, 40, 48, 0.92);
  box-shadow:
    0 10px 26px rgba(0, 242, 234, 0.18),
    0 10px 26px rgba(255, 0, 80, 0.1);
}

.footer .socials .social-icon--maps:hover,
.footer .socials .social-icon--maps:focus-visible {
  background: rgba(66, 133, 244, 0.4);
}

.footer .socials .social-icon--external:hover,
.footer .socials .social-icon--external:focus-visible {
  background: rgba(8, 119, 255, 0.32);
}

@media (max-width: 380px) {
  .footer .socials .social-icon {
    width: 40px;
    height: 40px;
  }
  .footer .socials .social-icon__svg {
    width: 20px;
    height: 20px;
  }
}

/* Lábléc alsó sáv, készítő */
.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 16px 26px;
  text-align: center;
  background: radial-gradient(ellipse 100% 120% at 50% 0%, rgba(8, 119, 255, 0.07), transparent 58%);
}

.footer-meta .copyright {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  color: rgba(247, 251, 255, 0.52);
  font-size: 0.82rem;
  font-weight: 650;
}

.footer-credit {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-credit__link {
  color: rgba(247, 251, 255, 0.42);
  transition: color 0.2s ease;
}

.footer-credit__link:hover {
  color: rgba(247, 251, 255, 0.88);
}

.footer-credit__accent {
  color: var(--blue);
  font-weight: 900;
  margin: 0 0.04em;
}

@media (max-width: 767px) {
  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    overflow-x: visible;
    margin-inline: 0;
    padding-inline: 0;
    padding-bottom: 0;
  }

  .services-grid .service-card {
    width: 100%;
    max-width: none;
    min-height: 300px;
    padding: 18px 16px 46px;
  }

  .services-grid .service-card h3 {
    font-size: clamp(0.8rem, 3.3vw, 0.98rem);
    line-height: 1.28;
  }

  .services-grid .service-card p {
    font-size: clamp(0.8rem, 3.1vw, 0.92rem);
    line-height: 1.42;
  }
}

/* —— Főoldal: hero — balra igazított oszlop; alsó kék fény: .hero::after (nem teljes képernyős sonar, lag elkerülése) —— */
body.page-home .hero {
  position: relative;
  isolation: isolate;
  min-height: 780px;
  max-height: 1000px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #fff;
}

/* Közös vízszintes sáv a fejléc .container.nav-val — flexben a min() szélesség hibázhat; 100% + max-width biztonságosabb */
body.page-home .hero > .container.hero-grid {
  width: 100%;
  max-width: min(1130px, calc(100% - 40px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
  margin-inline: auto;
  min-width: 0;
  box-sizing: border-box;
}

body.page-home .hero-grid {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Ugyanaz a bal oszlop, mint a .site-header .nav .brand (container bal széle) */
  align-items: flex-start;
  width: 100%;
  min-height: 780px;
  max-height: 1000px;
  padding: clamp(56px, 7.5vh, 96px) 0 clamp(44px, 6vh, 72px);
}

body.page-home .hero .hero-copy {
  position: relative;
  z-index: 1;
  width: min(40rem, 100%);
  max-width: 100%;
  margin-inline: 0;
  min-width: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.65rem, 1.6vw, 0.95rem);
}
body.page-home .hero .hero-eyebrow {
  margin: 0;
  color: rgba(247, 251, 255, 0.92);
  font-size: clamp(0.72rem, 1.25vw, 0.86rem);
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.4;
  max-width: 38rem;
}

body.page-home .hero-home-h1 {
  margin: 0.15rem 0 0;
  font-size: clamp(2.35rem, 5.2vw + 0.35rem, 4.2rem);
  font-weight: 850;
  letter-spacing: 0.038em;
  line-height: 1.05;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

body.page-home .hero-home-h1__line {
  display: block;
  color: #f7fbff;
}

body.page-home .hero-home-h1__line--accent {
  color: #33ccff;
  text-shadow: 0 0 20px rgba(0, 153, 255, 0.45);
}

body.page-home .hero .hero-promise {
  margin: clamp(0.4rem, 1.2vw, 0.6rem) 0 0;
  font-size: clamp(0.97rem, 1.55vw, 1.06rem);
  font-weight: 650;
  line-height: 1.48;
  color: rgba(247, 251, 255, 0.92);
  max-width: 36rem;
}

body.page-home .hero .hero-promise strong {
  color: #f7fbff;
  font-weight: 850;
}

body.page-home .hero .hero-lead {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.58;
  font-weight: 560;
  color: rgba(247, 251, 255, 0.84);
  max-width: 38rem;
}

body.page-home .hero .hero-actions {
  margin: clamp(0.5rem, 1.5vw, 0.85rem) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  align-items: center;
  justify-content: flex-start;
}

body.page-home .hero .hero-actions .btn {
  min-height: 52px;
  padding: 0 26px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

body.page-home .hero .hero-btn-secondary {
  background: rgba(2, 8, 18, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}

body.page-home .hero .hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.88);
  color: #fff;
}

body.page-home .hero .hero-mini {
  margin-top: clamp(1.15rem, 2.8vw, 1.65rem);
  padding-top: clamp(1rem, 2.2vw, 1.35rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: min(40rem, 100%);
  width: 100%;
}

/* Régi h1 állapot — ne ütközzön a kétsoros .hero-home-h1-lel */
body.page-home .hero .eyebrow:not(.hero-eyebrow) {
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  margin-bottom: 26px;
}

body.page-home .hero h1:not(.hero-home-h1) {
  font-size: clamp(3.05rem, 6.5vw, 5.5rem);
  letter-spacing: 0.015em;
  margin-bottom: 28px;
}

/* Régi Inter — csak a főoldali hero főcím */
body.page-home .hero h1.hero-h1--legacy-font,
body.page-home .hero h1.hero-h1--legacy-font .hero-h1__hl {
  font-family: var(--font-inter-hero), Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.page-home .hero h1:not(.hero-home-h1) .hero-h1__hl {
  color: #9bd5ff;
  font-weight: 850;
}

@media (max-width: 767px) {
  body.page-home .hero,
  body.page-home .hero-grid {
    min-height: auto;
    max-height: none;
  }

  body.page-home .hero > .container.hero-grid {
    max-width: min(1130px, calc(100% - 28px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
  }

  body.page-home .hero-grid {
    padding: clamp(72px, 14vw, 92px) 0 clamp(28px, 6vw, 40px);
    gap: clamp(18px, 4vw, 26px);
    align-items: stretch;
  }

  body.page-home .hero .hero-copy {
    width: 100%;
    margin-inline: 0;
    transform: none;
  }

  body.page-home .hero-home-h1 {
    font-size: clamp(1.85rem, 7.5vw + 0.2rem, 2.65rem);
    letter-spacing: 0.03em;
  }

  body.page-home .hero .hero-promise {
    font-size: 1rem;
  }

  body.page-home .hero .hero-lead {
    font-size: 1.04rem;
  }

  body.page-home .hero .hero-mini {
    margin-top: 1.05rem;
    padding-top: 16px;
  }

  body.page-home .hero-mini {
    grid-template-columns: 1fr;
    gap: 10px 0;
    max-width: none;
  }

  body.page-home .hero-mini .mini-item {
    padding: 10px 0;
    margin-right: 0;
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0;
  }

  body.page-home .hero-mini .mini-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  body.page-home .services-grid .service-card::before {
    background: var(--image) 36% 42% / cover;
  }

  body.page-home .about-ba .lux-ba__img {
    object-position: 44% center;
  }

  body.page-home .home-blog-card__media img {
    object-position: 46% center;
  }
}

.features-grid .feature {
  min-height: 100%;
  align-items: start;
}

.features-grid .feature > div {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
}

.features-grid .feature h3 {
  min-height: 2.75em;
  line-height: 1.25;
}

.features-grid .feature p {
  flex: 1;
  margin: 0;
}

/* —— Krémes CTA sáv (világos kártya + fekete pill gomb) —— */
.cta.cta--cream {
  position: relative;
  color: #1a1d21;
  padding: clamp(40px, 7vw, 72px) 0;
  background: linear-gradient(180deg, #e8e4dc 0%, #f2ede6 38%, #faf8f5 100%) !important;
  overflow: hidden;
}

.cta.cta--cream::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 88% 65% at 50% 0%, rgba(255, 255, 255, 0.6), transparent 58%);
  pointer-events: none;
}

.cta.cta--cream::after {
  display: none;
}

.cta.cta--cream h2 {
  text-transform: none;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

.cta.cta--cream p {
  color: #4b5563;
}

.lux-cta-band {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 4vw, 32px);
  padding: clamp(22px, 4vw, 34px) clamp(22px, 4vw, 36px);
  border-radius: 24px;
  background: linear-gradient(165deg, #fffcf7 0%, #f7f2eb 52%, #efeae2 100%);
  border: 1px solid rgba(26, 29, 33, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78) inset,
    0 28px 56px rgba(26, 29, 33, 0.09),
    0 8px 24px rgba(26, 29, 33, 0.05);
}

.lux-cta-band__mark {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(26, 29, 33, 0.07);
  box-shadow: 0 8px 22px rgba(26, 29, 33, 0.08);
}

.lux-cta-band__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.lux-cta-band__mark-ico {
  width: 28px;
  height: 28px;
  color: #0f172a;
  fill: currentColor;
  opacity: 0.94;
}

.lux-cta-band__copy {
  flex: 1 1 220px;
  min-width: 0;
  text-align: left;
}

.lux-cta-band__kicker {
  margin: 0 0 8px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
}

.lux-cta-band__title {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 3vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: #0a0a0a;
}

.lux-cta-band__sub {
  margin: 0;
  font-size: clamp(0.93rem, 1.9vw, 1.04rem);
  line-height: 1.55;
  color: #4b5563;
  font-weight: 500;
  max-width: 44rem;
}

.lux-cta-band__btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px 0 18px;
  margin-left: auto;
  border-radius: 999px;
  background: #0a0a0a;
  color: #fff;
  font-size: 0.81rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lux-cta-band__btn:hover {
  transform: translateY(-2px);
  background: #171717;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.lux-cta-band__btn:focus-visible {
  outline: 3px solid #0877ff;
  outline-offset: 3px;
}

.lux-cta-band__btn-ico {
  display: block;
  flex-shrink: 0;
  color: #fff;
}

.lux-cta-band__btn-arrow {
  font-size: 1.08rem;
  font-weight: 300;
  opacity: 0.95;
  margin-left: 2px;
  line-height: 1;
}

@media (max-width: 991px) {
  .lux-cta-band {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 26px 22px;
  }

  .lux-cta-band__mark {
    margin-inline: auto;
  }

  .lux-cta-band__copy {
    text-align: center;
  }

  .lux-cta-band__sub {
    margin-inline: auto;
  }

  .lux-cta-band__btn {
    margin-left: 0;
    width: 100%;
    white-space: normal;
  }
}

/* —— Lebegő foglalás: csak naptár ikon, kör, lassú megjelenés / eltűnés —— */
.booking-fab {
  --fab-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --fab-dur-move: 0.95s;
  --fab-dur-fade: 0.85s;
  position: fixed;
  z-index: 45;
  right: max(14px, env(safe-area-inset-right, 0px));
  top: 50%;
  transform: translateY(-50%) translateX(0) scale(1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: linear-gradient(160deg, #1a1f28 0%, #0a0c10 100%);
  color: #fff;
  text-decoration: none;
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(8, 119, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform var(--fab-dur-move) var(--fab-ease),
    opacity var(--fab-dur-fade) var(--fab-ease),
    box-shadow 0.5s var(--fab-ease);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.booking-fab:hover {
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(8, 119, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.booking-fab:focus-visible {
  outline: 3px solid rgba(142, 203, 255, 0.95);
  outline-offset: 4px;
}

.booking-fab__shine {
  position: absolute;
  inset: -35% -35% -35% -35%;
  background: radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.12) 0%, transparent 45%);
  opacity: 0.75;
  pointer-events: none;
  transition: opacity 0.5s var(--fab-ease);
}

.booking-fab:hover .booking-fab__shine {
  opacity: 1;
}

.booking-fab__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  z-index: 1;
}

.booking-fab__icon .lux-icon {
  display: block;
  color: #fff;
}

/* Görgetés közben: finoman lehalványul és kicsit hátrébb csúszik */
.booking-fab.booking-fab--hidden {
  transform: translateY(-50%) translateX(12px) scale(0.82);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

body.page-booking-lux .booking-fab {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .booking-fab {
    --fab-dur-move: 0.01ms;
    --fab-dur-fade: 0.01ms;
    transition: none;
  }

  .booking-fab.booking-fab--hidden {
    transform: translateY(-50%) translateX(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 767px) {
  .booking-fab {
    top: auto;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    right: max(14px, env(safe-area-inset-right, 0px));
    transform: translateY(0) translateX(0) scale(1);
    width: 50px;
    height: 50px;
  }

  .booking-fab.booking-fab--hidden {
    transform: translateY(16px) translateX(8px) scale(0.82);
    opacity: 0;
  }

  @media (prefers-reduced-motion: reduce) {
    .booking-fab.booking-fab--hidden {
      transform: translateY(0) translateX(0) scale(1);
      opacity: 1;
    }
  }
}

/* Fejléc: Foglalás — statikus árnyék (végtelen pulzus kikapcsolva: kevesebb kompozit / repaint) */
.nav-actions .booking-short--round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-width: auto;
  height: auto;
  min-height: 46px;
  padding: 0 16px 0 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    0 6px 22px rgba(8, 119, 255, 0.32),
    0 0 0 0 rgba(84, 173, 255, 0.35);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease;
}

.nav-actions .booking-short--round .lux-icon {
  margin: 0;
}

.nav-actions .booking-short__label {
  position: relative;
  top: 0.5px;
}

.nav-actions .booking-short--round:hover {
  animation: none;
  transform: scale(1.05);
  box-shadow:
    0 0 0 2px rgba(84, 173, 255, 0.55),
    0 12px 28px rgba(8, 119, 255, 0.38);
}

.nav-actions .booking-short--round:active {
  transform: scale(0.97);
  transition-duration: 0.15s;
}

@media (max-width: 380px) {
  .nav-actions .booking-short--round {
    padding: 0 12px 0 11px;
    font-size: 0.7rem;
    gap: 6px;
  }

  .nav-actions .booking-short--round .lux-icon {
    width: 18px;
    height: 18px;
  }
}

/* —— SVG ikonok (<use href="#lux-i-…">) —— */
.lux-icon {
  flex-shrink: 0;
  display: block;
}

.lux-icon--btn {
  margin-inline-end: 0;
}

.lux-icon--nav {
  display: block;
}

/* Belső oldalak: kompaktabb blog hero (főoldal .page-home érintetlen) */
body.page-blog-lux .blog-hero-grid {
  min-height: 300px;
  gap: 32px;
  padding: 48px 0 72px;
}

body.page-blog-lux .blog-hero-grid h1 {
  font-size: clamp(1.95rem, 4.2vw, 3.25rem);
  margin-bottom: 14px;
}

body.page-blog-lux .blog-hero .eyebrow {
  margin-bottom: 12px;
}

body.page-blog-lux .blog-hero .hero-lead {
  font-size: 1.02rem;
  margin-bottom: 22px;
}

body.page-blog-lux .blog-hero .hero-card {
  padding: 20px;
}

body.page-blog-lux .posts-grid .post-card {
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

body.page-blog-lux .posts-grid .post-card:hover {
  box-shadow: 0 20px 50px rgba(1, 13, 31, 0.11);
  transform: translateY(-2px);
}

body.page-blog-lux .post-card .post-meta {
  flex-wrap: wrap;
  row-gap: 2px;
}

body.page-blog-lux .blog-section {
  margin-top: -36px;
}

body.page-blog-post-lux .blog-hero {
  min-height: 0;
}

body.page-blog-post-lux .blog-hero-grid {
  min-height: 240px;
  padding: 40px 0 52px;
  gap: 24px;
}

body.page-blog-post-lux .blog-hero-grid h1 {
  font-size: clamp(1.65rem, 3.8vw, 2.65rem);
}

body.page-blog-post-lux .blog-section {
  margin-top: -32px;
}

body.page-blog-post-lux .blog-section--post {
  padding-bottom: 64px;
}

body.page-blog-post-lux .blog-post-container {
  max-width: 860px;
}

body.page-blog-post-lux .blog-post-sheet {
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(1, 13, 31, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

body.page-blog-post-lux .blog-post-cover {
  margin: 0;
  aspect-ratio: 1200 / 630;
  max-height: min(52vh, 440px);
  background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
}

body.page-blog-post-lux .blog-post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.page-blog-post-lux .blog-post-sheet > .post-body {
  padding: clamp(22px, 4vw, 38px);
}

body.page-blog-post-lux .blog-post-sheet > .blog-share {
  margin: 0 clamp(22px, 4vw, 38px);
}

body.page-blog-post-lux .blog-post-back {
  margin: 0;
  padding: 0 clamp(22px, 4vw, 38px) clamp(22px, 4vw, 38px);
}

body.page-blog-post-lux .blog-illu-slot {
  margin: 1.35rem 0 1.65rem;
}

body.page-blog-post-lux .blog-illu-slot__inner {
  border: 2px dashed rgba(11, 99, 216, 0.38);
  border-radius: 16px;
  padding: 1.1rem 1.2rem 1.15rem;
  background: linear-gradient(165deg, rgba(11, 99, 216, 0.07), rgba(248, 250, 252, 0.98));
}

body.page-blog-post-lux .blog-illu-slot__kicker {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0b63d8;
  margin-bottom: 0.45rem;
}

body.page-blog-post-lux .blog-illu-slot__title {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.4rem;
  line-height: 1.35;
}

body.page-blog-post-lux .blog-illu-slot__prompt {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #475569;
  font-weight: 600;
  font-style: italic;
}

body.page-blog-post-lux .post-body .blog-figure {
  margin: 1.5rem 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
}

body.page-blog-post-lux .post-body .blog-figure--numbered {
  position: relative;
}

body.page-blog-post-lux .post-body .blog-figure__num {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0066dd);
  box-shadow: 0 10px 26px rgba(11, 99, 216, 0.35);
  pointer-events: none;
}

body.page-blog-post-lux .post-body .blog-figure img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

body.page-blog-post-lux .post-body .blog-figure figcaption {
  padding: 0.65rem 1rem 0.85rem;
  font-size: 0.86rem;
  color: #64748b;
  font-weight: 600;
  line-height: 1.45;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

body.page-blog-post-lux .post-body blockquote {
  margin: 1.15rem 0;
  padding: 0.85rem 1rem 0.85rem 1.05rem;
  border-left: 4px solid #0b63d8;
  background: rgba(11, 99, 216, 0.06);
  border-radius: 0 12px 12px 0;
  font-weight: 650;
  color: #334155;
}

body.page-blog-post-lux .post-body hr {
  border: 0;
  height: 1px;
  margin: 1.75rem 0;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.12), transparent);
}

body.page-blog-post-lux .post-body h2 {
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
  margin: 1.85rem 0 0.65rem;
  color: #172033;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

body.page-blog-post-lux .post-body h2:first-child {
  margin-top: 0;
}

body.page-blog-post-lux .post-body p {
  margin: 0 0 1.05rem;
  font-weight: 600;
  line-height: 1.62;
  color: #334155;
}

body.page-blog-post-lux .post-body ul,
body.page-blog-post-lux .post-body ol {
  margin: 0 0 1.2rem;
  padding-left: 1.4rem;
  font-weight: 650;
  line-height: 1.6;
  color: #334155;
}

body.page-blog-post-lux .post-body li {
  margin-bottom: 0.42rem;
}

body.page-blog-post-lux .blog-share {
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

body.page-blog-post-lux .blog-share__title {
  font-size: 0.82rem;
  margin: 0 0 0.35rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
}

body.page-blog-post-lux .blog-share__hint {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #64748b;
  font-weight: 600;
}

body.page-blog-post-lux .blog-share__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  font-size: 0.92rem;
  font-weight: 750;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  background: linear-gradient(165deg, #0b63d8 0%, #0051b3 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(11, 99, 216, 0.28);
}

body.page-blog-post-lux .blog-share__action:hover {
  filter: brightness(1.05);
}

body.page-blog-post-lux .blog-share__action:focus {
  outline: 2px solid #0b63d8;
  outline-offset: 3px;
}

body.page-blog-post-lux .blog-share__icon {
  flex-shrink: 0;
  opacity: 0.95;
}

body.page-blog-post-lux .blog-share__status {
  margin: 0.65rem 0 0;
  min-height: 1.25em;
  font-size: 0.86rem;
  font-weight: 650;
  color: #0b63d8;
}

@media (max-width: 520px) {
  body.page-blog-post-lux .blog-share__action {
    width: 100%;
  }
}

body.page-interior-lux .ip-info__main .ip-hero {
  padding-top: clamp(24px, 4vw, 40px);
  padding-bottom: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(ellipse 88% 55% at 50% -8%, rgba(8, 119, 255, 0.11), transparent 58%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 55%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

body.page-interior-lux .ip-info__main .ip-hero h1 {
  font-size: clamp(1.55rem, 3.8vw, 2.2rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

body.page-interior-lux .ip-info__main .ip-hero .lead {
  font-size: 1rem;
  line-height: 1.62;
}

.read-link .lux-icon {
  width: 1em;
  height: 1em;
}

.category-list a .lux-icon {
  display: inline-block;
  vertical-align: -0.15em;
  margin-left: 2px;
  opacity: 0.9;
}

.search-box button[type="button"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.search-box button[type="button"] .lux-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.search-box button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.search-box button[type="submit"] .lux-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.blog-search-banner {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(240, 246, 255, 0.95), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(8, 119, 255, 0.2);
  color: #344052;
  font-weight: 650;
  line-height: 1.5;
  font-size: 0.92rem;
}

.blog-search-banner strong {
  color: #0f172a;
  font-weight: 850;
}

.blog-search-help {
  margin: 10px 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.45;
}

body.page-legal-lux main > .section-white.padded:first-child {
  padding: 32px 0 28px;
}

body.page-legal-lux main > .section-white.padded:first-child h1 {
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  margin-bottom: 0.75rem;
}

/* —— Minimal „editorial” blokk (tipográfia, pill badge) —— */
.section-white--zen {
  background: #f7f7f8;
  box-shadow: 0 -14px 56px rgba(2, 8, 19, 0.1);
}

.lux-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 26px;
  padding: 7px 15px 7px 11px;
  border-radius: 999px;
  background: #0a0a0a;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.lux-pill .lux-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.92;
}

.lux-editorial {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(36px, 7vw, 72px) 20px;
  text-align: center;
}

.lux-editorial--in-section {
  padding: 36px 16px 20px;
  margin-bottom: 8px;
}

.lux-editorial__title {
  font-family: var(--sans);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.14;
  color: #0a0a0a;
  text-transform: none;
  margin: 0 0 22px;
}

.lux-editorial__title .lux-editorial__tone {
  color: #5f6770;
  font-weight: inherit;
}

.lux-editorial__lead {
  margin: 0 auto;
  max-width: 48rem;
  font-size: clamp(0.98rem, 2vw, 1.14rem);
  font-weight: 480;
  line-height: 1.65;
  color: #6b7280;
}

.lux-editorial__lead a {
  color: #0877ff;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.lux-editorial__lead a:hover {
  color: #0658c4;
}

@media (max-width: 767px) {
  .lux-pill {
    margin-bottom: 22px;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .lux-editorial--in-section {
    padding: 28px 8px 16px;
  }
}

/* Fejléc — Google belépés: kompakt trigger + panel (olvasható CTA) */
.site-header .auth-area {
  min-width: 0;
}

.auth-login-details {
  position: relative;
  z-index: 70;
}

.auth-login-details__summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #f1f5f9;
  cursor: pointer;
  font-family: var(--sans, inherit);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.auth-login-details__summary::-webkit-details-marker {
  display: none;
}

.auth-login-details__summary:hover {
  border-color: rgba(0, 212, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 28px rgba(0, 163, 255, 0.15);
}

.auth-login-details__summary:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(2, 8, 19, 0.95),
    0 0 0 5px rgba(0, 212, 255, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.22);
}

.auth-login-details__mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}

.auth-login-details__g {
  display: block;
  width: 18px;
  height: 18px;
}

.auth-login-details__mark--mail .auth-login-details__g {
  color: #0b1220;
}

.auth-login-details__title {
  white-space: nowrap;
}

.auth-login-details__caret {
  flex-shrink: 0;
  opacity: 0.88;
  transition: transform 0.25s ease;
}

.auth-login-details[open] .auth-login-details__caret,
.auth-login-details__summary[aria-expanded="true"] .auth-login-details__caret {
  transform: rotate(180deg);
}

/* Belépés gomb (modál): ugyanaz a pill, mint a régi <summary> */
button.auth-login-details__summary--modal {
  font: inherit;
  text-align: inherit;
  width: auto;
}

@media (max-width: 1099px) {
  .menu.is-open .auth-login-details__summary--modal {
    width: 100%;
    justify-content: space-between;
    box-sizing: border-box;
  }
}

.auth-login-details__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(300px, calc(100vw - 32px));
  padding: 16px 16px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(15, 18, 24, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 212, 255, 0.08);
}

.auth-login-details__hint {
  margin: 0 0 14px;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(226, 232, 240, 0.82);
}

.auth-google-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid #dadce0;
  background: #fff;
  color: #1f1f1f;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease,
    opacity 0.18s ease;
}

button.auth-google-cta {
  font: inherit;
  cursor: pointer;
}

button.auth-google-cta:disabled,
button.auth-google-cta.is-pending {
  opacity: 0.88;
  cursor: wait;
  transform: none;
}

.auth-google-cta:hover {
  border-color: #c6c9ce;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.auth-google-cta:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(15, 18, 24, 0.97),
    0 0 0 5px rgba(0, 163, 255, 0.55);
}

.auth-google-cta__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.auth-google-cta .google-icon {
  width: 22px;
  height: 22px;
}

.auth-google-cta__text {
  text-align: center;
}

.account-card {
  position: relative;
  isolation: isolate;
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 6px 10px 6px 6px;
  border-radius: 18px;
  border: 1px solid rgba(84, 173, 255, 0.45);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.07) 100%);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(8, 119, 255, 0.2) inset,
    0 0 28px rgba(8, 119, 255, 0.12);
  backdrop-filter: blur(14px);
}

.account-card.is-visible {
  display: flex;
}

.account-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 2px rgba(8, 119, 255, 0.38),
    0 8px 22px rgba(8, 119, 255, 0.22);
}

.account-avatar--placeholder {
  display: grid;
  place-items: center;
  color: rgba(247, 251, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
}

.account-avatar__svg {
  display: block;
  opacity: 0.92;
}

.logout-btn {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-left: 2px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(247, 251, 255, 0.9);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.logout-btn:hover {
  color: #fff;
  background: rgba(239, 68, 68, 0.38);
  border-color: rgba(252, 165, 165, 0.55);
  transform: scale(1.05);
}

.logout-btn__icon {
  display: block;
}

@media (max-width: 767px) {
  .auth-login-details__summary {
    min-height: 44px;
    padding: 5px 10px 5px 6px;
    gap: 6px;
  }

  .auth-login-details__mark {
    width: 30px;
    height: 30px;
  }

  .auth-login-details__g {
    width: 17px;
    height: 17px;
  }

  .auth-login-details__panel {
    right: 0;
    left: auto;
    width: min(290px, calc(100vw - 24px - env(safe-area-inset-right, 0px)));
  }

  .account-card {
    padding: 5px 8px 5px 5px;
    gap: 8px;
    border-radius: 16px;
  }

  .account-meta {
    display: none;
  }

  .account-avatar,
  .account-avatar--placeholder {
    width: 40px;
    height: 40px;
  }

  .logout-btn {
    display: grid;
    width: 32px;
    height: 32px;
  }

  .header-account-dd__text {
    display: grid;
    gap: 0;
  }

  .header-account-dd__text .account-email {
    display: none;
  }

  .header-account-dd__text .account-name {
    max-width: 88px;
    font-size: 0.74rem;
  }

  .header-account-dd__summary {
    padding: 5px 8px 5px 5px;
    border-radius: 16px;
  }
}

.header-account-dd {
  position: relative;
  list-style: none;
}

.header-account-dd > summary {
  list-style: none;
}

.header-account-dd > summary::-webkit-details-marker {
  display: none;
}

.header-account-dd__summary {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 6px 10px 6px 6px;
  border-radius: 18px;
  border: 1px solid rgba(84, 173, 255, 0.45);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.07) 100%);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(8, 119, 255, 0.2) inset,
    0 0 28px rgba(8, 119, 255, 0.12);
  backdrop-filter: blur(14px);
  cursor: pointer;
  user-select: none;
}

.header-account-dd__text {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  flex: 1 1 auto;
}

.header-account-dd__text .account-name {
  color: #f7fbff;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(220px, 22vw);
}

.header-account-dd__text .account-email {
  display: none;
}

.header-account-dd__caret {
  flex-shrink: 0;
  opacity: 0.88;
  color: rgba(247, 251, 255, 0.9);
  transition: transform 0.2s ease;
}

.header-account-dd[open] .header-account-dd__caret {
  transform: rotate(180deg);
}

.header-account-dd__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 232px;
  padding: 8px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 22px 56px rgba(2, 8, 19, 0.2);
  z-index: 120;
}

.header-account-dd__panel-head {
  display: grid;
  gap: 2px;
  padding: 8px 10px 12px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.header-account-dd__panel-head strong {
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.2;
}

.header-account-dd__panel-head span {
  color: #334155;
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.25;
  word-break: break-word;
}

.header-account-dd__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  color: #0f172a;
  text-decoration: none;
  font-weight: 750;
  font-size: 0.88rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.header-account-dd__item .lux-icon {
  color: #0877ff;
}

.header-account-dd__item:hover {
  background: rgba(8, 119, 255, 0.09);
  color: #063a82;
}

.header-account-dd__item--logout:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
}

.header-account-dd__item--admin .lux-icon {
  color: #0369a1;
}

.menu-cta__link--mine {
  font-weight: 800;
}

.menu-cta__link--admin {
  font-weight: 800;
  color: #0369a1;
}

/* Foglalásaim (saját lista) */
.page-my-bookings-lux .my-bookings-admin-hint {
  display: block;
  margin-top: 10px;
  font-size: 0.94rem;
  opacity: 0.92;
}

.page-my-bookings-lux .my-bookings-empty {
  text-align: center;
  padding: clamp(28px, 5vw, 48px);
  background: linear-gradient(165deg, #f8fafc, #eef2f7);
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.page-my-bookings-lux .my-bookings-empty .btn {
  margin-top: 18px;
}

.page-my-bookings-lux .my-bookings-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-my-bookings-lux .my-bookings-card {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 14px 40px rgba(2, 8, 19, 0.06);
}

.page-my-bookings-lux .my-bookings-card__main {
  display: grid;
  gap: 6px;
  min-width: min(100%, 280px);
}

.page-my-bookings-lux .my-bookings-card__when {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}

.page-my-bookings-lux .my-bookings-card__who {
  font-size: 1.05rem;
  font-weight: 850;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.page-my-bookings-lux .my-bookings-card__car,
.page-my-bookings-lux .my-bookings-card__svc {
  font-size: 0.88rem;
  color: #475569;
  font-weight: 650;
}

.page-my-bookings-lux .my-bookings-pill {
  display: inline-flex;
  align-items: center;
  align-self: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-my-bookings-lux .my-bookings-pill--pending {
  color: #a96d00;
  background: rgba(255, 176, 32, 0.18);
}

.page-my-bookings-lux .my-bookings-pill--confirmed {
  color: #087a4f;
  background: rgba(30, 212, 138, 0.13);
}

.page-my-bookings-lux .my-bookings-pill--cancelled {
  color: #bc2342;
  background: rgba(255, 92, 122, 0.14);
}

.footer-contact__actions {
  margin: 0.4rem 0 0;
}

.footer .footer-tap {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 6px 8px 6px 0;
  margin-left: -2px;
  font-weight: 750;
  font-size: 0.95rem;
  color: var(--blue-3, #7dd3fc);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(125, 211, 252, 0.15);
}

.footer .footer-tap:hover {
  color: #f7fbff;
}

.footer .footer-tap--subtle {
  font-weight: 650;
  font-size: 0.88rem;
  color: rgba(247, 251, 255, 0.7);
  text-decoration: none;
  padding-inline: 4px;
}

.footer .footer-tap--subtle:hover {
  color: #f7fbff;
  text-decoration: underline;
}

.footer-contact__alt {
  color: rgba(247, 251, 255, 0.35);
  font-weight: 500;
}

/* LuxInterior márkanév — egyszerű, egyszínű (fejléc, lábléc, vízjel) */
.brand-name__join {
  display: none;
}

.brand-name__lux,
.brand-name__in,
.brand-name__tail {
  display: inline;
  color: #f7fbff;
  -webkit-text-fill-color: #f7fbff;
  background: none;
  background-image: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  text-shadow: none;
}

.brand-name__interior {
  display: inline;
  margin-left: 0.01em;
}

/* Csökkenti a kép/videó böngészős húzását (Safari / Chrome) */
img,
video {
  -webkit-user-drag: none;
  user-select: none;
}

@media (max-width: 767px) {
  input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not(
      [type="hidden"]
    ):not([type="submit"]):not([type="button"]):not([type="image"]),
  select,
  textarea {
    font-size: max(16px, 1em);
  }
}

/* Érintőkijelző: minimális célméret, ha nincs precíz egér */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .btn-blue,
  .btn-ghost,
  .menu-toggle,
  .booking-short,
  .spl-btn,
  .svc-btn,
  .prc-btn {
    min-height: 44px;
  }

  .footer-links__row a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 4px 0;
  }
}

/* Keskeny fekvő nézet: a hero ne nyelje a teljes képernyőt */
@media (orientation: landscape) and (max-height: 520px) {
  body.page-home .hero-grid {
    padding-top: 48px;
    padding-bottom: 56px;
    min-height: auto;
  }
}

/* Lábléc: gyorslinkek két sorban (wrap mobil + tablet + desktop) */
.footer-links.footer-links--stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}

/* Elektromos kék téma — kiegészítő menü állapotok */
.menu a.active::after {
  background: var(--blue);
  box-shadow: 0 0 16px rgba(8, 119, 255, 0.75);
}

.menu-cluster__sub {
  color: rgba(247, 251, 255, 0.72);
  font-weight: 800;
}

.menu-cluster__sub:hover,
.menu-cluster__sub.active {
  color: var(--blue-3);
}

.menu a.nav-external {
  border-bottom-color: rgba(84, 173, 255, 0.5);
}

.menu a.nav-external:hover {
  color: #fff;
  border-bottom-color: var(--blue-3);
}

@media (min-width: 1100px) {
  .menu-drawer-close {
    display: none !important;
  }

  .menu-links {
    display: contents;
  }
}

/* Sütik oldal */
body.page-cookies-lux main {
  padding-top: 0;
}

.cookies-lux {
  overflow-x: hidden;
}

.cookies-lux__hero {
  padding: clamp(40px, 6vw, 72px) 0 clamp(36px, 5vw, 56px);
  background: linear-gradient(
      145deg,
      rgba(2, 8, 19, 0.98) 0%,
      rgba(15, 23, 42, 0.92) 48%,
      rgba(0, 99, 166, 0.35) 100%
    ),
    radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.2), transparent 45%);
  color: #f1f5f9;
}

.cookies-lux__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(148, 197, 255, 0.9);
  margin-bottom: 14px;
}

.cookies-lux__title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.12;
  margin: 0 0 14px;
}

.cookies-lux__lead {
  max-width: 40rem;
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.88);
}

.cookies-lux__main {
  padding: 40px 0 64px;
}

.cookies-lux__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}

.cookies-lux__card {
  padding: 22px 20px 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 48px rgba(2, 8, 19, 0.08);
}

.cookies-lux__card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.12), rgba(0, 123, 255, 0.08));
  color: var(--blue, #00a3ff);
  margin-bottom: 14px;
}

.cookies-lux__card h2 {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f172a;
  margin: 0 0 10px;
}

.cookies-lux__card p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  color: #475569;
}

.cookies-lux__panel {
  padding: 28px 26px 30px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  border: 1px solid rgba(15, 23, 42, 0.07);
  margin-bottom: 28px;
}

.cookies-lux__panel-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 10px;
}

.cookies-lux__panel-note {
  margin: 0 0 18px;
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
  line-height: 1.45;
}

.cookies-lux__table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
}

.cookies-lux__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.cookies-lux__table th,
.cookies-lux__table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  font-weight: 600;
  color: #334155;
}

.cookies-lux__table thead th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  background: #f8fafc;
}

.cookies-lux__table tbody tr:last-child td {
  border-bottom: 0;
}

.cookies-lux__table code {
  font-size: 0.85em;
  background: rgba(0, 163, 255, 0.08);
  padding: 2px 6px;
  border-radius: 6px;
}

.cookies-lux__browser {
  padding: 22px 24px;
  border-radius: 16px;
  background: #0f172a;
  color: rgba(226, 232, 240, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cookies-lux__browser h2 {
  font-size: 1rem;
  font-weight: 900;
  margin: 0 0 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cookies-lux__browser p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(203, 213, 225, 0.92);
}

@media (max-width: 900px) {
  .cookies-lux__grid {
    grid-template-columns: 1fr;
  }
}

/* —— Süti értesítő (fő elrendezés) —— */
.lux-cookie-banner {
  position: fixed;
  z-index: 9800;
  left: 0;
  right: 0;
  bottom: 0;
  padding: max(14px, env(safe-area-inset-bottom, 0px)) clamp(12px, 3vw, 20px) clamp(14px, 3vw, 22px);
  padding-left: max(clamp(12px, 3vw, 20px), env(safe-area-inset-left, 0px));
  padding-right: max(clamp(12px, 3vw, 20px), env(safe-area-inset-right, 0px));
  pointer-events: none;
}

.lux-cookie-banner--hidden {
  display: none !important;
}

.lux-cookie-banner:not(.lux-cookie-banner--hidden) .lux-cookie-banner__inner {
  animation: lux-cookie-banner-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes lux-cookie-banner-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lux-cookie-banner__inner {
  pointer-events: auto;
  position: relative;
  max-width: min(48rem, calc(100% - 1.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 2.5vw, 22px);
  padding: clamp(16px, 2.5vw, 22px) clamp(18px, 3vw, 26px);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, transparent 42%),
    linear-gradient(168deg, var(--navy-900, #06101f) 0%, var(--navy-800, #0a1d35) 48%, #0c2238 100%);
  color: var(--white, #f7fbff);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgba(0, 100, 204, 0.12),
    0 24px 56px rgba(2, 8, 19, 0.42),
    0 8px 24px rgba(0, 100, 204, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.lux-cookie-banner__inner::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue-3, #60a5fa), var(--blue, #0064cc), transparent);
  opacity: 0.85;
  pointer-events: none;
}

.lux-cookie-banner__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(96, 165, 250, 0.22), rgba(0, 100, 204, 0.12));
  border: 1px solid rgba(96, 165, 250, 0.35);
  color: var(--blue-3, #60a5fa);
  box-shadow: 0 8px 20px rgba(0, 100, 204, 0.18);
}

.lux-cookie-banner__icon svg {
  width: 26px;
  height: 26px;
}

.lux-cookie-banner__content {
  min-width: 0;
}

.lux-cookie-banner__text {
  min-width: 0;
}

.lux-cookie-banner__head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.lux-cookie-banner__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-3, #60a5fa);
}

.lux-cookie-banner__title {
  display: block;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  color: #fff;
}

.lux-cookie-banner__lead {
  margin: 0;
  font-size: clamp(0.84rem, 1.8vw, 0.9rem);
  font-weight: 500;
  line-height: 1.62;
  color: rgba(226, 232, 240, 0.9);
}

.lux-cookie-banner__chip {
  display: inline;
  padding: 0.1em 0.45em;
  margin-inline: 0.05em;
  border-radius: 6px;
  font-size: 0.92em;
  font-weight: 700;
  color: #e0f2fe;
  background: rgba(96, 165, 250, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.28);
}

.lux-cookie-banner__chip--soft {
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.lux-cookie-banner__link {
  color: var(--blue-3, #60a5fa);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(96, 165, 250, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.lux-cookie-banner__link:hover {
  color: #bfdbfe;
  border-bottom-color: #bfdbfe;
}

.lux-cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  min-width: min(100%, 200px);
}

.lux-cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.lux-cookie-banner__btn:focus-visible {
  outline: 2px solid var(--blue-3, #60a5fa);
  outline-offset: 2px;
}

.lux-cookie-banner__btn--primary {
  background: linear-gradient(135deg, var(--blue, #0064cc) 0%, var(--blue-2, #0059c7) 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 100, 204, 0.38);
}

.lux-cookie-banner__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 100, 204, 0.48);
}

.lux-cookie-banner__btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  border-color: rgba(255, 255, 255, 0.16);
}

.lux-cookie-banner__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

@media (prefers-reduced-motion: reduce) {
  .lux-cookie-banner:not(.lux-cookie-banner--hidden) .lux-cookie-banner__inner {
    animation: none;
  }

  .lux-cookie-banner__btn--primary:hover {
    transform: none;
  }
}

@media (min-width: 768px) {
  .lux-cookie-banner__inner {
    max-width: min(64rem, calc(100% - 2rem));
  }
}

@media (min-width: 992px) {
  .lux-cookie-banner__inner {
    max-width: min(73.75rem, calc(100% - 2.5rem));
    gap: clamp(18px, 2vw, 28px);
    padding: clamp(18px, 2vw, 24px) clamp(22px, 2.5vw, 32px);
  }

  .lux-cookie-banner__actions {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    min-width: auto;
  }

  .lux-cookie-banner__btn {
    flex: 0 1 auto;
  }
}

@media (max-width: 720px) {
  .lux-cookie-banner__inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .lux-cookie-banner__actions {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: stretch;
    min-width: 0;
  }

  .lux-cookie-banner__btn {
    flex: 1 1 9rem;
  }
}

@media (max-width: 420px) {
  .lux-cookie-banner__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .lux-cookie-banner__icon {
    width: 42px;
    height: 42px;
  }

  .lux-cookie-banner__actions {
    flex-direction: column;
  }

  .lux-cookie-banner__btn {
    width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    padding-block: 10px;
  }
}

/* Foglalás: ne takarja ki az egész képernyőt mobilon */
@media (max-width: 520px) {
  body.page-booking-flow .lux-cookie-banner {
    padding-bottom: max(10px, env(safe-area-inset-bottom, 0px));
  }

  body.page-booking-flow .lux-cookie-banner__inner {
    max-width: calc(100% - 0.75rem);
    padding: 12px 14px;
    gap: 10px;
    max-height: min(52vh, 22rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.page-booking-flow .lux-cookie-banner__icon {
    display: none;
  }

  body.page-booking-flow .lux-cookie-banner__title {
    font-size: 0.95rem;
  }

  body.page-booking-flow .lux-cookie-banner__lead {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  body.page-booking-flow .lux-cookie-banner__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  body.page-booking-flow .lux-cookie-banner__btn {
    flex: 1 1 calc(50% - 4px);
    width: auto;
    min-height: 2.5rem;
    font-size: 0.72rem;
    padding: 8px 10px;
  }
}

/* —— Mobil: főoldal funkciók rács + kompakt fejléc (Belépés/Foglalás a hamburgerben) —— */
@media (max-width: 767px) {
  .site-header .nav {
    gap: 8px 10px;
    align-items: center;
    flex-wrap: nowrap;
  }
  .site-header .brand-text {
    min-width: 0;
  }
  .site-header .brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
  }
  .site-header .menu-toggle {
    flex-shrink: 0;
  }
  .features-grid .feature h3 {
    min-height: 0;
  }
}

/* —— Tervezett karbantartás előzetes sáv —— */
.lx-maint-banner {
  background: linear-gradient(90deg, #0654c4, #0877ff);
  color: #f8fafc;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.lx-maint-banner__inner.container {
  max-width: 1130px;
  margin: 0 auto;
  padding-left: 14px;
  padding-right: 14px;
}

.lx-maint-banner__text {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.45;
}

.lx-maint-banner__text strong {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-right: 6px;
}

@media (max-width: 767px) {
  .lx-maint-banner__text {
    font-size: 0.86rem;
  }
}

/* Mobil nézet: lazább, kevésbé zsúfolt elrendezés */
@media (max-width: 767px) {
  .section {
    padding: clamp(44px, 10vw, 62px) 0;
  }

  .section-title {
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .section-lead {
    line-height: 1.65;
  }

  body.page-home .hero .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  body.page-home .hero .hero-actions .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    padding-inline: 14px;
  }

  body.page-home .hero .hero-lead,
  .about-copy p,
  .service-card p {
    line-height: 1.62;
  }

  .services-grid {
    gap: 14px;
  }

  .lux-ba__legend {
    gap: 8px;
  }

  .lux-ba__hint {
    line-height: 1.5;
  }
}

/* Mobil fejléc: felfelé görgetve jelenjen meg + külön foglalás ikon */
@media (max-width: 1099px) {
  .site-header {
    transition: transform 0.24s ease;
    will-change: transform;
  }

  .site-header.is-hidden-mobile {
    transform: translateY(-110%);
  }

  .booking-short--mobile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(84, 173, 255, 0.42);
    background: linear-gradient(135deg, rgba(8, 119, 255, 0.34), rgba(3, 22, 49, 0.9));
    color: #f8fbff;
    box-shadow: 0 8px 22px rgba(8, 119, 255, 0.24);
    flex-shrink: 0;
  }

  .booking-short--mobile-icon .lux-icon {
    width: 19px;
    height: 19px;
  }
}

@media (min-width: 1100px) {
  .booking-short--mobile-icon {
    display: none;
  }
}

/* Belépés panel: Google + e-mail OTP (MVVM) */
.auth-login-details__panel:has(.lux-auth-panel) {
  width: min(360px, calc(100vw - 32px));
}

.lux-auth-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lux-auth-panel--hydrating {
  min-height: 200px;
  justify-content: center;
  align-items: center;
}

/* Logó körüli betöltő gyűrű (munkamenet / feldolgozás) */
.lux-auth-orbit-loader-root {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.lux-auth-orbit-loader-root--compact {
  gap: 8px;
}

.lux-auth-orbit-loader__visual {
  position: relative;
  width: 112px;
  height: 112px;
  flex-shrink: 0;
}

.lux-auth-orbit-loader-root--compact .lux-auth-orbit-loader__visual {
  width: 76px;
  height: 76px;
}

.lux-auth-orbit-loader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: rgba(0, 212, 255, 0.95);
  border-right-color: rgba(0, 163, 255, 0.4);
  box-sizing: border-box;
  animation: lux-auth-orbit-spin 0.88s linear infinite;
}

.lux-auth-orbit-loader-root--compact .lux-auth-orbit-loader__ring {
  border-width: 2px;
}

.lux-auth-orbit-loader__logo {
  position: absolute;
  inset: 16px;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.lux-auth-orbit-loader-root--compact .lux-auth-orbit-loader__logo {
  inset: 11px;
}

.lux-auth-orbit-loader__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.lux-auth-orbit-loader__caption {
  margin: 0;
  text-align: center;
  max-width: 22rem;
  opacity: 0.9;
}

@keyframes lux-auth-orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lux-auth-orbit-loader__ring {
    animation: none;
    border-top-color: rgba(0, 212, 255, 0.75);
    border-right-color: rgba(0, 163, 255, 0.28);
  }
}

.lux-auth-panel__session-prep {
  margin: 0 0 8px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  background: rgba(0, 119, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(186, 230, 253, 0.95);
  letter-spacing: 0.02em;
}

.lux-auth-panel--awaiting-session {
  position: relative;
}

@keyframes lux-auth-prep-shimmer {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

.lux-auth-panel--awaiting-session .lux-auth-panel__session-prep {
  animation: lux-auth-prep-shimmer 1.35s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .lux-auth-panel--awaiting-session .lux-auth-panel__session-prep {
    animation: none;
  }
}

.lux-auth-panel__busy-wrap {
  margin: 0 0 10px;
  padding: 10px 0 4px;
  border-radius: 14px;
  border: 1px solid rgba(0, 212, 255, 0.16);
  background: rgba(0, 119, 255, 0.08);
}

.lux-auth-panel__signed-hint {
  margin-bottom: 4px;
}

.lux-auth-panel__email {
  font-weight: 500;
  opacity: 0.88;
  word-break: break-all;
}

.lux-auth-panel__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.lux-auth-panel__link {
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(125, 211, 252, 0.95);
  text-decoration: none;
}

.lux-auth-panel__link:hover {
  text-decoration: underline;
}

/* Google + e-mail egyszerre (modál / panel) */
.lux-auth-panel__dual-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
  align-items: stretch;
}

.lux-auth-account-kind {
  margin: 0;
  padding: 0;
  border: none;
  min-width: 0;
}

.lux-auth-account-kind__legend {
  margin: 0 0 8px;
  padding: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.72);
}

.lux-auth-account-kind__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.lux-auth-account-kind__opt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(226, 232, 240, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.lux-auth-account-kind__opt:focus-within {
  outline: none;
  box-shadow: 0 0 0 2px rgba(12, 16, 24, 0.98), 0 0 0 5px rgba(0, 163, 255, 0.35);
}

.lux-auth-account-kind__opt:hover {
  border-color: rgba(0, 163, 255, 0.35);
  color: #f8fbff;
}

.lux-auth-account-kind__opt.is-active {
  border-color: rgba(0, 163, 255, 0.5);
  background: linear-gradient(160deg, rgba(0, 119, 255, 0.28), rgba(8, 24, 48, 0.72));
  color: #f8fbff;
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.1);
}

.lux-auth-account-kind__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lux-auth-account-kind__label {
  cursor: pointer;
}

.lux-auth-panel__optional {
  font-weight: 600;
  font-size: 0.72rem;
  opacity: 0.65;
}

.lux-auth-panel__method-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: 14px 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(0, 163, 255, 0.16);
  background: linear-gradient(165deg, rgba(6, 29, 53, 0.42), rgba(2, 8, 19, 0.68));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 28px rgba(0, 0, 0, 0.18);
}

.lux-auth-panel__method-col--google .auth-google-cta {
  margin-top: 0;
}

.lux-auth-panel__action {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.lux-auth-panel__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.lux-auth-panel__code-sent {
  margin: 0;
}

.lux-auth-panel__btn--block {
  width: 100%;
}

.lux-auth-panel__btn-row--stack {
  flex-direction: column;
  align-items: stretch;
}

.lux-auth-panel__dual-stack--modal-stack {
  gap: 12px;
}

.lux-auth-panel__dual-stack--modal-stack .lux-auth-panel__method-col {
  gap: 10px;
}

.lux-auth-panel__dual-stack--modal-stack .lux-auth-panel__form {
  margin-top: 0;
}

.lux-auth-panel__method-col--google-below {
  padding: 12px 14px 14px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.lux-auth-panel__method-col--google-below .lux-auth-panel__action {
  margin-top: 0;
}

.lux-auth-panel__google-hint {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(226, 232, 240, 0.62);
  text-align: center;
}

.lux-auth-panel__dual-stack--modal-stack .lux-auth-panel__method-col--google .lux-auth-panel__legacy {
  margin-top: 0;
  padding-top: 0;
}

.lux-auth-panel__method-col--google .lux-auth-panel__legacy {
  margin-top: auto;
  padding-top: 4px;
}

.lux-auth-panel__method-title {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-3, rgba(186, 230, 253, 0.92));
}

.lux-auth-panel__or-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin: 2px 0;
}

.lux-auth-panel__or-label {
  flex-shrink: 0;
  padding: 0 10px;
  color: rgba(186, 230, 253, 0.55);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.lux-auth-panel__or-divider::before,
.lux-auth-panel__or-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 163, 255, 0.32), transparent);
}

.lux-auth-mode-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 6px;
  padding: 5px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lux-auth-mode-tab {
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.2s ease,
    box-shadow 0.22s ease;
}

.lux-auth-mode-tab:hover {
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.05);
}

.lux-auth-mode-tab.is-active {
  border-color: rgba(0, 163, 255, 0.45);
  background: linear-gradient(160deg, rgba(0, 119, 255, 0.35), rgba(8, 24, 48, 0.75));
  color: #f8fbff;
  box-shadow:
    0 0 0 1px rgba(0, 212, 255, 0.12),
    0 10px 28px rgba(0, 80, 180, 0.22);
  transform: translateY(-1px);
}

.lux-auth-mode-tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(15, 18, 24, 0.97), 0 0 0 5px rgba(0, 163, 255, 0.45);
}

.lux-auth-panel__section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lux-auth-panel__lead {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  opacity: 0.9;
}

@keyframes lux-auth-tab-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.lux-auth-tab-panel {
  display: block;
  width: 100%;
  animation: lux-auth-tab-enter 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lux-auth-tab-panel--nested {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lux-auth-panel__error {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(248, 113, 113, 0.45);
  background: rgba(127, 29, 29, 0.35);
  color: #fecaca;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
}

.lux-auth-panel__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(226, 232, 240, 0.78);
}

.lux-auth-panel__input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 12, 20, 0.75);
  color: #f8fbff;
  -webkit-text-fill-color: #f8fbff;
  caret-color: #93c5fd;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.lux-auth-panel__input::placeholder {
  color: rgba(226, 232, 240, 0.38);
  opacity: 1;
}

.lux-auth-panel .lux-auth-panel__input:focus,
.lux-auth-panel .lux-auth-panel__input:focus-visible,
.lux-auth-modal-root .lux-auth-panel__input:focus,
.lux-auth-modal-root .lux-auth-panel__input:focus-visible {
  outline: none;
  color: #f8fbff;
  -webkit-text-fill-color: #f8fbff;
  background: rgba(8, 12, 20, 0.92);
  border-color: rgba(0, 163, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.2);
}

.lux-auth-panel .lux-auth-panel__input:-webkit-autofill,
.lux-auth-panel .lux-auth-panel__input:-webkit-autofill:hover,
.lux-auth-panel .lux-auth-panel__input:-webkit-autofill:focus,
.lux-auth-modal-root .lux-auth-panel__input:-webkit-autofill,
.lux-auth-modal-root .lux-auth-panel__input:-webkit-autofill:hover,
.lux-auth-modal-root .lux-auth-panel__input:-webkit-autofill:focus {
  -webkit-text-fill-color: #f8fbff !important;
  caret-color: #93c5fd;
  border: 1px solid rgba(0, 163, 255, 0.45);
  box-shadow: 0 0 0 1000px rgba(8, 12, 20, 0.96) inset !important;
  transition: background-color 99999s ease-out 0s;
}

.lux-auth-panel__input--mono {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.lux-auth-panel__btn {
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

.lux-auth-panel__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.lux-auth-panel__btn--primary {
  border-color: rgba(84, 173, 255, 0.55);
  background: linear-gradient(135deg, rgba(8, 119, 255, 0.55), rgba(3, 22, 49, 0.92));
  color: #f8fbff;
  box-shadow: 0 10px 26px rgba(8, 119, 255, 0.22);
}

.lux-auth-panel__btn--primary:hover:not(:disabled) {
  transform: translateY(-1px);
}

.lux-auth-panel__btn--ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(226, 232, 240, 0.92);
}

.lux-auth-panel__btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lux-auth-panel__code {
  display: inline;
  font-size: 0.72rem;
  word-break: break-all;
  opacity: 0.9;
}

.lux-auth-panel__legacy {
  margin: 0;
  font-size: 0.78rem;
  text-align: center;
  opacity: 0.75;
}

.lux-auth-panel__legacy a {
  color: rgba(125, 211, 252, 0.95);
  font-weight: 600;
}

/* Első betöltés: munkamenet hidratálásig (z-index a modál alatt) */
.lux-site-preloader {
  position: fixed;
  inset: 0;
  z-index: 3500;
  display: grid;
  place-items: center;
  padding: max(24px, env(safe-area-inset-top, 0px)) max(20px, env(safe-area-inset-right, 0px))
    max(24px, env(safe-area-inset-bottom, 0px)) max(20px, env(safe-area-inset-left, 0px));
  background:
    radial-gradient(ellipse 80% 55% at 50% 35%, rgba(0, 90, 180, 0.22), transparent 55%),
    linear-gradient(165deg, #050a12 0%, #0a1220 45%, #060910 100%);
  color: #e2e8f0;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.lux-site-preloader--out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.48s;
}

.lux-site-preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  max-width: min(360px, 100%);
}

.lux-site-preloader__orbit {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.lux-site-preloader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: rgba(0, 212, 255, 0.95);
  border-right-color: rgba(0, 163, 255, 0.45);
  box-sizing: border-box;
  animation: lux-auth-orbit-spin 0.88s linear infinite;
}

.lux-site-preloader__logo {
  position: absolute;
  inset: 18px;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.lux-site-preloader__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.45));
}

.lux-site-preloader__title {
  margin: 6px 0 0;
  font-size: clamp(1.15rem, 3.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #f8fbff;
}

.lux-site-preloader__sub {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.72;
}

/* Belépés modál — fokozatos tejüveg háttér + kártya alulról (lux-auth-modal-root--enter) */
.lux-auth-modal-root {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: max(16px, env(safe-area-inset-top, 0px)) max(16px, env(safe-area-inset-right, 0px))
    max(16px, env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-left, 0px));
  pointer-events: auto;
}

.lux-auth-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  opacity: 0;
  background: rgba(4, 10, 22, 0.38);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition:
    opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.58s ease,
    backdrop-filter 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-backdrop-filter 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.lux-auth-modal-root--enter .lux-auth-modal-backdrop {
  opacity: 1;
  background: rgba(5, 12, 28, 0.55);
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
}

.lux-auth-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  max-height: min(720px, 100dvh - 28px);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0;
  transform: translate3d(0, 32px, 0) scale(0.96);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0.06) 35%,
    rgba(14, 20, 36, 0.72) 72%,
    rgba(8, 12, 22, 0.88) 100%
  );
  backdrop-filter: blur(22px) saturate(1.28);
  -webkit-backdrop-filter: blur(22px) saturate(1.28);
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 212, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0.09s,
    transform 0.54s cubic-bezier(0.22, 1, 0.36, 1) 0.09s,
    box-shadow 0.45s ease 0.09s;
}

.lux-auth-modal-root--enter .lux-auth-modal-dialog {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.lux-auth-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lux-auth-modal-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f1f5f9;
}

.lux-auth-modal-close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(241, 245, 249, 0.92);
  cursor: pointer;
  transition:
    background 0.18s ease,
    border-color 0.18s ease;
}

.lux-auth-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.4);
}

.lux-auth-modal-close:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(12, 16, 24, 0.98),
    0 0 0 5px rgba(0, 163, 255, 0.45);
}

.lux-auth-modal-body {
  padding: clamp(14px, 2.2vw, 20px) clamp(14px, 2vw, 22px) clamp(16px, 2.4vw, 24px);
}

/* Belépés modál — függőleges stack, mező alatt a gomb */
.lux-auth-panel--modal {
  gap: 12px;
}

.lux-auth-panel--modal .lux-auth-panel__dual-stack {
  gap: 12px;
}

.lux-auth-panel--modal .lux-auth-panel__dual-stack--modal-stack {
  grid-template-columns: 1fr;
}

.lux-auth-panel--modal .lux-auth-panel__method-col {
  padding: 16px;
}

.lux-auth-panel--modal .lux-auth-panel__lead {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
}

.lux-auth-panel--modal .lux-auth-panel__or-divider {
  margin: 2px 0;
}

@media (min-width: 768px) {
  .lux-auth-modal-dialog {
    width: min(460px, calc(100vw - 32px));
  }

  .lux-auth-panel--modal .lux-auth-panel__dual-stack--modal-stack {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 12px;
  }

  .lux-auth-panel--modal .lux-auth-panel__method-col {
    min-height: 0;
    padding: 16px 18px 18px;
  }

  .lux-auth-panel--modal .lux-auth-panel__or-divider {
    flex-direction: row;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 2px 0;
    padding: 0;
  }

  .lux-auth-panel--modal .lux-auth-panel__or-divider::before,
  .lux-auth-panel--modal .lux-auth-panel__or-divider::after {
    flex: 1;
    width: auto;
    height: 1px;
    min-height: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 163, 255, 0.38), transparent);
  }

  .lux-auth-panel--modal .lux-auth-panel__or-label {
    padding: 0 10px;
    letter-spacing: 0.08em;
  }
}

@media (min-width: 1024px) {
  .lux-auth-modal-dialog {
    width: min(480px, calc(100vw - 40px));
  }

  .lux-auth-panel--modal .lux-auth-panel__method-col {
    padding: 18px 20px 20px;
  }
}

@media (max-width: 767px) {
  .lux-auth-panel__input {
    font-size: max(16px, 0.95rem);
  }

  .lux-auth-panel--modal .lux-auth-panel__method-col {
    padding: 14px 12px 16px;
  }

  .lux-auth-panel--modal .lux-auth-panel__lead {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lux-auth-modal-backdrop,
  .lux-auth-modal-dialog {
    transition: none !important;
  }

  .lux-auth-modal-root--enter .lux-auth-modal-backdrop,
  .lux-auth-modal-root--enter .lux-auth-modal-dialog {
    opacity: 1 !important;
    transform: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .lux-auth-tab-panel {
    animation: none;
  }

  .lux-site-preloader__ring {
    animation: none;
    border-top-color: rgba(0, 212, 255, 0.75);
    border-right-color: rgba(0, 163, 255, 0.28);
  }

  .lux-site-preloader,
  .lux-site-preloader--out {
    transition-duration: 0.12s;
  }

  .lux-auth-mode-tab.is-active {
    transform: none;
  }

  .lux-page-route-transition {
    animation: none;
  }
}

/* Next útvonal — oldaltartalom belépő (LuxSiteChrome main); csak opacity (sticky-barát) */
@keyframes lux-page-route-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lux-page-route-transition {
  width: 100%;
  min-height: 0;
}

.lux-page-route-transition--entering {
  animation: lux-page-route-in 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lux-page-route-transition--static {
  animation: none;
}
