.shyam-shop-products {
	--shyam-shop-green: #087a50;
	width: 100%;
	background: #f7f9f7;
}

.shyam-shop-products.shyam-app-menu {
	padding-bottom: 56px;
}

.shyam-shop-products__container {
	width: 100%;
	margin: 0 auto;
}

.shyam-shop-products__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 26px;
}

.shyam-shop-products__header-copy {
	max-width: 760px;
}

.shyam-shop-products__heading {
	margin: 0 0 7px;
	font: inherit;
	font-size: clamp(32px, 3.2vw, 48px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -.035em;
}

.shyam-shop-products__description {
	color: #6c7772;
	font-size: 16px;
	line-height: 1.55;
}

.shyam-shop-products__count {
	flex: 0 0 auto;
	padding: 8px 13px;
	border: 1px solid #dfe7e2;
	border-radius: 999px;
	background: rgba(255, 255, 255, .78);
	color: #6c7772;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	white-space: nowrap;
}

.shyam-shop-products__grid {
	align-items: stretch;
}

.shyam-shop-products__product {
	border-radius: 18px;
}

.shyam-shop-products .shyam-app-menu__product-title a {
	color: inherit;
}

.shyam-shop-products .shyam-app-menu__product-title a:hover {
	color: var(--shyam-shop-green);
}

.shyam-shop-products__navigation {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.shyam-shop-products__load-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	min-width: 220px;
	min-height: 50px;
	padding: 12px 24px;
	border: 1px solid rgba(8, 122, 80, .24);
	border-radius: 12px;
	background: #fff;
	color: var(--shyam-shop-green);
	font: inherit;
	font-size: 15px;
	font-weight: 780;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(26, 62, 48, .06);
	transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.shyam-shop-products__load-more:hover,
.shyam-shop-products__load-more:focus-visible {
	background: var(--shyam-shop-green);
	color: #fff;
	transform: translateY(-2px);
	outline: none;
}

.shyam-shop-products__load-more:disabled {
	opacity: .62;
	cursor: wait;
	transform: none;
}

.shyam-shop-products__load-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	font-size: 19px;
	line-height: 1;
	transition: transform .2s ease;
}

.shyam-shop-products__load-more:hover .shyam-shop-products__load-icon {
	transform: translateY(2px);
}

.shyam-shop-products__load-more.is-loading .shyam-shop-products__load-icon {
	border: 2px solid currentColor;
	border-right-color: transparent;
	font-size: 0;
	animation: shyam-shop-spin .7s linear infinite;
}

.shyam-shop-products__pagination {
	margin-top: 30px;
}

.shyam-shop-products__pagination ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.shyam-shop-products__pagination li {
	margin: 0;
	padding: 0;
}

.shyam-shop-products__pagination a,
.shyam-shop-products__pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 8px 12px;
	border: 1px solid #dce5df;
	border-radius: 12px;
	background: #fff;
	color: var(--shyam-shop-green);
	font-size: 14px;
	font-weight: 750;
	line-height: 1;
	text-decoration: none;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.shyam-shop-products__pagination a:hover,
.shyam-shop-products__pagination a:focus-visible,
.shyam-shop-products__pagination .current {
	border-color: var(--shyam-shop-green);
	background: var(--shyam-shop-green);
	color: #fff;
	outline: none;
}

.shyam-shop-products__pagination .dots {
	border-color: transparent;
	background: transparent;
}

.shyam-shop-products__notice {
	margin-top: 18px;
	padding: 24px;
	border: 1px dashed #c9d7cf;
	border-radius: 14px;
	background: #fff;
	color: #59645f;
	text-align: center;
}

.shyam-shop-products__status {
	min-height: 1.4em;
	margin-top: 13px;
	color: #59645f;
	font-size: 13px;
	font-weight: 650;
	text-align: center;
}

.shyam-shop-products__status:empty {
	display: none;
}

.shyam-shop-products__status.is-error {
	color: #b42318;
}

@keyframes shyam-shop-spin {
	to { transform: rotate(360deg); }
}

@media (max-width: 767px) {
	.shyam-shop-products.shyam-app-menu {
		padding-bottom: 36px;
	}

	.shyam-shop-products__header {
		display: block;
		margin-bottom: 18px;
	}

	.shyam-shop-products__heading {
		font-size: 31px;
	}

	.shyam-shop-products__description {
		font-size: 14px;
	}

	.shyam-shop-products__count {
		display: inline-flex;
		margin-top: 12px;
		font-size: 12px;
	}

	.shyam-shop-products__grid {
		grid-template-columns: 1fr !important;
	}

	.shyam-shop-products__navigation,
	.shyam-shop-products__pagination {
		margin-top: 20px;
	}

	.shyam-shop-products__load-more {
		width: 100%;
	}

	.shyam-shop-products__pagination a,
	.shyam-shop-products__pagination span {
		min-width: 38px;
		min-height: 38px;
		padding: 7px 10px;
		font-size: 13px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.shyam-shop-products__load-more,
	.shyam-shop-products__load-icon {
		transition: none;
	}

	.shyam-shop-products__load-more.is-loading .shyam-shop-products__load-icon {
		animation: none;
	}
}
