body{
    font-family: "Poppins", sans-serif;
}
.bg-green{
    background-color: #087436!important;
}
.text-green{
    color: #087436!important;
}

.header_menu .navbar-brand {
	max-width: 200px;
}


    .hero-section {
      position: relative;
      height: 100vh;
      width: 100vw;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      overflow: hidden;
    }

    /* YouTube video container */
    .video-container {
      position: absolute;
      top: 0;
      left: 0;
      z-index: -2;
      width: 100%;
      height: 100%;
      pointer-events: none;
      overflow: hidden;
    }

    /* Fake object-fit: cover for iframe using aspect-ratio math */
    .video-container iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 120vw;
      height: 67.5vw; /* 120 / (16/9) = 67.5 */
      max-width: none;
      transform: translate(-50%, -50%);
    }

    @media (max-aspect-ratio: 16/9) {
      .video-container iframe {
        width: 177.78vh; /* 100 * 16 / 9 */
        height: 100vh;
      }
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: -1;
    }

    .hero-content {
      z-index: 1;
    }

      .product-card {
    display: none;
  }
  .product-card.show {
    display: block !important;
  }
  .filter-btn.active {
    font-weight: bold;
    border-bottom: 2px solid #000;
  }