.product-card {
      border: 1px solid #eaeaea;
      border-radius: 8px;
      padding: 1rem;
      position: relative;
      transition: 0.3s ease;
      background: #fff;
      height: 100%;
    }
    .wishlist-icon {
      position: absolute;
      top: 10px;
      right: 10px;
      cursor: pointer;
      z-index: 2;
      background: none;
      border: none;
      color: #ccc;
    }
    .wishlist-icon.active, .wishlist-icon:hover {
      color: red;
    }
    .product-card .price {
      font-weight: bold;
      color: green;
    }
    .product-card .old-price {
      text-decoration: line-through;
      color: #aaa;
      margin-left: 5px;
    }
    .product-img-container {
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      position: relative;
    }
    .product-img {
      max-height: 100%;
      max-width: 100%;
      object-fit: contain;
    }
    .search-box {
      position: relative;
    }
    #searchResults {
      position: absolute;
      width: 100%;
      background: white;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      border-radius: 0 0 5px 5px;
      z-index: 1000;
      display: none;
    }
    .search-item {
      padding: 10px 15px;
      border-bottom: 1px solid #eee;
      cursor: pointer;
      transition: background-color 0.2s;
    }
    .search-item:hover {
      background-color: #f8f9fa;
    }
    .search-item-img {
      width: 40px;
      height: 40px;
      object-fit: cover;
      margin-right: 10px;
      border-radius: 3px;
    }
    .toast-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1100;
    }
    .category-filter {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .category-filter li {
      cursor: pointer;
      padding: 10px 15px;
      margin: 5px 0;
      border-radius: 6px;
      transition: all 0.3s ease;
      border: 1px solid #e0e0e0;
    }
    .category-filter li a {
      display: block;
      text-decoration: none;
      color: inherit;
    }
    .category-filter li:hover {
      background-color: #f8f9fa;
      border-color: #dee2e6;
    }
    .category-filter li.active {
      background-color: #7ac121;
      color: white;
      border-color: #7ac121;
    }
    .category-filter li.active:hover {
      background-color: #68a71b;
      border-color: #5d9618;
    }
    .filter-section {
      background: #f9f9f9;
      padding: 15px;
      border-radius: 8px;
      margin-bottom: 20px;
    }
    .filter-title {
      font-weight: 600;
      margin-bottom: 10px;
      color: #333;
    }
    .loading-spinner {
      display: none;
      text-align: center;
      padding: 20px;
    }
    .spinner-border {
      width: 3rem;
      height: 3rem;
    }
    .no-products {
      text-align: center;
      padding: 40px;
      display: none;
    }
    .btn-outline-organic {
      color: #7ac121;
      border-color: #7ac121;
    }
    .btn-outline-organic:hover {
      background-color: #7ac121;
      color: white;
    }
    .btn-organic {
      background-color: #7ac121;
      border-color: #7ac121;
      color: white;
    }
    .btn-organic:hover {
      background-color: #5d9618;
      border-color: #5d9618;
    }
    .btn-enquiry {
      background-color: #7ac121;
      border-color: #7ac121;
      color: white;
    }
    .btn-enquiry:hover {
      background-color: #5d9618;
      border-color: #5d9618;
      color: white;
    }
    /* Toast Notification Styling */
#toast {
    background-color: #7ac121 !important;
    color: white !important;
}

/* Add to Cart Button Styling */
.btn-outline-success {
    background-color: #7ac121 !important;
    border-color: #7ac121 !important;
    color: white !important;
}

.btn-outline-success:hover {
    background-color: #5d9618 !important;
    border-color: #5d9618 !important;
    color: white !important;
}

/* Enquiry Button Styling */
.btn-enquiry {
    background-color: #7ac121 !important;
    border-color: #7ac121 !important;
    color: white !important;
}

.btn-enquiry:hover {
    background-color: #5d9618 !important;
    border-color: #5d9618 !important;
    color: white !important;
}
/* Hide Add to Cart button and price elements */
.product-form [name="add_to_cart"],
.price,
.old-price {
    display: none !important;
}

/* Adjust spacing for enquiry button when add to cart is hidden */
.product-form .btn-enquiry {
    margin-top: 10px;
}

/* For list view adjustment */
.col-md-3 .price.fs-4,
.col-md-3 .old-price {
    display: none !important;
}

/* Product Details Modal Styling */
.product-image-main {
    width: 100%;
    height: 300px;
    object-fit: contain;
    margin-bottom: 15px;
}
.product-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.product-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
}
.product-thumbnail.active {
    border-color: #7ac121;
}
.product-details-modal .modal-content {
    border-radius: 12px;
}
.product-details-modal .modal-header {
    border-bottom: 1px solid #e9ecef;
    background-color: #f8f9fa;
    border-radius: 12px 12px 0 0;
}
.product-details-modal .modal-body {
    padding: 20px;
}
.product-details-modal .product-title {
    color: #333;
    margin-bottom: 10px;
}
.product-details-modal .product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #7ac121;
    margin-bottom: 15px;
}
.product-details-modal .product-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}
.product-details-modal .product-specs {
    margin-bottom: 20px;
}
.product-details-modal .spec-item {
    display: flex;
    margin-bottom: 8px;
}
.product-details-modal .spec-label {
    font-weight: bold;
    min-width: 120px;
    color: #555;
}
.product-details-modal .spec-value {
    color: #666;
}

/* Product Card Image Carousel */
.product-img-carousel {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 1rem;
}
.product-img-carousel .carousel-inner {
    height: 100%;
}
.product-img-carousel .carousel-item {
    height: 100%;
    text-align: center;
}
.product-img-carousel .carousel-item img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.product-img-carousel .carousel-control-prev,
.product-img-carousel .carousel-control-next {
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}
.product-img-carousel:hover .carousel-control-prev,
.product-img-carousel:hover .carousel-control-next {
    opacity: 1;
}
.product-img-carousel .carousel-control-prev {
    left: 10px;
}
.product-img-carousel .carousel-control-next {
    right: 10px;
}
.product-img-carousel .carousel-indicators {
    margin-bottom: 5px;
}
.product-img-carousel .carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 3px;
}

/* Action buttons */
.action-buttons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}
.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    background: white;
    transition: all 0.3s ease;
}
.action-btn:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}
.action-btn.whatsapp-btn:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
}
.action-btn.view-btn:hover {
    background: #7ac121;
    color: white;
    border-color: #7ac121;
}