.bookland-storefront-slot {
	position: relative;
	overflow: hidden;
	width: 100%;
	border-radius: 5px;
	background: #f7f7f7;
}

.bookland-storefront-slot.is-empty {
	display: none;
}

.bookland-storefront-skeleton {
	position: absolute;
	inset: 0;
	background: #f3f3f3;
}

.bookland-storefront-media,
.bookland-storefront-media picture,
.bookland-storefront-media img {
	display: block;
	width: 100%;
	height: 100%;
}

.bookland-storefront-media img {
	object-fit: cover;
	object-position: center center;
	transition: transform .35s ease;
}

.bookland-storefront-hero {
	min-height: 615px;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.bookland-storefront-featured {
	padding: 20px;
	border-radius: 5px;
	background: #f7f7f7;
}

.bookland-storefront-featured .wd-products {
	--wd-gap: 20px;
}

.bookland-storefront-featured .wd-product.wd-hover-small .wd-product-thumb {
	flex: 0 0 70px;
	width: 70px;
	max-width: 70px;
}

.bookland-storefront-featured .wd-product.wd-hover-small .wd-product-thumb img {
	display: block;
	width: 70px;
	height: 90px;
	object-fit: cover;
}

.bookland-storefront-featured .wd-product.wd-hover-small .product-element-bottom {
	min-width: 0;
}

.bookland-storefront-promo {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--wd-el-column-gap, 20px);
	width: 100%;
}

.bookland-storefront-promo.has-single-tile {
	grid-template-columns: minmax(0, 1fr);
}

.bookland-storefront-promo.has-no-tiles {
	display: none;
}

.bookland-storefront-tile,
.bookland-storefront-mega-image {
	aspect-ratio: 740 / 360;
	min-height: 360px;
}

.bookland-storefront-tile:hover img,
.bookland-storefront-mega-image:hover img {
	transform: scale(1.06);
}

.bookland-storefront-mega-list {
	margin: 0;
}

@media (max-width: 1024px) {
	.bookland-storefront-hero {
		height: 500px;
		min-height: 500px;
	}
}

@media (max-width: 767.98px) {
	.bookland-storefront-hero {
		height: 40vh;
		min-height: 40vh;
	}

	.bookland-storefront-promo {
		grid-template-columns: minmax(0, 1fr);
	}

	.bookland-storefront-tile,
	.bookland-storefront-mega-image {
		min-height: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bookland-storefront-media img {
		transition: none;
	}
}