.shop-category-heading {
	text-align: center;
	margin-bottom: 35px;
}

.shop-category-heading h2 {
	margin: 0;
	color: #050505;
	font-size: clamp(34px, 3vw, 50px);
	line-height: 1;
	font-weight: 900;
	letter-spacing: -2px;
	text-transform: uppercase;
}

.shop-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.shop-category-card {
	position: relative;
	background: #ffffff;
	border: 1px solid #efefef;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
	overflow: hidden;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.shop-category-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.shop-category-offer {
	width: 100%;
	height: 39px;
	display: flex;
	align-items: stretch;
	color: #ffffff;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	font-family: "Montserrat";
	overflow: hidden;
}

.shop-category-discount {
	position: relative;
	width: 36%;
	background: #C0141F;
	display: flex;
	align-items: center;
	padding-left: 18px;
	z-index: 2;
	white-space: nowrap;
}

.shop-category-discount::after {
	content: "";
	position: absolute;
	top: 0;
	right: -17px;
	width: 35px;
	height: 100%;
	background: #C0141F;
	transform: skewX(-24deg);
	z-index: -1;
}

.shop-category-offer-text {
	width: 64%;
	background: #0B2C6A;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 12px;
	white-space: nowrap;
	font-family: "Montserrat" !important;
}

.shop-category-product {
	background: #FFF;
	box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.07);
	font-family: "Montserrat";
}

.shop-category-image {
	height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.shop-category-image img {
	display: block;
	width: auto;
	height: 100%;
	max-width: 100%;
	object-fit: contain;
	transition: transform 0.35s ease;
}

.shop-category-card:hover .shop-category-image img {
	transform: scale(1.035);
}

.shop-category-content {
	padding: 0 15px 14px;
}

.shop-category-content h3 {
	margin: 2px 0 6px;
	color: #000;
	font-size: 24px;
	line-height: 1.05;
	font-weight: 900;
	letter-spacing: -1px;
	text-transform: uppercase;
	font-family: "Montserrat";
	text-align: center;
}

.shop-category-meta {
	margin: 0 0 16px;
	color: #565656;
	font-size: 10px;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
}

.shop-category-price {
	min-height: 51px;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.shop-category-current-price {
	color: #000;
	font-size: 18px;
	font-weight: 800;
}

.shop-category-old-price {
	color: #BEBEBE;
	font-size: 15px;
	font-weight: 700;
	text-decoration: line-through;
}

.shop-category-actions {
	display: grid;
	grid-template-columns: 1fr 52px;
	gap: 7px;
	padding-top: 13px;
}

.shop-category-cart-btn {
	min-height: 52px;
	background: #D50C13;
	color: #ffffff !important;
	text-decoration: none !important;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border-radius: 6px;
	font-size: 15px;
	line-height: 1;
	font-weight: 800;
	transition: background 0.25s ease, transform 0.25s ease;
	box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.07);
}

.shop-category-cart-btn:hover {
	background: #D50C13;
	color: #ffffff !important;
}

.shop-category-cart-btn svg {
	flex: 0 0 auto;
}

.shop-category-view-btn {
	min-height: 52px;
	background: #ffffff;
	color: #3A3A3A !important;
	border: 1px solid #dedede;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none !important;
	transition:
		color 0.25s ease,
		border-color 0.25s ease,
		background 0.25s ease;
}

.shop-category-view-btn:hover {
	color: #D50C13 !important;
	border-color: #D50C13;
	background: #fff7f7;
}

@media (max-width: 1024px) {
	.shop-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}

	.shop-category-image {
		height: 250px;
	}
}

@media (max-width: 767px) {
	.shop-category-section {
		padding: 45px 15px 55px;
	}

	.shop-category-heading {
		margin-bottom: 28px;
	}

	.shop-category-heading h2 {
		font-size: 34px;
		letter-spacing: -1.5px;
	}

	.shop-category-grid {
		grid-template-columns: 1fr;
		max-width: 390px;
		margin: 0 auto;
		gap: 20px;
	}

	.shop-category-image {
		height: 270px;
	}
}

@media (max-width: 420px) {
	.shop-category-content h3 {
		font-size: 22px;
	}

	.shop-category-image {
		height: 245px;
	}

	.shop-category-cart-btn {
		font-size: 14px;
	}
}