
    /* ── GALÉRIA OLDAL STÍLUSOK ── */

    .gallery-hero {
      padding: 8rem 2rem 4rem;
      text-align: center;
      max-width: 700px;
      margin: 0 auto;
    }

    .gallery-hero h1 {
      font-family: 'Fraunces', serif;
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 1rem;
    }

    .gallery-hero h1 em {
      font-style: italic;
      font-weight: 300;
    }

    .gallery-hero p {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.1rem;
      color: #555;
      max-width: 500px;
      margin: 0 auto;
    }

    /* ── SZŰRŐ GOMBOK ── */
    .filter-bar {
      display: flex;
      justify-content: center;
      gap: 0.75rem;
      flex-wrap: wrap;
      padding: 2rem 1rem 3rem;
    }

    .filter-btn {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      padding: 0.55rem 1.4rem;
      border-radius: 999px;
      border: 1.5px solid #ddd;
      background: transparent;
      color: #555;
      cursor: pointer;
      transition: all 0.2s ease;
      letter-spacing: 0.02em;
    }

    .filter-btn:hover {
      border-color: #333;
      color: #111;
    }

    .filter-btn.active {
      background: #111;
      color: #fff;
      border-color: #111;
    }


    .gallery-item {
      break-inside: avoid;
      margin-bottom: 1.2rem;
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      background: #f0ece6;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .gallery-item.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .gallery-item img {
      width: 100%;
      display: block;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.04);
    }

    /* Placeholder ha nincs kép */
    .gallery-placeholder {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 0.5rem;
      font-family: 'DM Sans', sans-serif;
      color: #999;
      font-size: 0.85rem;
      background: #f0ece6;
    }

    .gallery-placeholder .placeholder-emoji {
      font-size: 2.5rem;
      opacity: 0.5;
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.3s ease;
      display: flex;
      align-items: flex-end;
      padding: 1.2rem;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .overlay-text {
      color: #fff;
      font-family: 'DM Sans', sans-serif;
    }

    .overlay-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      opacity: 0.75;
      margin-bottom: 0.2rem;
    }

    .overlay-title {
      font-size: 1rem;
      font-weight: 500;
      line-height: 1.3;
    }

    /* ── LIGHTBOX ── */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .lightbox.open {
      opacity: 1;
      pointer-events: all;
    }

    .lightbox-inner {
      position: relative;
      max-width: 90vw;
      max-height: 90vh;
      text-align: center;
    }

    .lightbox-inner img {
      max-width: 100%;
      max-height: 80vh;
      border-radius: 12px;
      object-fit: contain;
    }

    .lightbox-placeholder {
      width: min(600px, 85vw);
      height: min(400px, 60vh);
      background: #1a1a1a;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 1rem;
      color: #666;
      font-family: 'DM Sans', sans-serif;
    }

    .lightbox-placeholder .placeholder-emoji {
      font-size: 4rem;
      opacity: 0.4;
    }

    .lightbox-caption {
      margin-top: 1rem;
      color: #ccc;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
    }

    .lightbox-caption strong {
      color: #fff;
      display: block;
      font-size: 1.1rem;
      margin-bottom: 0.2rem;
    }

    .lightbox-close {
      position: absolute;
      top: -2.5rem;
      right: 0;
      background: none;
      border: none;
      color: #fff;
      font-size: 1.8rem;
      cursor: pointer;
      opacity: 0.7;
      transition: opacity 0.2s;
      font-family: 'DM Sans', sans-serif;
    }

    .lightbox-close:hover { opacity: 1; }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.1);
      border: none;
      color: #fff;
      font-size: 1.5rem;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      cursor: pointer;
      transition: background 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lightbox-nav:hover { background: rgba(255,255,255,0.2); }
    .lightbox-nav.prev { left: -3.5rem; }
    .lightbox-nav.next { right: -3.5rem; }

    @media (max-width: 700px) {
      .lightbox-nav.prev { left: 0.5rem; }
      .lightbox-nav.next { right: 0.5rem; }
    }

    /* ── GALÉRIA MAPPÁK ── */
    .gallery-folders {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 2rem 5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (max-width: 600px) {
      .gallery-folders { padding: 0 1rem 4rem; }
    }

    .gallery-folder {
      border-radius: 20px;
      overflow: hidden;
      border: 1.5px solid #e8e3dc;
      background: #faf8f5;
      transition: box-shadow 0.2s ease;
    }

    .gallery-folder:hover {
      box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    }

    .folder-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.2rem 1.6rem;
      cursor: pointer;
      user-select: none;
      transition: background 0.2s ease;
    }

    .folder-header:hover {
      background: #f3ede5;
    }

    .folder-icon {
      font-size: 1.8rem;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .gallery-folder.open .folder-icon {
      transform: rotate(-10deg) scale(1.1);
    }

    .folder-meta {
      flex: 1;
      min-width: 0;
    }

    .folder-title {
      font-family: 'Fraunces', serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: #111;
      margin: 0 0 0.15rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .folder-subtitle {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8rem;
      color: #999;
    }

    .folder-arrow {
      font-size: 1.1rem;
      color: #bbb;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .gallery-folder.open .folder-arrow {
      transform: rotate(90deg);
      color: #555;
    }

    .folder-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .gallery-folder.open .folder-body {
      max-height: 9999px;
    }

    .folder-body-inner {
      padding: 0 1.2rem 1.4rem;
    }

    /* ── MASONRY GRID (mappa belsejében) ── */
    .masonry-grid {
      column-count: 3;
      column-gap: 1rem;
    }

    @media (max-width: 900px) {
      .masonry-grid { column-count: 2; }
    }

    @media (max-width: 560px) {
      .masonry-grid { column-count: 1; }
    }

    /* ── ÜRES ÁLLAPOT ── */
    .empty-state {
      text-align: center;
      padding: 4rem 2rem;
      font-family: 'DM Sans', sans-serif;
      color: #999;
      display: none;
    }

    .empty-state .big-emoji { font-size: 3rem; margin-bottom: 1rem; }
