.organic-products-banner {
  position: relative;
  width: 100%;
  
  min-height: 420px;
  background-image: url("../img/organic-products/banner-oil.jpg");
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif !important;
}

.organic-products-banner .organic-products-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.organic-products-banner .organic-products-banner-content {
  position: relative;
  z-index: 2;
  padding-left: 8%;
  padding-right: 20px;
  margin-bottom: 20px;
}

.organic-products-banner .organic-products-banner-title {
  color: #ffffff;
  font-size: 36px !important;
  font-weight: 800 !important;
  margin: 0;
  letter-spacing: -0.5px;
  /* line-height: 1rem; */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif !important;
}

.organic-products-banner .organic-products-svg-divider {
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.organic-products-banner .organic-products-svg-divider svg {
  position: relative;
  display: block;
  width: 100%;
  height: 64px;
}

@media (max-width: 768px) {
  .organic-products-banner .organic-products-banner-content {
    padding-left: 5%;
  }
}
@media (max-width: 690px) {
  .organic-products-banner {
    min-height: 250px;
  }
  .organic-products-banner .organic-products-banner-title {
    font-size: 20px !important;
  }
}
 .organic-category-grid-section {
        width: 100%;
        padding: 50px 20px;
        background-color: #ffffff;
        font-family: Arial, Helvetica, sans-serif;
        box-sizing: border-box;
    }

   .organic-category-grid-section  .category-container {
        max-width: 1040px;
        width: 80%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .organic-category-grid-section .category-row {
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    
     .organic-category-grid-section .row-2-col {
        padding: 0 50px;
        gap: 60px; 
    }

    .organic-category-grid-section  .row-2-col .category-card {
    
        max-width: 470px;
    }

  
    .organic-category-grid-section .row-2-col .category-card img {
        width: 320px;
    }

    .organic-category-grid-section .row-3-col {
        margin-top: 30px;
    }

    .organic-category-grid-section .row-3-col .category-card {
        flex: 1;
        max-width: 300px;
    }

    .organic-category-grid-section .category-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .organic-category-grid-section .category-image-frame {
        width: 100%;
        /* height: 200px; */
        /* border-radius: 4px; */
        overflow: hidden;
      
        margin-bottom: 15px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

  
    .organic-category-grid-section .category-image-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

     .organic-category-grid-section .category-btn {
        width: 100%;
        padding: 11px 10px;
        background: linear-gradient(45deg, #0c4b04, #4de53a);
        color: #ffffff;
        font-family: 'Raleway', Helvetica, Arial, Lucida, sans-serif;
        font-weight: 700;
        font-size: 22px;
        line-height: 1.1em;
        text-align: center;
        text-decoration: none;
        border-radius: 10px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
        box-sizing: border-box;
        transition: opacity 0.2s ease, transform 0.2s ease;
        white-space: nowrap;
    }

    .organic-category-grid-section .category-btn:hover {
        opacity: 0.95;
        transform: translateY(-2px);
    }

    @media (max-width: 850px) {
       .organic-category-grid-section  .category-row {
            flex-wrap: wrap;
        }

       .organic-category-grid-section  .row-2-col {
            padding: 0;
            gap: 30px;
        }

        .organic-category-grid-section .row-2-col .category-card,
        .organic-category-grid-section .row-3-col .category-card {
            max-width: 45%;
            min-width: 260px;
        }
    }

    @media (max-width: 580px) {
       .organic-category-grid-section  .row-2-col .category-card,
       .organic-category-grid-section  .row-3-col .category-card {
            max-width: 100%;
            width: 100%;
        }

        .organic-category-grid-section .category-btn {
            font-size: 0.9rem;
            white-space: normal;
        }
    }