.lithea-page-pastry-shop {
	padding: unset;
	/* background: unset; */
	border: unset;
	border-radius: unset;
	box-shadow: unset;
}
.content-wrapper--page > .body-width-limiter {
	max-width: unset;
}
.content-body--page--pastry-shop {
	padding: 0;
}
.lithea-page-pastry-shop .body-width-limiter {
	padding: 0 15px;
}
.breadcrumbs-wrapper {
	background: var(--color-background);
}
.pages-main-section:first-child {
	min-height: unset;
	padding: 20px 0 10px 0;
}
.pages-main-section:nth-child(2) {
	padding: 0 0 50px 0;
}
.ps-section-location {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	gap: 25px;
}
.ps-section-location > .slider-wrapper {
	padding: 25px 50px 25px 0;
	flex: 0 0 auto;
}
.ps-section-location-info {
	flex: 0 0 auto;
}
.ps-section-slider-image {
	border-radius: var(--border-radius-normal) !important;
}

.ps-section-pastry-shop-offer {
	color: var(--color-background);
}
.ps-section-pastry-shop-product {
	display: flex;
	justify-content: center;
	align-items: start;
	flex-wrap: no-wrap;
	padding: 20px;
}
.ps-section-pastry-shop-product-info {
	width: 40%
}
.ps-section-pastry-shop-product-image {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
	grid-template-areas:
	"img1 . img3"
	"img1 img2 img3"
	". img2 .";
	width: 50%;
	gap: 24px;
	margin: 0 auto;
}
.ps-section-pastry-shop-product-image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 4px;
	box-shadow: 
		0 4px 15px rgba(0, 0, 0, 0.08),
		0 2px 4px rgba(0, 0, 0, 0.06);
	border-radius: 12px;
	overflow: hidden; /* keeps rounded corners clean */
	transition: all ease 0.25s;
}
.ps-section-pastry-shop-product-image img:nth-child(1) { grid-area: img1; }
.ps-section-pastry-shop-product-image img:nth-child(2) { grid-area: img2; }
.ps-section-pastry-shop-product-image img:nth-child(3) { grid-area: img3; }
.ps-section-pastry-shop-product-image img:hover,
.ps-section-pastry-shop-product-image img:active,
.ps-section-pastry-shop-product-image img:focus {
	transform: scale(1.05);
}


/* Media queries */
@media (max-width: 760px) {
	.ps-section-location {
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
	.ps-section-location > .slider-wrapper {
		width: 100%;
		padding: 0;
	}
	.ps-section-location-info {
		width: 100%;
	}
	.ps-section-pastry-shop-product {
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
	.ps-section-pastry-shop-product-info {
		width: 100%;
	}
	.ps-section-pastry-shop-product-image {
		width: 100%;
		gap: 10px;
	}
}