.gallery-section {
    /* padding: 90px 0; */
    background: #101010;
    color: #fff;
  }
  
  .gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 50px;
  }
  
  .gallery-header h2 {
    margin: 0;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.04em;
  }
  
  .gallery-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .gallery-filter {
    border: 0;
    background: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    padding: 6px 16px;
    transition: all 0.3s ease;
  }
  
   .gallery-filter:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
  }

  .gallery-filter.is-active {
    color: rgb(255, 255, 255);
    background: rgba(255,255,255,0.06);
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
  }
  
  .gallery-card {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 0;
    padding: 0;
    border-radius: 16px;
    background: #1a1a1a;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0);
    transition: border-color 0.3s ease;
  }

  .gallery-card:hover{
    border-color: rgba(255,255,255,0.28);
  }
  
  .gallery-card.is-hidden {
    display: none;
  }
  
  .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.55s ease;
    opacity: 1;
  }
  
  .gallery-card:hover img {
    transform: scale(1.06);
    opacity: 1;
  }
  
  .gallery-actions {
    display: flex;
    justify-content: center;
    margin-top: 54px;
  }
  
  .gallery-show-more {
    min-width: 145px;
    min-height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
  }
  
  .gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    padding: 40px;
  }
  
  .gallery-lightbox.is-open {
    display: flex;
  }
  
  .lightbox-image {
    max-width: min(1100px, 82vw);
    max-height: 82vh;
    object-fit: contain;
  }
  
  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    position: absolute;
    border: 0;
    background: rgba(255,255,255,0.08);
    color: #fff;
    cursor: pointer;
  }
  
  .lightbox-close {
    top: 28px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 34px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 999px;
    font-size: 22px;
  }
  
  .lightbox-prev {
    left: 32px;
  }
  
  .lightbox-next {
    right: 32px;
  }
  
  .no-scroll {
    overflow: hidden;
  }
  
  @media (max-width: 992px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .gallery-header {
      align-items: flex-start;
      flex-direction: column;
    }
  }
  
  @media (max-width: 576px) {
    .gallery-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  
    .gallery-filters {
      gap: 8px;
    }
  }