/* ── Gallery wrapper ── */
.gl-section {
  background: var(--bg-1);
  padding-top: 48px !important;
  padding-bottom: 60px !important;
}

.gl-gallery-wrap {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* ── Category section ── */
.gl-category-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ── Heading — centered with thin lines, matching original ── */
.gl-category-title {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  white-space: nowrap;
}

.gl-category-title::before,
.gl-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--text);
  opacity: 0.35;
}

/* ── Horizontal image strip — tight, seamless ── */
.gl-strip {
  display: flex;
  flex-direction: row;
  gap: 3px;
  overflow-x: auto;
  scrollbar-width: none; /* hide scrollbar visually */
}

.gl-strip::-webkit-scrollbar {
  display: none;
}

/* ── Image item — fixed height, natural width ── */
.gl-item {
  flex: 0 0 auto;
  height: 280px;
  width: auto;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gl-item img {
  height: 100%;
  width: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gl-item:hover img {
  transform: scale(1.07);
}

/* ── Lightbox ── */
.gl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gl-lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lb-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

.lb-close {
  position: absolute;
  top: 20px; right: 24px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
  z-index: 10;
}
.lb-close:hover { color: #fff; }

.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10;
}
.lb-arrow:hover    { background: rgba(255,255,255,0.18); }
.lb-arrow.disabled { opacity: 0.2; pointer-events: none; }
.lb-arrow--prev    { left: 20px; }
.lb-arrow--next    { right: 20px; }

.lb-footer {
  position: absolute;
  bottom: 20px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.lb-caption { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.lb-counter  { color: var(--gold); font-size: 0.85rem; font-weight: 700; }

/* ── Mobile ── */
@media (max-width: 768px) {
  .gl-item { height: 180px; }
  .lb-arrow--prev { left: 8px; }
  .lb-arrow--next { right: 8px; }
  .lb-arrow       { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .gl-item         { height: 130px; }
  .gl-gallery-wrap { gap: 40px; }
  .gl-category-title { font-size: 0.8rem; letter-spacing: 0.1em; gap: 12px; }
}
