.pk-home{
	background:#0f1114;
	color:#fff;
}

.pk-hero{
	position:relative;
	min-height:560px;
	overflow:hidden;
	background:#0f1114;
}

.pk-hero__bg{
	position:absolute;
	inset:0;
	background:
		linear-gradient(90deg, rgba(5,7,10,.96) 0%, rgba(5,7,10,.76) 44%, rgba(5,7,10,.22) 100%),
		url("../images/hero-lighter.jpg") center/cover no-repeat;
}

.pk-hero__inner{
	position:relative;
	z-index:2;
	min-height:560px;
	display:flex;
	align-items:center;
}

.pk-hero__content{
	max-width:620px;
}

.pk-badge{
	display:inline-flex;
	background:rgba(229,57,53,.16);
	color:#ff7a75;
	border:1px solid rgba(229,57,53,.4);
	border-radius:999px;
	padding:8px 16px;
	font-size:14px;
	margin-bottom:22px;
}

.pk-hero h1{
	font-size:62px;
	line-height:1.25;
	margin:0 0 24px;
	font-weight:900;
	color:#fff;
}

.pk-hero h1 span{
	display:block;
	color:#ff7a00;
}

.pk-hero p{
	font-size:18px;
	line-height:2.1;
	color:#e5e5e5;
	max-width:560px;
}

.pk-hero__actions{
	display:flex;
	gap:16px;
	margin-top:34px;
}

.pk-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:15px 24px;
	border-radius:12px;
	text-decoration:none;
	font-weight:800;
	transition:.2s;
}

.pk-btn--primary{
	background:#E53935;
	color:#fff;
}

.pk-btn--primary:hover{
	background:#C62828;
	color:#fff;
}

.pk-btn--outline{
	border:1px solid rgba(255,255,255,.28);
	color:#fff;
	background:rgba(255,255,255,.05);
}

.pk-btn--outline:hover{
	border-color:#E53935;
	color:#fff;
}

/* Features */

.pk-features{
	margin-top:-42px;
	position:relative;
	z-index:3;
}

.pk-features__grid{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:16px;
}

.pk-feature{
	display:flex;
	align-items:center;
	gap:18px;
	background:
		linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025)),
		#15181d;
	border:1px solid #2A2A2A;
	border-radius:16px;
	padding:24px;
	min-height:125px;
	box-shadow:0 20px 50px rgba(0,0,0,.22);
}

.pk-feature__icon{
	width:58px;
	height:58px;
	min-width:58px;
	display:flex;
	align-items:center;
	justify-content:center;
	border-radius:18px;
	background:rgba(229,57,53,.08);
	border:1px solid rgba(229,57,53,.32);
}

.pk-feature__icon svg{
	width:34px;
	height:34px;
	fill:none;
	stroke:#E53935;
	stroke-width:1.8;
	stroke-linecap:round;
	stroke-linejoin:round;
}

.pk-feature strong{
	display:block;
	font-size:20px;
	margin-bottom:8px;
	color:#fff;
}

.pk-feature span{
	display:block;
	color:#bdbdbd;
	line-height:1.8;
	font-size:14px;
}

/* Categories */

.pk-categories{
	padding:70px 0;
}

.pk-section-head{
	display:flex;
	align-items:center;
	justify-content:space-between;
	margin-bottom:28px;
}

.pk-section-head h2{
	font-size:30px;
	margin:0;
	color:#fff;
}

.pk-section-head a{
	color:#E53935;
	text-decoration:none;
	font-weight:800;
}

.pk-category-grid{
	display:grid;
	grid-template-columns:repeat(6,1fr);
	gap:16px;
}

.pk-category-card{
	position:relative;
	overflow:hidden;
	background:#fff;
	color:#111;
	text-decoration:none;
	border-radius:16px;
	min-height:160px;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	padding:18px;
	transition:.25s;
	box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.pk-category-card::before{
	content:"";
	position:absolute;
	inset:0;
	background:linear-gradient(180deg, rgba(229,57,53,.06), transparent);
	opacity:0;
	transition:.25s;
}

.pk-category-card img{
	position:relative;
	z-index:2;
	width:100%;
	max-width:120px;
	height:80px;
	object-fit:contain;
	margin-bottom:14px;
}

.pk-category-card span{
	position:relative;
	z-index:2;
	font-size:21px;
	font-weight:900;
}

.pk-category-card:hover{
	transform:translateY(-5px);
	color:#E53935;
}

.pk-category-card:hover::before{
	opacity:1;
}

@media(max-width:1000px){
	.pk-hero h1{
		font-size:42px;
	}

	.pk-features__grid{
		grid-template-columns:repeat(2,1fr);
	}

	.pk-category-grid{
		grid-template-columns:repeat(2,1fr);
	}
}

@media(max-width:600px){
	.pk-hero{
		min-height:520px;
	}

	.pk-hero__inner{
		min-height:520px;
	}

	.pk-hero h1{
		font-size:34px;
	}

	.pk-hero__actions{
		flex-direction:column;
	}

	.pk-features__grid{
		grid-template-columns:1fr;
	}

	.pk-category-grid{
		grid-template-columns:1fr 1fr;
	}

	.pk-feature{
		padding:20px;
	}
	
	/* Products */

.pk-products{
	padding:10px 0 80px;
}

.pk-product-grid{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:18px;
}

.pk-product-card{
	background:#fff;
	color:#111;
	text-decoration:none;
	border-radius:18px;
	overflow:hidden;
	box-shadow:0 18px 45px rgba(0,0,0,.2);
	transition:.25s;
}

.pk-product-card:hover{
	transform:translateY(-5px);
}

.pk-product-card__image{
	background:#f6f6f6;
	height:220px;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:18px;
}

.pk-product-card__image img{
	max-width:100%;
	max-height:100%;
	object-fit:contain;
}

.pk-product-card__body{
	padding:18px;
}

.pk-product-card__body h3{
	font-size:17px;
	line-height:1.7;
	margin:0 0 10px;
	color:#111;
}

.pk-product-card__price{
	color:#E53935;
	font-weight:900;
	margin-bottom:14px;
}

.pk-product-card__btn{
	display:inline-flex;
	background:#111;
	color:#fff;
	border-radius:10px;
	padding:9px 14px;
	font-size:13px;
	font-weight:800;
}

.pk-empty-products{
	background:#15181d;
	border:1px solid #2A2A2A;
	border-radius:16px;
	padding:26px;
	color:#bdbdbd;
	line-height:2;
}

@media(max-width:1000px){
	.pk-product-grid{
		grid-template-columns:repeat(2,1fr);
	}
}

@media(max-width:600px){
	.pk-product-grid{
		grid-template-columns:1fr;
	}
    }
    
    .pk-product-card{
	position:relative;
	background:#fff;
	color:#111;
	text-decoration:none;
	border-radius:20px;
	overflow:hidden;
	box-shadow:0 18px 45px rgba(0,0,0,.22);
	transition:.25s;
	border:1px solid rgba(255,255,255,.08);
}

.pk-product-card:hover{
	transform:translateY(-6px);
	box-shadow:0 24px 60px rgba(0,0,0,.28);
}

.pk-product-card__image{
	position:relative;
	background:#f5f5f5;
	height:230px;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:20px;
}

.pk-product-card__image img{
	width:100%;
	height:100%;
	object-fit:contain;
}

.pk-product-card__badge{
	position:absolute;
	top:14px;
	right:14px;
	z-index:2;
	background:#E53935;
	color:#fff;
	border-radius:999px;
	padding:6px 12px;
	font-size:12px;
	font-weight:900;
}

.pk-product-card__body{
	padding:18px;
}

.pk-product-card__meta{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:10px;
	margin-bottom:12px;
	font-size:12px;
	font-weight:800;
}

.pk-product-card__meta span:first-child{
	color:#777;
}

.pk-product-card__meta .is-in-stock{
	color:#1f9d55;
}

.pk-product-card__meta .is-out-of-stock{
	color:#E53935;
}

.pk-product-card__body h3{
	font-size:17px;
	line-height:1.8;
	margin:0 0 10px;
	color:#111;
	min-height:58px;
}

.pk-product-card__sku{
	color:#777;
	font-size:13px;
	margin-bottom:12px;
}

.pk-product-card__price{
	color:#E53935;
	font-size:18px;
	font-weight:900;
	margin-bottom:16px;
}

.pk-product-card__price--empty{
	color:#111;
}

.pk-product-card__btn{
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
	background:#111;
	color:#fff;
	border-radius:12px;
	padding:11px 14px;
	font-size:14px;
	font-weight:900;
	transition:.2s;
}

.pk-product-card:hover .pk-product-card__btn{
	background:#E53935;
    }
    
    
    /* Enhanced Product Card */

.pk-product-grid{
	gap:22px;
}

.pk-product-card{
	position:relative;
	display:flex;
	flex-direction:column;
	background:
		linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02)),
		#15181d;
	color:#fff;
	text-decoration:none;
	border-radius:24px;
	overflow:hidden;
	border:1px solid rgba(255,255,255,.08);
	box-shadow:0 22px 60px rgba(0,0,0,.28);
	transition:.28s ease;
}

.pk-product-card::before{
	content:"";
	position:absolute;
	inset:0;
	background:
		radial-gradient(circle at top right, rgba(229,57,53,.22), transparent 35%);
	opacity:0;
	transition:.28s ease;
	pointer-events:none;
}

.pk-product-card:hover{
	transform:translateY(-7px);
	border-color:rgba(229,57,53,.55);
	box-shadow:0 30px 80px rgba(0,0,0,.38);
}

.pk-product-card:hover::before{
	opacity:1;
}

.pk-product-card__media{
	position:relative;
	height:245px;
	margin:14px;
	border-radius:20px;
	background:
		linear-gradient(145deg, #ffffff, #f1f1f1);
	display:flex;
	align-items:center;
	justify-content:center;
	padding:22px;
	overflow:hidden;
}

.pk-product-card__media::after{
	content:"";
	position:absolute;
	width:180px;
	height:180px;
	border-radius:50%;
	background:rgba(229,57,53,.08);
	filter:blur(8px);
	z-index:1;
}

.pk-product-card__media img{
	position:relative;
	z-index:2;
	width:100%;
	height:100%;
	object-fit:contain;
	transition:.28s ease;
}

.pk-product-card:hover .pk-product-card__media img{
	transform:scale(1.06);
}

.pk-product-card__badges{
	position:absolute;
	top:14px;
	right:14px;
	left:14px;
	z-index:3;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:10px;
}

.pk-product-card__badge,
.pk-product-card__stock{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	border-radius:999px;
	padding:7px 12px;
	font-size:12px;
	font-weight:900;
	line-height:1;
}

.pk-product-card__badge--primary{
	background:#E53935;
	color:#fff;
	box-shadow:0 8px 20px rgba(229,57,53,.35);
}

.pk-product-card__stock{
	background:#fff;
	color:#111;
}

.pk-product-card__stock.is-in-stock{
	color:#168447;
}

.pk-product-card__stock.is-out-of-stock{
	color:#E53935;
}

.pk-product-card__body{
	position:relative;
	z-index:2;
	padding:4px 20px 20px;
}

.pk-product-card__category{
	display:inline-flex;
	color:#ff7a75;
	background:rgba(229,57,53,.1);
	border:1px solid rgba(229,57,53,.22);
	border-radius:999px;
	padding:6px 11px;
	font-size:12px;
	font-weight:900;
	margin-bottom:12px;
}

.pk-product-card__body h3{
	color:#fff;
	font-size:18px;
	line-height:1.75;
	margin:0 0 8px;
	min-height:62px;
	font-weight:900;
}

.pk-product-card__sku{
	color:#9f9f9f;
	font-size:13px;
	margin-bottom:14px;
}

.pk-product-card__specs{
	display:grid;
	grid-template-columns:1fr;
	gap:8px;
	margin-bottom:18px;
}

.pk-product-card__specs span{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:10px;
	background:rgba(255,255,255,.045);
	border:1px solid rgba(255,255,255,.075);
	border-radius:12px;
	padding:9px 11px;
	color:#d6d6d6;
	font-size:13px;
}

.pk-product-card__specs strong{
	color:#fff;
	font-size:12px;
}

.pk-product-card__footer{
	border-top:1px solid rgba(255,255,255,.08);
	padding-top:16px;
}

.pk-product-card__price{
	color:#fff;
	font-size:19px;
	font-weight:1000;
	margin-bottom:14px;
}

.pk-product-card__price ins{
	color:#E53935;
	text-decoration:none;
}

.pk-product-card__price bdi{
	color:#E53935;
}

.pk-product-card__price--empty{
	color:#fff;
}

.pk-product-card__btn{
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
	min-height:46px;
	background:#E53935;
	color:#fff;
	border-radius:14px;
	font-size:14px;
	font-weight:1000;
	transition:.22s ease;
	box-shadow:0 12px 28px rgba(229,57,53,.25);
}

.pk-product-card:hover .pk-product-card__btn{
	background:#C62828;
	box-shadow:0 16px 34px rgba(229,57,53,.36);
}

@media(max-width:600px){
	.pk-product-card__media{
		height:220px;
	}

	.pk-product-card__body h3{
		min-height:auto;
	}
}



/* Final Desktop Product Card Fix */

.pk-products{
	background:#0f1114;
	padding:40px 0 90px;
}

.pk-products .pk-product-grid{
	display:grid !important;
	grid-template-columns:repeat(auto-fit, minmax(280px, 330px)) !important;
	gap:24px !important;
	justify-content:start !important;
	direction:rtl;
}

.pk-products .pk-product-card{
	position:relative !important;
	display:flex !important;
	flex-direction:column !important;
	background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025)), #15181d !important;
	color:#fff !important;
	text-decoration:none !important;
	border-radius:24px !important;
	overflow:hidden !important;
	border:1px solid rgba(255,255,255,.09) !important;
	box-shadow:0 22px 60px rgba(0,0,0,.32) !important;
	transition:.25s ease !important;
}

.pk-products .pk-product-card:hover{
	transform:translateY(-6px);
	border-color:rgba(229,57,53,.55) !important;
	box-shadow:0 28px 75px rgba(0,0,0,.42) !important;
}

.pk-products .pk-product-card__media{
	position:relative !important;
	height:245px !important;
	margin:14px !important;
	border-radius:20px !important;
	background:linear-gradient(145deg,#ffffff,#f2f2f2) !important;
	display:flex !important;
	align-items:center !important;
	justify-content:center !important;
	padding:22px !important;
	overflow:hidden !important;
}

.pk-products .pk-product-card__media img{
	width:100% !important;
	height:100% !important;
	object-fit:contain !important;
	position:relative !important;
	z-index:2 !important;
	transition:.25s ease !important;
}

.pk-products .pk-product-card:hover .pk-product-card__media img{
	transform:scale(1.06);
}

.pk-products .pk-product-card__badges{
	position:absolute !important;
	top:14px !important;
	right:14px !important;
	left:14px !important;
	z-index:4 !important;
	display:flex !important;
	align-items:center !important;
	justify-content:space-between !important;
	gap:10px !important;
}

.pk-products .pk-product-card__badge,
.pk-products .pk-product-card__stock{
	display:inline-flex !important;
	align-items:center !important;
	justify-content:center !important;
	border-radius:999px !important;
	padding:7px 12px !important;
	font-size:12px !important;
	font-weight:900 !important;
	line-height:1 !important;
	text-decoration:none !important;
}

.pk-products .pk-product-card__badge--primary{
	background:#E53935 !important;
	color:#fff !important;
	box-shadow:0 8px 20px rgba(229,57,53,.35) !important;
}

.pk-products .pk-product-card__stock{
	background:#fff !important;
	color:#111 !important;
}

.pk-products .pk-product-card__stock.is-in-stock{
	color:#168447 !important;
}

.pk-products .pk-product-card__stock.is-out-of-stock{
	color:#E53935 !important;
}

.pk-products .pk-product-card__body{
	padding:4px 20px 20px !important;
	color:#fff !important;
}

.pk-products .pk-product-card__category{
	display:inline-flex !important;
	color:#ff7a75 !important;
	background:rgba(229,57,53,.1) !important;
	border:1px solid rgba(229,57,53,.22) !important;
	border-radius:999px !important;
	padding:6px 11px !important;
	font-size:12px !important;
	font-weight:900 !important;
	margin-bottom:12px !important;
}

.pk-products .pk-product-card__body h3{
	color:#fff !important;
	font-size:18px !important;
	line-height:1.75 !important;
	margin:0 0 8px !important;
	min-height:62px !important;
	font-weight:900 !important;
}

.pk-products .pk-product-card__sku{
	color:#aaa !important;
	font-size:13px !important;
	margin-bottom:14px !important;
}

.pk-products .pk-product-card__specs{
	display:grid !important;
	grid-template-columns:1fr !important;
	gap:8px !important;
	margin-bottom:18px !important;
}

.pk-products .pk-product-card__specs span{
	display:flex !important;
	align-items:center !important;
	justify-content:space-between !important;
	gap:10px !important;
	background:rgba(255,255,255,.045) !important;
	border:1px solid rgba(255,255,255,.075) !important;
	border-radius:12px !important;
	padding:9px 11px !important;
	color:#d6d6d6 !important;
	font-size:13px !important;
}

.pk-products .pk-product-card__specs strong{
	color:#fff !important;
	font-size:12px !important;
}

.pk-products .pk-product-card__footer{
	border-top:1px solid rgba(255,255,255,.08) !important;
	padding-top:16px !important;
}

.pk-products .pk-product-card__price{
	color:#E53935 !important;
	font-size:19px !important;
	font-weight:900 !important;
	margin-bottom:14px !important;
}

.pk-products .pk-product-card__price bdi,
.pk-products .pk-product-card__price .woocommerce-Price-amount{
	color:#E53935 !important;
}

.pk-products .pk-product-card__btn{
	display:flex !important;
	align-items:center !important;
	justify-content:center !important;
	width:100% !important;
	min-height:46px !important;
	background:#E53935 !important;
	color:#fff !important;
	border-radius:14px !important;
	font-size:14px !important;
	font-weight:900 !important;
	transition:.22s ease !important;
	box-shadow:0 12px 28px rgba(229,57,53,.25) !important;
}

.pk-products .pk-product-card:hover .pk-product-card__btn{
	background:#C62828 !important;
}

@media(max-width:600px){
	.pk-products .pk-product-grid{
		grid-template-columns:1fr !important;
	}

	.pk-products .pk-product-card__media{
		height:220px !important;
	}

	.pk-products .pk-product-card__body h3{
		min-height:auto !important;
	}
}

    
    
}