﻿
/*-------------------------------------------------------------------------------------------------------------
         				HEADER - Linsestore Style Updated 2026
--------------------------------------------------------------------------------------------------------------*/

:root { 
	--menu_color:#222222;  /*--font color--*/
    --menu_color_hover:none;
	--header_bgcolor: #fff;	/*--div background color--*/
}

/*--Header Links--*/

header a:link {
	color: var(--primary_textcolor); 
	font-size: 90%; 
	letter-spacing: 0.15em;
}

header a:visited {
	color: var(--primary_textcolor);
	font-size: 90%; 
	font-weight: 100;	
}

header a:active {
	color: var(--primary_textcolor);
	background: none; 
}


/*******************************
		 	DESKTOP
********************************/	
.ipad-header, .mobile-header {
	display: none;
}


/*-------------------------
  Header Scrolled Effects
---------------------------*/

/*--Header background color changed when scrolled--*/
.headerActive {
    background-color: rgba(254, 254, 254, 0.8);
	backdrop-filter: saturate(180%) blur(20px);
	-webkit-backdrop-filter: saturate(180%) blur(20px);	
}



/*---------------Header Container------------------*/

header {
	display: block;
    width: 100%;
    height: 80px; 
	position: fixed; 	
	transition: all .2s ease-in-out;	
	box-sizing: border-box; 
	overflow:hidden;
	z-index: 1000;  
}

.desktop-nav {
	display: grid;
	width: 100%;
	height: 100%;
	grid-template-columns: 20% 80%;
	box-sizing: border-box;
}   


/*----------------------
	Left Div (logo)
-----------------------*/
.logo {
	display: flex;
	justify-content: center;
	align-items: flex-end;
} 

.logo img{
   width: 170px;
   height:auto; 
}


/*-----------------------------
	Middle Div (top category)
-------------------------------*/
.top-category {
	display: flex;
	justify-content: right;
	align-items: end;
	margin-right: 5%;
}

.top-category ul {
	list-style: none;
	padding: 0;		
}

.top-category ul li {
	display: inline-block;
	margin-right: 20px;
	color: var(--menu_color); 
	font-size:100%;
	letter-spacing: 0.02em;	
	cursor: pointer;
}


/*--Top Category Menu Hover Effect--*/
.top-category ul li:after {    
	background: none repeat scroll 0 0 transparent;
	content: "";
	display: block;
	height: 2px;
	position: relative;
	left: 50%;
	bottom: 0;
	background: var(--primary_textcolor);
	transition: width 0.3s ease 0s, left 0.3s ease 0s;
	-webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;	
	transition: width 0.3s ease 0s, left 0.3s ease 0s;
	width: 0;
}

.top-category ul li:hover:after { 
  width: 100%; 
  left: 0; 
}





/********************************
		 Big Monitor
*********************************/	
@media screen and (min-width: 1920px) {
	
	header {
		width: 1920px;
		margin: 0 12vw;
	}


} 


/***************************
		iPhone
****************************/	

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

.desktop-header, .ipad-header {
	display:none;
}

	.mobile-header {
		display: block;		
		width: 100%;
		height: 80px;  
		position: fixed;  
		background-color: var(--header_bgcolor);
		box-sizing: border-box; 
		z-index: 1000;   			
	}

	.mobile-nav {
		display: grid;
		width: 100%;
		height: 100%;
		grid-template-columns: 80% 20%;
		box-sizing: border-box;
		
	}

	.mobile-logo {	
		display: flex;
		justify-content: left;
		align-items: center;
		padding-left: 6%;
	}

	.mobile-logo img{
		width:150px;
		height:auto;
	}

	.mobile-icon-section {
		display: flex;
		justify-content:center;
		align-items: center;

	}	

}



/******************************
		iPad Air & Mini
*******************************/	

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

	.mobile-header {
		display: block;		
		width: 100%;
		height: 75px;  
		position: fixed;  
		background-color: var(--header_bgcolor);
		box-sizing: border-box; 
		z-index: 1000;   			
	}

	.mobile-nav {
		display: grid;
		width: 100%;
		height: 100%;
		grid-template-columns: 80% 20%;
		box-sizing: border-box;
	}


}







