	/* Ensure no content hides under the fixed navbars */
	body {
		padding-top: 56px; /* Height of both navbars combined */
	}

	.navbar-green {
		background-color: darkgreen; /* #28a745; Bootstrap green */
		color: white;
		padding: 10px;
	}

	.nav-item {
		font-size: 14px;
	}
	
	.navbar-green a {
		color: white;
	}

	.navbar-green a:hover {
		text-decoration: underline;
		color: #f8f9fa;
	}

	.navbar {
		z-index: 1030; /* Ensure the navbar stays on top of other elements */
	}

	/* Custom Amazon-like styles  background-color: #232f3e; */
	.navbar-custom {
		background-color: darkgreen;
		color: #ffffff;
	}
	.navbar-custom .navbar-brand,
	.navbar-custom .nav-link {
		color: #ffffff;
	}
	.category-sidebar {
		background-color: lightgreen;
		padding: 12px;
		border-radius: 8px;
	}
	.category-rightbar {
		background-color: #f3f3f3;
		padding: 10px;
		border-radius: 10px;
	}
	.product-card {
		border: 1px solid #ddd;
		transition: transform 0.3s, box-shadow 0.3s;
	}
	.product-card:hover {
		transform: scale(1.02);
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	}
	.product-image {
		height: 150px;
		object-fit: cover;
	}
	.card-text {
		font-size: 14px;
		font-type: Roboto;
	}

	.carousel-item img {
		object-fit: cover; /* Ensures the image scales properly */
		height: 100%; /* Maintain the image height */
		max-height: 500px; /* Limit max height for better responsiveness */
	}
	
	.fixed-navbar {
		position: fixed;
		top: 60px; /* Adjust this value to set the distance from the top */
		width: 100%; /* Ensure the navbar spans the entire width */
		z-index: 1030; /* Keep it above other elements */
	}
	
	.dropdown-content {
	  display: none;
	  position: absolute;
	  background-color: #f9f9f9;
	  min-width: 160px;
	  box-shadow: 0px 8px 8px 0px rgba(0,0,0,0.2);
	  z-index: 1;
	}

	.dropdown-content a {
	  float: none;
	  color: black;
	  padding: 4px 4px;
	  text-decoration: none;
	  display: block;
	  text-align: left;
	}

	.dropdown-content a:hover {
	  background-color: #aaa;
	}

	.dropdown:hover .dropdown-content {
	  display: block;
	}		

	.footer-text {
		font-size: 14px;
		font-type: Roboto;
	}
