 :root {
	--primary-color: #71202f;
	--secondary-color: #000000;
	--accent-color: #175e38;
	--text-color: #000000;
	--light-bg: #f8f9fa;
	--white: #ffffff;
	--gray: #6c757d;
	--border-color: #ffffff;
	--transition-speed: 0.3s;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/* Top Header - Not Sticky */
.prot-upper-strip {
	background-color: var(--primary-color);
	color: var(--white);
	padding: 8px 20px;
	font-size: 14px;
	position: relative; /* Changed from fixed to relative */
	width: 100%;
	z-index: 101;
	border-bottom: 1px solid #fff;
}
.prot-upper-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}
.prot-upper-strip a {
	color: var(--white);
	text-decoration: none;
	letter-spacing: 1px;
}
.prot-upper-strip a:hover {
	text-decoration: underline;
}
.prot-upper-strip i {
	margin-right: 5px;
}
/* Main Navbar - Sticky */
.prot-main-header {
	background-color: #ffff;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	z-index: 100;
	position: sticky;
	top: 0; /* Changed from 36px to 0 */
	left: 0;
	width: 100%;
}
.prot-header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0px;
	max-width: 1200px;
	margin: 0 auto;
}
.prot-brand {
	font-size: 24px;
	font-weight: bold;
	color: var(--primary-color);
	text-decoration: none;
}
.prot-brand img {
	
width: 140px;
}
/* Navigation Menu */
.prot-nav-list {
	display: flex;
	list-style: none;
}
.prot-nav-item {
	position: relative;
	margin: 0 15px;
}
.prot-nav-anchor {
	color: var(--text-color);
	text-decoration: none;
	font-weight: 500;
	padding: 8px 0;
	display: block;
	transition: color 0.3s;
	letter-spacing: 1px;
}
.prot-nav-anchor:hover {
	color: #71202f;
}
.prot-has-submenu::after {
	content: '\f107';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	margin-left: 5px;
	font-size: 12px;
}
.prot-submenu {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #71202f;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	min-width: 200px;
	display: none;
	z-index: 1;
	border-radius: 4px;
}
.prot-submenu-link {
	padding: 10px 15px;
	display: block;
	color: #fff;
	text-decoration: none;
	transition: background-color 0.3s;
	letter-spacing: 1px;
}
.prot-submenu-link:hover {
	background-color: var(--light-bg);
	color: var(--primary-color);
}
.prot-nav-item:hover .prot-submenu {
	display: block;
}
/* Right Navigation */
.prot-actions {
	display: flex;
	align-items: center;
}
.prot-action-btn {
	margin-left: 20px;
	font-size: 20px;
	color: var(--text-color);
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
}
.prot-action-btn:hover {
	color: #71202f;
}
.prot-action-btn i {
	margin-right: 5px;
}
.prot-user-text span {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
}
.prot-cart-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	background-color: var(--accent-color);
	color: var(--white);
	font-size: 12px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* Profile Dropdown */
.prot-profile-dropdown {
	position: relative;
	display: flex;
	align-items: center;
	margin-left: 20px;
}
.prot-profile-trigger {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 8px 12px;
	border-radius: 25px;
	transition: background-color 0.3s ease;
}
.prot-profile-trigger:hover {
	background-color: rgba(113, 32, 47, 0.1);
}
.prot-profile-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: var(--primary-color);
	color: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	font-size: 16px;
	margin-right: 10px;
	background-size: cover;
	background-position: center;
}
.prot-profile-trigger span {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	color: var(--text-color);
	max-width: 100px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.prot-profile-menu {
	position: absolute;
	top: calc(100% - 2px);
	right: 0;
	background-color: var(--white);
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	min-width: 140px;
	list-style: none;
	padding: 0;
	margin: 0;
	display: none;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.prot-profile-dropdown:hover .prot-profile-menu {
	display: block;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.prot-profile-menu li {
	margin: 0;
	border-bottom: 1px solid #f0f0f0;
}
.prot-profile-menu li:last-child {
	border-bottom: none;
}
.prot-profile-menu li a {
	display: flex;
	align-items: center;
	padding: 12px 16px;
	text-decoration: none;
	color: var(--text-color);
	transition: background-color 0.3s ease;
	font-size: 14px;
	letter-spacing: 1px;
}
.prot-profile-menu li a:hover {
	background-color: var(--light-bg);
	color: var(--primary-color);
}
.prot-profile-menu li a i {
	margin-right: 8px;
	width: 16px;
	text-align: center;
}
/* Mobile Menu */
.prot-burger {
	display: none;
	font-size: 24px;
	cursor: pointer;
}
/* Overlay */
.prot-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	display: none;
	opacity: 0;
	transition: opacity var(--transition-speed) ease;
}
.prot-backdrop.prot-visible {
	opacity: 1;
}
/* Mobile Side Menu */
.prot-side-menu {
	position: fixed;
	top: 0;
	left: -280px;
	width: 280px;
	height: 100vh;
	background-color: #000000;
	z-index: 260;
	transition: left var(--transition-speed) ease;
	overflow-y: auto;
	box-shadow: 2px 0 10px rgba(0,0,0,0.2);
}
.prot-side-menu.prot-visible {
	left: 0;
}
.prot-side-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid rgba(255,255,255,0.2);
}
.prot-side-header .prot-brand img {
	width: 120px;
	height: auto;
	background: #fff;
	border-radius: 12px;
	padding: 10px;
}
.prot-side-close {
	font-size: 24px;
	cursor: pointer;
	color: #fff;
}	
.prot-side-list {
	list-style: none;
	padding: 20px;
}
.prot-side-item {
	margin-bottom: 15px;
	width: 100%;
}
.prot-side-link {
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	display: block;
	padding: 8px 0;
	transition: color 0.3s ease;
}
.prot-side-link:hover {
	color: var(--primary-color);
}
.prot-side-toggle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	width: 100%;
	padding: 8px 0;
}
.prot-side-toggle span {
	flex: 1;
	color: #ffffff;
}
.prot-side-toggle i {
	color: #f90c38;
	transition: color 0.3s ease;
	flex-shrink: 0;
	margin-left: 10px;
}
.prot-side-submenu {
	padding-left: 25px;
	margin-top: 8px;
	display: none;
	list-style: none;
	width: 100%;
}
.prot-side-submenu.prot-visible {
	display: block;
}
.prot-side-submenu li {
	margin-bottom: 8px;
	display: flex;
}
.prot-side-submenu li a {
	color: #cccccc;
	font-size: 13px;
	text-decoration: none;
	transition: color 0.3s ease;
}
.prot-side-submenu li a:hover {
	color: var(--primary-color);
}
/* Search Container - Improved Animation and Close Button */
.prot-search-panel {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--white);
	padding: 20px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	z-index: 250;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-100%);
	transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease, visibility 0s linear 0.3s;
}
.prot-search-panel.prot-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease, visibility 0s linear 0s;
}
.prot-search-form {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	opacity: 0;
	transform: translateY(-20px);
	transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}
.prot-search-panel.prot-visible .prot-search-form {
	opacity: 1;
	transform: translateY(0);
}
.prot-search-field {
	width: 100%;
	padding: 12px 50px 12px 15px;
	border: 1px solid #000000;
	letter-spacing: 1px;
	border-radius: 4px;
	font-size: 16px;
	transition: border-color 0.3s ease;
}
.prot-search-field:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}
.prot-search-submit {
	position: absolute;
	right: 5px;
	top: 5px;
	background-color: var(--primary-color);
	color: var(--white);
	border: none;
	border-radius: 4px;
	padding: 8px 12px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.prot-search-submit:hover {
	background-color: var(--secondary-color);
}
/* Improved Close Search Button */
.prot-search-close {
	position: absolute;
	top: 10px;
	right: 30px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgb(0 0 0);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 260;
}
.prot-search-close i {
	font-size: 18px;
	color: #ffffff;
	transition: color 0.3s ease;
}
.prot-search-close:hover {
	background-color: var(--primary-color);
}
.prot-search-close:hover i {
	color: var(--white);
}
/* Cart Drawer */
.prot-cart-panel {
	position: fixed;
	top: 0;
	right: -350px;
	width: 350px;
	height: 100vh;
	background-color: var(--white);
	z-index: 260;
	transition: right var(--transition-speed) ease;
	overflow-y: auto;
	box-shadow: -2px 0 10px rgba(0,0,0,0.1);
	display: flex;
	flex-direction: column;
}
.prot-cart-panel.prot-visible {
	right: 0;
}
.prot-cart-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid var(--border-color);
}
.prot-cart-title {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 1px;
}
.prot-cart-close {
	font-size: 24px;
	cursor: pointer;
}
.prot-cart-items {
	padding: 20px;
	flex: 1;
	overflow-y: auto;
}
.prot-cart-item {
	display: flex;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--border-color);
}
.prot-item-image {
	width: 80px;
	height: 80px;
	background-color: var(--light-bg);
	margin-right: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
}
.prot-item-image i {
	font-size: 32px;
	color: var(--primary-color);
}
.prot-item-info {
	flex: 1;
}
.prot-item-name {
	font-weight: 500;
	margin-bottom: 5px;
	letter-spacing: 1px;
}
.prot-item-price {
	color: var(--primary-color);
	font-weight: bold;
	margin-bottom: 5px;
	letter-spacing: 1px;
}
.prot-item-qty {
	display: flex;
	align-items: center;
}
.prot-qty-btn {
	width: 25px;
	height: 25px;
	background-color: var(--light-bg);
	border: 1px solid var(--border-color);
	cursor: pointer;
	font-size: 14px;
	border-radius: 3px;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}
.prot-qty-btn:hover {
	background-color: var(--primary-color);
	color: var(--white);
	border-color: var(--primary-color);
}
.prot-qty-btn:active {
	transform: scale(0.95);
}
.prot-qty-input {
	width: 40px;
	height: 25px;
	text-align: center;
	border: 1px solid var(--border-color);
	margin: 0 5px;
}
.prot-cart-footer {
	padding: 20px;
	border-top: 1px solid var(--border-color);
	background-color: var(--white);
	flex-shrink: 0;
}
.prot-cart-total {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
	font-weight: bold;
	letter-spacing: 1px;
}
.prot-cart-action {
	background-color: var(--primary-color);
	color: var(--white);
	border: none;
	padding: 12px;
	width: 100%;
	font-size: 16px;
	font-weight: 500;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
	margin-bottom: 10px;
	letter-spacing: 1px;
}
.prot-view-cart {
	background-color: var(--white);
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	letter-spacing: 1px;
}
.prot-view-cart:hover {
	background-color: var(--light-bg);
}
.prot-checkout:hover {
	background-color: var(--secondary-color);
}
.prot-empty-cart {
	text-align: center;
	padding: 30px 0;
	color: var(--gray);
}
/* Auth Drawer */
.prot-auth-panel {
	position: fixed;
	top: 0;
	right: -350px;
	width: 350px;
	height: 100vh;
	background-color: var(--white);
	z-index: 260;
	transition: right var(--transition-speed) ease;
	overflow-y: auto;
	box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}
.prot-auth-panel.prot-visible {
	right: 0;
}
.prot-auth-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid var(--border-color);
}
.prot-auth-title {
	font-size: 18px;
	font-weight: bold;
}
.prot-auth-close {
	font-size: 24px;
	cursor: pointer;
}
.prot-auth-tabs {
	display: flex;
	border-bottom: 1px solid var(--border-color);
}
.prot-auth-tab {
	flex: 1;
	text-align: center;
	padding: 15px;
	cursor: pointer;
	font-weight: 500;
}
.prot-auth-tab.prot-active {
	color: var(--primary-color);
	border-bottom: 2px solid var(--primary-color);
}
.prot-auth-content {
	padding: 20px;
}
.prot-auth-form {
	display: none;
}
.prot-auth-form.prot-active {
	display: block;
}
.prot-form-group {
	margin-bottom: 15px;
}
.prot-form-label {
	display: block;
	margin-bottom: 5px;
	font-weight: 500;
}
.prot-form-input {
	width: 100%;
	padding: 10px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
}
.prot-form-input:focus {
	outline: none;
	border-color: var(--primary-color);
}
.prot-auth-btn {
	background-color: var(--primary-color);
	color: var(--white);
	border: none;
	padding: 12px;
	width: 100%;
	font-size: 16px;
	font-weight: 500;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
	margin-top: 10px;
}
.prot-auth-btn:hover {
	background-color: var(--secondary-color);
}
.prot-auth-footer {
	text-align: center;
	margin-top: 20px;
	color: var(--gray);
}
.prot-auth-link {
	color: var(--primary-color);
	text-decoration: none;
}
.prot-auth-link:hover {
	text-decoration: underline;
}
/* Responsive Styles */
@media (max-width: 768px) {
	.prot-upper-wrapper {
		flex-direction: column;
		text-align: center;
	}        
	.prot-upper-right {
		margin-top: 5px;
	}        
	.prot-nav-list {
		display: none;
	}        
	.prot-header-inner {
		position: relative;
		justify-content: space-between;
		padding: 15px 20px;
	}        
	.prot-burger {
		display: block;
		position: relative;
		left: auto;
		top: auto;
		color: #71202f;
		transform: none;
		font-size: 24px;
	}
	.prot-brand {
		flex: 1;
		text-align: center;
	}
	.prot-brand img{
		width: 100px;
	}
	.prot-actions {
		position: relative;
		right: auto;
		top: auto;
		transform: none;
		display: flex;
		gap: 15px;
		align-items: center;
	}
	.prot-action-btn {
		margin-left: 0;
		font-size: 20px;
	}
	.prot-user-text {
		display: none;
	}
	.prot-profile-dropdown {
		margin-left: 0;
	}
	.prot-profile-trigger {
		padding: 0;
		background-color: transparent;
	}
	.prot-profile-trigger:hover {
		background-color: transparent;
	}
	.prot-profile-avatar {
		width: 32px;
		height: 32px;
		font-size: 14px;
		margin-right: 0;
	}
	.prot-profile-trigger span {
		display: none;
	}
	.prot-profile-menu {
		min-width: 160px;
	}
	.prot-cart-panel {
		width: 300px;
	}
}