 .gallery-section {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 60px 20px;
      background-color: #ffffff;
      box-sizing: border-box;
    }

    .gallery-grid {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 1200px;
    }

    .gallery-group-outer {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
    }

    .gallery-group-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      width: 100%;
    }

    /* ===== GALLERY HEADING ===== */
    .gallery-heading-wrapper {
      width: 100%;
      text-align: center;
    }

    .gallery-heading {
      font-size: 48px;
      font-weight: 900;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #1a1a1a;
      margin: 0;
      line-height: 1.1;
      text-align: center;
    }

    /* ===== GALLERY BUTTON WRAPPER ===== */
    .gallery-button-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
    }

    /* ===== GALLERY BUTTON ===== */
    .gallery-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background-color: #1a1a1a;
      color: #ffffff;
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.02em;
      padding: 14px 32px;
      border: 2px solid #1a1a1a;
      cursor: pointer;
      transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
      outline: none;
      position: relative;
      overflow: hidden;
    }

    .gallery-btn:hover {
      background-color: #ffffff;
      color: #1a1a1a;
      transform: translateY(-1px);
    }

    .gallery-btn:active {
      transform: translateY(0px);
    }

    /* ===== BUTTON ICON (star SVG) ===== */
    .gallery-btn-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    .gallery-btn-icon svg {
      width: 100%;
      height: 100%;
      fill: currentColor;
      transition: fill 0.2s ease;
    }

    /* ===== BUTTON TEXT ===== */
    .gallery-btn-text {
      line-height: 1;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .gallery-heading {
        font-size: 32px;
      }

      .gallery-section {
        padding: 40px 16px;
      }

      .gallery-btn {
        font-size: 14px;
        padding: 12px 24px;
      }
    }

    @media (max-width: 480px) {
      .gallery-heading {
        font-size: 26px;
      }
    }

    /* ===== PHOTO GALLERY SECTION ===== */

.photo-gallery-section {
  background-color: rgb(36 36 36);
  width: 100%;
  padding: 80px 24px;
  box-sizing: border-box;
  position: relative;
}
.photo-gallery-section::before {
   content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://lirp.cdn-website.com/7ae2b340/dms3rep/multi/opt/gun-metal-2880w.png');
  background-repeat: repeat;
  background-size: 10px auto;
  opacity: 0.5; /* 👈 adjust this 0 = invisible, 1 = full */
  z-index: 0;
}

.photo-gallery-grid {
  width: 100%;
  max-width: 100%;
}

.photo-gallery-group-outer,
.photo-gallery-group-inner {
  width: 100%;
}

.photo-gallery-widget-wrapper {
  width: 100%;
}

.photo-gallery-container {
  width: 100%;
}

/* ===== HOLDER ===== */
.photo-gallery-holder {
  width: 100%;
  display: block;
  padding: 80px 200px;
}

/* ===== ROW ===== */
.photo-gallery-row {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  gap: 0;
}

/* ===== COLUMN ===== */
.photo-gallery-column {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
}

.photo-gallery-column--empty {
  visibility: hidden;
}

/* ===== THUMB ===== */
.photo-gallery-thumb {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.photo-gallery-thumb-inner {
  width: 100%;
  height: 100%;
}

/* ===== IMAGE CONTAINER ===== */
.photo-gallery-image-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  display: block;
}

/* ===== THUMB LINK ===== */
.photo-gallery-thumb-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  cursor: pointer;
  outline: none;
}

.photo-gallery-thumb-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.25s ease;
}

.photo-gallery-thumb-link:hover::after {
  background: rgba(0, 0, 0, 0.2);
}

/* ===== THUMBNAIL IMAGE ===== */
.photo-gallery-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.photo-gallery-thumb-link:hover img {
  transform: scale(1.04);
}

/* ===== BORDER BETWEEN CELLS ===== */
.photo-gallery-image-container {
  border: 2px solid #2a2a2a;
}

/* ===== LIGHTBOX OVERLAY ===== */
.photo-gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.photo-gallery-lightbox.photo-gallery-lightbox--open {
  display: flex;
}

.photo-gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.92;
}

.photo-gallery-lightbox-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* ===== COUNTER (top-left) ===== */
.photo-gallery-lightbox-counter {
  position: absolute;
  top: 16px;
  left: 20px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  z-index: 10;
  user-select: none;
}

/* ===== CLOSE BUTTON (top-right) ===== */
.photo-gallery-lightbox-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.photo-gallery-lightbox-close:hover { opacity: 1; }

.photo-gallery-lightbox-close svg {
  width: 22px;
  height: 22px;
}

/* ===== ACTION BUTTONS (top-right row) ===== */
.photo-gallery-lightbox-action {
  position: absolute;
  top: 14px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.15s ease;
}

.photo-gallery-lightbox-action:hover { opacity: 1; }

.photo-gallery-lightbox-action svg {
  width: 20px;
  height: 20px;
}

#pgLightboxZoom    { right: 160px; }
#pgLightboxFullscreen { right: 112px; }
#pgLightboxShare   { right: 64px; }

/* ===== NAV BUTTONS ===== */
.photo-gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 16px 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.15s ease;
}

.photo-gallery-lightbox-nav:hover { opacity: 1; }

.photo-gallery-lightbox-nav svg {
  width: 28px;
  height: 28px;
}

.photo-gallery-lightbox-prev { left: 8px; }
.photo-gallery-lightbox-next { right: 8px; }

/* ===== LIGHTBOX IMAGE ===== */
.photo-gallery-lightbox-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100vw - 120px);
  max-height: calc(100vh - 80px);
}

.photo-gallery-lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 80px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  user-select: none;
}

/* ===== ZOOMED STATE ===== */
.photo-gallery-lightbox--zoomed .photo-gallery-lightbox-img {
  max-width: none;
  max-height: none;
  cursor: zoom-out;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .photo-gallery-row {
    flex-wrap: wrap;
  }
  .photo-gallery-column {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .photo-gallery-lightbox-img-wrap {
    max-width: calc(100vw - 60px);
  }
  #pgLightboxZoom,
  #pgLightboxFullscreen,
  #pgLightboxShare { display: none; }
}

@media (max-width: 480px) {
  .photo-gallery-column {
    flex: 0 0 50%;
    max-width: 50%;
  }
}