.products-hero {
    position: relative;
    height: 93vh;
    background: linear-gradient(135deg, #038544, #1b6202);
    color: #fff;
    display: flex;
    align-items: center;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
  }
  
  .hero-content {
    position: relative;
    max-width: 700px;
    margin-top: 4rem;
  }
  
  .hero-tag {
    color: #fff;
    font-weight: 600;
    letter-spacing: 2px;
  }
  
  .products-hero h1 {
    font-size: 3.2rem;
    margin: 15px 0;
  }
  
  .products-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
  }
  
  .hero-actions {
    margin-top: 30px;
  }
  /* ===============================
   GLOBAL BUTTON SYSTEM
   =============================== */

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
  }
  
  /* Base button */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.35s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
  }
  
  /* PRIMARY (Green CTA) */
  .btn.primary {
    background: linear-gradient(135deg, #9be15d, #3bb78f);
    color: #0f3d2e;
    box-shadow: 0 10px 25px rgba(59, 183, 143, 0.35);
  }
  
  .btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(59, 183, 143, 0.5);
  }
  
  /* OUTLINE (Secondary CTA) */
  .btn.outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.65);
  }
  
  .btn.outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #9be15d;
    color: #9be15d;
    transform: translateY(-3px);
  }
  
  /* SMALL BUTTON (Product cards) */
  .btn.small {
    padding: 10px 22px;
    font-size: 0.85rem;
    border-radius: 30px;
    background: #0f3d2e;
    color: #ffffff;
  }
  
  .btn.small:hover {
    background: #1f6b4f;
  }
  
  /* Accessibility */
  .btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(155, 225, 93, 0.5);
  }
  
  /* ===============================
     MOBILE OPTIMIZATION
     =============================== */
  
  @media (max-width: 768px) {
    .hero-actions {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .btn {
      width: 100%;
      text-align: center;
    }
  }
  
  
  /* FILTER */
  .products-filter {
    background: #f4f6f5;
    border-bottom: 1px solid #ddd;
  }
  
  .products-filter .container {
    display: flex;
    gap: 25px;
  }
  
  .filter-btn {
    background: none;
    border: none;
    font-weight: 600;
    padding: 18px 5px;
    cursor: pointer;
    position: relative;
    color: #555;
  }
  
  .filter-btn.active,
  .filter-btn:hover {
    color: #0f3d2e;
  }
  
  .filter-btn.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: #9be15d;
  }
  
  /* PRODUCTS */
 /* ===============================
   PRODUCT CARD – IMAGE FOCUS
   =============================== */

.product-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 55px rgba(0,0,0,0.15);
  }
  
  /* IMAGE CONTAINER */
  .product-image {
    position: relative;
    width: 100%;
    height: 360px; /* BIGGER & CLEAR */
    overflow: hidden;
  }
  
  /* ACTUAL IMAGE */
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* CRITICAL */
    transition: transform 0.6s ease;
  }
  
  /* ZOOM ON HOVER */
  .product-card:hover .product-image img {
    transform: scale(1.08);
  }
  
  /* ===============================
     IMAGE OVERLAY (HOVER SPECS)
     =============================== */
  
  .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(15, 61, 46, 0.15),
      rgba(15, 61, 46, 0.85)
    );
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .product-card:hover .image-overlay {
    opacity: 1;
  }
  
  .image-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
  }
  
  .image-overlay span {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.4;
  }
  
  /* ===============================
     PRODUCT CONTENT (BELOW IMAGE)
     =============================== */
  
  .product-content {
    padding: 25px;
  }
  
  .product-content h3 {
    color: #0f3d2e;
    margin-bottom: 8px;
  }
  
  .product-content p {
    font-size: 0.95rem;
    color: #555;
  }
  
  .product-content ul {
    margin: 15px 0;
    padding-left: 18px;
  }
  
  .product-content ul li {
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 6px;
  }
  
  
  /* ===============================
     MOBILE OPTIMIZATION
     =============================== */
  
  @media (max-width: 768px) {
    .product-image {
      height: 220px;
    }
    .products-filter{
      display: none;
    }
    .products-hero{
      padding-top: 6rem;
      padding-bottom: 5rem;
      margin-bottom: 1rem;
    }
  
    .image-overlay {
      padding: 15px;
    }
  }
  
  


  