.navbar-item img {
	max-height: 5.5rem;
}

.product-name {
	font-size: 12px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.price {
	font-size: 14px;
	color: green;
}

.card-image {
	position: relative;
	overflow: hidden;
}

.card-image:hover img {
	transform: scale(1.2);
}

/*.card:hover {
	 transform: scale(1.1);
}*/
.card {
	transition: transform 0.5s ease;
}

.product-details {
	padding: 0;
}

.column .custom-button-primary,
.custom-button-primary {
	background-color: #34D61D;
	color: black;
}

.card-image:hover:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.3);
	z-index: 1;
}

.card-deck {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
}

.card {
	scroll-snap-align: start;
	flex: 0 0 auto;
	width: 300px;
	margin-right: 20px;
}

.toast {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	margin: 0 auto;
	z-index: 9999;
}





form[role="search"] {
	position: relative;
}


.search-container {
	max-width: 60vw;
	/* adjust this value as needed */
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}


.suggestions-list {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 999;
	width: 100%;
	background-color: white;
	border: 1px solid #ccc;
	border-top: none;
	max-height: 300px;
	overflow-y: auto;
}

.suggestions-list {
	position: absolute;
	width: 100%;
	max-height: 300px;
	overflow-y: auto;
	background-color: #fff;
	z-index: 100;
	border: 1px solid #ced4da;
	border-top: none;
}

.suggestions-list,
.mobile-suggestions-list li {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 5px 10px;
	cursor: pointer;
}

.suggestions-list li:hover {
	background-color: #f2f2f2;
}

@media screen and (max-width: 1023px) {

	.mobile-search-bar {
		display: block !important;
		padding-bottom: 1rem;
	}

	.navbar-end {
		display: none !important;
	}
}

.filters-listing {
	padding: 1rem;
}

.card {
	box-shadow: 0 0.5em 1em -0.125em rgba(52, 214, 29, 0.5), 0 0 0 1px rgba(10, 10, 23, 0.02);
}

.scrollable-columns {
	overflow-x: scroll;
	overflow-y: hidden;
}


.featured-products-container {
	margin: 0;
}

html,
.navbar,
.footer {
	background-color: rgba(26, 101, 11, 0.1);
}



#deleteModal {
	display: none;
}

.disabled {
	/* CSS properties for disabled elements */
	opacity: 0.5;
	pointer-events: none;
	/* Additional styles */
	/* ... */
}

.section {
	padding-top: 1rem;
}

.discount-overlay {
	position: relative;
	/* Change position to relative */
	width: 40px;
	/* Set a width for the shape */
	height: 40x;
	/* Set a height for the shape */
	overflow: hidden;
	/* Hide any overflow from the background image */
}

.discount-overlay::before {
	content: "";
	/* Create an empty pseudo-element */
	display: block;
	/* Make it a block element */
	position: absolute;
	/* Position it absolutely within the .discount-overlay element */
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('images/discount_bg-3.png');
	/* Set the same background image as the .discount-overlay element */
	background-size: cover;
	/* Ensure the image covers the entire pseudo-element */
	background-position: center;
	/* Center the image within the pseudo-element */
	width: 100%;
	/* Set the width of the pseudo-element to 100% */
	height: 100%;
	/* Set the height of the pseudo-element to 100% */
	z-index: 1;
	/* Set a negative z-index to place the pseudo-element below the text */
}

.discount-overlay p {
	position: relative;
	/* Change position to relative */
	z-index: 2;
	/* Set a positive z-index to place the text above the pseudo-element */
}

@keyframes slideDown {
	0% {
		transform: translateY(-100%);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}


@media (max-width: 768px) {
    .glide__slide {
      width: 100%;
      overflow: hidden;
      position: relative;
      height: 300px; /* Set the desired height for the cropped image */
    }

    .glide__slide img {
      object-fit: cover;
      object-position: center top;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
    }
  }
  
  