.hero-slider {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.hero-slider-track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
}

.hero-slider-track::-webkit-scrollbar {
	display: none;
}

.hero-slide {
	flex: 0 0 100%;
	scroll-snap-align: start;
	position: relative;
}

.hero-slide img {
	width: 100%;
	height: 450px;
	object-fit: cover;
	display: block;
}

.hero-slide-content {
	position: absolute;
	bottom: 40px;
	right: 40px;
	background: rgba(255, 255, 255, 0.9);
	padding: 20px 30px;
	border-radius: 8px;
	text-align: right;
	max-width: 90%;
}

.hero-slide-content h2 {
	margin: 0 0 15px;
	font-size: 24px;
	color: #222;
}

.hero-slide-btn {
	display: inline-block;
	background: #e63946;
	color: #fff;
	padding: 10px 25px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
}

.hero-slide-btn:hover {
	background: #c1121f;
	color: #fff;
}

@media (max-width: 768px) {
	.hero-slide img {
		height: 250px;
	}

	.hero-slide-content {
		bottom: 15px;
		right: 15px;
		padding: 12px 18px;
	}

	.hero-slide-content h2 {
		font-size: 16px;
		margin-bottom: 8px;
	}
}

.category-grid-section {
	max-width: 1200px;
	margin: 50px auto;
	padding: 0 20px;
	text-align: center;
}

.section-title {
	font-size: 26px;
	margin-bottom: 30px;
	color: #222;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}

.category-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: #222;
	transition: transform 0.2s ease;
}

.category-card:hover {
	transform: translateY(-5px);
	color: #e63946;
}

.category-card-image {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid #eee;
	margin-bottom: 10px;
}

.category-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.category-card-name {
	font-size: 14px;
	font-weight: bold;
}

@media (max-width: 992px) {
	.category-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 600px) {
	.category-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
	}

	.category-card-image {
		width: 70px;
		height: 70px;
	}

	.category-card-name {
		font-size: 12px;
	}
}

.best-sellers-section {
	max-width: 1200px;
	margin: 50px auto;
	padding: 0 20px;
	text-align: center;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	margin-top: 30px;
}

.product-card {
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
	text-align: center;
	padding-bottom: 15px;
	background: #fff;
	transition: box-shadow 0.2s ease;
}

.product-card:hover {
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.product-card-image img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}

.product-card-title {
	font-size: 15px;
	margin: 12px 10px 8px;
}

.product-card-title a {
	color: #222;
	text-decoration: none;
}

.product-card-price {
	font-size: 16px;
	font-weight: bold;
	color: #e63946;
	margin-bottom: 12px;
}

.product-card-price del {
	color: #999;
	font-weight: normal;
	margin-left: 8px;
}

.product-card-btn {
	display: inline-block;
	background: #222;
	color: #fff;
	padding: 8px 20px;
	border-radius: 5px;
	text-decoration: none;
	font-size: 14px;
}

.product-card-btn:hover {
	background: #e63946;
	color: #fff;
}

.trust-badges-section {
	max-width: 1200px;
	margin: 50px auto;
	padding: 30px 20px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	background: #f8f8f8;
	border-radius: 10px;
	text-align: center;
}

.trust-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.trust-badge-icon {
	font-size: 30px;
}

.trust-badge-text {
	font-size: 13px;
	font-weight: bold;
	color: #333;
}

@media (max-width: 992px) {
	.product-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 600px) {
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.trust-badges-section {
		grid-template-columns: repeat(2, 1fr);
	}

	.product-card-image img {
		height: 140px;
	}
}