:root {
	
	--bg-color: #E5F5E1; 
	--header-bg-color: #278446; 
	--font-color: #00441B; 
	--overlapping-color: #F7FCF5;
	--category-card-bg: #C7E9C0;
	
}

body {
	
	padding: 0;
	margin: 0;
	background-color: var(--bg-color);
	
	counter-reset: serial;
	
}


h1, h2, h3, h4, h5, h6 {
	
	margin: 4px;

}


a {

	text-decoration: none;

}



img {
	
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	
}



table {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #ddd;
  padding: 8px;
}

tr:nth-child(even){background-color: #f2f2f2;}

tr:hover {background-color: #ddd;}

th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #04AA6D;
  color: white;
}


/* CSS TABLE COUNTER FOR STOCKS LIST BELOW */
		
		
		#records tr td:first-child:before {
			
				counter-increment: serial;
				content: counter(serial);
		
		}


.header {
	
	width: -webkit-fill-available;
	max-height: 62px;
	background-color: var(--header-bg-color);
	color: var(--overlapping-color);
	display: inline-flex;
	justify-content: space-between;
	padding: 10px;
	

}


.logo {
	
	width: 60px;

}


.header a {
	
	color: var(--overlapping-color);

}


.brand {
	
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	
}

.slogan {
	
	font-size: 1.2rem;
	font-weight: 600;

}

.menu-and-search {
	
	width: 50%;
	display: inline-flex;
	justify-content: flex-end;;
	align-items: center;
	gap: 10px;

}

.search {
	
	font-size: 1.3rem;

}


.user {

	font-size: 1.3rem;
	
}

.menu {
	
	position: relative;
	display: inline-flex;
	flex-direction: row;
	background-color: var(--header-bg-color);
	
	
	@media (max-width: 720px) {
		
		display: none;
		flex-direction: column;
		position: absolute;
	    top: 60px;
		right: 10px;
		width: min-content;
		padding: 10px;
		border: 2px solid var(--overlapping-color);
		border-radius: 20px;
			
	}
	
}


.menu a {
	
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 4px 12px;
	border-radius: 50px;
	border: 2px solid var(--overlapping-color);
	color: var(--overlapping-color);
	margin: 4px 6px;
	transition: all 0.2s ease;
	width: fit-content;

}


.shopping-cart {
	
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.3rem;

}

.menu a:hover {
	
	transform: translate(0px, -2px);

}


.cart-icon {
		
}

.items-included {
	
	position: absolute;
	top: -16px;
	left: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	background-color: yellow;
	color: black;
	border-radius: 20px;
	padding: 2px;
	font-size: 1.1rem;
	background: rgba(255, 255, 0, 0.8);
}

.open-menu {
	
	display: none;
	font-size: 1.3rem;
	
	@media (max-width: 720px) {
		
		display: block;
		width: 20px;

			
	}

}

.close-menu {
	
	display: none;
	font-size: 1.3rem;
	
	@media (max-width: 720px) {
		
		display: none;
		width: 20px;

			
	}

}


.category-cards-frame {
	
	display: flex;
	justify-content: center;
	
}

.category-cards {
	
	display: inline-flex;
	flex-wrap: wrap;
	max-width: 720px;
	justify-content: center;
	
}

.category-item {
	
	width: fit-content;
	
}

.category-item a {
	
	aspect-ratio: 1/1;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 170px;
	gap: 10px;
	background-color: var(--category-card-bg);
	margin: 10px;
	border-radius: 20px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	border: 2px solid var(--header-bg-color);
	
}


.category-item a img {
	
	aspect-ratio: 1/1;
	border-radius: 20px;

}

.category-tag {

	position: absolute;
	top: 0;
	left: 0;
	padding: 4px 12px;
	background-color: var(--header-bg-color);
	z-index: +100;
	color: var(--overlapping-color);
	border-radius: 18px 0px 20px 0px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);

}


.category-title {
	
	display: flex;
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 4px 12px;
	background-color: var(--header-bg-color);
	z-index: +100;
	color: var(--overlapping-color);
	border-radius: 0px 0px 17px 17px;
	width: -webkit-fill-available;
	justify-content: center;
	align-items: center;
	font-size: 1.2rem;
	font-weight: 600;

}



.footer {

	width: -webkit-fill-available;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 10px;

}

/* product Card  */
	
	
	.product-cards-frame {
		
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		
	}
	
	.product-cards-frame a {
		
		width: max(20%, 164px);
		text-decoration: none;
		border: 1px solid white;
		background-color: #f4f4f4;
		background: rgba(255, 255, 255, 0.2);
		backdrop-filter: blur(5px);
		-webkit-backdrop-filter: blur(5px);
		margin: 10px;
		border-radius: 10px;
		
	}
	

	
	.product {
		
		position: relative;
				
	}
	
	
	.product img {
		
		width: 250px;
		object-fit: cover;
		
	}
	
	
	.product-image img {
		
		width: 100%;
		object-fit: cover;
		
	}
	
	.product-tags {
		
		padding: 10px;
	
	}	
	
	.product-top-tag {
		
		position: absolute;
		top: 0;
		left: 0;
		padding: 5px;
		border-radius: 0px 0px 10px 0px;
		background-color: lightgreen;
		color: black;
		
	}
	
	
	.title-tag {
		
		margin: 2px;
		
	}
	
	.rating-tag {
		
		color: green;
		margin: 2px;
		
	}
	
	
	.price-tag {
		
		color: brown;
		margin: 2px;
		
	}
	
	.price {
		
		color: green;
		margin: 2px;
	}
	
	
	#cke-e1b1723e7ffdbc79411b3a9d1de45f6ba, .cke_notification, .cke_notification_warning {
		
		display: none !important;
		
	}
	
	
	
	.swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }