/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.6
	Stable tag: 3.4.6
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/

/* ========================================
   CUSTOM STICKY HEADER STYLES
   ======================================== */

/* Header Container */
.site-header.sticky-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	transition: all 0.4s ease;
	background: transparent;
	padding: 20px 0;
}

/* Header scrolled state */
.site-header.sticky-header.scrolled {
	background: #ffffff;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	padding: 15px 0;
}

/* Header inner container */
.header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Left Navigation */
.header-nav-left {
	flex: 1;
}

.header-nav-left ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 40px;
}

.header-nav-left ul li {
	margin: 0;
}

.header-nav-left ul li a {
	text-decoration: none;
	color: #1c1c1c;
	font-family: 'Sofia Sans Extra Condensed', sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	transition: opacity 0.3s ease;
}

.header-nav-left ul li a:hover {
	opacity: 0.7;
}

/* Center Logo */
.header-logo {
	flex: 0 0 auto;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.header-logo a {
	display: block;
	text-decoration: none;
}

.header-logo .logo-img {
	height: 40px;
	width: auto;
	transition: height 0.3s ease;
}

.site-header.scrolled .header-logo .logo-img {
	height: 35px;
}

.site-title {
	font-family: 'Sofia Sans Extra Condensed', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #1c1c1c;
	text-transform: uppercase;
	letter-spacing: 2px;
}

/* Right Icons */
.header-nav-right {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.cart-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1c1c1c;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.cart-icon:hover {
	opacity: 0.7;
}

.cart-icon svg {
	width: 24px;
	height: 24px;
}

.cart-count {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #1c1c1c;
	color: #ffffff;
	font-size: 11px;
	font-weight: 600;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Header Spacer */
.header-spacer {
	height: 80px;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
	.header-container {
		padding: 0 20px;
	}
	
	.header-nav-left ul {
		gap: 20px;
	}
	
	.header-nav-left ul li a {
		font-size: 12px;
		letter-spacing: 1px;
	}
	
	.header-logo .logo-img {
		height: 30px;
	}
}
