.order-products {
	background: #f7f9fb;
	padding: 58px 0 68px;
}

.order-products-intro {
	margin: 0 auto 34px;
	max-width: 720px;
	text-align: center;
}

.order-products-eyebrow {
	color: #1778bd;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.5px;
}

.order-products-intro h2 {
	color: #17334f;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -.8px;
	margin: 8px 0 10px;
}

.order-products-intro p {
	color: #6b7d8c;
	font-size: 14px;
	margin: 0;
}

.order-product-grid {
	align-items: stretch;
}

.order-product-grid > div {
	display: flex;
}

.order-product-card {
	background: #fff;
	border: 1px solid #e0e8ef;
	border-radius: 10px;
	box-shadow: 0 9px 28px rgba(23, 51, 79, .07);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: box-shadow .22s ease, transform .22s ease;
	width: 100%;
}

.order-product-card:hover {
	box-shadow: 0 16px 36px rgba(23, 51, 79, .13);
	transform: translateY(-4px);
}

.order-product-image {
	align-items: center;
	background: #fff;
	display: flex;
	height: 260px;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.order-product-image img {
	height: 100%;
	object-fit: contain;
	padding: 16px;
	transition: transform .25s ease;
	width: 100%;
}

.order-product-card:hover .order-product-image img {
	transform: scale(1.025);
}

.order-product-image > span {
	background: #128065;
	border-radius: 16px;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	left: 16px;
	padding: 5px 11px;
	position: absolute;
	top: 16px;
}

.order-product-content {
	border-top: 1px solid #edf1f4;
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px;
}

.order-product-content h3 {
	font-size: 19px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 8px;
}

.order-product-content h3 a {
	color: #23394d;
	text-decoration: none;
}

.order-product-content > p {
	color: #758593;
	display: -webkit-box;
	font-size: 13px;
	line-height: 1.65;
	margin: 0 0 18px;
	min-height: 43px;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.order-product-price {
	align-items: flex-end;
	display: flex;
	flex-direction: column;
	margin: auto 0 18px;
}

.order-product-price del {
	color: #9aa6af;
	font-size: 12px;
}

.order-product-price strong {
	color: #075f96;
	font-size: 24px;
	letter-spacing: -.6px;
}

.order-product-price small {
	font-size: 14px;
	margin-left: 2px;
}

.order-product-actions {
	display: grid;
	gap: 8px;
	grid-template-columns: 1fr 1fr;
}

.order-product-actions .btn {
	align-items: center;
	display: flex;
	font-weight: 700;
	justify-content: center;
	min-height: 44px;
}

.order-product-actions .btn i {
	font-size: 10px;
	margin-left: 7px;
}

.order-products-pagination {
	margin-top: 24px;
}

.order-products-empty {
	background: #fff;
	border: 1px solid #e0e8ef;
	border-radius: 10px;
	padding: 58px 20px;
	text-align: center;
}

.order-products-empty > i {
	color: #90a7b9;
	font-size: 42px;
}

.order-products-empty h3 {
	color: #294156;
	font-size: 20px;
	margin: 18px 0 8px;
}

.order-products-empty p {
	color: #758593;
	margin-bottom: 20px;
}

@media (max-width: 767px) {
	.order-products {
		padding: 40px 0 48px;
	}

	.order-products-intro h2 {
		font-size: 25px;
	}

	.order-product-image {
		height: 230px;
	}
}

@media (max-width: 420px) {
	.order-product-actions {
		grid-template-columns: 1fr;
	}
}
