.card:hover {
      cursor: pointer;
      filter:
        linear-gradient(90deg,
          rgba(28, 52, 16, 1) 0%,
          rgba(168, 214, 154, 1) 35%);

    }


    .whatsapp-float {
      position: fixed;
      bottom: 10em;
      right: 40px;
      z-index: 999;
      background-color: #25D366;
      padding: 10px;
      border-radius: 50%;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .whatsapp-icon {
      width: 50px;
      height: 50px;
    }


    .whatsapp-float:hover {
      transform: scale(1.1);
    }


    @media (max-width: 600px) {
      .whatsapp-float {
        bottom: 15px;
        right: 10px;
        padding: 8px;
      }

      .whatsapp-icon {
        width: 40px;
        height: 40px;
      }
    }

.gallery-intro {
  max-width: 860px;
  margin: 8px 0 28px;
  color: #444;
  font-size: 16px;
  line-height: 1.75;
}
.gallery-intro p { margin: 0 0 14px; }
.lead {
  display: block;
  margin: 24px 0 8px;
  color: #1c3410;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.ts-gal {
  padding-bottom: 48px;
}
.ts-gal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 28px;
}
.ts-gal-filters button {
  border: 1px solid #2d661b;
  background: #fff;
  color: #2d661b;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.ts-gal-filters button.is-active,
.ts-gal-filters button:hover,
.ts-gal-filters button:focus-visible {
  background: #2d661b;
  color: #fff;
}
.ts-gal-section {
  margin-bottom: 40px;
}
.ts-gal-section h2 {
  margin: 0 0 8px;
  color: #1c3410;
  font-size: 22px;
  font-weight: 700;
}
.ts-gal-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.ts-gal-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.ts-gal-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(28, 52, 16, 0.88);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

.ts-gal-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.82);
}
.ts-gal-lightbox[hidden] {
  display: none !important;
}
.ts-gal-lightbox img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(96vw, 1200px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.ts-gal-lightbox__caption {
  margin: 0;
  color: #fff;
  font-size: 14px;
  text-align: center;
  max-width: 90vw;
}
.ts-gal-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
