.nav .menu ul li:nth-child(1) a {
	color: #0900ff
}

.heroarea {
	display: block;
	width: 100%;
	margin-top: 40px;
	padding: 0 10px;
}


.slideBox {
	width: calc(100% - 270px);
	height: 420px;
	position: relative;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
	padding: 5px;
	float: right;
	overflow: hidden;
}

.slideBox::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	background: linear-gradient(135deg, #a056ff, #50C878, #ffcc00, #a056ff);
	background-size: 400%;
	border-radius: 12px;
	z-index: 0;
	animation: borderMove 6s ease-in-out infinite;
}

.slideBox::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 10px;
	background: transparent;
	z-index: 1;
	pointer-events: none;
}

.slider-content {
	position: relative;
	z-index: 2;
	height: 100%;
	width: 100%;
	background: #ffffff;
	border-radius: 6px;
}

@keyframes borderMove {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}



.slideBox .slide {
	width: 100%;
	height: 100%;
}

.slideBox .slide img {
	width: 100%;
	height: 410px;
	object-fit: cover;
	border-radius: 10px;
	cursor: grab
}

.slideBox .slick-dots {
	display: flex;
	justify-content: center;
	padding: 1rem 0;
	list-style-type: none;
	z-index: 999;
	position: absolute;
	left: 50%;
	bottom: -20px;
	transform: translate(-50%, 0)
}

.slideBox .slick-dots li {
	margin: 0 .25rem
}

.slideBox .slick-dots button {
	display: block;
	width: 1rem;
	height: 1rem;
	padding: 0;
	border: none;
	border-radius: 100%;
	background-color: orange !important;
	text-indent: -9999px
}

.slideBox .slick-dots li.slick-active button {
	background-color: blue !important
}

.CampaignBox {
	width: 250px;
	height: 420px;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
	float: left;
	padding: 10px;
	overflow: hidden;
	overflow-y: auto
}

.CampaignBox a {
	display: block;
	width: 100%;
	color: #000;
	background: #fff;
	padding: 15px 10px;
	margin-bottom: 10px;
	border-radius: 10px;
	font-size: 20px;
	transition: all .3s linear;
	box-shadow: 0 0 7px -3px rgba(0, 0, 0, 0.57);
}

.CampaignBox a:hover {
	background: #f2f2f2;
	color: #040000;
	transition: all .3s linear;
	box-shadow: 0 0 7px -3px rgba(0, 0, 0, 0.57) inset;
}

.CampaignBox a i {
	margin-right: 10px
}

.categoris {
	margin-top: 20px;
	float: left;
	width: 100%;
	padding: 0 5px;
}

.categoris .categoryBox {
	width: calc(100% / 5 - 20px);
	height: auto;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
	float: left;
	margin: 0 10px;
	text-align: center;
	padding: 8px 20px;
	transition: .5s ease-in-out;
	border: 1px solid #e5e5e5;
}

.categoris .categoryBox:first-child {
	width: calc(100% / 5 - 10px);
	margin-left: 0
}

.categoris .categoryBox:last-child {
	width: calc(100% / 5 - 10px);
	margin-right: 0
}

.categoris .categoryBox:hover {
	background-image: linear-gradient(180deg, #fffbf5 0%, #e5f3e678 100%) !important;
	transition: .5s ease-in-out
}

.categoris .categoryBox img {
	width: 40px;
	height: 40px;
	object-fit: cover;
	margin-right: 10px;
	float: left;
	margin-top: 5px;
}

.categoris .categoryBox span {
	display: block;
	font-size: 20px;
	color: #000;
	font-weight: 500;
	float: left;
	line-height: 50px
}

.productBox {
	width: 100%;
	border-radius: 10px;
	margin-top: 25px;
	float: left;
}

.productBoxHeader {
	width: calc(100% - 10px);
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
	padding: 7px 10px;
	border-radius: 5px;
	margin: 0 auto;
	border: 1px solid #e5e5e5;
}

.productBoxHeader h2 {
	font-size: 25px;
	color: #000;
	padding-top: 2px;
}

.productBoxHeader a {
	background: #000;
	color: #fff;
	border-radius: 6px;
	text-decoration: none;
	transition: .3s linear;
	font-size: 14px;
	border: 1px solid #e5e5e5;
	padding: 10px 20px;
	font-weight: bold;
}


.productBoxHeader a:hover {
	color: #ffca0d;
	transition: .3s linear;
}


.productCardRow {
	width: 100%;
	overflow: hidden;
	margin-top: 10px;
}

.productCard {
	width: calc(20% - 20px);
	float: left;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	padding: 15px;
	color: #000;
	transition: .3s linear;
	margin: 10px;
	overflow: hidden;
	position: relative;
	display: block;
	text-align: left;
}

.productCard:hover {
	transition: .3s linear;
	box-shadow: 0 0 7px -3px rgba(0, 0, 0, 0.57);
}

.productCard:hover.productCard img {
	transform: scale(1.05);
	transition: .3s linear
}

.productCard .imgBox {
	width: 100%;
	height: 180px;
	overflow: hidden;
	transition: .3s linear;
	border-radius: 10px;

	background: #DDDBDD;
}


.productCard .imgBox::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transform: translateX(-100%);
	background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
	-webkit-animation: shimmer 5s infinite;
	animation: shimmer 5s infinite;
	content: "";
}

@keyframes shimmer {
	100% {
		transform: translateX(100%);
	}
}

.productCard img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 10px;
	transition: .3s linear
}

.productCard h3 {
	font-size: 18px;
	color: #000000ad;
	margin-top: 15px
}

.productCard p {
	font-size: 14px;
	color: #666;
	margin-bottom: 5px
}

.productCard .price {
	font-size: 16px;
	color: #6e5252;
	font-weight: 700;
	display: block
}

.productCard b {
	font-weight: 400;
	font-size: 13px
}

.productCard .sold {
	float: left;
	font-size: 16px
}

.productCard .sold span {
	font-style: normal
}

.productCard .rating {
	float: left;
	font-size: 14px;
	margin: 2px;
	font-style: italic
}

.productCard .rating i {
	color: #ffca0d
}

.productCard b span {
	font-size: 15px;
	font-style: italic
}

.productCard button {
	position: relative;
	width: 100%;
	padding: 10px 0;
	background-color: #000;
	color: #fff;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	margin-top: 10px;
	overflow: hidden;
	transition: color 0.3s ease, transform 0.1s ease;
}

.productCard button span {
	position: relative;
	z-index: 2;
	transition: color 0.3s ease;
}

/* Background slide layer */
.productCard button::after {
	content: "";
	position: absolute;
	bottom: 2px;
	left: 2px;
	width: calc(100% - 4px);
	height: 0;
	background-color: #ffca0d;
	border-radius: 5px;
	z-index: 1;
	transition: height 0.3s ease;
}

/* Shine effect */
.productCard button::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 50%;
	height: 200%;
	background: rgba(255, 255, 255, 0.3);
	transform: rotate(25deg) translateX(-100%);
	opacity: 0;
	transition: all 0.5s ease;
	z-index: 3;
}

.productCard button:hover::after {
	height: calc(100% - 4px);
}

.productCard button:hover span {
	color: #000;
}

.productCard button:hover::before {
	transform: rotate(25deg) translateX(300%);
	opacity: 1;
}

/* Micro pop effect on click */
.productCard button:active {
	transform: scale(0.97);
}



.store {
	margin-top: 30px;
	float: left;
	width: 100%;
	padding: 0 10px;
}

.store .factory {
	padding: 10px;
	transition: .3s linear;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #e5e5e5;
	background: #fff;
	height: 220px;
}

.store .factory .banner {
	width: 50%;
	float: left;
}

.store .factory .banner img {
	width: 100%;
	height: 200px;
	border-radius: 10px;
	object-fit: cover;
	float: left;
}

.store .factory .data {
	width: 50%;
	float: left;
	padding-left: 10px;
}


.store .shop {
	padding: 10px;
	transition: .3s linear;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #e5e5e5;
	background: #fff;
	height: 220px;
}

.store .shop .banner {
	width: 50%;
	float: right;
}

.store .shop .banner img {
	width: 100%;
	height: 200px;
	border-radius: 10px;
	object-fit: cover;
	float: left;
}

.store .shop .data {
	width: 50%;
	float: left;
	padding-left: 10px;
}



.discountRibbon {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: #00000082;
	color: #fff;
	font-weight: bold;
	font-size: 12px;
	box-shadow: 0 0 5px rgb(0 0 0 / .3);
	z-index: 10;
	pointer-events: none;
	width: 50px;
	text-align: center;
	padding: 5px;
	border-radius: 5px;
}

#loadingIndicator {
	float: left;
	width: 100%;
	margin-top: 30px;
	text-align: center;
	display: none
}

#loadingIndicator span {
	background: #8b8bff;
	padding: 8px 20px;
	border-radius: 30px;
	color: #fff;
	font-weight: 700
}








@media only screen and (max-width:1100px) {
	.categoris .categoryBox img {
		width: 30px;
		height: 30px;
		margin-top: 5px
	}

	.categoris .categoryBox {
		padding: 10px 15px
	}
}

@media only screen and (max-width:1050px) {
	.categoris .categoryBox span {
		font-size: 18px;
		line-height: 45px
	}

	.productCard {
		width: calc(25% - 20px)
	}
}

@media only screen and (max-width:900px) {

	.heroarea {
		display: flex;
		flex-direction: column-reverse;
		margin-top: 30px;
		float: left;
	}

	.slideBox .slide img {
		height: 250px !important;
	}

	.slideBox {
		height: 260px !important;
		width: 100%;
	}


	.CampaignBox {
		width: 100%;
		margin-top: 15px;
		height: auto
	}

	.CampaignBox a {
		width: calc(20% - 20px);
		float: left;
		margin: 10px;
		text-align: center;
		font-size: 15px
	}

	.CampaignBox a span {
		display: block
	}

	.slideBox .slide img {
		height: 350px
	}

	.slideBox {
		height: 360px
	}

	.categoris .categoryBox img {
		margin: 0 auto;
		display: block;
		float: unset
	}

	.categoris .categoryBox span {
		font-size: 18px;
		line-height: inherit;
		text-align: center;
		width: 100%
	}

	.productCard {
		width: calc(33% - 20px)
	}

	.store .banner {
		width: 40% !important;
	}

	.store .data h3 {
		font-size: 16px !important;
		font-weight: bold;
	}

	.store .data p {
		font-size: 14px;
	}
}

@media only screen and (max-width:750px) {
	.store .col-6 {
		width: 100% !important;
		margin-bottom: 15px
	}

	.store .data p {
		font-size: 16px;
	}

	.store .data h3 {
		font-size: 22px !important;
		font-weight: bold;
		padding-top: 25px;
	}
}

@media only screen and (max-width:710px) {
	.slideBox .slide img {
		height: 200px !important;
	}

	.slideBox {
		height: 210px !important;
	}

	.productCard h3 {
		font-size: 16px
	}

	.productCard p {
		font-size: 12px
	}
}

@media only screen and (max-width:650px) {

	.slideBox .slide img {
		height: 190px !important;
	}

	.slideBox {
		height: 200px !important;
	}

	.productCard .imgBox {
		height: 140px
	}

	.productCard img {
		height: 140px
	}
}

@media only screen and (max-width:600px) {

	.slideBox .slide img {
		height: 180px !important;
	}

	.slideBox {
		height: 190px !important;
	}

	.CampaignBox a {
		font-size: 25px;
		padding: 5px
	}

	.CampaignBox a span {
		display: none
	}

	.CampaignBox a i {
		margin-right: 0
	}


	.categoris .categoryBox {
		width: calc(100% / 4 - 20px)
	}

	.categoris .categoryBox {
		width: calc(100% / 2 - 10px) !important;
		margin: 5px !important;
	}


	.categoris .categoryBox:last-child {
		width: 100% !important;
		margin: 0;
		margin-top: 15px
	}

	.categoris .categoryBox:last-child img {
		display: none
	}

	.productCard {
		width: calc(50% - 20px)
	}
}

@media only screen and (max-width:500px) {

	.slideBox .slide img {
		height: 170px !important;
	}

	.slideBox {
		height: 180px !important;
	}



	.productBox {
		padding: 15px 5px
	}

	.productCard {
		width: calc(50% - 10px);
		margin: 5px
	}

	.productBoxHeader {
		margin-bottom: 10px
	}

	.store .factory,
	.store .shop {
		height: auto !important;
	}

	.store .col-6 {
		width: 100% !important;
		margin-bottom: 15px
	}

	.store .banner {
		width: 100% !important;
	}

	.store .data {
		width: 100% !important;
	}

}

@media only screen and (max-width:450px) {

	.slideBox .slide img {
		height: 140px !important;
	}

	.slideBox {
		height: 150px !important;
	}


	.categoris .categoryBox {
		width: calc(100% / 2 - 10px) !important;
		margin: 5px;
	}

	.categoris .categoryBox:first-child {
		width: calc(100% / 2 - 10px) !important;
		margin-left: 5px
	}

	.categoris .categoryBox:last-child {
		width: calc(100% - 10px) !important;
		margin-left: 5px;
		margin-top: 10px;
	}

	.productCard img {
		height: 140px
	}

	.productCard .imgBox {
		height: 140px
	}

	.productCard .sold {
		width: 100%;
		display: block;
		font-size: 14px
	}

	.productCard .sold span {
		display: none
	}

	.productCard p {
		display: none
	}

	.productCard .rating {
		font-size: 12px
	}

	.productCard b span {
		font-size: 14px
	}

	.productCard .price {
		font-size: 18px
	}
}

@media only screen and (max-width:370px) {

	.productCard {
		width: calc(100% - 20px)
	}

	.productCard .imgBox {
		height: 320px
	}

	.productCard img {
		height: 320px;
		object-fit: cover
	}
}