    .hero *{
        overflow-x: hidden !important;
        overflow-y: hidden !important;
    }

    .hero-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 20%),
            radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 20%);
        z-index: 2;
    }

    .hero-shapes {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
        overflow: hidden;
    }

    .hero-shape {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
    }

    .hero-shape-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        left: -100px;
    }

    .hero-shape-2 {
        width: 500px;
        height: 500px;
        bottom: -200px;
        right: -200px;
    }

    .hero-shape-3 {
        width: 200px;
        height: 200px;
        top: 30%;
        right: 10%;
    }
  /* Product page specific styles */
  .product-section {
      padding: 40px 0; /* Reduced from 60px */
  }
  
  .product-section:first-of-type {
      padding-top: 120px; /* Reduced from 140px */
  }
  
  /* Category Overview Styles - Made much more compact */
  .categories-overview {
      padding: 20px 0; /* Reduced from 30px */
  }
  
  .categories-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 20px; /* Increased slightly for better spacing without boxes */
      max-width: 1100px;
      margin: 0 auto;
  }
  
  @media (min-width: 576px) {
      .categories-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }
  
  @media (min-width: 768px) {
      .categories-grid {
          grid-template-columns: repeat(3, 1fr); /* Always 3 per row on larger screens */
      }
  }
  
  /* Category Card - Removed box styling, clean minimal design */
  .category-card {
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 10px; /* Minimal padding */
      transition: all 0.3s ease;
      position: relative;
      /* Removed all box styling - no background, border, etc. */
  }
  
  .category-card:hover {
      transform: translateY(-5px);
      /* Removed box shadow and border effects */
  }
  
  /* Category Image Container - Increased size, removed box styling */
  .category-image-container {
      width: 120px; /* Increased from 80px */
      height: 120px; /* Increased from 80px */
      margin-bottom: 15px; /* Increased margin for better spacing */
      position: relative;
      border-radius: 50%;
      overflow: hidden;
      /* Removed border */
      transition: all 0.3s ease;
      background: linear-gradient(135deg, #f0f8f0 0%, #e8f4e5 100%);
      box-shadow: 0 4px 15px rgba(122, 181, 92, 0.1); /* Subtle shadow for the image circle */
  }
  
  .category-card:hover .category-image-container {
      transform: scale(1.1); /* Increased hover effect */
      box-shadow: 0 6px 20px rgba(122, 181, 92, 0.2); /* Enhanced shadow on hover */
  }
  
  .category-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
  }
  
  .category-card:hover .category-image {
      transform: scale(1.1);
  }
  
  /* Default category icon for categories without images */
  .category-icon {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem; /* Increased from 2rem to match larger container */
      color: #7ab55c;
      background: linear-gradient(135deg, #f0f8f0 0%, #e8f4e5 100%);
  }
  
  /* Category Info - Clean minimal styling */
  .category-info h3 {
      font-size: 1.2rem; /* Slightly increased */
      font-weight: 600;
      color: #333;
      margin-bottom: 5px;
      transition: color 0.3s ease;
  }
  
  .category-card:hover .category-info h3 {
      color: #2e7d32;
  }
  
  .category-info p {
      display: none; /* Keep descriptions hidden to maintain clean look */
  }
  
  .product-count {
      background-color: #7ab55c;
      color: white;
      padding: 4px 12px; /* Slightly increased */
      border-radius: 15px;
      font-size: 0.8rem; /* Slightly increased */
      font-weight: 500;
      transition: all 0.3s ease;
  }
  
  .category-card:hover .product-count {
      background-color: #2e7d32;
      transform: scale(1.05);
  }
  
  /* Animation for category cards */
  .category-card {
      animation: fadeInUp 0.6s ease forwards;
      opacity: 0;
      transform: translateY(30px);
  }
  
  .category-card:nth-child(1) { animation-delay: 0.1s; }
  .category-card:nth-child(2) { animation-delay: 0.2s; }
  .category-card:nth-child(3) { animation-delay: 0.3s; }
  .category-card:nth-child(4) { animation-delay: 0.4s; }
  .category-card:nth-child(5) { animation-delay: 0.5s; }
  .category-card:nth-child(6) { animation-delay: 0.6s; }
  
  @keyframes fadeInUp {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  /* Category Section Styles */
  .category-section {
      padding: 30px 0; /* Reduced from 40px */
      border-bottom: 1px solid #eee;
  }
  
  .category-section:last-child {
      border-bottom: none;
  }
  
  /* Category Header */
  .category-header {
      text-align: center;
      margin-bottom: 25px; /* Reduced from 40px */
  }
  
  .category-header h2 {
      font-size: 1.8rem; /* Reduced from 2.2rem */
      color: var(--primary-dark);
      margin-bottom: 8px; /* Reduced from 10px */
      position: relative;
      display: inline-block;
      padding-bottom: 10px; /* Reduced from 15px */
  }
  
  .category-header h2:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 50px; /* Reduced from 60px */
      height: 2px; /* Reduced from 3px */
      background-color: #2e7d32;
  }
  
  /* Product Grid Layout */
  .products-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 15px; /* Reduced from 20px */
      margin-top: 25px; /* Reduced from 40px */
  }
  
  @media (min-width: 576px) {
      .products-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }
  
  @media (min-width: 992px) {
      .products-grid {
          grid-template-columns: repeat(3, 1fr);
      }
  }
  
  @media (min-width: 1200px) {
      .products-grid {
          grid-template-columns: repeat(4, 1fr);
      }
  }
  
  /* Product Card Styles */
  .product-card {
      background-color: var(--white);
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid #e0e0e0;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      text-decoration: none;
      color: inherit;
      position: relative;
  }
  
  .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  /* Square image container for 1080x1080 images */
  .product-image {
      position: relative;
      width: 100%;
      padding-bottom: 100%; /* Creates a square aspect ratio */
      overflow: hidden;
      background-color: #f9f9f9;
  }
  
  .product-image img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
  }
  
  .product-card:hover .product-image img {
      transform: scale(1.05);
  }
  
  .organic-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 50px;
      height: 50px;
      z-index: 2;
  }
  
  .product-info {
      padding: 12px; /* Reduced from 15px */
      border-top: 1px solid #aba7a7;
      padding-bottom: 5px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
  }
  
  .product-sku {
      font-size: 0.8rem;
      color: #666;
      margin-bottom: 5px;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  
  .stock-label {
      background-color: #0099cc;
      color: white;
      padding: 2px 8px;
      border-radius: 3px;
      font-size: 0.7rem;
      font-weight: 500;
  }
  
  .product-name {
      font-size: 0.95rem; /* Reduced from 1rem */
      margin: 8px 0; /* Reduced from 10px */
      color: #333;
      text-align: center;
      font-weight: 500;
      line-height: 1.3;
      min-height: 35px; /* Reduced from 40px */
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .get-quote-btn {
      background-color: #e8f4e5;
      color: #2e7d32;
      border: none;
      padding: 8px 16px; /* Reduced from 10px 20px */
      border-radius: 30px;
      font-weight: 600;
      cursor: pointer;
      text-align: center;
      margin-top: 8px; /* Reduced from 10px */
      transition: all 0.3s ease;
      text-decoration: none;
      display: block;
      box-shadow: 0 2px 5px rgba(46, 125, 50, 0.1);
      font-size: 0.9rem; /* Added smaller font size */
  }
  
  .get-quote-btn:hover {
      background-color: #2e7d32;
      color: white;
      box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2);
      transform: translateY(-2px);
  }
  
  .enquiry-btn-wrapper {
      padding: 0 12px 12px; /* Reduced from 15px */
      margin-top: auto;
  }
  
  /* Category Navigation with Search Bar */
  .category-nav {
      background-color: #f8f9fa;
      padding: 12px 0; /* Reduced from 15px */
      position: sticky;
      top: 100px;
      z-index: 100;
      border-bottom: 1px solid #eee;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .category-nav .container {
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  /* Search Styles */
  .search-wrapper {
      display: flex;
      align-items: center;
      width: 100%;
      max-width: 500px; /* Reduced from 600px */
      margin: 0 auto;
  }
  
  .search-container {
      display: flex;
      border-radius: 50px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      width: 100%;
      transition: all 0.3s ease;
  }
  
  .search-container:focus-within {
      box-shadow: 0 6px 15px rgba(46, 125, 50, 0.15);
      transform: translateY(-2px);
  }
  
  .search-input {
      padding: 10px 20px; /* Reduced from 12px 24px */
      border: none;
      font-size: 0.95rem; /* Reduced from 1rem */
      width: 100%;
      min-width: unset;
  }
  
  .search-input:focus {
      outline: none;
  }
  
  .search-button {
      background-color: #2e7d32;
      color: white;
      border: none;
      padding: 0 20px; /* Reduced from 24px */
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 50px; /* Reduced from 60px */
      transition: background-color 0.3s ease;
  }
  
  .search-button:hover {
      background-color: #1b5e20;
  }
  
  .search-button i {
      font-size: 1rem; /* Reduced from 1.1rem */
  }
  
  /* Section Header - Made more compact */
  .section-header {
      text-align: center;
      margin-bottom: 15px; /* Reduced from 25px */
  }
  
  .section-header h2 {
      font-size: 1.8rem; /* Reduced from 2rem */
      color: var(--primary-dark);
      margin-bottom: 5px; /* Reduced from 8px */
      position: relative;
      display: inline-block;
      padding-bottom: 8px; /* Reduced from 12px */
  }
  
  .section-header h2:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 50px; /* Reduced from 60px */
      height: 2px;
      background-color: #2e7d32;
  }
  
  .section-header p {
      color: var(--text-light);
      max-width: 500px; /* Reduced from 600px */
      margin: 0 auto;
      font-size: 0.9rem; /* Reduced from 1rem */
  }
  
  /* No products message */
  .no-products {
      text-align: center;
      padding: 30px; /* Reduced from 40px */
      background-color: #f9f9f9;
      border-radius: 10px;
      margin: 30px 0; /* Reduced from 40px */
      grid-column: 1 / -1;
  }
  
  /* Search Results Styles */
  .search-results-header {
      background-color: #f0f8f0;
      padding: 15px; /* Reduced from 20px */
      border-radius: 8px;
      margin-bottom: 20px; /* Reduced from 30px */
      text-align: center;
  }
  
  .search-results-header h3 {
      color: #2e7d32;
      margin-bottom: 5px;
  }
  
  .search-results-header p {
      color: #666;
      margin: 0;
  }
  
  /* View All Products Button */
  .view-all-products {
      text-align: center;
      margin-top: 30px; /* Reduced from 40px */
  }
  
  .view-all-products .btn {
      background-color: #7ab55c;
      color: white;
      padding: 10px 25px; /* Reduced from 12px 30px */
      border-radius: 25px; /* Reduced from 30px */
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
      font-size: 0.95rem; /* Added smaller font size */
  }
  
  .view-all-products .btn:hover {
      background-color: #2e7d32;
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
      .category-nav {
          top: 85px;
          padding: 10px 0; /* Reduced from 12px */
      }
      
      .search-wrapper {
          max-width: 90%;
      }
      
      .search-input {
          padding: 8px 14px; /* Reduced from 10px 16px */
      }
      
      .category-header h2 {
          font-size: 1.5rem; /* Reduced from 1.8rem */
      }
      
      .categories-grid {
          gap: 15px; /* Adjusted for mobile */
          padding: 0 10px;
      }
      
      .category-image-container {
          width: 100px; /* Reduced for mobile */
          height: 100px; /* Reduced for mobile */
      }
      
      .category-info h3 {
          font-size: 1.1rem; /* Adjusted for mobile */
      }
      
      .product-section {
          padding: 30px 0; /* Reduced for mobile */
      }
      
      .product-section:first-of-type {
          padding-top: 100px; /* Reduced for mobile */
      }
      
      .categories-overview {
          padding: 20px 0; /* Reduced for mobile */
      }
  }
  
  @media (max-width: 480px) {
      .categories-grid {
          grid-template-columns: repeat(2, 1fr);
      }
      
      .category-image-container {
          width: 90px;
          height: 90px;
      }
      
      .category-info h3 {
          font-size: 1rem;
      }
  }
  @media (max-width: 768px) {
    .d-none-mobile {
        display: none !important;
    }
}
.hero-content.product-no-text{
  padding: 130px 0;
}