* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	cursor: default;
	font-family: "Arial", "Helvetica", sans-serif;
	text-decoration: none;
}

*:focus {
	outline: none;
}

body {
	width: 100%;
	height: auto;
	position: relative;
	display: flex;
	flex-direction: column;
	touch-action: pan-x pan-y;
	background-color: #f5f5f5;
	min-height: 100vh;
}

/* Header Styles */
.homeHeader {
	width: 100%;
	background-color: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	z-index: 1000;
}

.homeHeaderContainer {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 20px;
	gap: 30px;
}

.homeHeaderLogo h1 {
	font-size: 28px;
	font-weight: bold;
	color: #333;
	letter-spacing: 2px;
	cursor: pointer;
}

.homeHeaderNav {
	flex: 1;
	max-width: 600px;
}

.homeHeaderNavList {
	display: flex;
	list-style: none;
	gap: 25px;
	justify-content: center;
	flex-wrap: wrap;
}

.homeHeaderNavLink {
	color: #333;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	transition: color 0.3s ease;
	cursor: pointer;
	padding: 8px 0;
}

.homeHeaderNavLink:hover {
	color: #007bff;
}

.homeHeaderActions {
	display: flex;
	align-items: center;
	gap: 20px;
}

.homeHeaderSearch {
	position: relative;
	display: flex;
	align-items: center;
}

.homeHeaderSearchInput {
	width: 250px;
	padding: 10px 40px 10px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 25px;
	font-size: 14px;
	transition: border-color 0.3s ease;
}

.homeHeaderSearchInput:focus {
	border-color: #007bff;
}

.homeHeaderSearchBtn {
	position: absolute;
	right: 5px;
	background: none;
	border: none;
	padding: 8px;
	cursor: pointer;
	border-radius: 50%;
	transition: background-color 0.3s ease;
}

.homeHeaderSearchBtn:hover {
	background-color: #f0f0f0;
}

.homeHeaderSearchIcon {
	width: 20px;
	height: 20px;
	fill: #666;
}

.homeHeaderUserBtn,
.homeHeaderCartBtn {
	display: flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: none;
	padding: 10px 15px;
	border-radius: 25px;
	transition: background-color 0.3s ease;
	cursor: pointer;
	font-size: 14px;
	color: #333;
}

.homeHeaderUserBtn:hover,
.homeHeaderCartBtn:hover {
	background-color: #f0f0f0;
}

.homeHeaderUserIcon,
.homeHeaderCartIcon {
	width: 20px;
	height: 20px;
	fill: #666;
}

.homeHeaderCartCount {
	background-color: #ff4757;
	color: white;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: bold;
	margin-left: -5px;
}

/* Main Content */
.homeMain {
	margin-top: 80px;
	flex: 1;
}

/* Hero Section */
.homeHero {
	position: relative;
	height: 70vh;
	min-height: 500px;
	overflow: hidden;
}

.homeHeroSlider {
	width: 100%;
	height: 100%;
	position: relative;
}

.homeHeroSlide {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
}

.homeHeroSlideActive {
	opacity: 1;
}

.homeHeroContent {
	text-align: center;
	color: white;
	z-index: 2;
	max-width: 600px;
	padding: 0 20px;
}

.homeHeroTitle {
	font-size: 4rem;
	font-weight: bold;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	letter-spacing: 3px;
}

.homeHeroSubtitle {
	font-size: 1.5rem;
	margin-bottom: 30px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	font-weight: 300;
}

.homeHeroCta {
	background-color: #ff4757;
	color: white;
	border: none;
	padding: 15px 40px;
	font-size: 18px;
	font-weight: bold;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.homeHeroCta:hover {
	background-color: #ff3742;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
}

.homeHeroImage {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('https://images.unsplash.com/photo-1549298916-b41d501d3772?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.3;
	z-index: 1;
}

.homeHeroControls {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 30px;
	z-index: 3;
}

.homeHeroPrev,
.homeHeroNext {
	background-color: rgba(255, 255, 255, 0.2);
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.homeHeroPrev:hover,
.homeHeroNext:hover {
	background-color: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

.homeHeroPrev svg,
.homeHeroNext svg {
	width: 24px;
	height: 24px;
	fill: white;
}

/* WhatsApp Float Button */
.homeWhatsapp {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1000;
}

.homeWhatsappBtn {
	width: 60px;
	height: 60px;
	background-color: #25d366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	transition: all 0.3s ease;
	cursor: pointer;
}

.homeWhatsappBtn:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.homeWhatsappIcon {
	width: 30px;
	height: 30px;
	fill: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.homeHeaderContainer {
		padding: 15px;
		gap: 20px;
	}
	
	.homeHeaderSearchInput {
		width: 200px;
	}
	
	.homeHeaderNavList {
		gap: 15px;
	}
	
	.homeHeroTitle {
		font-size: 3rem;
	}
	
	.homeHeroSubtitle {
		font-size: 1.2rem;
	}
}

@media (max-width: 768px) {
	.homeHeaderContainer {
		flex-direction: column;
		gap: 15px;
		padding: 10px;
	}
	
	.homeHeaderNav {
		order: 3;
		width: 100%;
	}
	
	.homeHeaderNavList {
		justify-content: center;
		gap: 10px;
	}
	
	.homeHeaderNavLink {
		font-size: 12px;
		padding: 5px 8px;
	}
	
	.homeHeaderActions {
		order: 2;
		gap: 15px;
	}
	
	.homeHeaderSearchInput {
		width: 180px;
	}
	
	.homeHeaderUserBtn span {
		display: none;
	}
	
	.homeMain {
		margin-top: 140px;
	}
	
	.homeHero {
		height: 60vh;
		min-height: 400px;
	}
	
	.homeHeroTitle {
		font-size: 2.5rem;
	}
	
	.homeHeroSubtitle {
		font-size: 1rem;
	}
	
	.homeHeroCta {
		padding: 12px 30px;
		font-size: 16px;
	}
	
	.homeHeroControls {
		padding: 0 20px;
	}
	
	.homeHeroPrev,
	.homeHeroNext {
		width: 40px;
		height: 40px;
	}
	
	.homeHeroPrev svg,
	.homeHeroNext svg {
		width: 20px;
		height: 20px;
	}
}

@media (max-width: 480px) {
	.homeHeaderLogo h1 {
		font-size: 24px;
	}
	
	.homeHeaderSearchInput {
		width: 150px;
		padding: 8px 35px 8px 12px;
	}
	
	.homeHeaderNavList {
		flex-wrap: wrap;
		gap: 8px;
	}
	
	.homeHeaderNavLink {
		font-size: 11px;
		padding: 4px 6px;
	}
	
	.homeMain {
		margin-top: 160px;
	}
	
	.homeHero {
		height: 50vh;
		min-height: 350px;
	}
	
	.homeHeroTitle {
		font-size: 2rem;
		margin-bottom: 15px;
	}
	
	.homeHeroSubtitle {
		font-size: 0.9rem;
		margin-bottom: 25px;
	}
	
	.homeHeroCta {
		padding: 10px 25px;
		font-size: 14px;
	}
	
	.homeWhatsapp {
		bottom: 20px;
		right: 20px;
	}
	
	.homeWhatsappBtn {
		width: 50px;
		height: 50px;
	}
	
	.homeWhatsappIcon {
		width: 25px;
		height: 25px;
	}
}