/* Main Layout */
main {
	position: relative;
	height: 700px;
	width: 100%;
	overflow: hidden;
	padding: 0;
	box-sizing: border-box;
}

/* Promotional Carousel */
.carousel-container {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.carousel-slide {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	background: linear-gradient(135deg, #1a2a6c, #2a4a7c, #3d6ea0);
	display: flex;
	align-items: center;
	justify-content: center;
}

.carousel-slide.active {
	opacity: 1;
}

.slide-content {
	display: flex;
	width: 90%;
	max-width: 1200px;
	align-items: center;
	justify-content: space-between;
	color: white;
}

.slide-text {
	flex: 1;
	padding-right: 40px;
}

.slide-text h2 {
	font-size: 3rem;
	margin-bottom: 20px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.slide-text p {
	font-size: 1.3rem;
	margin-bottom: 30px;
	line-height: 1.6;
	max-width: 500px;
}

.shop-now-btn {
	background-color: #ff6b35;
	color: white;
	border: none;
	padding: 15px 35px;
	font-size: 1.2rem;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: bold;
}

.shop-now-btn:hover {
	background-color: #e55a2b;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.slide-image {
	flex: 1;
	display: flex;
	justify-content: center;
}

.slide-image img {
	max-height: 400px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Carousel Controls */
.carousel-control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(255,255,255,0.2);
	color: white;
	border: none;
	font-size: 28px;
	padding: 20px;
	cursor: pointer;
	transition: background-color 0.3s;
	z-index: 10;
}

.carousel-control:hover {
	background-color: rgba(255,255,255,0.4);
}

.prev {
	left: 20px;
	border-radius: 0 5px 5px 0;
}

.next {
	right: 20px;
	border-radius: 5px 0 0 5px;
}

/* Carousel Indicators */
.carousel-indicators {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 15px;
}

.indicator {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: rgba(255,255,255,0.5);
	cursor: pointer;
	transition: background-color 0.3s;
}

.indicator.active {
	background-color: white;
}

/* Featured Products Section */
.featured-products {
	padding: 80px 20px;
	background-color: #f8f9fa;
	text-align: center;
}

.featured-products h2 {
	font-size: 2.5rem;
	margin-bottom: 50px;
	color: #2a4a7c;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.product-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.product-card h3 {
	padding: 20px 15px 10px;
	margin: 0;
	color: #2a4a7c;
	font-size: 1.3rem;
}

.price {
	font-size: 1.5rem;
	font-weight: bold;
	color: #ff6b35;
	padding: 0 15px;
	margin: 15px 0;
}

.view-details-btn {
	background-color: #2a4a7c;
	color: white;
	border: none;
	padding: 12px 25px;
	margin: 20px;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s;
	font-size: 1rem;
}

.view-details-btn:hover {
	background-color: #1a2a6c;
}

/* Responsive Design */
@media only screen and (max-width: 900px) {
	main {
		height: 600px;
	}
	
	.slide-content {
		flex-direction: column;
		text-align: center;
		padding: 20px;
	}
	
	.slide-text {
		padding-right: 0;
		margin-bottom: 30px;
	}
	
	.slide-text h2 {
		font-size: 2.5rem;
	}
	
	.slide-text p {
		font-size: 1.2rem;
	}
	
	.slide-image img {
		max-height: 300px;
	}
	
	.carousel-control {
		padding: 15px;
		font-size: 22px;
	}
}

@media only screen and (max-width: 600px) {
	main {
		height: 500px;
	}
	
	.slide-text h2 {
		font-size: 2rem;
	}
	
	.slide-text p {
		font-size: 1.1rem;
	}
	
	.slide-image img {
		max-height: 200px;
	}
	
	.shop-now-btn {
		padding: 12px 25px;
		font-size: 1.1rem;
	}
	
	.featured-products {
		padding: 60px 15px;
	}
	
	.featured-products h2 {
		font-size: 2rem;
	}
	
	.products-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}