:root{
	--forange: #65a38d;
}

nav img{
	height: 32px;	
}

.backbutton{
	height: 20px;
	font-size: 28px;
	margin: 0;
	padding-bottom: 16px;	
	transition: color 0.2s ease-in-out;
}

.backbutton:hover{
	color: var(--forange);
}

.search {
	display: table-cell;
    text-align: center;
	position: relative;
    width: 35%;
	padding-left: 20px;
	margin-right: -20px;
}

.search input {
	outline: none;
    width: 100%;
	padding-left: 10px;
    height: 40px;
	position: aboslute; 
    padding-right: 50px;
	border-radius: 10px;
	border: 2px solid #bbb;
	transition: border-color 0.2s ease-in-out; 
}

.search input:focus {
	border-color: #555;
}

.search button:hover{
	color: #bbb;
}

.search button {
	color: #555;
	cursor: pointer;
    position: absolute;
    right: 2px;
	bottom: 2px;
    height: 36px;
	border-radius: 0px 8px 8px 0px;
    width: 50px;
	display: flex;
	background: none;
    align-items: center;
    justify-content: center;
	border: none;
	transition: color 0.2s ease-in-out; 
}

.topbar {
    position: sticky;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 16px;
}

.navbar {
    list-style-type: none;    
    overflow-x: hidden;
    white-space: nowrap;
	max-height: 100px;
}

.navbar li {
    display: inline;
}

.navbar a {
    text-transform: uppercase;
    margin: auto;
	padding: 0 12px;
    font-weight: bold;
    transition: color 0.2s ease-in-out;
}

.navbar a.navactive {
    color: var(--forange);
}

.navbar a:hover:not(.navactive) {
    color: var(--forange);
}

.footerheader {
    background-color: #323232; 
    padding: 4px; 
    margin: 0;
    width: 100%;
	color: white;
	text-align:center;
	line-height: 0.75em;
}

.badge {
    position: absolute;
    font-size: 14px;
    background: var(--forange);
    color: white;
    padding: 3px 9px;
    user-select: none;
    border-radius: 12px;
    right: -10px; 
    top: -10px; 
}

.shopping-basket {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    user-select: none;
}

.shopping-basket i{
	transition: all ease-in-out 0.15s;	
}

.shopping-basket:hover i{
    color: #fff;
    text-shadow: #000 0px 0px 8px;
    -webkit-font-smoothing: antialiased;
	-ms-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
}

#lblCartCount {
    position: absolute;
    right: -16px; /* Adjusted for alignment */
    top: -8px;
    font-weight: 0;
}

a[style="float: right;"] {
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
}

#o1{order:1;}
#o2{order:2;}
#o3{order:3;}
#o4{order:4;}
#o5{order:5;}

@media (max-width: 1514px){
	nav img{
		height: 28px;
		width: auto;
	}
	
	.navbar a {
		font-size: 14px;
		padding: 0 8px;
	}
	
	.shopping-basket {
    	font-size: 30px;
	}
	
	.badge {
    	font-size: 12px;
    	padding: 3px 7px;
    	border-radius: 14px;
	}
	
	.search {
		margin-right: -40px;
	}

}

@media (max-width: 1200px) {
	.topbar {
		flex-direction: column;
		padding-top: 10px;
	}
	
	#o5, #o1{
		align-self: flex-end;
		position: absolute;
		top: 10px;
	}
	
	#o1 {
		align-self: flex-start;
	}
	
	.navbar {
		margin-bottom: 0;	
	}
	
	.search {
		margin-top: 8px;
		width: 70%;
	}
	
	#o3{order:4;}
	#o4{order:5;}
	#o5{order:3;}
}

@media (max-width: 576px) {
	.topbar {
		margin: 0 5px;
	}
	.search {
		width: 100%;
		padding: 0;
	}
}