.mk-shop {
	--mk-cream: #f7ede5;
	--mk-teal: #115246;
	--mk-accent: #138d75;
	--mk-paper: #fffdfb;
	background: var(--mk-paper);
}

.mk-shop-hero {
	min-height: 388px;
	display: flex;
	align-items: center;
	background-color: var(--mk-cream);
	background-image: var(--mk-hero-desktop);
	background-position: top left;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 5px 30px -10px rgba(0, 0, 0, 0.5);
}

.mk-shop-hero__inner {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 40px 20px;
}

.mk-shop-hero__title {
	max-width: 35%;
	margin: 0 0 16px;
	font-family: "NotoSans", "Noto Sans", sans-serif;
	font-size: 40px;
	font-weight: 700;
	line-height: 44px;
	color: var(--mk-paper);
}

.mk-shop-hero__text {
	max-width: 50%;
	font-family: "Source Sans 3", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 22px;
	color: var(--mk-paper);
}

.mk-shop-hero__title p {
	margin: 0;
}

.mk-shop-hero__text p {
	margin: 0;
}

.mk-shop-products {
	background: var(--mk-cream);
	padding: 100px 0;
}

.mk-shop-products__inner {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
}

.mk-shop .woocommerce-notices-wrapper,
.mk-shop .woocommerce-info,
.mk-shop .woocommerce-message {
	margin-bottom: 30px;
}

.mk-shop ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin: 0 !important;
	padding: 0;
	list-style: none;
	width: 100% !important;
}

.mk-shop ul.products::before,
.mk-shop ul.products::after {
	display: none !important;
}

.mk-shop ul.products li.product {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: auto !important;
	float: none !important;
	margin: 0 !important;
	padding: 10px 10px 30px;
	background: var(--mk-cream);
	border: 1px solid var(--mk-accent);
	border-radius: 30px;
	box-shadow: 0 5px 30px -10px rgba(0, 0, 0, 0.2);
	text-align: left;
}

.mk-shop ul.products li.product .woocommerce-loop-product__link {
	display: block;
	text-decoration: none;
}

.mk-shop ul.products li.product img {
	width: 100%;
	height: auto;
	border-radius: 30px 30px 0 0;
	margin-bottom: 12px;
}

.mk-shop ul.products li.product .woocommerce-loop-product__title {
	margin: 0 15px 8px !important;
	font-family: "NotoSans", "Noto Sans", sans-serif;
	font-size: 24px !important;
	font-weight: 700;
	line-height: 28px;
	color: var(--mk-teal);
}

.mk-shop ul.products li.product .price {
	display: block;
	margin: 0 15px 16px !important;
	font-family: "Source Sans 3", sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--mk-teal);
}

.mk-shop ul.products li.product .woocommerce-loop-product__buttons {
	margin: 0 15px;
}

.mk-shop ul.products li.product .button,
.mk-shop ul.products li.product a.button {
	display: inline-block;
	margin: 0 !important;
	padding: 10px 22px;
	color: #fff !important;
	background-color: var(--mk-teal) !important;
	border: 3px double var(--mk-teal);
	border-radius: 30px 0 30px 0;
	font-family: Roboto, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
	text-decoration: none !important;
	text-align: center;
}

.mk-shop ul.products li.product .button:hover,
.mk-shop ul.products li.product a.button:hover {
	background-color: var(--mk-accent) !important;
	border-color: var(--mk-accent);
	color: #fff !important;
}

.mk-shop ul.products li.product .added_to_cart {
	display: none !important;
}

.mk-shop ul.products li.product .mk-shop-unavailable {
	display: block;
	margin: 0 15px;
	font-family: "Source Sans 3", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--mk-teal);
	pointer-events: none;
}

.mk-shop ul.products li.product.outofstock {
	opacity: 0.55;
	transition: opacity 0.2s ease;
}

.mk-shop ul.products li.product.outofstock:hover {
	opacity: 0.75;
}

.mk-shop ul.products li.product.outofstock a.woocommerce-LoopProduct-link,
.mk-shop ul.products li.product.outofstock a.woocommerce-loop-product__link {
	pointer-events: auto;
	cursor: pointer;
}

.mk-shop .woocommerce-pagination {
	margin-top: 50px;
	text-align: center;
}

@media (max-width: 1024px) {
	.mk-shop-hero {
		min-height: 226px;
		background-position: center right;
	}

	.mk-shop-hero__inner {
		padding: 30px;
	}

	.mk-shop-hero__title {
		max-width: 44%;
		font-size: 28px;
		line-height: 32px;
	}

	.mk-shop-products {
		padding: 70px 0;
	}

	.mk-shop ul.products {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 20px;
	}
}

@media (max-width: 767px) {
	.mk-shop-hero {
		min-height: 518px;
		background-image: var(--mk-hero-mobile);
		background-position: center center;
		justify-content: center;
	}

	.mk-shop-hero__inner {
		padding: 20px;
	}

	.mk-shop-hero__title {
		max-width: 58%;
		font-size: 30px;
		line-height: 36px;
	}

	.mk-shop-hero__text {
		max-width: 65%;
	}

	.mk-shop-products {
		margin-top: -5px;
		padding: 70px 0;
	}

	.mk-shop ul.products {
		grid-template-columns: 1fr;
		gap: 40px 20px;
	}
}
