 /* Category Tabs */
    .category-tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px;
      margin-bottom: 40px;
    }

    .tab-button {
      padding: 12px 32px;
      border: none;
      border-radius: 50px;
      font-size: 18px;
      font-weight:500;
      color: white;
      cursor: pointer;
      transition: all 0.3s ease;
      background:#2c2c2c;
      /* inactive / default color */
    }

    .tab-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    }

    .tab-button.active {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    }


        .tab-button {
      padding: 12px 32px;
      border: none;
      border-radius: 50px;
      font-size: 18px;
      font-weight:500;
      color: white;
      cursor: pointer;
      transition: all 0.3s ease;
      background:#2c2c2c;
      /* inactive / default color */
    }

    .tab-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    }

    

    /* Active category colors */
    .tab-award.active {
      background: #619f3b;
    }

    /* green  */
    .tab-cookies.active {
      background: #1f83b5;
    }

    /* blue   */
    .tab-food.active {
      background: #38b08e;
    }

    /* orange */
    .tab-cakes.active {
      background: #976100;
    }

    /* purple */

    /* Gallery Grid */
    .cookies-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 24px;
    }

    .gallery-card {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      background: white;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.09);
      cursor: pointer;
      aspect-ratio: 1 / 1;
      transition: transform 0.3s ease;
    }

    .gallery-card:hover {
      transform: translateY(-6px);
    }

    .gallery-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s ease;
    }

    .gallery-card:hover img {
      transform: scale(1.12);
    }

    .zoom-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      opacity: 0;
      transition: opacity 0.35s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gallery-card:hover .zoom-overlay {
      opacity: 1;
    }

    .zoom-icon {
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.92);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: #2c1a0f;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
      transition: transform 0.3s;
    }

    .gallery-card:hover .zoom-icon {
      transform: scale(1.2);
    }

    /* Lightbox */
    .shubhy-lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.94);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      overflow: auto;
      padding: 20px;
    }

    .shubhy-lightbox.active {
      display: flex;
    }

    .lightbox-content {
      position: relative;
      max-width: 94vw;
      max-height: 90vh;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    }

    .lightbox-image {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.4s ease;
      cursor: zoom-in;
    }

    .lightbox-image.zoomed {
      cursor: zoom-out;
    }

    .lightbox-controls {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 20px;
      background: rgba(0, 0, 0, 0.5);
      padding: 12px 24px;
      border-radius: 50px;
      color: white;
      font-size: 1.6rem;
    }

    .zoom-btn {
      cursor: pointer;
      transition: transform 0.2s;
    }

    .zoom-btn:hover {
      transform: scale(1.2);
    }

    .lightbox-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: #fff;
      font-size: 4.5rem;
      cursor: pointer;
      user-select: none;
      padding: 20px;
      transition: color 0.25s;
    }

    .lightbox-control:hover {
      color: #ccc;
    }

    .control-prev {
      left: 15px;
    }

    .control-next {
      right: 15px;
    }

    .lightbox-close {
      position: absolute;
      top: 25px;
      right: 35px;
      color: white;
      font-size: 3.8rem;
      cursor: pointer;
      line-height: 1;
      z-index: 10;
    }

    @media (max-width: 640px) {
      .cookies-gallery {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 16px;
      }

      .tab-button {
        padding: 10px 24px;
        font-size: 0.98rem;
      }

      .lightbox-control {
        font-size: 3.2rem;
      }

      .lightbox-controls {
        font-size: 1.4rem;
        padding: 10px 20px;
        bottom: 15px;
      }
    }