	/* Button Styles */
	.btn-primary {
		background-color: #007bff; /* Primary color */
		color: white; /* Text color */
		border: none; /* Remove border */
		padding: 10px 15px; /* Padding for button */
		border-radius: 5px; /* Rounded corners */
		transition: background-color 0.3s, transform 0.3s; /* Smooth transition for hover effects */
	}
	
	.btn-primary:hover {
		background-color: #0056b3; /* Darker shade on hover */
		transform: translateY(-2px); /* Slight lift effect on hover */
	}
	
	.btn-primary:active {
		transform: translateY(0); /* Return to normal on click */
	}
	/* Ensure the title and button are vertically aligned */
	.product-item .text-center {
		display: flex;
		flex-direction: column; /* Arrange children in a column */
		align-items: center; /* Center align items */
	}
	
	/* Style for the buttons */
	.btn-primary {
		background-color: #007bff; /* Primary color */
		color: white; /* Text color */
		border: none; /* Remove border */
		padding: 10px 15px; /* Padding for button */
		border-radius: 5px; /* Rounded corners */
		transition: background-color 0.3s, transform 0.3s; /* Smooth transition */
		margin-top: 10px; /* Space above the button */
	}
	
	.btn-primary:hover {
		background-color: #0056b3; /* Darker shade on hover */
		transform: translateY(-2px); /* Slight lift effect */
	}
	
	.btn-primary:active {
		transform: translateY(0); /* Return to normal on click */
	}
			  /* Modal custom styles */
		.modal-content {
			max-width: 500px; /* Increased width */
			width: 100%; /* Full width for responsiveness */
			height: auto; /* Allow height to adjust based on content */
		}
		
		.modal-body {
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			padding: 20px; /* Add padding for better spacing */
		}
		
		.modal-body img {
			max-width: 100%; /* Ensure image fits within modal */
			max-height: 250px; /* Increased height for images */
			object-fit: contain; /* Maintain aspect ratio */
		}
		
		  body {
			background-color: #f8f9fa;
		}
		
		.filter-container {
			margin-bottom: 20px;
			padding: 15px;
			background-color: #ffffff;
			border-radius: 5px;
			box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		}
		
		.btn-group .dropdown-toggle {
			font-size: 1.2em;
			padding: 10px 15px;
		}
		
		.dropdown-menu {
			padding: 10px;
		}
		
		.dropdown-menu label {
			font-size: 1em;
			margin-right: 10px;
			display: block;
		}
			
		.product-item:hover {
			transform: scale(1.05);
		}
		
		.product-item {
			margin-bottom: 30px; /* Increased spacing between grid items */
		}
		
		.product-img {
			height: 200px; /* Maintain a fixed height */
			overflow: hidden; /* Hide any overflow */
		}
		
		.product-img img {
			height: 100%; /* Ensure full height */
			width: 100%; /* Ensure full width */
			object-fit: contain; /* Maintain aspect ratio without cropping */
		}
		
		.list-view .product-item {
			display: flex;
			align-items: center;
			padding: 20px;
		}
		
		.list-view .product-item img {
			width: 50px;
			margin-right: 10px;
		}
		
		.list-view .text-center {
			flex: 1;
		}
		
		.row {
			margin: 0; /* Remove default margin for a cleaner layout */
		}
		
		/* Additional styles for better spacing */
		.pagination {
			margin-top: 20px;
		}
		.rating-stars {
			font-size: 1.5em; /* Increase the size of the stars */
			color: #ae6b1a; /* Set the color of the stars */
		} 
		.rating {
			cursor: pointer;
			color: #ae6b1a; /* Color for selected stars */
		}
		
		.star {
			font-size: 1.5em; /* Size of the stars */
		}
		.contact-form .control-group {
		margin-bottom: 20px;
	  }
	  small.text-danger {
		color: red;
		font-size: 0.875em;
	  }
	  small.text-danger.d-none {
		display: none;
	  }
		
	 #whatsApp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 80px;
    height: 80px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    cursor: pointer;
    font-family: Arial, sans-serif;
  }

  #whatsApp-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.5s ease;
  }

  #message-bubble {
    position: absolute;
    bottom: 90px; /* adjusted because of bigger button */
    right: 0;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 30px 30px 30px 6px;
    font-size: 14px;
    white-space: nowrap;
    user-select: none;
    opacity: 0;
    pointer-events: none;
    transform: translateX(20px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
  }

  #message-bubble.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  #typing-text {
    border-right: 2px solid white;
    padding-right: 2px;
    white-space: nowrap;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
  }
  /* Vertical padding for topbar */
  .row.align-items-center.bg-light.py-3.px-xl-5.d-none.d-lg-flex {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  /* Margin between icon and text for phone/email */
  .fa-phone-alt,
  .fa-envelope {
    margin-right: 8px;
  }

  /* Search input expanded style */
  #searchInput.expanded {
    width: 100% !important;
    opacity: 1 !important;
    padding-left: 15px;
    padding-right: 40px;
  }