
    .custom-gallery-section {
      padding: 60px 20px;
    }

    .gallery-title {
      text-align: center;
      font-size: 2.4rem;
      margin-bottom: 30px;
    }

    .gallery-filters {
      text-align: center;
      margin-bottom: 30px;
    }

    .gallery-tab {
      display: inline-block;
      padding: 10px 20px;
      margin: 5px;
      font-size: 22px;
      color: #262626;
      border: none;
      font-family: var(--main-font, Arial);
      cursor: pointer;
      transition: all 0.3s ease;
      background: transparent;
    }

    .gallery-tab.active,
    .gallery-tab:hover {
      color: #295d76;
      border-bottom: 2px solid #295d76;
    }

    .custom-gallery-grid {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .gallery-row {
      display: grid;
      gap: 20px;
    }

    .gallery-row.row-3 {
      grid-template-columns: repeat(3, 1fr);
    }

    .gallery-row.row-2 {
      grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 6px;
      height: 280px;
      transition: transform 0.3s;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .gallery-item:hover {
      transform: scale(1.03);
    }

    /* === Overlay === */
    .cart-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      opacity: 0;
      transition: opacity 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .gallery-item:hover .cart-overlay {
      opacity: 1;
    }

    .cart-plus {
      background-color: var(--main-bg-color);
      color: #fff;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .cart-plus:hover {
      background-color: #1f4659;
    }

    /* === Lightbox === */
    .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.85);
      display: flex;
      justify-content: center;
      align-items: center;
      visibility: hidden;
      opacity: 0;
      transition: all 0.3s ease;
      z-index: 9999;
    }

    .lightbox.active {
      visibility: visible;
      opacity: 1;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 80%;
      border-radius: 8px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }

    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 40px;
      color: #fff;
      cursor: pointer;
    }

    /* === RESPONSIVE === */
    @media (max-width: 992px) {
      .gallery-row.row-3 {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .gallery-row.row-3,
      .gallery-row.row-2 {
        grid-template-columns: 1fr;
      }

      .gallery-tab {
        width: 100%;
        margin: 8px 0;
      }
    }