/**
 * Product Category Block Styles
 *
 * @package Genesis_Child
 * @since 1.0.0
 */





.wc_col_gap_10 {
	gap: 10px;
	align-items: stretch;
}
.product-category {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 15px 15px 15px 59px;
}

/*.product-category__container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}*/

.product-category__title {
	margin: 0 0 1.25rem;
	font-size: 38px;
	font-weight: 700;
	line-height: 1.2;
	color: #1D1B20;
	font-family: DM Sans;
	letter-spacing: 0.3px;
	text-transform: capitalize;
}

.product-category__products {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 168px, 1fr ) );
	grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
	gap: 20px;
}

.product-category__product {
	background: #ffffff;
	border-radius: 4px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	padding: 14px 14px 7px;
	border: 0.5px solid #E5E7EB;
}

.product-category__product:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-category__product-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.product-category__product-image {
	position: relative;
}

.product-category__product-image:before {
	content: '';
	padding-top: 115%;
	display: block;
}
.product-category__product-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
}

.product-category__product-image--placeholder {
	width: 100%;
	height: 100%;
	background-color: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
}



.product-category__product-info {
	margin-top: 8px;
}

.product-category__product-image-text {
	color: #999;
	font-size: 0.875rem;
}

.product-category__product-title {
	display: none;
	margin: 0 0 0.5rem;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
	color: #222222;
}

.product-category__product-price {
	font-family: Poppins;
	font-weight: 600;
	font-size: 18px;
	line-height: 16.78px;
	color: #333333;

}

.product-category__product-price .price {
	display: block;
}

.product-category__product-price del {
	color: #999;
	font-weight: 400;
	margin-right: 0.5rem;
}

.product-category__product-price ins {
	text-decoration: none;
}

/* Notice Message Styles */
.product-category-notice {
	background: #f8f9fa;
	border: 1px solid #dee2e6;
	border-radius: 4px;
	padding: 20px;
	text-align: center;
	margin: 20px 0;
}

.product-category-notice p {
	margin: 0;
	color: #6c757d;
	font-size: 14px;
}

/* Alignment Styles */
.product-category.alignwide .product-category__container {
	max-width: 1600px;
}

.product-category.alignfull .product-category__container {
	max-width: 100%;
}

/* Responsive Styles */
@media (max-width: 1366px) {
	.product-category {
		padding: 15px 15px 15px 45px;
	}
	.product-category__title {
		font-size: 32px;
	}
}
@media (max-width: 1024px) {
	.product-category {
		padding: 15px 15px 15px 35px;
	}
	.product-category__title {
		font-size: 30px;
	}
}
@media (max-width: 991px) {
	.product-category {
		padding: 15px 15px 15px 25px;
	}
	.product-category__title {
		font-size: 28px;
		margin: 0 0 1rem;
	}
	.wc_col_gap_10 {
		flex-direction: column;
	}
	.wc_col_gap_10>.wp-block-column {
		flex-basis: 100% !important;
		width: 100%;
	}
}
@media (max-width: 768px) {
	.product-category {
		padding: 15px;
	}
	.product-category__title {
		font-size: 26px;
	}
}