/* ==========================================================================
   Dézsa.ro — Prémium Skandináv Kültéri Dézsafürdők
   Stíluslap & Vizuális Rendszer
   Elsődleges színek: #294428 (Mély erdőzöld), #AF6E1E (Prémium borostyán / meleg faarany)
   Tipográfia: Raleway
   ========================================================================== */



:root {
  /* Színpaletta */
  --green-darkest: #0F1D10;
  --green-dark: #294428;
  --green-medium: #223F2B;
  --green-light: #345B3E;
  --green-soft: #E9F0EB;
  
  --amber-dark: #7A450A;
  --amber-primary: #AF6E1E;
  --amber-light: #CF8E3E;
  --amber-glow: #F2C17D;
  --amber-soft: #F9F1E6;

  --gold-accent: #D4AF37;
  
  --neutral-100: #FFFFFF;
  --neutral-200: #FAFAF8;
  --neutral-300: #F4EFEA;
  --neutral-400: #E7DFD4;
  --neutral-500: #C2B7A8;
  --neutral-600: #7A857E;
  --neutral-700: #4B564F;
  --neutral-800: #29342D;
  --neutral-900: #162019;

  /* Rendszerváltozók */
  --bg-main: var(--neutral-200);
  --bg-surface: var(--neutral-100);
  --bg-alt: var(--neutral-300);
  --text-main: var(--neutral-900);
  --text-muted: var(--neutral-600);
  --text-light: var(--neutral-200);
  --border-light: var(--neutral-400);

  /* Tipográfia */
  --font-main: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Árnyékok */
  --shadow-xs: 0 1px 3px rgba(22, 41, 27, 0.05);
  --shadow-sm: 0 4px 12px rgba(22, 41, 27, 0.08);
  --shadow-md: 0 10px 25px rgba(22, 41, 27, 0.12);
  --shadow-lg: 0 20px 40px rgba(22, 41, 27, 0.16);
  --shadow-xl: 0 28px 60px rgba(22, 41, 27, 0.22);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);

  /* Lekerekítések — Egységesítve a mobile-toggle (10px) minta alapján */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Átmenetek */
  --trans-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Méretek */
  --container-max: 1240px;
  --container-narrow: 960px;
  --header-height: 84px;
}

/* Alap reset & dobozmodell */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--trans-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

/* Tipográfiai elemek */
h1, h2, h3, h4, h5, h6 {
  color: var(--green-dark);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
}

h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}

h4 {
  font-size: 1.15rem;
  font-weight: 700;
}

p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--neutral-700);
}

.text-amber {
  color: var(--amber-primary);
}

.text-white {
  color: #FFFFFF !important;
}

.text-center {
  text-align: center;
}

/* Anyagikonok segédosztály */
.icon {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  user-select: none;
}

/* Konténerek */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* Szekciók általános elrendezése */
.section {
  padding: 3rem 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 2.5rem 0;
  }
  .container {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
}

.section-dark {
  background-color: var(--green-dark);
  color: var(--text-light);
}

.section-dark h1, 
.section-dark h2, 
.section-dark h3, 
.section-dark h4 {
  color: var(--neutral-100);
}

.section-dark p {
  color: var(--neutral-400);
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-white {
  background-color: var(--bg-alt);
}

.section-header {
  margin-bottom: 3.5rem;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 2.2rem;
  }
}

.section-header.text-center {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  color: var(--amber-primary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.95rem;
}

.section-eyebrow::before {
  display: none !important;
}

.section-eyebrow::after {
  content: "";
  display: block;
  width: 38px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--amber-light) 0%, var(--amber-primary) 100%);
  border-radius: 2px;
}

.section-header.text-left .section-eyebrow,
.text-left .section-eyebrow,
.quality-split-grid .section-eyebrow,
.story-grid .section-eyebrow {
  align-items: flex-start;
  text-align: left;
}

br.mobile-break {
  display: none;
}

@media (max-width: 991px) {
  br.mobile-break {
    display: inline;
  }
}

.section-title {
  margin-bottom: 1.1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .section-subtitle {
    font-size: 1rem;
  }
}

/* Gombok és CTA elemek */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--trans-fast);
  text-align: center;
  white-space: nowrap;
}

button.btn {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.btn-primary {
  background-color: var(--amber-primary);
  color: #FFFFFF;
  border-color: var(--amber-primary);
  box-shadow: 0 4px 16px rgba(175, 110, 30, 0.35);
}

.btn-primary:hover {
  background-color: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(175, 110, 30, 0.45);
}

.btn-secondary {
  background-color: var(--green-dark);
  color: #FFFFFF;
  border-color: var(--green-dark);
}

.btn-secondary:hover {
  background-color: var(--green-medium);
  border-color: var(--green-medium);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-outline:hover {
  background-color: var(--green-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .btn {
    max-width: 100%;
    box-sizing: border-box;
  }

  .btn-outline {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    padding: 0.85rem 1.35rem;
  }

  .btn-outline .icon {
    font-size: 22px;
    flex-shrink: 0;
  }
}

.btn-outline-white {
  background-color: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background-color: #FFFFFF;
  color: var(--green-dark);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.8rem 1.2rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   FEJLÉC & NAVIGÁCIÓ (Sticky + Glassmorphism)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: #FFFFFF;
  transition: var(--trans-normal);
}

.site-header.scrolled {
  height: 72px;
  background-color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logó formázás az előírás szerint */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #294428;
}

.brand-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: transform var(--trans-fast);
}

.brand-logo:hover img {
  transform: scale(1.08);
}

.brand-text {
  color: var(--amber-primary);
  font-weight: 800;
}

.brand-text span {
  color: var(--green-dark);
}

/* Desktop Menü */
.desktop-nav {
  display: none;
}

@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.15rem;
  }
}

@media (min-width: 1200px) {
  .desktop-nav {
    gap: 1.5rem;
  }
}

.nav-link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-800);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--trans-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber-primary);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--amber-primary);
  border-radius: 2px;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-cta-group .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  box-shadow: none !important;
  border-radius: var(--radius-sm);
}

.header-cta-group .btn:hover,
.header-cta-group .btn:active {
  box-shadow: none !important;
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .header-cta-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .header-cta-group .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.32rem 0.65rem;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
    box-shadow: none !important;
  }

  .header-cta-group .btn:hover,
  .header-cta-group .btn:active {
    box-shadow: none !important;
  }

  .mobile-drawer .btn {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: none !important;
  }
}

/* Mobil Hamburger Gomb */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 2px solid var(--amber-primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 7px;
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--amber-primary);
  border-radius: 2px;
}

/* Mobil Fiókmenü (Lebegő középre igazított prémium kártya) */
.mobile-drawer {
  position: fixed;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  width: 88%;
  max-width: 320px;
  max-height: 82vh;
  max-height: 82dvh;
  background-color: #FFFFFF;
  z-index: 1050;
  border-radius: 26px;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(-50%, -46%) scale(0.92);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  will-change: transform, opacity;
}

.mobile-drawer.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 15, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--neutral-300);
}

.drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.2s ease;
}

.drawer-close:hover,
.drawer-close:active {
  transform: rotate(90deg) scale(1.06);
  background: var(--neutral-300);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 1.2rem 0;
}

.drawer-nav .nav-link {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--green-dark);
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.2s ease;
  opacity: 0;
  transform: translateX(18px);
  border: none;
  outline: none;
}

.drawer-nav .nav-link:hover,
.drawer-nav .nav-link:active {
  background: rgba(22, 41, 27, 0.05);
  color: var(--green-primary);
}

.drawer-nav .nav-link.active {
  background: transparent;
  color: var(--amber-primary);
  font-weight: 700;
  border: 2px solid rgba(212, 175, 55, 0.45);
  border-radius: 12px;
  box-shadow: none;
  padding: 0.65rem 0.95rem;
  text-decoration: none;
}

.drawer-nav .nav-link.active::after {
  display: none !important;
}

/* Lépcsőzetes beúszó link animációk */
.mobile-drawer.open .drawer-nav .nav-link {
  animation: drawerItemSlide 0.36s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobile-drawer.open .drawer-nav .nav-link:nth-child(1) { animation-delay: 0.05s; }
.mobile-drawer.open .drawer-nav .nav-link:nth-child(2) { animation-delay: 0.09s; }
.mobile-drawer.open .drawer-nav .nav-link:nth-child(3) { animation-delay: 0.13s; }
.mobile-drawer.open .drawer-nav .nav-link:nth-child(4) { animation-delay: 0.17s; }
.mobile-drawer.open .drawer-nav .nav-link:nth-child(5) { animation-delay: 0.21s; }
.mobile-drawer.open .drawer-nav .nav-link:nth-child(6) { animation-delay: 0.25s; }
.mobile-drawer.open .drawer-nav .nav-link:nth-child(7) { animation-delay: 0.29s; }

@keyframes drawerItemSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-drawer .btn {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 800;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35) !important;
}

/* ==========================================================================
   HERO SZEKCIÓ (Főoldal — Prémium Dark Luxury Green Theme)
   ========================================================================== */
.hero-home {
  padding-top: calc(var(--header-height) + 3.2rem);
  padding-bottom: 5.5rem;
  background: radial-gradient(circle at 75% 20%, rgba(212, 175, 55, 0.14) 0%, transparent 55%),
              radial-gradient(circle at 10% 80%, rgba(34, 63, 43, 0.35) 0%, transparent 60%),
              linear-gradient(160deg, #1A3422 0%, #102315 50%, #0B190F 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 12px 36px rgba(11, 25, 15, 0.22);
}

.hero-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 193, 125, 0.5), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .hero-home {
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-bottom: 3.2rem;
  }

  .mobile-break {
    display: inline;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero-content {
    display: contents;
  }

  .hero-badge {
    order: 1;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    text-align: center;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .hero-badge span {
    text-align: center;
    display: block;
    line-height: 1.35;
    font-size: 0.74rem;
  }

  .hero-badge .icon {
    display: none;
  }

  .hero-title {
    order: 2;
    text-align: center;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    order: 3;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .hero-features-row {
    order: 4;
    margin-bottom: 1rem;
  }

  .hero-visual-wrapper {
    order: 5;
    width: 100%;
    margin-bottom: 1.8rem;
  }

  .hero-cta-group {
    order: 6;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.25fr 1fr;
    gap: 3rem;
  }

  .hero-content {
    max-width: 700px;
  }
}

.mobile-break {
  display: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 1rem;
  background: rgba(242, 193, 125, 0.1);
  border: 1px solid rgba(242, 193, 125, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-glow);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 1.3rem;
}

.hero-badge .icon {
  font-size: 16px;
  color: var(--amber-glow);
}

.hero-title {
  font-size: clamp(2.35rem, 4.4vw, 3.65rem);
  font-weight: 800;
  line-height: 1.14;
  color: #FFFFFF;
  margin-bottom: 1.35rem;
  letter-spacing: -0.02em;
}

.hero-title .text-gold-gradient,
.hero-title span {
  background: linear-gradient(135deg, #FFFFFF 0%, #F2C17D 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-subtitle {
  font-size: 1.02rem;
  line-height: 1.72;
  color: rgba(244, 239, 234, 0.84);
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-subtitle strong {
  color: #FFFFFF;
  font-weight: 700;
}

.hero-cta-group {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
}

.hero-cta-group .btn-hero-main {
  flex: 1.8 1 auto;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.95rem 1.25rem;
  font-size: 0.94rem;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.hero-cta-subgroup {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
  flex: 2.05 1 auto;
  min-width: 0;
}

.hero-cta-subgroup .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.95rem 0.75rem;
  font-size: 0.92rem;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.hero-cta-subgroup .btn:first-child {
  flex: 0.9 1 auto;
}

.hero-cta-subgroup .btn:last-child {
  flex: 1.15 1 auto;
}

@media (max-width: 767px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }
  .hero-cta-group .btn-hero-main {
    width: 100%;
    justify-content: center;
  }
  .hero-cta-subgroup {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
  }
  .hero-cta-subgroup .btn,
  .hero-cta-subgroup .btn:first-child,
  .hero-cta-subgroup .btn:last-child {
    flex: 1 1 0 !important;
    width: 100%;
    min-width: 0;
    padding: 0.88rem 0.5rem;
    font-size: 0.88rem;
    text-align: center;
    justify-content: center;
    display: inline-flex;
  }
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(244, 239, 234, 0.9);
}

.trust-item .icon {
  color: var(--amber-glow);
  font-size: 20px;
}

.hero-visual-wrapper {
  position: relative;
}

.hero-slideshow {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-slideshow .hero-image-card,
.hero-image-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl) !important;
  overflow: hidden !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(242, 193, 125, 0.3) !important;
  border: 2px solid rgba(212, 175, 55, 0.3) !important;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  cursor: default !important;
}

.hero-slideshow .slide-item,
.hero-image-card .slide-item {
  border-radius: var(--radius-xl) !important;
  overflow: hidden !important;
}

.hero-slideshow .slide-item a,
.hero-image-card .slide-item a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer !important;
}

.hero-slideshow .slide-item img,
.hero-image-card .slide-item img,
.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl) !important;
  transition: transform var(--trans-slow);
}

.hero-slideshow .slideshow-dots {
  margin-top: 14px;
}

.hero-slideshow .dot-btn {
  background-color: rgba(255, 255, 255, 0.4);
}

.hero-slideshow .dot-btn.active {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

/* Hero Kiemelt Funkció Kártyák Sorban (Glassmorphism) */
/* Hero Kiemelt Funkció Kártyák Sorban */
.hero-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 2.2rem;
}

.hero-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.8rem 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all var(--trans-fast);
  min-height: 60px;
}

.hero-feature-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-feature-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(175, 110, 30, 0.35) 0%, rgba(34, 63, 43, 0.6) 100%);
  border: 1px solid rgba(242, 193, 125, 0.35);
}

.hero-feature-icon-box .icon {
  color: var(--amber-glow);
  font-size: 19px;
}

.feature-card-text {
  min-width: 0;
  text-align: left;
}

.feature-card-title {
  font-weight: 700;
  font-size: 0.84rem;
  color: #FFFFFF;
  line-height: 1.2;
  white-space: nowrap;
}

.feature-card-sub {
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(242, 193, 125, 0.9);
  line-height: 1.3;
  margin-top: 2px;
  white-space: nowrap;
}

/* MOBIL NÉZET: 3 oszlop 1 sorban, Ikon felül, Szöveg alatta, Center igazítás */
@media (max-width: 767px) {
  .hero-features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
    width: 100%;
    margin-bottom: 1rem;
  }

  .hero-feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 0.75rem 0.3rem;
    gap: 0.35rem;
    width: 100%;
    pointer-events: none !important;
    cursor: default !important;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent !important;
  }

  .hero-feature-card:hover,
  .hero-feature-card:active,
  .hero-feature-card:focus {
    transform: none !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
  }

  .hero-feature-icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .hero-feature-icon-box .icon {
    font-size: 22px;
  }

  .feature-card-text {
    width: 100%;
    text-align: center;
  }

  .feature-card-title {
    font-size: clamp(0.7rem, 2.2vw, 0.84rem);
    text-align: center;
    margin-bottom: 2px;
    white-space: normal;
  }

  .feature-card-sub {
    font-size: clamp(0.62rem, 1.8vw, 0.74rem);
    text-align: center;
    white-space: normal;
  }
}

.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.8rem 1.15rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(22, 41, 27, 0.12);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  max-width: 270px;
  z-index: 2;
  transition: transform var(--trans-normal), box-shadow var(--trans-normal);
}

.hero-floating-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(22, 41, 27, 0.16);
}

.hero-floating-card.card-bottom-left {
  bottom: -20px;
  left: -20px;
}

.hero-floating-card.card-top-right {
  top: -15px;
  right: -20px;
}

.hero-floating-card.card-mid-right {
  top: 48%;
  right: -30px;
  transform: translateY(-50%);
}

.hero-floating-card.card-mid-right:hover {
  transform: translateY(calc(-50% - 4px));
}

@media (max-width: 991px) {
  .hero-floating-card {
    position: static;
    max-width: 100%;
    margin-top: 0.75rem;
    transform: none !important;
  }
  .hero-floating-card.card-top-right,
  .hero-floating-card.card-mid-right,
  .hero-floating-card.card-bottom-left {
    position: static;
  }
  .hero-floating-cards-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1rem;
  }
}

.floating-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--green-soft);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-icon.icon-amber {
  background-color: var(--amber-soft);
  color: var(--amber-primary);
}

.floating-icon.icon-blue {
  background-color: rgba(43, 90, 138, 0.12);
  color: #2B5A8A;
}

/* Aloldali Hero */
.page-hero {
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 2rem;
  background: radial-gradient(circle at 50% 15%, rgba(212, 175, 55, 0.12) 0%, transparent 65%),
              linear-gradient(160deg, #1A3422 0%, #102315 50%, #0B190F 100%);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 12px 32px rgba(11, 25, 15, 0.18);
}

@media (max-width: 767px) {
  .page-hero {
    padding-top: calc(var(--header-height) + 1.6rem);
    padding-bottom: 1.8rem;
  }
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 193, 125, 0.5), transparent);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.page-hero .section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.35rem 0.95rem;
  background: rgba(242, 193, 125, 0.1);
  border: 1px solid rgba(242, 193, 125, 0.28);
  border-radius: var(--radius-sm);
  color: var(--amber-glow) !important;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-hero .section-eyebrow::before,
.page-hero .section-eyebrow::after {
  display: none !important;
}

.page-hero .section-eyebrow .icon {
  font-size: 15px;
  color: var(--amber-glow);
}

.page-hero .section-title,
.page-hero h1 {
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.page-hero .section-title .text-gold-gradient,
.page-hero h1 .text-gold-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #F2C17D 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.page-hero .lead,
.page-hero p {
  color: rgba(244, 239, 234, 0.82);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 600;
}

@media (max-width: 768px) {
  .page-hero .lead,
  .page-hero p {
    color: rgba(244, 239, 234, 0.82);
    font-size: 0.90rem;
    line-height: 1.4;
    max-width: 680px;
  }
}

/* ==========================================================================
   ÉRTÉKAJÁNLAT (6 KULCS ELŐNY BLOKKOK)
   ========================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 2.2rem 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--trans-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--amber-primary);
  transition: var(--trans-normal);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--neutral-400);
}

.benefit-card:hover::before {
  height: 100%;
}

.benefit-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background-color: var(--amber-soft);
  color: var(--amber-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  font-size: 28px;
  transition: var(--trans-fast);
}

.benefit-card:hover .benefit-icon-box {
  background-color: var(--amber-primary);
  color: #FFFFFF;
}

.benefit-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.benefit-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   ÜVEGSZÁLAS DÉZSÁK FŐ ELŐNYEI & GYAKORLATI BEMUTATÁS
   ========================================================================== */
.fiberglass-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .fiberglass-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .fiberglass-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fiberglass-feature-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.65rem;
  border: 1px solid rgba(22, 41, 27, 0.08);
  box-shadow: 0 4px 20px rgba(22, 41, 27, 0.04);
  transition: all var(--trans-normal);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
}

.fiberglass-feature-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #FDF7ED 0%, #F5E8D4 100%);
  color: var(--amber-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(175, 110, 30, 0.22);
  box-shadow: 0 4px 12px rgba(175, 110, 30, 0.08);
  transition: all var(--trans-normal);
  flex-shrink: 0;
  margin-top: 0.15rem;
  transform-origin: center center;
}

.fiberglass-feature-icon .icon {
  font-size: 28px;
  display: inline-block;
  transform-origin: center center;
  transition: color var(--trans-normal), transform var(--trans-normal);
}

@media (hover: hover) and (min-width: 769px) {
  .fiberglass-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(22, 41, 27, 0.09);
    border-color: rgba(175, 110, 30, 0.35);
  }

  .fiberglass-feature-card:hover .fiberglass-feature-icon {
    background: linear-gradient(135deg, var(--amber-primary) 0%, var(--amber-dark) 100%);
    color: #FFFFFF;
    border-color: var(--amber-primary);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 24px rgba(175, 110, 30, 0.4);
  }

  .fiberglass-feature-card:hover .fiberglass-feature-icon .icon {
    color: #FFFFFF;
    transform: scale(1.05);
  }
}

@media (hover: none), (max-width: 768px) {
  .fiberglass-feature-card:hover {
    transform: none !important;
    box-shadow: 0 4px 20px rgba(22, 41, 27, 0.04) !important;
    border-color: rgba(22, 41, 27, 0.08) !important;
  }

  .fiberglass-feature-card:hover .fiberglass-feature-icon {
    background: linear-gradient(135deg, #FDF7ED 0%, #F5E8D4 100%) !important;
    color: var(--amber-primary) !important;
    border-color: rgba(175, 110, 30, 0.22) !important;
    transform: none !important;
    box-shadow: 0 4px 12px rgba(175, 110, 30, 0.08) !important;
  }

  .fiberglass-feature-card:hover .fiberglass-feature-icon .icon {
    color: var(--amber-primary) !important;
    transform: none !important;
  }
}

@keyframes iconHeartbeat {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(175, 110, 30, 0.08);
    border-color: rgba(175, 110, 30, 0.22);
  }
  14% {
    transform: scale(1.24);
    box-shadow: 0 0 0 8px rgba(175, 110, 30, 0.22), 0 10px 28px rgba(175, 110, 30, 0.38);
    border-color: var(--amber-primary);
  }
  28% {
    transform: scale(1.04);
    box-shadow: 0 0 0 2px rgba(175, 110, 30, 0.1), 0 4px 14px rgba(175, 110, 30, 0.12);
    border-color: var(--amber-primary);
  }
  42% {
    transform: scale(1.16);
    box-shadow: 0 0 0 5px rgba(175, 110, 30, 0.18), 0 8px 22px rgba(175, 110, 30, 0.3);
    border-color: var(--amber-primary);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(175, 110, 30, 0.08);
    border-color: rgba(175, 110, 30, 0.22);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(175, 110, 30, 0.08);
    border-color: rgba(175, 110, 30, 0.22);
  }
}

.fiberglass-feature-icon.heartbeat-pulse {
  animation: iconHeartbeat 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) both !important;
  z-index: 5;
}

.fiberglass-feature-icon.heartbeat-pulse .icon {
  animation: symbolHeartbeat 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) both !important;
}

@keyframes symbolHeartbeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.2); color: var(--amber-dark); }
  28% { transform: scale(1.04); }
  42% { transform: scale(1.14); color: var(--amber-dark); }
  70% { transform: scale(1); }
  100% { transform: scale(1); }
}

.fiberglass-feature-content {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.fiberglass-feature-title {
  font-size: 1.12rem;
  font-weight: 750;
  color: var(--amber-primary);
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.fiberglass-feature-desc {
  font-size: 0.88rem;
  color: #556258;
  line-height: 1.55;
  margin: 0;
}

.fiberglass-feature-desc strong {
  color: var(--green-dark);
  font-weight: 650;
}

@media (max-width: 639px) {
  .fiberglass-feature-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 0.95rem;
    row-gap: 0.85rem;
    padding: 1.35rem 1.25rem;
    border-radius: var(--radius-lg, 16px);
    box-shadow: 0 4px 18px rgba(22, 41, 27, 0.05);
  }

  .fiberglass-feature-icon {
    grid-column: 1;
    grid-row: 1;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    margin-top: 0;
    box-shadow: 0 3px 10px rgba(175, 110, 30, 0.12);
  }

  .fiberglass-feature-icon .icon {
    font-size: 26px;
  }

  .fiberglass-feature-content {
    display: contents;
  }

  .fiberglass-feature-title {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--amber-primary);
  }

  .fiberglass-feature-desc {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    color: var(--neutral-700, #4B564F);
  }
}

.comparison-quick-box {
  background: linear-gradient(145deg, #1A3422 0%, #0c1c11 100%);
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: 0 16px 44px rgba(10, 26, 15, 0.28), inset 0 1px 0 rgba(242, 193, 125, 0.25);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  border: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
  overflow: hidden;
}

.comparison-quick-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16) 0%, rgba(34, 63, 43, 0.05) 60%, transparent 80%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 900px) {
  .comparison-quick-box {
    grid-template-columns: 1.15fr 1fr;
    padding: 3.2rem 3.5rem;
    gap: 3rem;
  }
}

.comparison-quick-content {
  position: relative;
  z-index: 1;
}

.comparison-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.4rem 0.95rem;
  background: rgba(242, 193, 125, 0.12);
  border: 1px solid rgba(242, 193, 125, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-glow);
  line-height: 1;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.comparison-kicker span {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

.comparison-kicker .icon {
  font-size: 15px;
  color: var(--amber-glow);
  line-height: 1;
  vertical-align: middle;
}

.comparison-quick-title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}

@media (min-width: 900px) {
  .comparison-quick-title {
    font-size: 2.75rem;
    line-height: 1.15;
    letter-spacing: -0.015em;
  }
}

@media (max-width: 768px) {
  .comparison-quick-title {
    font-size: 1.65rem;
  }

  .comparison-quick-desc {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}

.text-gold-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #F2C17D 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.comparison-quick-desc {
  color: var(--neutral-300);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.comparison-quick-desc strong {
  color: #FFFFFF;
  font-weight: 700;
}

.comparison-cta-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-gold-subtle {
  background: rgba(175, 110, 30, 0.18);
  border: 1px solid rgba(242, 193, 125, 0.4);
  color: #F9F1E6;
  font-weight: 700;
  transition: all var(--trans-fast);
  padding: 0.65rem 1.3rem;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-gold-subtle .icon {
  font-size: 18px;
  color: var(--amber-glow);
  transition: transform var(--trans-fast);
}

.btn-gold-subtle:hover {
  background: var(--amber-primary);
  border-color: var(--amber-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(175, 110, 30, 0.4);
}

.btn-gold-subtle:hover .icon {
  color: #FFFFFF;
  transform: translateX(3px);
}

.comparison-pills {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.comparison-pill-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--trans-fast);
}

@media (hover: hover) and (min-width: 769px) {
  .comparison-pill-item:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }
}

@media (max-width: 768px) {
  .comparison-pill-item:hover,
  .comparison-pill-item:active,
  .comparison-pill-item:focus {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    transform: none !important;
    box-shadow: none !important;
  }
}

.pill-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(175, 110, 30, 0.35) 0%, rgba(34, 63, 43, 0.6) 100%);
  border: 1px solid rgba(242, 193, 125, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pill-icon-box .icon {
  color: var(--amber-glow);
  font-size: 22px;
  font-variation-settings: 'FILL' 1;
}

.pill-icon-box.pill-icon-box-danger {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.22) 0%, rgba(185, 28, 28, 0.38) 100%);
  border: 1.5px solid rgba(239, 68, 68, 0.6);
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.25), inset 0 1px 0 rgba(254, 202, 202, 0.25);
}

.pill-icon-box.pill-icon-box-danger .icon {
  color: #EF4444 !important;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.pill-text-box {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.pill-title {
  color: var(--amber-glow);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.pill-desc {
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
}

/* ==========================================================================
   4 FŐ DÉZSAKATEGÓRIA KÁRTYÁK
   ========================================================================== */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--trans-normal);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--amber-light);
}

.category-thumb-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--neutral-800);
}

.category-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.category-card:hover .category-thumb-wrapper img {
  transform: scale(1.06);
}

.category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(22, 41, 27, 0.85);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-body {
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.category-title {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.category-summary {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.55;
}

.category-features-list {
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--neutral-300);
  padding-top: 1rem;
  flex-grow: 1;
}

.category-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.5rem;
}

.category-features-list li .icon {
  color: var(--amber-primary);
  font-size: 18px;
}

/* ==========================================================================
   CROSSFADE SLIDESHOW MOTOR (Lassú, elegáns képváltás)
   ========================================================================== */
.slideshow-box {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y !important;
}

.slideshow-track {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: zoom-in;
  background: transparent;
  touch-action: pan-y !important;
  -webkit-user-drag: none;
}

.slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  z-index: 1;
}

.slide-item.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Slideshow navigációs nyilak (Előző / Következő kattintáshoz) - Pöttyökkel harmonizáló elegáns üveghatás */
.slide-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(248, 250, 249, 0.88);
  color: var(--green-dark, #294428);
  border: 1px solid #DDE2DE;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: opacity var(--trans-fast), background var(--trans-fast), border-color var(--trans-fast), transform var(--trans-fast), color var(--trans-fast), box-shadow var(--trans-fast);
  padding: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.slideshow-box:hover .slide-nav-btn,
.slideshow-track:hover .slide-nav-btn {
  opacity: 1;
}

.slide-nav-btn:hover {
  background: var(--amber-primary, #AF6E1E);
  border-color: var(--amber-primary, #AF6E1E);
  transform: translateY(-50%) scale(1.1);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(175, 110, 30, 0.35);
}

.slide-nav-prev {
  left: 10px;
}

.slide-nav-next {
  right: 10px;
}

.slide-nav-btn .icon {
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 768px) {
  .slide-nav-btn {
    opacity: 0.95;
    width: 32px;
    height: 32px;
  }
}

/* Slideshow navigációs pöttyök - Kép alatti modern, lebegő kapszula sáv */
.slideshow-dots {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  padding: 5px 12px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 5;
  transition: background var(--trans-fast), border-color var(--trans-fast);
}

.dot-btn {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background-color: rgba(15, 23, 42, 0.22);
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  outline: none;
  transition: width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.25s ease,
              box-shadow 0.25s ease,
              transform 0.2s ease,
              opacity 0.2s ease;
}

/* Kényelmes érintési felület mobilon és asztali nézetben */
.dot-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
}

.dot-btn:hover {
  background-color: var(--amber-primary, #AF6E1E);
  opacity: 0.85;
  transform: scale(1.15);
}

.dot-btn.active {
  width: 24px;
  background: linear-gradient(135deg, var(--amber-primary, #AF6E1E) 0%, var(--amber-dark, #8C5314) 100%);
  box-shadow: 0 2px 6px rgba(175, 110, 30, 0.35);
  opacity: 1;
  transform: none;
}

/* Sötét hátterű szekciókban (pl. Hónap ajánlata) */
.section-dark .slideshow-dots,
.offer-visual .slideshow-dots {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.section-dark .dot-btn,
.offer-visual .dot-btn {
  background-color: rgba(255, 255, 255, 0.3);
}

.section-dark .dot-btn:hover,
.offer-visual .dot-btn:hover {
  background-color: rgba(255, 255, 255, 0.65);
}

.section-dark .dot-btn.active,
.offer-visual .dot-btn.active {
  background: linear-gradient(135deg, #F59E0B 0%, #AF6E1E 100%);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.45);
}

/* Nagyítás ikon jelzés a slideshow-n - Pöttyökkel harmonizáló stílus */
.slideshow-zoom-hint {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(248, 250, 249, 0.88);
  color: var(--green-dark, #294428);
  border: 1px solid #DDE2DE;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  opacity: 0;
  transition: opacity var(--trans-fast), background var(--trans-fast), border-color var(--trans-fast), transform var(--trans-fast);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}

.slideshow-box:hover .slideshow-zoom-hint,
.slideshow-track:hover .slideshow-zoom-hint {
  opacity: 1;
}

.slideshow-zoom-hint .icon {
  font-size: 19px;
  line-height: 1;
}

@media (max-width: 768px) {
  .slideshow-zoom-hint {
    opacity: 0.95;
    width: 30px;
    height: 30px;
  }
}

/* Minden kattintható és nagyítható kép kurzora és finom hover visszajelzése */
.lightbox-clickable,
.slideshow-track,
.quality-split-grid img {
  cursor: zoom-in;
  transition: transform var(--trans-fast), opacity var(--trans-fast), filter var(--trans-fast);
}

.quick-pkg-card img,
.quick-pkg-thumb img,
.quick-pkg-media img {
  cursor: pointer !important;
}

@media (hover: hover) and (min-width: 992px) {
  .quick-pkg-card:hover .quick-pkg-thumb img,
  .quick-pkg-card:hover .quick-pkg-media img {
    transform: scale(1.04);
  }
}

.quality-split-grid img:hover {
  transform: scale(1.02);
}

/* ==========================================================================
   PREMIUM LIGHTBOX GALÉRIA MODAL (Nagyított Képnézegető)
   ========================================================================== */
.site-lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-sizing: border-box;
}

.site-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 18, 12, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.lightbox-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 4rem;
  z-index: 2;
  box-sizing: border-box;
  pointer-events: none;
  overflow: hidden;
}

.lightbox-container > * {
  pointer-events: auto;
}

/* 1. FELSŐ KÖZÉPSŐ MODELLNÉV CÍMKE (Desktopon elrejtve, mobilon aktív) */
.lightbox-header {
  display: none;
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.lightbox-model-title {
  display: inline-block;
  font-family: var(--font-main, 'Raleway', sans-serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: #FFFFFF;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  letter-spacing: 0.02em;
  pointer-events: auto;
  user-select: none;
  white-space: nowrap;
}

.lightbox-model-title .pkg-variant {
  color: var(--amber-primary, #AF6E1E);
  font-weight: 800;
}

.lightbox-content {
  position: relative;
  max-width: 82vw;
  max-height: 72vh;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-lightbox.open .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.65);
  user-select: none;
  -webkit-user-select: none;
  opacity: 1;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.lightbox-img.switching {
  opacity: 0.2;
  transform: scale(0.97);
}

/* 2. DESKTOP VEZÉRLŐK: Jobb felső sarokban bezárás, bal/jobb oldalon nyilak */
.lightbox-close-btn {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: background-color var(--trans-fast), transform var(--trans-fast), border-color var(--trans-fast);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0;
  margin: 0;
  box-shadow: none !important;
}

.lightbox-close-btn:hover {
  background: var(--amber-primary, #AF6E1E);
  border-color: var(--amber-primary, #AF6E1E);
  transform: rotate(90deg) scale(1.05);
}

.lightbox-close-btn .icon {
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: background-color var(--trans-fast), transform var(--trans-fast), color var(--trans-fast), border-color var(--trans-fast);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0;
  margin: 0;
  box-shadow: none !important;
}

.lightbox-nav-btn:hover {
  background: var(--amber-primary, #AF6E1E);
  border-color: var(--amber-primary, #AF6E1E);
  transform: translateY(-50%) scale(1.08);
  color: #FFFFFF;
}

.lightbox-prev {
  left: 28px;
  right: auto;
}

.lightbox-next {
  right: 28px;
  left: auto;
}

.lightbox-nav-btn .icon {
  font-size: 32px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev .icon {
  transform: translateX(-1px);
}

.lightbox-next .icon {
  transform: translateX(1px);
}

/* 3. DESKTOP LÁBLÉC: Kényelmesen a fotó alatt */
.lightbox-footer {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(0, 0, 0, 0.65);
  padding: 7px 22px;
  border-radius: var(--radius-full, 9999px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: 85vw;
  box-sizing: border-box;
  z-index: 15;
}

.lightbox-caption {
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 50vw;
}

.lightbox-counter {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--amber-primary);
  white-space: nowrap;
  padding-left: 0.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-caption:empty {
  display: none;
}

.lightbox-caption:empty + .lightbox-counter {
  border-left: none;
  padding-left: 0;
}

/* ==========================================================================
   MOBIL LIGHTBOX NÉZET (Tiszta fehér háttér, teljes képernyős fotó, alsó gombok)
   ========================================================================== */
@media (max-width: 768px) {
  .site-lightbox {
    background: #FFFFFF;
  }
  .lightbox-backdrop {
    background: #FFFFFF;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .lightbox-container {
    padding: 0;
    justify-content: center;
    background: #FFFFFF;
  }
  
  .lightbox-header {
    display: flex;
    top: 26px;
  }
  .lightbox-model-title {
    font-size: 1.45rem;
    color: var(--green-dark, #294428);
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  .lightbox-model-title .pkg-variant {
    color: var(--amber-primary, #AF6E1E);
    font-weight: 800;
  }

  .lightbox-content {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    padding: 68px 0 142px 0;
    margin-bottom: 0;
    box-sizing: border-box;
    background: #FFFFFF;
    transform: none !important;
  }
  .lightbox-img {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none !important;
    background: #FFFFFF;
  }

  /* Mobil gombok alul egymás mellett: [ < ] [ X (piros) ] [ > ] - Szellős, elegáns térközökkel */
  .lightbox-close-btn {
    position: absolute;
    top: auto;
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    left: 50%;
    right: auto;
    transform: translateX(-50%) !important;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: none !important;
    z-index: 20;
  }
  .lightbox-close-btn:hover {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    transform: translateX(-50%) scale(1.05) !important;
  }
  .lightbox-close-btn .icon {
    font-size: 26px;
  }

  .lightbox-nav-btn {
    position: absolute;
    top: auto;
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    width: 48px;
    height: 48px;
    background: var(--green-dark, #294428);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #FFFFFF;
    box-shadow: none !important;
    z-index: 20;
  }
  .lightbox-prev {
    left: calc(50% - 88px);
    right: auto;
    transform: none !important;
  }
  .lightbox-prev:hover {
    transform: scale(1.05) !important;
  }
  .lightbox-next {
    left: calc(50% + 40px);
    right: auto;
    transform: none !important;
  }
  .lightbox-next:hover {
    transform: scale(1.05) !important;
  }
  .lightbox-nav-btn .icon {
    font-size: 28px;
  }

  .lightbox-bottom-bar {
    position: absolute;
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    pointer-events: none;
    width: 100%;
  }

  .lightbox-footer {
    position: absolute;
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #F8FAF9;
    color: var(--neutral-700, #4B564F);
    border: 1px solid #DDE2DE;
    border-radius: var(--radius-full, 9999px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    padding: 5px 18px;
    z-index: 15;
    white-space: nowrap;
    max-width: 90vw;
  }
  .lightbox-caption {
    font-size: 0.8rem;
    max-width: 52vw;
  }
  .lightbox-counter {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--amber-primary, #AF6E1E);
    border-left: 1px solid #CCD4CF;
    padding-left: 0.5rem;
  }
}

/* ==========================================================================
   A HÓNAP AJÁNLATA (Kiemelt szekció - Doboz a dobozban nélkül)
   ========================================================================== */
.offer-section {
  position: relative;
  background: radial-gradient(circle at 85% 20%, rgba(45, 78, 44, 0.5) 0%, transparent 60%),
              radial-gradient(circle at 15% 80%, rgba(175, 110, 30, 0.12) 0%, transparent 50%),
              linear-gradient(145deg, #1C2E1D 0%, #122014 100%);
  padding: 3rem 0;
  overflow: hidden;
}

.special-offer-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.promo-page-section {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

@media (max-width: 768px) {
  .promo-page-section {
    padding-top: 1.75rem;
    padding-bottom: 3.5rem;
  }
}

.promo-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 992px) {
  .promo-split-grid {
    grid-template-columns: 4fr 6fr;
    gap: 3rem;
    align-items: start;
  }
}

.promo-gallery-col {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  min-width: 0;
  box-sizing: border-box;
}

.promo-gallery-col .slideshow-box {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.promo-gallery-col .slideshow-track {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(212, 175, 55, 0.35);
  box-sizing: border-box;
}

.promo-gallery-col .slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  padding: 1.25rem 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}

@media (min-width: 600px) {
  .promo-card {
    padding: 2.2rem;
  }
}

@media (min-width: 992px) {
  .promo-card {
    padding: 2.5rem;
  }
}

.promo-card .offer-badge-tag {
  margin-bottom: 1rem;
  align-self: flex-start;
}

.promo-card-title {
  margin-bottom: 0.8rem;
  font-size: clamp(1.4rem, 4.2vw, 2rem);
  color: var(--green-dark);
  font-weight: 800;
  line-height: 1.25;
  word-break: break-word;
  overflow-wrap: break-word;
}

.promo-card-lead {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.55;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .promo-card-lead {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
}

.promo-spec-included {
  margin-top: 0.5rem;
  margin-bottom: 1.8rem;
  background: #FFFFFF !important;
  border: 1.5px solid #86EFAC !important;
  box-shadow: 0 4px 16px rgba(22, 101, 52, 0.06);
  padding: 1.25rem 1rem;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 600px) {
  .promo-spec-included {
    padding: 1.35rem 1.25rem;
  }
}

.promo-card .spec-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 600px) {
  .promo-card .spec-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 1.25rem;
  }
}

.promo-card .spec-list li {
  word-break: break-word;
  overflow-wrap: break-word;
}

.promo-card-footer {
  padding-top: 1.25rem;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.promo-card .offer-price-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.promo-card .offer-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.promo-card .offer-old-price {
  color: #4B5563;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.promo-card .offer-highlight-text {
  font-size: clamp(1.75rem, 5vw, 2.2rem);
  color: var(--amber-primary);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.promo-card .offer-note {
  color: var(--green-dark);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.promo-btn-group {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.promo-action-btn {
  white-space: normal;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.35;
}

@media (max-width: 768px) {
  .promo-card {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-lg);
  }

  .promo-card-footer {
    gap: 1.15rem;
    padding-top: 1rem;
  }

  .promo-btn-group {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .promo-action-btn {
    width: 100%;
    padding: 0.95rem 1.15rem !important;
    font-size: 0.92rem !important;
    gap: 0.5rem;
  }
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .offer-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
  }
}

.offer-mobile-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0rem;
}

.offer-mobile-header .offer-desc {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0rem;
  line-height: 1.4;
}

.offer-desktop-header {
  margin-bottom: 1.8rem;
}

.offer-visual {
  position: relative;
}

.offer-visual .slideshow-box {
  width: 100%;
}

.offer-visual .slideshow-track {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl) !important;
  overflow: hidden !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(242, 193, 125, 0.3) !important;
  border: 2px solid rgba(212, 175, 55, 0.3) !important;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.offer-visual .slide-item {
  border-radius: var(--radius-xl) !important;
  overflow: hidden !important;
}

.offer-visual .slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl) !important;
  transition: transform var(--trans-slow);
}

.offer-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--amber-primary) 0%, var(--amber-dark) 100%);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 14px rgba(175, 110, 30, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-title {
  color: #FFFFFF;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.offer-desc {
  color: var(--neutral-300);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .offer-desc {
    line-height: 1.4;
  }
}

.offer-perks-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.12rem;
  margin-bottom: 2.2rem;
}

@media (min-width: 600px) {
  .offer-perks-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem 1.5rem;
  }
}

.offer-perk-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
}

.offer-perk-item .icon {
  color: var(--amber-glow);
  font-size: 20px;
  font-variation-settings: 'FILL' 1;
  flex-shrink: 0;
}

.offer-action-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 0rem;
  border-top: none;
}

@media (min-width: 640px) {
  .offer-action-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

@media (min-width: 992px) {
  .offer-action-box {
    padding-top: 1.8rem;
  }
}

.offer-price-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 0.35rem;
}

.offer-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .offer-price-info {
    align-items: center;
    text-align: center;
  }

  .offer-price-row {
    justify-content: center;
  }
}

.offer-old-price {
  font-size: 1.25rem;
  color: #CBD5E1;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  font-weight: 700;
}

.offer-highlight-text {
  font-size: 1.75rem;
  color: var(--amber-glow);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.offer-note {
  font-size: 0.95rem;
  color: #E9F0EB;
  font-weight: 700;
  text-align: center;
}

/* Kiemelt promóciós kártya (világos háttér) árazás stílusai */
.promo-card .offer-old-price {
  color: #4B5563;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.promo-card .offer-highlight-text {
  font-size: 2.1rem;
  color: var(--amber-primary);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.promo-card .offer-note {
  color: var(--green-dark);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

/* ==========================================================================
   5 CSOMAG GYORS MODELLSÁV (Apple Stílusú 5 oszlopos egysoros sáv)
   ========================================================================== */
.quick-packages-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .quick-packages-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

@media (min-width: 992px) {
  .quick-packages-strip {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

.quick-pkg-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--neutral-300);
  box-shadow: 0 4px 14px rgba(22, 41, 27, 0.04);
  transition: all var(--trans-normal);
  text-decoration: none;
  color: var(--green-dark);
}

@media (hover: hover) and (min-width: 992px) {
  .quick-pkg-card:hover {
    transform: translateY(-6px);
    border-color: var(--amber-primary);
    box-shadow: 0 12px 28px rgba(175, 110, 30, 0.15);
  }
}

@media (hover: none), (max-width: 768px) {
  .quick-pkg-card:hover {
    transform: none !important;
    border-color: var(--neutral-300) !important;
    box-shadow: 0 4px 14px rgba(22, 41, 27, 0.04) !important;
  }
}

.quick-pkg-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--neutral-200);
  margin-bottom: 0;
  border-radius: 0;
}

.quick-pkg-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quick-pkg-thumb .pkg-img-primary {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1 !important;
  filter: none !important;
  transform: scale(1);
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quick-pkg-thumb .pkg-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0 !important;
  filter: none !important;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (hover: hover) and (min-width: 992px) {
  .quick-pkg-card:hover .quick-pkg-thumb .pkg-img-primary {
    opacity: 0 !important;
    transform: scale(1.06);
  }

  .quick-pkg-card:hover .quick-pkg-thumb .pkg-img-hover {
    opacity: 1 !important;
    transform: scale(1.06);
  }
}

.quick-pkg-body {
  padding: 1.1rem 1rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  gap: 0.5rem;
  background: #FFFFFF;
}

.quick-pkg-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--amber-primary);
  margin: 0;
  display: block;
}

.quick-pkg-name .brand-name {
  color: var(--green-dark);
}

.quick-pkg-target {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--neutral-700);
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-height: 4.2rem;
}

.quick-pkg-target .target-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #16A34A;
}

.quick-pkg-target .target-desc {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--neutral-600);
  line-height: 1.2;
}

.quick-pkg-price {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--neutral-600);
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.quick-pkg-price .price-suffix {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--neutral-600);
  margin-left: 0.15rem;
}

.quick-pkg-link {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--amber-primary);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  width: fit-content;
  transition: all var(--trans-fast);
}

.quick-pkg-link .icon {
  font-size: 16px;
  color: var(--amber-primary);
  transition: transform var(--trans-fast);
}

@media (hover: hover) and (min-width: 992px) {
  .quick-pkg-card:hover .quick-pkg-link {
    color: var(--amber-primary);
  }

  .quick-pkg-card:hover .quick-pkg-link .icon {
    transform: translateX(4px);
  }
}

/* 6. Mobil CTA Kártya stílusa (Nagy barna gomb kártya) */
.quick-pkg-card-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  padding: 1.25rem 0.85rem;
  background: linear-gradient(145deg, #b87522 0%, #8f5412 100%);
  border: 1.5px solid rgba(242, 193, 125, 0.4);
  box-shadow: 0 6px 20px rgba(175, 110, 30, 0.3);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: var(--radius-lg);
  min-height: 100%;
}

.quick-pkg-card-cta:hover {
  background: linear-gradient(145deg, #c78028 0%, #9e5d16 100%);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(175, 110, 30, 0.45);
}

.quick-pkg-cta-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 0.75rem;
  transition: transform var(--trans-normal);
}

.quick-pkg-card-cta:hover .quick-pkg-cta-icon-box {
  transform: scale(1.1);
}

.quick-pkg-cta-icon-box .icon {
  font-size: 24px;
  color: #FFFFFF;
}

.quick-pkg-cta-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.quick-pkg-cta-tags {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin: 0.2rem 0 0.5rem 0;
}

.quick-pkg-cta-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1rem;
  border: 1.5px solid rgba(242, 193, 125, 0.45);
  border-radius: var(--radius-sm);
  background: transparent;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--trans-fast);
}

.quick-pkg-card-cta:hover .quick-pkg-cta-tag {
  border-color: rgba(255, 255, 255, 0.7);
}

.quick-pkg-cta-subtext {
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.25;
  margin: 0.15rem 0 0.4rem 0;
  letter-spacing: 0.01em;
}

.quick-pkg-cta-pill {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: #FFFFFF;
  color: var(--amber-dark);
  font-size: 0.84rem;
  font-weight: 800;
  padding: 0.42rem 0.95rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  letter-spacing: 0.02em;
  transition: all var(--trans-fast);
}

.quick-pkg-cta-pill .icon {
  font-size: 16px;
  color: var(--amber-dark);
  transition: transform var(--trans-fast);
}

.quick-pkg-card-cta:hover .quick-pkg-cta-pill {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.quick-pkg-card-cta:hover .quick-pkg-cta-pill .icon {
  transform: translateX(3px);
}

@media (min-width: 992px) {
  .quick-pkg-card-cta {
    display: none !important;
  }
}

.quick-pkg-desktop-cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.95rem 2.4rem;
  line-height: 1.25;
  text-align: center;
}

.quick-pkg-desktop-cta-btn .btn-main-text {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}

.quick-pkg-desktop-cta-btn .btn-sub-text {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {
  .quick-pkg-desktop-cta-wrapper {
    display: none !important;
  }
}

/* ==========================================================================
   DESKTOP MODELL NAVIGÁCIÓS SÁV (5 Modell Fix Alsó Dokk & ScrollSpy)
   ========================================================================== */
.package-nav-bar {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 998;
  width: max-content;
  max-width: calc(100% - 32px);
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  margin: 0;
  pointer-events: none;
}

.package-nav-track {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  pointer-events: auto;
}

.package-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem 0.95rem 0.35rem 0.4rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(22, 41, 27, 0.1);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: var(--green-dark);
  transition: all var(--trans-fast);
  cursor: pointer;
  user-select: none;
}

.package-nav-item:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(212, 175, 55, 0.5);
  color: var(--brand-forest);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.package-nav-item.active {
  background: #FFFFFF !important;
  color: var(--green-dark) !important;
  border: 1.5px solid var(--amber-primary) !important;
  box-shadow: 0 10px 28px rgba(10, 26, 15, 0.18), 0 2px 8px rgba(175, 110, 30, 0.15) !important;
  transform: translateY(-3px);
  font-weight: 700;
}

.pkg-nav-thumb {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #FAF8F4;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans-fast);
}

.package-nav-item.active .pkg-nav-thumb {
  border-color: var(--amber-primary);
  background: #FFFFFF;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.35);
  transform: scale(1.06);
}

.pkg-nav-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.pkg-nav-info {
  display: flex;
  flex-direction: column;
}

.pkg-nav-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .package-nav-bar {
    display: none !important;
  }
}

/* ==========================================================================
   MOBIL LEBEGŐ MODELL SÁV (Minimalista, egyetlen szinten, a lebegő CTA stílusával)
   ========================================================================== */
.package-mobile-rail {
  display: none;
}

@media (max-width: 991px) {
  .package-mobile-rail {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
    z-index: 989;
    width: calc(100% - 24px);
    max-width: 440px;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    margin: 0;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
  }

  .mobile-rail-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.35rem;
    width: 100%;
    pointer-events: auto;
  }

  .mobile-rail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.2rem;
    border-radius: var(--radius-sm, 6px) !important;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: var(--neutral-800, #29342D);
    font-family: var(--font-heading);
    font-size: clamp(0.72rem, 2.7vw, 0.8rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all var(--trans-fast);
    white-space: nowrap;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-rail-item:active,
  .mobile-rail-item.active {
    background: var(--amber-primary, #AF6E1E) !important;
    color: #FFFFFF !important;
    border-color: var(--amber-primary, #AF6E1E) !important;
    box-shadow: 0 8px 24px rgba(175, 110, 30, 0.4), 0 2px 8px rgba(0, 0, 0, 0.25) !important;
    transform: translateY(-2px);
  }

  .mobile-rail-item.active .mobile-rail-label {
    color: #FFFFFF;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  }
}

/* ==========================================================================
   ÜVEGSZÁLAS DÉZSÁK — CSOMAGAJÁNLATOK (Vízszintes / 2 oszlopos kártyák)
   ========================================================================== */
.packages-grid {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--neutral-300);
  box-shadow: 0 8px 30px rgba(41, 68, 40, 0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--trans-normal), border-color var(--trans-normal), transform var(--trans-normal);
  position: relative;
  scroll-margin-top: calc(var(--header-height, 84px) + 28px);
}

@media (max-width: 991px) {
  .package-card {
    scroll-margin-top: calc(72px + 18px);
  }
}

.package-card:hover {
  box-shadow: 0 16px 40px rgba(41, 68, 40, 0.13);
  border-color: rgba(175, 110, 30, 0.4);
}

.package-card.featured {
  border-color: var(--amber-primary);
  box-shadow: 0 16px 44px rgba(175, 110, 30, 0.2);
}

/* KÖZÖS FELSŐ FEJLÉC (Név balra, Induló ár jobbra) */
.package-card-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF8F4 100%);
  border-bottom: 1.5px solid var(--neutral-300);
  border-top-left-radius: calc(var(--radius-xl) - 1.5px);
  border-top-right-radius: calc(var(--radius-xl) - 1.5px);
}

@media (min-width: 640px) {
  .package-card-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 2rem;
  }
}

.package-card-header-left {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.package-card-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: flex-end;
}

@media (min-width: 640px) {
  .package-card-header-right {
    align-self: center;
  }
}

.package-card-header .package-name {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--green-dark);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .package-card-header .package-name {
    font-size: 2.1rem;
  }
}

.package-card-header .package-positioning {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 700;
  line-height: 1.35;
}

.package-card-header .package-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--amber-primary);
  margin: 0;
  background: rgba(175, 110, 30, 0.08);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(175, 110, 30, 0.28);
  box-shadow: 0 2px 10px rgba(175, 110, 30, 0.08);
}

.package-card-header .package-price-tag .price-suffix {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .package-card-header .package-price-tag {
    font-size: 1.75rem;
    padding: 0.45rem 1.15rem;
  }

  .package-card-header .package-price-tag .price-suffix {
    font-size: 1rem;
    font-weight: 800;
  }
}

@media (min-width: 768px) {
  .package-card-header .package-price-tag {
    font-size: 1.9rem;
    padding: 0.5rem 1.25rem;
  }
}

/* 2. FELSŐ BEMUTATÓ SZEKCIÓ (Bal: Kép, Jobb: Leírás + Alapfelszereltség) */
.package-showcase-section {
  display: grid;
  grid-template-columns: 1fr;
  background: #FFFFFF;
  border-bottom: 1.5px solid var(--neutral-300);
}

@media (min-width: 992px) {
  .package-showcase-section {
    grid-template-columns: 440px 1fr;
    align-items: center;
  }
}

.package-showcase-media {
  position: relative;
  padding: 0;
}

@media (min-width: 768px) {
  .package-showcase-media {
    padding: 1.5rem;
  }
}

.package-showcase-media .slideshow-box {
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background-color: transparent !important;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.package-showcase-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .package-showcase-content {
    padding: 1.75rem 2rem 1.75rem 1.25rem;
  }
}

.package-showcase-content .package-desc {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .package-showcase-content .package-desc {
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 1.25rem;
    line-height: 1.3;
  }
}

.package-showcase-content .spec-group {
  margin-bottom: 0;
}

/* 3. ALSÓ KONFIGURÁTOR SZEKCIÓ (Bal: Kályhák/Opciók, Jobb: Extrák + Összesen + Gomb) */
.package-config-section {
  display: grid;
  grid-template-columns: 100%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
  background: #FCFCFA;
  padding: 1.15rem 0.85rem;
  gap: 1.25rem;
  border-bottom-left-radius: calc(var(--radius-xl) - 1.5px);
  border-bottom-right-radius: calc(var(--radius-xl) - 1.5px);
}

@media (min-width: 768px) {
  .package-config-section {
    padding: 1.5rem;
    gap: 1.5rem;
  }
}

@media (min-width: 992px) {
  .package-config-section {
    grid-template-columns: 1fr 1fr;
    padding: 1.85rem 2rem;
    gap: 2.25rem;
    align-items: start;
  }
}

.package-config-col-left,
.package-config-col-right {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.package-config-col-left .spec-group,
.package-config-col-right .spec-group {
  margin-bottom: 1.25rem;
}

.package-config-col-right .config-summary-box {
  margin-top: 0;
}

.package-config-header {
  grid-column: 1 / -1;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px dashed var(--neutral-300);
  margin-bottom: 0.25rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.package-config-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #15803D;
  margin: 0;
  letter-spacing: -0.01em;
  word-break: break-word;
}

.package-config-title .icon {
  color: #15803D;
  font-size: 22px;
  flex-shrink: 0;
}

.package-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, #AF6E1E 0%, #8D5413 100%);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.76rem;
  padding: 0.36rem 1.15rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(175, 110, 30, 0.35), 0 0 0 2px #FFFFFF;
  pointer-events: none;
  white-space: nowrap;
}

.package-ribbon .icon {
  font-size: 13px;
  color: #FFE5A3;
  font-variation-settings: 'FILL' 1;
}

.package-header {
  margin-bottom: 0.4rem;
}

.package-name {
  font-size: 1.6rem;
}

.pkg-variant {
  text-transform: uppercase;
  color: var(--amber-primary);
  font-weight: 700;
}

.package-positioning {
  font-size: 0.95rem;
  color: var(--amber-primary);
  font-weight: 700;
}

.package-desc {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1.4rem;
  line-height: 1.55;
}

/* ==========================================================================
   LETISZTULT PRÉMIUM SPECIFIKÁCIÓS FOLYAMAT
   ========================================================================== */
.package-spec-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.spec-group {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding-bottom: 0.5rem;
}

.spec-group:last-child {
  padding-bottom: 0;
}

/* 1. Alapfelszereltség elegáns halványzöld kártya */
.spec-group.spec-included {
  position: relative;
  background: linear-gradient(135deg, rgba(22, 101, 52, 0.05) 0%, rgba(22, 101, 52, 0.02) 100%);
  border: 1px solid rgba(22, 101, 52, 0.18);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.25rem 1.15rem 1.25rem;
  margin-top: 0.6rem;
  margin-bottom: 0.25rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.spec-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--amber-primary);
  margin-bottom: 0.75rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.spec-title-left {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  flex: 1 1 auto;
  word-break: break-word;
}

.spec-included .spec-group-title .spec-title-left {
  color: #16A34A;
}

.spec-group-title .icon {
  font-size: 19px;
  color: var(--amber-primary);
  flex-shrink: 0;
}

.spec-group-title .included-badge,
.spec-included .included-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #ECFDF5 0%, #DCFCE7 100%);
  color: #15803D;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #86EFAC;
  box-shadow: 0 2px 6px rgba(22, 163, 74, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}

.spec-group-title .included-badge .icon,
.spec-included .included-badge .icon {
  font-size: 15px;
  color: #15803D;
  font-weight: 800;
}

.spec-group-title .choice-hint {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  margin-left: auto;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge-new-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1px 6px;
  border-radius: 4px;
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #86EFAC;
  margin-left: 6px;
  vertical-align: middle;
  line-height: 1.3;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem 1.25rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 480px) {
  .spec-list {
    grid-template-columns: 1fr 1fr;
  }
}

.spec-list li {
  font-size: 0.88rem;
  color: var(--neutral-800);
  line-height: 1.45;
  position: relative;
  padding-left: 1.55rem;
  word-break: break-word;
}

.spec-list li::before {
  content: "check";
  font-family: 'Material Symbols Outlined';
  position: absolute;
  left: 0;
  top: 2px;
  color: #16A34A;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
  font-variation-settings: 'FILL' 0, 'wght' 700, 'GRAD' 0, 'opsz' 20;
}

.spec-list li strong {
  color: var(--green-dark);
  font-weight: 700;
}

/* 2. Választható Kályha & Opció Csempe / Kártya rács (Egyoszlopos elrendezés) */
.config-options-grid {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.config-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.75rem 0.85rem;
  background: #ffffff;
  border: 1.5px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--trans-fast);
  user-select: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (hover: hover) and (pointer: fine) {
  .config-tile:hover {
    background: #FAF3E8;
    border-color: var(--amber-primary);
    transform: translateY(-1px);
  }
}

@media (hover: none), (max-width: 768px) {
  .config-tile:hover {
    background: #ffffff;
    border-color: var(--neutral-300);
    transform: none;
  }

  .config-tile.active:hover,
  .config-tile:has(input:checked):hover {
    background: linear-gradient(135deg, #F2FAF4 0%, #E8F7EC 100%);
    border-color: #16A34A;
    transform: none;
  }
}

.config-tile input[type="radio"],
.config-tile input[type="checkbox"] {
  accent-color: #16A34A;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}

.config-tile-left {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--neutral-800);
  line-height: 1.35;
  min-width: 0;
  flex: 1 1 auto;
}

.config-tile-left input[type="radio"],
.config-tile-left input[type="checkbox"] {
  margin: 0;
  align-self: center;
}

.config-tile-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1 1 auto;
}

.config-tile-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--neutral-800);
  line-height: 1.35;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.config-tile-sub {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Kijelölt aktív állapot */
.config-tile.active,
.config-tile:has(input:checked) {
  background: linear-gradient(135deg, #F2FAF4 0%, #E8F7EC 100%);
  border-color: #16A34A;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.12);
}

.config-tile.active .config-tile-left,
.config-tile:has(input:checked) .config-tile-left {
  color: #14532D;
  font-weight: 700;
}

.config-tile.active .config-tile-title,
.config-tile:has(input:checked) .config-tile-title {
  color: #14532D;
  font-weight: 700;
}

.config-tile.active .config-tile-sub,
.config-tile:has(input:checked) .config-tile-sub {
  color: #15803D;
  font-weight: 700;
}

.config-tile-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  margin-left: 0.2rem;
}

.config-tile-plus {
  font-size: 2rem;
  font-weight: 500;
  color: var(--amber-dark);
  line-height: 1;
  user-select: none;
}

.config-tile.active .config-tile-plus,
.config-tile:has(input:checked) .config-tile-plus {
  color: #15803D;
}

.config-tile-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--amber-dark);
  background: linear-gradient(135deg, #FBF4E8 0%, #F4E7D3 100%);
  border: 1.5px solid rgba(175, 110, 30, 0.28);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.config-tile-price .icon {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.config-tile.active .config-tile-price,
.config-tile:has(input:checked) .config-tile-price {
  background: #DCFCE7;
  color: #15803D;
  border-color: #4ADE80;
  box-shadow: 0 2px 6px rgba(22, 163, 74, 0.15);
}

.config-tile-price.included-price {
  font-size: 0.78rem;
  font-weight: 700;
  background: #ECFDF5;
  color: #166534;
  border-color: #A7F3D0;
}

.wpc-disclaimer-note {
  font-size: 0.78rem;
  color: var(--amber-primary);
  font-style: italic;
  line-height: 1.45;
  margin-top: 0.6rem;
  margin-bottom: 0;
  padding: 0.45rem 0.75rem;
  background-color: rgba(245, 240, 232, 0.6);
  border-radius: var(--radius-sm);
}

/* KIZÁRÓLAG MOBIL NÉZET (@media (max-width: 768px)) */
@media (max-width: 768px) {
  .config-tile-text {
    display: inline;
  }

  .config-tile-title {
    display: inline;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .config-tile-line2 {
    display: inline;
  }
}

@media (max-width: 576px) {
  .package-config-section {
    padding: 1rem 1rem;
    gap: 1rem;
  }

  .package-config-title {
    font-size: 1.05rem;
    gap: 0.45rem;
  }

  .spec-group-title {
    font-size: 0.88rem;
    gap: 0.25rem 0.45rem;
    padding-top: 10px;
  }

  .spec-title-left {
    font-size: 0.88rem;
  }

  .spec-group-title .choice-hint {
    font-size: 0.68rem;
  }

  .config-tile {
    padding: 0.65rem 0.65rem;
    gap: 0.45rem;
  }

  .config-tile-left {
    gap: 0.45rem;
  }

  .config-tile-title {
    font-size: 0.82rem;
  }

  .config-tile-sub {
    font-size: 0.74rem;
  }

  .config-tile-price {
    font-size: 0.76rem;
    padding: 0.2rem 0.5rem;
  }
}

/* 3. Élő Árkalkuláció összefoglaló doboz közvetlenül a gomb felett */
.config-summary-box {
  background: linear-gradient(135deg, #F3EBE0 0%, #FAF7F2 100%);
  border: 1px solid rgba(175, 110, 30, 0.25);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.25rem;
  margin-top: 0;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 14px rgba(175, 110, 30, 0.06);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.config-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.45rem;
  min-width: 0;
}

.config-summary-row span {
  font-weight: 700;
  color: #16A34A;
  line-height: 1.35;
  min-width: 0;
  flex: 1 1 auto;
}

.config-summary-row:has(.options-sum) span,
.config-summary-row:nth-of-type(2) span {
  color: var(--amber-primary);
}

.config-summary-row strong {
  color: #16A34A;
  font-weight: 800;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.config-summary-row .options-sum {
  color: var(--amber-primary);
  font-weight: 800;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.config-summary-divider {
  height: 1px;
  background: rgba(175, 110, 30, 0.2);
  margin: 0.6rem 0;
}

.config-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.65rem;
  min-width: 0;
}

.config-summary-total-label {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.3;
  min-width: 0;
  flex: 1 1 auto;
}

.config-total-price,
.config-summary-total-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -0.01em;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.config-summary-note {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--neutral-700);
  margin-top: 0.4rem;
  line-height: 1.35;
}

.package-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: auto;
}

.package-actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.package-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--amber-primary);
  margin-bottom: 0.8rem;
}

.package-price-tag .price-suffix,
.package-price-tag small {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-muted);
}

.package-options-block {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--neutral-300);
}

.package-options-block h6 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.options-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.4rem;
}

.option-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  background: #FFFFFF;
  color: var(--neutral-800);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-xs);
  border: 1px solid var(--neutral-300);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  white-space: nowrap;
  transition: all var(--trans-fast);
}

.option-chip:hover {
  border-color: var(--amber-primary);
}

.option-chip strong {
  color: var(--amber-primary);
  font-weight: 700;
  white-space: nowrap;
}

/* ==========================================================================
   MINŐSÉG, HŐSZIGETELÉS & SKANDINÁV ÉLETTÉRZÉS
   ========================================================================== */
.quality-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .quality-split-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.quality-split-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.quality-layer-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.layer-item {
  display: flex;
  gap: 1.2rem;
  background: var(--neutral-100);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--amber-primary);
  box-shadow: var(--shadow-xs);
}

.layer-num {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--amber-primary);
  line-height: 1;
}

.layer-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.layer-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   GYIK (Accordion rendszer + Élő Kereső & Kategóriaszűrő)
   ========================================================================== */
.faq-toolbar {
  max-width: 880px;
  margin: 0 auto 3rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}

.faq-search-box,
.faq-search-wrapper {
  width: 100%;
  max-width: 620px;
  position: relative;
  margin: 0 auto;
  display: block;
}

.faq-search-input {
  width: 100%;
  height: 52px;
  padding: 0 1.5rem 0 3.4rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--neutral-300);
  background-color: #FFFFFF;
  font-size: 0.98rem;
  color: var(--neutral-900);
  box-shadow: 0 4px 18px rgba(22, 41, 27, 0.05);
  transition: all var(--trans-fast);
  outline: none;
  box-sizing: border-box;
  display: block;
}

.faq-search-input::placeholder {
  color: var(--neutral-500);
  font-weight: 400;
}

.faq-search-input:focus {
  border-color: var(--amber-primary);
  background-color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(175, 110, 30, 0.15), 0 0 0 4px rgba(175, 110, 30, 0.12);
}

.faq-search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--amber-primary);
  font-size: 22px;
  pointer-events: none;
  transition: color var(--trans-fast);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.faq-search-wrapper:focus-within .faq-search-icon {
  color: var(--amber-dark);
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}

.faq-tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  background-color: #FFFFFF;
  border: 1.5px solid var(--neutral-300);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-dark);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(22, 41, 27, 0.04);
  transition: all var(--trans-fast);
  white-space: nowrap;
  user-select: none;
  line-height: 1.2;
}

.faq-tab-btn:hover {
  border-color: var(--amber-primary);
  color: var(--amber-primary);
  background-color: #FAF6F0;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(175, 110, 30, 0.12);
}

.faq-tab-btn.active {
  background-color: var(--green-dark);
  color: #FFFFFF;
  border-color: var(--green-dark);
  box-shadow: 0 6px 18px rgba(22, 41, 27, 0.22);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .faq-toolbar {
    margin-bottom: 2rem;
    gap: 1rem;
  }

  .faq-search-input {
    font-size: 16px;
    height: 48px;
    padding: 0 1.2rem 0 3rem;
  }

  .faq-search-icon {
    left: 1rem;
    font-size: 20px;
  }

  .faq-categories {
    gap: 0.45rem;
  }

  .faq-tab-btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.82rem;
  }
}

.faq-accordion-group {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-300);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(22, 41, 27, 0.03);
  transition: border-color 0.28s ease, 
              box-shadow 0.28s ease;
}

.faq-item:hover {
  border-color: rgba(175, 110, 30, 0.4);
  box-shadow: 0 6px 18px rgba(22, 41, 27, 0.06);
}

.faq-item.open {
  border-color: var(--amber-primary);
  box-shadow: 0 8px 24px rgba(175, 110, 30, 0.1);
}

.faq-item.open .faq-question-btn {
  color: var(--amber-primary);
}

.faq-question-btn {
  width: 100%;
  text-align: left;
  padding: 1.3rem 1.6rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-dark);
  transition: color var(--trans-fast);
  user-select: none;
}

.faq-question-btn:hover {
  color: var(--amber-primary);
}

.faq-question-btn .faq-q-num {
  color: #939D96 !important;
  font-weight: 700 !important;
  font-size: 0.95em !important;
  margin-right: 0.45rem;
  display: inline-block;
  opacity: 0.9;
  transition: color var(--trans-fast);
}

.faq-question-btn:hover .faq-q-num {
  color: var(--amber-light) !important;
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FBF4E8 0%, #F4E7D3 100%);
  border: 1px solid rgba(175, 110, 30, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.32s cubic-bezier(0.25, 1, 0.5, 1), 
              background 0.25s ease, 
              color 0.25s ease, 
              border-color 0.25s ease;
  color: var(--amber-primary);
  pointer-events: none;
}

.faq-item.open .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--amber-primary);
  color: #FFFFFF;
  border-color: var(--amber-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.32s cubic-bezier(0.25, 1, 0.5, 1), 
              opacity 0.28s ease;
  padding: 0 1.6rem;
  will-change: max-height, opacity;
}

.faq-item.open .faq-answer {
  opacity: 1;
}

.faq-answer-inner {
  padding-top: 1.1rem;
  padding-bottom: 1.4rem;
  border-top: 1px solid var(--neutral-400);
  color: var(--neutral-700);
  font-size: 0.96rem;
  line-height: 1.65;
}

.faq-answer-inner p {
  color: inherit;
  margin-bottom: 0.75rem;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   ÁRAJÁNLATKÉRŐ ŰRLAP (Interaktív, prémium és felhasználóbarát)
   ========================================================================== */
.quote-wrapper {
  background-color: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--neutral-300);
  box-shadow: 0 12px 40px rgba(22, 41, 27, 0.08);
  padding: 2.5rem 1.8rem;
  max-width: 860px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .quote-wrapper {
    padding: 3.5rem;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
}

.form-label span.req {
  color: #D9383A;
}

.form-control {
  width: 100%;
  padding: 0.95rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--neutral-300);
  background-color: #FAFAF8;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-dark);
  outline: none;
  transition: all var(--trans-fast);
}

.form-control:hover {
  background-color: #FAF3E8;
  border-color: var(--amber-primary);
  color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(180, 83, 9, 0.08);
}

.form-control:focus {
  background-color: #FFFFFF;
  border-color: var(--green-dark);
  color: var(--green-dark);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12), 0 2px 10px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

select.form-control,
select.form-control option {
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
}

@media (max-width: 768px) {
  .form-control {
    font-size: 16px;
    padding: 0.85rem 1rem;
  }
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Telefonszám élő számláló és visszajelző stílusok */
.phone-counter-badge {
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  background-color: var(--neutral-200);
  color: var(--neutral-700);
  border: 1px solid var(--neutral-300);
  transition: all var(--trans-fast);
}

.phone-counter-badge.is-partial {
  background-color: #FEF3C7;
  color: #B45309;
  border-color: #FCD34D;
}

.phone-counter-badge.is-valid {
  background-color: #DCFCE7;
  color: #15803D;
  border-color: #86EFAC;
}

.phone-helper-hint {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.25rem;
  transition: all var(--trans-fast);
}

.phone-helper-hint.is-partial {
  color: #B45309;
}

.phone-helper-hint.is-valid {
  color: #15803D;
}

input[type="tel"].form-control,
input[name="phone"].form-control {
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}

/* Extrák Checkbox Rács */
.extras-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

@media (min-width: 640px) {
  .extras-checkbox-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.custom-checkbox-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.15rem;
  border: 1.5px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  background-color: #FAFAF8;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.custom-checkbox-card:hover {
  background-color: #FAF3E8;
  border-color: var(--amber-primary);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(180, 83, 9, 0.08);
}

.custom-checkbox-card:has(input:checked) {
  background-color: #F0FDF4;
  border-color: var(--green-dark);
  box-shadow: 0 2px 10px rgba(22, 163, 74, 0.12);
}

.custom-checkbox-card input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--neutral-400);
  border-radius: 5px;
  background-color: #FFFFFF;
  cursor: pointer;
  display: grid;
  place-content: center;
  transition: all var(--trans-fast);
}

.custom-checkbox-card input[type="checkbox"]::before {
  content: "";
  width: 11px;
  height: 11px;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #FFFFFF;
  background-color: #FFFFFF;
}

.custom-checkbox-card input[type="checkbox"]:checked {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
}

.custom-checkbox-card input[type="checkbox"]:checked::before {
  transform: scale(1);
}

.custom-checkbox-card input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--amber-primary);
  outline-offset: 2px;
}

.checkbox-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neutral-800);
  cursor: pointer;
  user-select: none;
}

/* Adatvédelem és bizalomépítő szöveg */
.privacy-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  margin: 1.5rem 0 1.8rem 0;
  padding: 1.1rem 1.3rem;
  background-color: #FBFBFA;
  border: 1.5px solid var(--neutral-300);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--trans-fast);
}

.privacy-checkbox-wrapper:hover {
  background-color: #FAF6EE;
  border-color: var(--amber-primary);
  box-shadow: 0 2px 8px rgba(180, 83, 9, 0.08);
}

.privacy-checkbox-wrapper:has(input:checked) {
  background-color: #F0FDF4;
  border-color: var(--green-dark);
  box-shadow: 0 2px 10px rgba(22, 163, 74, 0.12);
}

.privacy-checkbox-wrapper input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 2px;
  border: 2px solid var(--neutral-400);
  border-radius: 6px;
  background-color: #FFFFFF;
  cursor: pointer;
  display: grid;
  place-content: center;
  transition: all var(--trans-fast);
}

.privacy-checkbox-wrapper input[type="checkbox"]::before {
  content: "";
  width: 12px;
  height: 12px;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #FFFFFF;
  background-color: #FFFFFF;
}

.privacy-checkbox-wrapper input[type="checkbox"]:checked {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
}

.privacy-checkbox-wrapper input[type="checkbox"]:checked::before {
  transform: scale(1);
}

.privacy-checkbox-wrapper input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--amber-primary);
  outline-offset: 2px;
}

.privacy-checkbox-wrapper label {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--neutral-800);
  cursor: pointer;
  user-select: none;
  margin: 0;
}

.privacy-checkbox-wrapper label strong {
  color: var(--green-dark);
  font-weight: 700;
}

.quote-trust-note {
  margin-top: 2rem;
  padding: 1.2rem;
  background-color: var(--green-soft);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--green-dark);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.quote-trust-note p {
  font-size: 0.92rem;
  color: var(--green-dark);
  font-weight: 700;
  margin: 0;
}

.quote-trust-note p strong {
  font-weight: 700;
}

/* ==========================================================================
   REFERENCIÁK & VÁSÁRLÓI ÉLMÉNYEK (Megjelölt Helyőrzők)
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  border: 1px solid var(--neutral-300);
  box-shadow: 0 4px 16px rgba(22, 41, 27, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--trans-normal), box-shadow var(--trans-normal);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(22, 41, 27, 0.08);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  font-size: 18px;
  line-height: 1;
  color: #F5A623;
}

.testimonial-stars .star-icon {
  color: #F5A623;
  display: inline-block;
  line-height: 1;
}

.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #166534;
  background-color: #ECFDF5;
  border: 1px solid #A7F3D0;
  padding: 3px 9px;
  border-radius: var(--radius-xs);
  white-space: nowrap;
  line-height: 1.2;
}

.verified-pill .icon {
  font-size: 14px;
  color: #16A34A;
  font-variation-settings: 'FILL' 1;
}

.testimonial-quote {
  font-size: 0.96rem;
  color: var(--neutral-800);
  font-style: normal;
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 1.8rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--neutral-200);
  padding-top: 1.1rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FBF4E8 0%, #F4E7D3 100%);
  color: var(--amber-dark);
  border: 1.5px solid rgba(175, 110, 30, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0;
  line-height: 1.2;
}

.author-subtext {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.author-tag {
  color: var(--amber-primary);
  font-weight: 600;
}

#toggleMoreTestimonials {
  border-radius: var(--radius-sm);
  font-weight: 700;
  padding: 0.85rem 1.8rem;
  transition: all var(--trans-fast);
}

@media (max-width: 768px) {
  #toggleMoreTestimonials {
    display: inline-flex;
    width: auto;
    max-width: 100%;
    padding: 0.85rem 1.4rem;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    justify-content: center;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 10px rgba(22, 41, 27, 0.04);
  }

  #toggleMoreTestimonials .icon {
    font-size: 22px;
    flex-shrink: 0;
  }
}

/* ==========================================================================
   RÓLUNK & KAPCSOLAT OLDAL SPECIFIKUS ELEMEK
   ========================================================================== */
.story-block {
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.story-lead-card {
  background-color: #FFFFFF;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
  text-align: center;
}

.story-lead-card .section-eyebrow {
  align-items: center;
  text-align: center;
}

.story-lead-card .section-eyebrow::after {
  margin: 0 auto;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 900px) {
  .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 2.4rem 1.6rem;
  border: 1px solid rgba(41, 68, 40, 0.12);
  box-shadow: 0 8px 24px rgba(22, 41, 27, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  transition: all var(--trans-fast);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(22, 41, 27, 0.12);
  border-color: var(--amber-primary);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #FDF7ED 0%, #F5E8D4 100%);
  color: var(--amber-primary);
  border: 1px solid rgba(175, 110, 30, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 4px 12px rgba(175, 110, 30, 0.08);
  transition: all var(--trans-normal);
}

.contact-card-icon .icon {
  font-size: 28px;
  color: var(--amber-primary);
  display: inline-block;
  transition: color var(--trans-normal), transform var(--trans-normal);
}

.contact-card:hover .contact-card-icon {
  background: linear-gradient(135deg, var(--amber-primary) 0%, var(--amber-dark) 100%);
  color: #FFFFFF;
  border-color: var(--amber-primary);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 24px rgba(175, 110, 30, 0.4);
}

.contact-card:hover .contact-card-icon .icon {
  color: #FFFFFF;
  transform: scale(1.05);
}

.contact-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
}

.contact-card-sub {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.25rem;
}

.contact-card-link {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--amber-primary);
  text-decoration: none;
  transition: color var(--trans-fast);
}

.contact-card-link:hover {
  color: var(--amber-dark);
  text-decoration: underline;
}

.contact-card-highlight {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-dark);
  cursor: default;
  line-height: 1.2;
}

.contact-city-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
}

.city-tag {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(41, 68, 40, 0.08);
}

.contact-card-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neutral-800);
  line-height: 1.55;
  margin: 0;
}

.contact-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--amber-dark);
  background: var(--amber-soft);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(175, 110, 30, 0.2);
  margin-top: auto;
}

.contact-card-badge .icon {
  font-size: 15px;
  color: var(--amber-primary);
}

.contact-mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
  margin-top: 0.6rem;
  transition: all var(--trans-fast);
}

.contact-mini-cta:hover {
  color: var(--amber-primary);
  transform: translateY(2px);
}

/* ==========================================================================
   LÁBLÉC (Footer)
   ========================================================================== */
.site-footer {
  background-color: var(--green-darkest);
  color: var(--neutral-400);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .brand-logo img {
  filter: brightness(0) invert(1);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) and (max-width: 1023px) {
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-top-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
  }
}

.footer-col h4 {
  color: var(--amber-glow);
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--neutral-600);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
}

.footer-links-list a {
  color: var(--neutral-400);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links-list a:hover {
  color: var(--amber-glow);
}

@media (max-width: 768px) {
  .site-footer {
    padding-top: 2.2rem;
    padding-bottom: 2rem;
    text-align: center;
  }

  .site-footer .brand-logo {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5rem !important;
  }

  .footer-brand-desc {
    display: none;
  }

  .footer-col-menu,
  .footer-col-packages {
    display: none !important;
  }

  .footer-top-grid {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .footer-col h4 {
    text-align: center;
    color: var(--amber-glow);
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    align-self: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 2px;
    background-color: var(--amber-primary);
  }

  .footer-links-list {
    align-items: center;
    text-align: center;
  }

  .footer-links-list a {
    justify-content: center;
  }

  .footer-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 0.75rem;
    gap: 0.15rem;
  }

  .footer-contact-item .icon {
    display: none !important;
  }

  .footer-contact-item a {
    color: var(--amber-glow);
    font-size: 1.05rem;
    font-weight: 600;
  }

  .footer-warranty-text {
    font-weight: 700 !important;
    color: #16A34A !important;
    font-size: 0.95rem;
    margin-top: 0.25rem;
  }

  .footer-bottom {
    text-align: center;
    align-items: center;
    justify-content: center;
    border-top: none;
    padding-top: 0rem;
  }
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
}

.footer-contact-item .icon {
  color: var(--amber-primary);
  font-size: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--neutral-600);
}

.footer-bottom a {
  color: var(--neutral-400);
  text-decoration: none;
  transition: color var(--trans-fast);
}

.footer-bottom a:hover {
  color: var(--amber-glow);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* Reszponzív segédosztályok */
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .hide-desktop {
    display: none !important;
  }
}

/* ==========================================================================
   ÖSSZEHASONLÍTÓ TÁBLÁZATOK
   ========================================================================== */
.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.comparison-table th {
  padding: 1.2rem 1.4rem;
  background-color: var(--green-dark);
  color: #FFFFFF;
  font-weight: 700;
}

.comparison-table td {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--neutral-300);
}

@media (max-width: 768px) {
  .comparison-table th,
  .comparison-table td {
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    min-width: 120px;
  }
}

.comparison-table tr:nth-child(even) td {
  background-color: var(--neutral-200);
}

.comparison-table tr:hover td {
  background-color: var(--amber-soft);
}

/* ==========================================================================
   LEBEGŐ MOBIL CTA SÁV (Konverzió maximalizálás okostelefonokon)
   ========================================================================== */
.mobile-floating-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: calc(70px + env(safe-area-inset-bottom, 0px));
  left: 0;
  width: 100%;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 1rem;
  z-index: 990;
  box-shadow: none !important;
  border: none !important;
  pointer-events: none;
}

.mobile-floating-cta .btn-floating-main,
.mobile-floating-cta .btn-primary {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 2.2rem;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #FFFFFF !important;
  background: linear-gradient(135deg, #15803D 0%, #16A34A 45%, #22C55E 75%, #16A34A 100%) !important;
  background-size: 250% 250% !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: var(--radius-xl) !important;
  min-height: 52px;
  box-shadow: 0 10px 28px rgba(22, 163, 74, 0.48), 0 2px 8px rgba(0, 0, 0, 0.25) !important;
  line-height: 1.2;
  text-decoration: none;
  animation: floatCtaGlow 4s ease-in-out infinite alternate, floatCtaGradient 6s ease infinite;
}

.mobile-floating-cta .btn-floating-main .icon,
.mobile-floating-cta .btn-primary .icon {
  font-size: 20px;
  color: #FFFFFF !important;
  transition: transform var(--trans-fast);
}

.mobile-floating-cta .btn-floating-main:hover .icon,
.mobile-floating-cta .btn-primary:hover .icon {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .mobile-floating-cta {
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-floating-cta .btn-floating-main,
  .mobile-floating-cta .btn-primary {
    gap: 0.55rem;
    padding: 0.85rem 1.6rem;
    font-size: 0.84rem;
    min-height: 48px;
    border-radius: var(--radius-sm) !important;
  }

  .mobile-floating-cta .btn-floating-main .icon,
  .mobile-floating-cta .btn-primary .icon {
    font-size: 18px;
  }

  .site-footer {
    padding-bottom: 5rem;
  }

  .footer-bottom {
    padding-bottom: 2rem;
  }
}

@keyframes floatCtaGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes floatCtaGlow {
  0% {
    box-shadow: 0 8px 22px rgba(22, 163, 74, 0.38), 0 2px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.55), 0 4px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
  }
  100% {
    box-shadow: 0 8px 22px rgba(22, 163, 74, 0.38), 0 2px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
  }
}

/* ==========================================================================
   ANIMÁCIÓK ÉS INTERAKTIVITÁS (Selymesen lágy Scroll-Reveal)
   ========================================================================== */
.fade-in-element {
  opacity: 1;
  transform: none;
}

.fade-in-element.is-visible {
  opacity: 1;
  transform: none;
}

/* Toast Értesítés (pl. sikeres ajánlatkérés beküldés) */
.toast-notice {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--green-dark);
  color: #FFFFFF;
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border-left: 5px solid var(--amber-primary);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: var(--trans-normal);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   SKELETON & PROGRESSIVE LOADING (Finom, természetes betöltési élmény)
   ========================================================================== */
@keyframes skeletonShimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.skeleton-loading {
  background: linear-gradient(90deg, #F0EAE1 25%, #FAF7F2 50%, #F0EAE1 75%) !important;
  background-size: 200% 100% !important;
  animation: skeletonShimmer 1.8s infinite ease-in-out !important;
  position: relative;
  overflow: hidden;
}

/* Sötét hátterű szekciókhoz illeszkedő skeleton */
.section-dark .skeleton-loading,
.hero-home .skeleton-loading {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.05) 75%) !important;
  background-size: 200% 100% !important;
}

/* Képek megjelenése betöltéskor (Desktop & Mobil) */
img[loading="lazy"] {
  opacity: 1;
  transform: none;
  filter: none;
}

img[loading="lazy"].is-loaded {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Hero és fejlécképek azonnali tiszta megjelenítése */
img[loading="eager"],
.hero-visual-wrapper img,
.brand-logo img,
.site-header img {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* Képkonténerek selymes reveal átmenete */
.quick-pkg-thumb,
.category-card-thumb,
.slide-item,
.deal-thumb,
.deal-gallery-thumb {
  background-color: var(--neutral-300);
  transition: background-color 0.4s ease;
  overflow: hidden;
}

.quick-pkg-thumb.is-loaded,
.category-card-thumb.is-loaded,
.slide-item.is-loaded,
.deal-thumb.is-loaded,
.deal-gallery-thumb.is-loaded {
  background-color: transparent;
}

/* Reduced motion akadálymentesség — finomított: dekoratív animációk korlátozása,
   de a fade-in reveal és progressive loading átmenetek gyors de látható formában megmaradnak */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  /* Scroll-reveal fade-in: mozgás nélkül, gyors de látható opacity átmenettel */
  .fade-in-element {
    transition-duration: 0.15s !important;
    transform: none !important;
  }

  /* Progressive image loading: mozgás és blur nélkül, gyors de látható opacity átmenettel */
  img[loading="lazy"] {
    transition-duration: 0.15s !important;
    transform: none !important;
    filter: none !important;
  }
}
