 /* Product page specific styles */
  .product-section {
      padding: 40px 0; /* Reduced from 60px */
  }
  
  .product-section:first-of-type {
      padding-top: 120px; /* Reduced from 140px */
  }
  
  /* Category Section Styles - Made smaller */
  .category-section {
      padding: 20px 0; /* Reduced from 40px */
      border-bottom: 1px solid #eee;
  }
  
  .category-section:last-child {
      border-bottom: none;
  }
  
  /* Category Header - Made smaller */
  .category-header {
      text-align: center;
      margin-bottom: 20px; /* 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: 20px; /* 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 */
  .section-header {
      text-align: center;
      margin-bottom: 30px; /* Reduced from 40px */
  }
  
  .section-header h2 {
      font-size: 2rem; /* Reduced from 2.5rem */
      color: var(--primary-dark);
      margin-bottom: 8px; /* Reduced from 10px */
      position: relative;
      display: inline-block;
      padding-bottom: 12px; /* Reduced from 15px */
  }
  
  .section-header h2:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px; /* Reduced from 80px */
      height: 2px; /* Reduced from 3px */
      background-color: #2e7d32;
  }
  
  .section-header p {
      color: var(--text-light);
      max-width: 600px; /* Reduced from 700px */
      margin: 0 auto;
      font-size: 1rem; /* Reduced from 1.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;
  }
  
  /* Responsive adjustments for search bar */
  @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 */
      }
      
      .product-section {
          padding: 30px 0; /* Reduced for mobile */
      }
      
      .product-section:first-of-type {
          padding-top: 100px; /* Reduced for mobile */
      }
  }
  .hero *{
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    }

    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-green) 100%);
        z-index: 1;
    }

    .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;
        right: -200px;
        bottom: -200px;

    }

    .hero-shape-3 {
        width: 200px;
        height: 200px;
        top: 30%;
        right: 10%;
    }
        @media (max-width: 768px) {
    .d-none-mobile {
        display: none !important;
    }
}