.fc-cpsp-products-shell {
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: 100vw;
	margin-left: -50vw;
	margin-right: -50vw;
	box-sizing: border-box;
	overflow: hidden;
	background: transparent;
}

.fc-cpsp-products {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 42px 20px;
	box-sizing: border-box;
	text-align: center;
}

.fc-cpsp-products__title {
	margin: 0 0 10px;
	font-family: Georgia, serif;
	font-size: 30px;
	line-height: 1.25;
	color: #111;
}

.fc-cpsp-products__description {
	max-width: 720px;
	margin: 0 auto 30px;
	color: #666;
	font-size: 15px;
	line-height: 1.65;
}

.fc-cpsp-products__grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 24px 20px !important;
	width: 100%;
	box-sizing: border-box;
}

.fc-cpsp-product-card {
	display: flex !important;
	flex-direction: column !important;
	min-width: 0;
	overflow: hidden;
	padding: 0 8px 18px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	box-sizing: border-box;
}

.fc-cpsp-product-card__image {
	display: block;
	overflow: hidden;
	width: 100%;
	border-radius: 5px;
	background: #fafafa;
}

.fc-cpsp-product-card__image img {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	height: auto !important;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: transform .25s ease;
}

.fc-cpsp-product-card:hover .fc-cpsp-product-card__image img {
	transform: scale(1.018);
}

.fc-cpsp-product-card__title {
	margin: 15px 0 8px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
}

.fc-cpsp-product-card__title a {
	color: #111;
	text-decoration: none;
}

.fc-cpsp-product-card__title a:hover {
	color: #b0173f;
}

.fc-cpsp-product-card__price {
	margin: 0 0 14px;
	color: #ff2b55;
	font-size: 19px;
	font-weight: 500;
	line-height: 1.3;
}

.fc-cpsp-product-card__price del {
	margin-right: 5px;
	color: #999;
	font-size: .82em;
	font-weight: 400;
	opacity: 1;
}

.fc-cpsp-product-card__price ins {
	color: inherit;
	text-decoration: none;
}

.fc-cpsp-product-card__button {
	display: inline-block;
	align-self: center;
	width: auto;
	margin-top: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #ff2b55;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
	text-decoration: none;
	transition: color .2s ease;
}

.fc-cpsp-product-card__button:hover,
.fc-cpsp-product-card__button:focus {
	background: transparent;
	color: #b0173f;
	text-decoration: underline;
}

/* Desktop: 4 products per row. */
@media (min-width: 1025px) {
	.fc-cpsp-products__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	}
}

/* Tablet: 3 products per row. */
@media (min-width: 768px) and (max-width: 1024px) {
	.fc-cpsp-products__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		gap: 22px 16px !important;
	}
}

/* Mobile: 2 products per row. */
@media (max-width: 767px) {
	.fc-cpsp-products {
		padding: 32px 14px;
	}

	.fc-cpsp-products__title {
		font-size: 24px;
	}

	.fc-cpsp-products__description {
		margin-bottom: 24px;
		font-size: 14px;
	}

	.fc-cpsp-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 20px 12px !important;
	}

	.fc-cpsp-product-card {
		padding: 0 3px 14px;
	}

	.fc-cpsp-product-card__title {
		margin-top: 11px;
		font-size: 14px;
	}

	.fc-cpsp-product-card__price {
		margin-bottom: 10px;
		font-size: 16px;
	}

	.fc-cpsp-product-card__button {
		font-size: 15px;
	}
}
