

    .new-filter {
      text-align: center;
      padding: 60px 20px 40px;
    }

    .new-filter h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
      color: #333;
    }

    .new-filter p {
      font-size: 1.1rem;
      color: #555;
    }

    .filter-buttons {
      text-align: center;
      margin: -50px 0 30px 0;
    }

    .filter-buttons button {
      border: none;
      padding: 10px 20px;
      margin: 5px;
      border-radius: 25px;
      cursor: pointer;
      font-size: 1rem;
      transition: 0.3s;
    }

    .filter-buttons button:hover,
    .filter-buttons button.active {
      background: #c5e3f6;
      transform: scale(1.05);
    }

    .gallery {
      display: grid;
      gap: 20px;
      padding: 0 20px 60px;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .gallery-item:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 15px;
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 80%;
      border-radius: 10px;
    }

    .lightbox:target {
      display: flex;
    }
