/*
|--------------------------------------------------------------------------
| HERITAGE MOTORWORKS
| SHOP.CSS
|--------------------------------------------------------------------------
*/


/* ==========================================================================
   SHOP HERO
   Standard Heritage Motorworks Hero Layout
   ========================================================================== */

.hm-shop-hero {
	position: relative;
	min-height: 680px;
	overflow: hidden;
	background: #171a21;
	color: #fff;
}

.hm-shop-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.hm-hero-slideshow {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}

.hm-hero-slideshow__slide {
	position: absolute;
	inset: 0;

	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: 78% center;

	opacity: 0;
	visibility: hidden;

	z-index: 1;

	transition:
		opacity .9s ease,
		visibility .9s ease;
}

.hm-hero-slideshow__slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

@media (prefers-reduced-motion: reduce) {

	.hm-hero-slideshow__slide {
		transition: none;
	}
}

.hm-shop-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(
			90deg,
			rgba(0,0,0,.82) 0%,
			rgba(0,0,0,.62) 32%,
			rgba(0,0,0,.30) 58%,
			rgba(0,0,0,.08) 80%,
			rgba(0,0,0,0) 100%
		);
}

.hm-shop-hero__inner {
	position: relative;
	z-index: 3;
	width: min(1280px, calc(100% - 96px));
	min-height: 680px;
	margin: 0 auto;
	padding: 140px 0 64px;
	box-sizing: border-box;
	display: flex;
	align-items: flex-end;
}

.hm-shop-hero__content {
	width: min(760px, 100%);
	color: #fff;
}

.hm-shop-hero__subtitle {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	margin: 0 0 14px;
	color: #18A891;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .18em;
	line-height: 1;
	text-transform: uppercase;
}

.hm-shop-hero__subtitle::before {
	content: "";
	display: block;
	width: 28px;
	height: 1px;
	flex: 0 0 28px;
	background: #18A891;
}

.hm-shop-hero__content h1 {
	max-width: 760px;
	margin: 0;
	color: #fff;
	font-size: clamp(48px, 5.4vw, 76px);
	font-weight: 600;
	letter-spacing: -.055em;
	line-height: .94;
}

.hm-shop-hero__content p {
	max-width: 650px;
	margin: 22px 0 0;
	color: rgba(255,255,255,.78);
	font-size: 15px;
	line-height: 1.7;
}

.hm-shop-hero__buttons {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 22px;
}

/* ==========================================================================
   CATEGORIES MODULE
   [hm_shop_categories]

   An das aktuelle Shop-Design angepasst.
   ========================================================================== */

.hm-shop-categories {
	background: #fff;
	padding: 88px 0 96px;
}

.hm-shop-categories__container {
	width: min(1280px, calc(100% - 48px));
	max-width: none;
	margin: 0 auto;
	padding: 0;
}

.hm-shop-categories__heading {
	margin-bottom: 46px;
	text-align: left;
}

.hm-shop-categories__subtitle {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 14px;

	color: #18A891;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .18em;
	line-height: 1;
	text-transform: uppercase;
}

.hm-shop-categories__subtitle::before {
	content: "";

	display: block;

	width: 28px;
	height: 1px;

	background: #18A891;
}

.hm-shop-categories__heading h2 {
	margin: 0;

	color: #171a21;
	font-size: clamp(36px, 4vw, 54px);
	font-weight: 600;
	letter-spacing: -.045em;
	line-height: 1;
}


/* ==========================================================================
   CATEGORIES GRID
   ========================================================================== */

.hm-shop-categories__grid {
	display: grid;

	grid-template-columns:
		repeat(4, minmax(0, 1fr));

	gap: 12px;

	align-items: stretch;
}


/* ==========================================================================
   CATEGORY CARD
   ========================================================================== */

.hm-shop-category-card {
	display: flex;
	flex-direction: column;

	min-width: 0;
	min-height: 0;

	overflow: hidden;

	background: #fff;
	color: #171a21;
	text-decoration: none;

	border: 1px solid rgba(0,0,0,.055);
	border-radius: 4px;

	box-shadow: none;

	transition:
		transform .35s ease,
		box-shadow .35s ease,
		border-color .35s ease;
}

.hm-shop-category-card:hover {
	transform: translateY(-4px);

	border-color: rgba(24,168,145,.18);

	box-shadow:
		0 14px 32px rgba(15,23,42,.08);
}


/* ==========================================================================
   CATEGORY IMAGE
   ========================================================================== */

.hm-shop-category-card__image {
	display: flex;
	align-items: center;
	justify-content: center;

	height: 220px;
	padding: 22px;

	background: #fff;
}

.hm-shop-category-card__image img {
	display: block;

	width: 100%;
	height: 100%;

	max-width: 100%;
	max-height: 100%;

	object-fit: contain;

	transition:
		transform .4s ease;
}

.hm-shop-category-card:hover
.hm-shop-category-card__image img {
	transform: scale(1.035);
}


/* ==========================================================================
   CATEGORY FOOTER
   ========================================================================== */

.hm-shop-category-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;

	min-height: 66px;
	padding: 17px 20px;

	background: #f1f1ee;
	border-top: 0;
}

.hm-shop-category-card__title {
	display: flex;
	align-items: center;
	justify-content: space-between;

	width: 100%;

	color: #171a21;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
}

.hm-shop-category-card__title::after {
	content: "→";

	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 26px;
	height: 26px;

	margin-left: 12px;

	border: 1px solid rgba(0,0,0,.12);
	border-radius: 50%;

	color: #18A891;
	font-size: 14px;

	transition:
		background .25s ease,
		border-color .25s ease,
		transform .25s ease;
}

.hm-shop-category-card:hover
.hm-shop-category-card__title::after {
	background: #18A891;
	border-color: #18A891;
	color: #fff;

	transform: translateX(3px);
}

.hm-shop-category-card__arrow {
	color: #18A891;
	font-size: 18px;

	transition:
		transform .25s ease;
}

.hm-shop-category-card:hover
.hm-shop-category-card__arrow {
	transform: translateX(4px);
}


/* ==========================================================================
   SHOP PAGE
   ========================================================================== */

.hm-shop-page {
	position: relative;

	width: 100%;

	background: #fff;

	color: #171a21;
}


/* ==========================================================================
   GLOBAL CONTAINER
   ========================================================================== */

.hm-shop-container {
	width: min(1280px, calc(100% - 48px));

	margin: 0 auto;
}


/* ==========================================================================
   SHOP SEARCH
   ========================================================================== */

.hm-shop-search {
	position: relative;

	z-index: 10;

	width: min(1040px, calc(100% - 48px));

	margin: -38px auto 0;
}
.hm-shop-search__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: stretch;

	background: #fff;
	border: 1px solid rgba(23,26,33,.08);
	border-radius: 14px;
	box-shadow:
		0 16px 45px rgba(15,23,42,.09),
		0 4px 12px rgba(15,23,42,.045);
	overflow: hidden;
}


.hm-shop-search__area {
	display: flex;
	flex-direction: column;
	justify-content: center;

	min-width: 0;
	padding: 22px 26px;
}
.hm-shop-search__payment {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	min-width: 0;
	padding: 15px 26px 16px;
	background: #f5f5f2;
	color: #171a21;
	border-top: 1px solid rgba(23,26,33,.07);
}
.hm-shop-search__payment-content {
	display: grid;
	grid-template-columns: auto auto minmax(0, 1fr);
	align-items: baseline;
	column-gap: 12px;
	min-width: 0;
}
.hm-shop-search__payment-eyebrow {
	display: block;
	margin: 0;
	color: #18A891;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .18em;
	line-height: 1;
	text-transform: uppercase;
}
.hm-shop-search__payment-content strong {
	display: block;
	margin: 0;
	color: #171a21;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -.02em;
	line-height: 1.2;
}
.hm-shop-search__payment-text {
	display: block;
	max-width: none;
	min-width: 0;
	color: rgba(23,26,33,.56);
	font-size: 11px;
	line-height: 1.5;
}


.hm-shop-search__payment-button {
	flex: 0 0 auto;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	gap: 10px;

	min-width: 118px;
	height: 42px;

	padding: 0 18px;

	border: 0;
	border-radius: 5px !important;

	background: #171a21;

	color: #fff !important;

	font-family: inherit;
	font-size: 10px;
	font-weight: 700;

	letter-spacing: .12em;
	line-height: 1;

	text-transform: uppercase;
	text-decoration: none !important;

	transition: background .25s ease, color .25s ease, transform .25s ease;
}


.hm-shop-search__payment-button:hover {
	background: #18A891;

	color: #fff !important;
	transform: translateY(-1px);
}


.hm-shop-search__payment-button span {
	font-size: 16px;

	transition: transform .25s ease;
}


.hm-shop-search__payment-button:hover span {
	transform: translateX(3px);
}


.hm-shop-search__label {
	display: flex;
	flex-direction: column;

	flex: 0 0 auto;

	gap: 4px;
}


.hm-shop-search__eyebrow {
	color: #18A891;

	font-size: 9px;
	font-weight: 700;

	letter-spacing: .18em;

	text-transform: uppercase;
}


.hm-shop-search__label strong {
	color: #171a21;

	font-size: 16px;
	font-weight: 600;

	line-height: 1.2;
}


.hm-shop-search__form {
	display: flex;
	align-items: stretch;

	flex: 1 1 auto;

	max-width: 650px;

	height: 48px;

	border: 1px solid rgba(0,0,0,.11);

	border-radius: 8px;

	background: #fff;

	overflow: hidden;

	transition:
		border-color .25s ease,
		box-shadow .25s ease;
}


.hm-shop-search__form:focus-within {
	border-color: rgba(24,168,145,.55);

	box-shadow:
		0 0 0 3px rgba(24,168,145,.08);
}


.hm-shop-search__form input[type="search"] {
	flex: 1 1 auto;

	min-width: 0;

	border: 0;
	outline: 0;

	padding: 0 18px;

	background: transparent;

	color: #171a21;

	font-family: inherit;
	font-size: 14px;
}


.hm-shop-search__form input[type="search"]::placeholder {
	color: rgba(23,26,33,.42);
}


.hm-shop-search__form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	gap: 10px;

	min-width: 115px;

	padding: 0 18px;

	border: 0;
	border-radius: 5px !important;

	background: #171a21;

	color: #fff;

	font-family: inherit;
	font-size: 11px;
	font-weight: 700;

	letter-spacing: .12em;

	text-transform: uppercase;

	cursor: pointer;

	transition:
		background .25s ease;
}


.hm-shop-search__form button:hover {
	background: #18A891;
}


.hm-shop-search__form button span {
	font-size: 16px;

	transition:
		transform .25s ease;
}


.hm-shop-search__form button:hover span {
	transform: translateX(3px);
}


/* ==========================================================================
   GENERIC SHOP SECTION
   ========================================================================== */

.hm-shop-section {
	position: relative;

	padding: 105px 0 115px;
}


.hm-shop-section--products {
	background: #fff;

	padding-top: 58px;
	padding-bottom: 100px;
}


.hm-shop-section--new {
	background: #f7f7f5;
	padding-top: 75px;
}


.hm-shop-section--models {
	background: #fff;

	padding-bottom: 120px;
}


/* ==========================================================================
   SECTION HEADER
   ========================================================================== */

.hm-shop-section__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;

	gap: 70px;

	margin-bottom: 48px;
}


.hm-shop-section__header > div {
	flex: 1 1 auto;
}


.hm-shop-section__header > p {
	flex: 0 0 360px;

	margin: 0 0 3px;

	color: rgba(23,26,33,.58);

	font-size: 14px;

	line-height: 1.65;
}


.hm-shop-section__eyebrow {
	display: inline-flex;
	align-items: center;

	gap: 11px;

	margin-bottom: 14px;

	color: #18A891;

	font-size: 10px;
	font-weight: 700;

	letter-spacing: .18em;

	line-height: 1;

	text-transform: uppercase;
}


.hm-shop-section__eyebrow::before {
	content: "";

	display: block;

	width: 28px;
	height: 1px;

	background: #18A891;
}


.hm-shop-section__header h2 {
	margin: 0;

	color: #171a21;

	font-size: clamp(36px, 4vw, 54px);
	font-weight: 600;

	letter-spacing: -.045em;

	line-height: 1;
}


/* ==========================================================================
   SHOP SORTIMENT
   ========================================================================== */

.hm-shop-category-layout {
	display: grid;

	grid-template-columns:
		minmax(0, 1.20fr)
		minmax(0, .96fr)
		minmax(0, .96fr)
		minmax(210px, .78fr);

	grid-template-rows:
		286px
		195px;

	gap: 12px;
}


.hm-shop-category {
	position: relative;

	display: block;

	min-width: 0;
	min-height: 0;

	overflow: hidden;

	color: #fff;

	text-decoration: none;

	background: #171a21;

	border-radius: 4px;
}


.hm-shop-category--original {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
}


.hm-shop-category--used {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
}


.hm-shop-category--new {
	grid-column: 3 / 4;
	grid-row: 1 / 2;
}


.hm-shop-category img {
	position: absolute;
	inset: 0;

	width: 100%;
	height: 100%;

	object-fit: cover;

	transition:
		transform .7s cubic-bezier(.2,.7,.2,1),
		filter .5s ease;
}


.hm-shop-category:hover img {
	transform: scale(1.045);

	filter:
		saturate(.94)
		contrast(1.03);
}


.hm-shop-category__overlay {
	position: absolute;
	inset: 0;

	background:
		linear-gradient(
			180deg,
			rgba(0,0,0,.04) 0%,
			rgba(0,0,0,.10) 38%,
			rgba(0,0,0,.78) 100%
		);

	transition:
		background .4s ease;
}


.hm-shop-category:hover
.hm-shop-category__overlay {
	background:
		linear-gradient(
			180deg,
			rgba(0,0,0,.06) 0%,
			rgba(0,0,0,.12) 35%,
			rgba(0,0,0,.72) 100%
		);
}


.hm-shop-category__content {
	position: absolute;

	left: 26px;
	right: 26px;
	bottom: 24px;

	z-index: 2;

	display: flex;
	flex-direction: column;

	align-items: flex-start;
}


.hm-shop-category__number {
	margin-bottom: 14px;

	color: rgba(255,255,255,.78);

	font-size: 10px;
	font-weight: 700;

	letter-spacing: .16em;

	line-height: 1;
}


.hm-shop-category__content strong {
	display: block;

	margin-bottom: 6px;

	color: #fff;

	font-size: clamp(28px, 3vw, 40px);
	font-weight: 600;

	letter-spacing: -.035em;

	line-height: 1;
}


.hm-shop-category__content
> span:not(.hm-shop-category__number) {
	color: rgba(255,255,255,.76);

	font-size: 13px;

	line-height: 1.45;
}


.hm-shop-category__content em {
	display: inline-flex;
	align-items: center;

	gap: 9px;

	margin-top: 16px;

	color: #fff;

	font-size: 9px;
	font-style: normal;
	font-weight: 700;

	letter-spacing: .14em;

	text-transform: uppercase;
}


.hm-shop-category__content em span {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 24px;
	height: 24px;

	border: 1px solid rgba(255,255,255,.38);

	border-radius: 50%;

	font-size: 13px;

	transition:
		background .25s ease,
		border-color .25s ease,
		transform .25s ease;
}


.hm-shop-category:hover
.hm-shop-category__content em span {
	background: #18A891;

	border-color: #18A891;

	transform: translateX(3px);
}




.hm-shop-category--procurement {
	grid-column: 4 / 5;
	grid-row: 1 / 3;

	background: #f3f4f1;
	color: #171a21;
	border: 0;
}


.hm-shop-category__procurement-inner {
	position: absolute;
	inset: 0;

	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;

	padding: 30px 24px 28px;
}


.hm-shop-category__procurement-inner .hm-shop-category__number {
	margin-bottom: 18px;
	color: #8b8f8b;
}


.hm-shop-category__procurement-eyebrow {
	display: block;
	margin-bottom: 11px;

	color: #18A891;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.15px;
	line-height: 1.3;
	text-transform: uppercase;
	white-space: nowrap;
}


.hm-shop-category__procurement-inner strong {
	display: block;
	max-width: 230px;
	margin-bottom: 18px;

	color: #171a21;
	font-size: clamp(27px, 2.15vw, 32px);
	font-weight: 600;
	letter-spacing: -.04em;
	line-height: 1.02;
}


.hm-shop-category__procurement-inner p {
	max-width: 235px;
	margin: 0;
	color: #626762;
	font-size: 11.5px;
	line-height: 1.62;
}


.hm-shop-category__procurement-hint {
	display: block;
	margin-top: auto;
	padding-top: 18px;
	color: #171a21;
	font-size: 9px;
	font-weight: 600;
	line-height: 1.4;
}


/* ==========================================================================
   ALLE TEILE
   ========================================================================== */

.hm-shop-category--all {
	grid-column: 2 / 4;
	grid-row: 2 / 3;

	display: flex;
	align-items: center;

	background:
		linear-gradient(
			135deg,
			#20252c 0%,
			#11151a 100%
		);
}


.hm-shop-category__all-inner {
	display: flex;
	flex-direction: column;

	align-items: flex-start;

	padding: 28px;
}


.hm-shop-category--all
.hm-shop-category__number {
	margin-bottom: 18px;

	color: #18A891;
}


.hm-shop-category--all strong {
	margin-bottom: 7px;

	color: #fff;

	font-size: 34px;
	font-weight: 600;

	letter-spacing: -.035em;

	line-height: 1;
}


.hm-shop-category--all
.hm-shop-category__all-inner
> span:not(.hm-shop-category__number) {
	color: rgba(255,255,255,.62);

	font-size: 13px;
}


.hm-shop-category--all em {
	display: inline-flex;
	align-items: center;

	gap: 10px;

	margin-top: 25px;

	color: #fff;

	font-size: 9px;
	font-style: normal;
	font-weight: 700;

	letter-spacing: .14em;

	text-transform: uppercase;
}


.hm-shop-category--all em span {
	color: #18A891;

	font-size: 18px;

	transition:
		transform .25s ease;
}


.hm-shop-category--all:hover em span {
	transform: translateX(5px);
}


/* ==========================================================================
   SECTION LINK
   ========================================================================== */

.hm-shop-section__all-link {
	display: flex;
	justify-content: flex-end;

	margin-top: 25px;
}


.hm-shop-section__all-link a {
	display: inline-flex;
	align-items: center;

	gap: 10px;

	color: #171a21;

	font-size: 10px;
	font-weight: 700;

	letter-spacing: .14em;

	text-decoration: none;
	text-transform: uppercase;
}


.hm-shop-section__all-link a span {
	color: #18A891;

	font-size: 17px;

	transition:
		transform .25s ease;
}


.hm-shop-section__all-link a:hover span {
	transform: translateX(4px);
}


/* ==========================================================================
   NEU IM SHOP
   ========================================================================== */

.hm-shop-products {
	display: grid;

	grid-template-columns:
		repeat(4, minmax(0, 1fr));

	gap: 18px;
}


.hm-shop-product {
	display: flex;
	flex-direction: column;
	height: 100%;

	color: #171a21;

	text-decoration: none;

	background: #fff;

	border: 1px solid rgba(0,0,0,.06);

	border-radius: 12px;

	overflow: hidden;

	transition:
		transform .35s ease,
		box-shadow .35s ease,
		border-color .35s ease;
}


.hm-shop-product:hover {
	transform: translateY(-5px);

	border-color: rgba(24,168,145,.22);

	box-shadow:
		0 18px 45px rgba(15,23,42,.09);
}


.hm-shop-product__image {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: center;

	height: 250px;

	padding: 22px;

	background: #fff;
}


.hm-shop-product__image img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: contain;

	transition:
		transform .4s ease;
}


.hm-shop-product:hover
.hm-shop-product__image img {
	transform: scale(1.035);
}


.hm-shop-product__badge {
	position: absolute;

	top: 14px;
	left: 14px;

	padding: 7px 11px;

	background: rgba(255,255,255,.94);

	color: #18A891;

	font-size: 10px;
	font-weight: 700;

	letter-spacing: .12em;

	text-transform: uppercase;

	border-radius: 4px;
}


.hm-shop-product__content {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;

	padding: 20px;
	background: #171a21;
}


.hm-shop-product .hm-shop-product__delivery {
	min-height: 20px;
	margin-top: 2px;
	margin-bottom: 13px;
}


.hm-shop-section--new .hm-delivery-badge__text strong {
	color: rgba(255,255,255,.58);
	font-weight: 500;
}


.hm-shop-section--new .hm-delivery-badge__text small {
	color: rgba(255,255,255,.44);
}


.hm-shop-product__content h3 {
	margin: 0 0 7px;
	min-height: calc(3 * 1.3em);
	max-height: calc(3 * 1.3em);

	color: #fff;

	font-size: 17px;
	font-weight: 600;

	letter-spacing: -.02em;

	line-height: 1.3;

	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}


.hm-shop-product__sku {
	display: block;
	min-height: 14px;

	color: rgba(255,255,255,.55);

	font-size: 10px;

	line-height: 1.4;
}


.hm-shop-product__bottom {
	display: flex;
	margin-top: auto;
	align-items: center;
	justify-content: space-between;
}


.hm-shop-product__price {
	color: #fff;

	font-size: 15px;
	font-weight: 600;
}


.hm-shop-product__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 26px;
	height: 26px;

	border: 1px solid rgba(255,255,255,.22);

	border-radius: 50%;

	color: #18A891;

	font-size: 15px;

	transition:
		background .25s ease,
		border-color .25s ease,
		transform .25s ease;
}


.hm-shop-product:hover
.hm-shop-product__arrow {
	background: #18A891;

	border-color: #18A891;

	color: #fff;

	transform: translateX(3px);
}


/* ==========================================================================
   HERITAGE STANDARD
   ========================================================================== */

.hm-shop-standard {
	padding: 92px 0;

	background:
		linear-gradient(
			135deg,
			#171a21 0%,
			#20252c 100%
		);

	color: #fff;
}


.hm-shop-standard__header {
	display: grid;

	grid-template-columns:
		minmax(0, 1fr)
		minmax(300px, 420px);

	gap: 90px;

	align-items: start;

	margin-bottom: 42px;
}


.hm-shop-standard__header
.hm-shop-section__eyebrow {
	color: #18A891;
}


.hm-shop-standard__header-main {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}


.hm-shop-standard__header h2 {
	max-width: 720px;

	margin: 0;

	color: #fff;

	font-size: clamp(38px, 4.5vw, 58px);
	font-weight: 600;

	letter-spacing: -.045em;

	line-height: .98;
}


.hm-shop-standard__header p {
	margin: 52px 0 0;

	color: rgba(255,255,255,.60);

	font-size: 14px;

	line-height: 1.7;
}


.hm-shop-standard__grid {
	display: grid;

	grid-template-columns:
		repeat(4, minmax(0, 1fr));

	gap: 0;

	border-top: 1px solid rgba(255,255,255,.14);
}


.hm-shop-standard__item {
	padding: 27px 25px 0 0;

	border-right: 1px solid rgba(255,255,255,.12);
}


.hm-shop-standard__item:not(:first-child) {
	padding-left: 25px;
}


.hm-shop-standard__item:last-child {
	border-right: 0;
}


.hm-shop-standard__line {
	display: block;

	width: 30px;
	height: 2px;

	margin-bottom: 18px;

	background: #18A891;
}


.hm-shop-standard__item strong {
	display: block;

	margin-bottom: 10px;

	color: #fff;

	font-size: 16px;
	font-weight: 600;

	line-height: 1.25;
}


.hm-shop-standard__item p {
	margin: 0;

	color: rgba(255,255,255,.52);

	font-size: 12px;

	line-height: 1.6;
}


/* ==========================================================================
   MODELLE
   ========================================================================== */

.hm-shop-models {
	display: grid;

	grid-template-columns:
		repeat(6, minmax(0, 1fr));

	gap: 10px;
}


.hm-shop-model {
	position: relative;

	display: flex;
	flex-direction: column;
	justify-content: space-between;

	min-height: 148px;

	padding: 20px;

	overflow: hidden;

	background: #f1f1ee;

	color: #171a21;

	text-decoration: none;

	border: none;

	border-radius: 4px;

	transition:
		transform .35s ease,
		background .35s ease,
		border-color .35s ease;
}


.hm-shop-model:hover {
	transform: translateY(-5px);

	background: #171a21;

	border-color: #171a21;

	color: #fff;
}


.hm-shop-model__number {
	color: #171a21;

	font-size: 23px;
	font-weight: 600;

	letter-spacing: -.035em;
	line-height: 1;
}

.hm-shop-model:hover .hm-shop-model__number {
	color: #18A891;
}


.hm-shop-model__content {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;

	gap: 7px;

	min-width: 0;
	padding-right: 38px;
}


.hm-shop-model__content strong {
	color: inherit;

	font-size: 21px;
	font-weight: 600;

	letter-spacing: -.035em;

	line-height: 1;
}


.hm-shop-model__content span {
	display: block;

	width: 100%;
	max-width: none;

	color: rgba(23,26,33,.52);

	font-size: 13px;

	line-height: 1.4;

	white-space: normal;
	overflow-wrap: break-word;
	word-break: normal;

	transition:
		color .35s ease;
}


.hm-shop-model:hover
.hm-shop-model__content span {
	color: rgba(255,255,255,.56);
}


.hm-shop-model__arrow {
	position: absolute;

	right: 18px;
	bottom: 18px;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 30px;
	height: 30px;

	border: 1px solid rgba(0,0,0,.12);

	border-radius: 50%;

	color: #18A891;

	font-size: 14px;

	transition:
		background .35s ease,
		border-color .35s ease,
		transform .35s ease;
}


.hm-shop-model:hover
.hm-shop-model__arrow {
	background: #18A891;

	border-color: #18A891;

	color: #fff;

	transform: translateX(3px);
}


/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.hm-shop-cta {
	padding: 0 0 120px;

	background: #fff;
}


.hm-shop-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 60px;

	width: min(1280px, calc(100% - 48px));

	margin: 0 auto;

	padding: 55px 60px;

	background:
		linear-gradient(
			135deg,
			#f2f2ee 0%,
			#e9ebe7 100%
		);

	border-radius: 6px;
}


.hm-shop-cta__inner h2 {
	margin: 0 0 10px;

	color: #171a21;

	font-size: clamp(30px, 3.5vw, 46px);
	font-weight: 600;

	letter-spacing: -.04em;

	line-height: 1;
}


.hm-shop-cta__inner p {
	max-width: 560px;

	margin: 0;

	color: rgba(23,26,33,.58);

	font-size: 14px;

	line-height: 1.65;
}


.hm-shop-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	flex: 0 0 auto;

	gap: 12px;

	min-width: 175px;

	padding: 15px 22px;

	background: #171a21;

	color: #fff;

	font-size: 10px;
	font-weight: 700;

	letter-spacing: .14em;

	text-decoration: none;
	text-transform: uppercase;

	border-radius: 30px;

	transition:
		background .25s ease,
		transform .25s ease;
}


.hm-shop-cta__button span {
	font-size: 17px;

	transition:
		transform .25s ease;
}


.hm-shop-cta__button:hover {
	background: #18A891;

	color: #fff;

	transform: translateY(-2px);
}


.hm-shop-cta__button:hover span {
	transform: translateX(4px);
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (min-width: 769px) and (max-width: 1000px) {

	/* Hero — standard tablet layout */

	.hm-shop-hero {
		min-height: 600px;
	}

	.hm-shop-hero__inner {
		width: calc(100% - 64px);
		min-height: 600px;
		padding-top: 110px;
		padding-bottom: 48px;
	}

	.hm-shop-hero__content {
		width: min(680px, 100%);
	}

	.hm-shop-hero__content h1 {
		max-width: 680px;
		font-size: clamp(42px, 5.8vw, 60px);
		line-height: .94;
		letter-spacing: -.05em;
	}

	.hm-shop-hero__content p {
		max-width: 600px;
		margin-top: 20px;
		font-size: 14px;
		line-height: 1.65;
	}

}

@media (max-width: 1000px) {

	.hm-shop-container {
		width: calc(100% - 40px);
	}


	/* Categories */

	.hm-shop-categories__container {
		padding: 0 40px;
	}


	.hm-shop-categories__grid {
		grid-template-columns:
			repeat(3, minmax(0, 1fr));

		gap: 24px;
	}


	.hm-shop-category-card {
		min-height: 350px;
	}


	.hm-shop-section__header {
		gap: 40px;
	}


	.hm-shop-section__header > p {
		flex-basis: 300px;
	}


	.hm-shop-category-layout {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));

		grid-template-rows:
			280px
			280px
			230px;
	}


	.hm-shop-category--original {
		grid-column: 1 / 3;
		grid-row: 1 / 2;
	}


	.hm-shop-category--used {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
	}


	.hm-shop-category--new {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
	}


	.hm-shop-category--all {
		grid-column: 1 / 3;
		grid-row: 3 / 4;
	}


	.hm-shop-category--procurement {
		grid-column: 1 / 3;
		grid-row: 4 / 5;
		min-height: 230px;
	}


	.hm-shop-products {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));
	}


	.hm-shop-standard__header {
		grid-template-columns:
			1fr 300px;

		gap: 50px;
	}


	.hm-shop-standard__grid {
		grid-template-columns:
			repeat(2, 1fr);

		row-gap: 35px;
	}


	.hm-shop-standard__item:nth-child(2) {
		border-right: 0;
	}


	.hm-shop-standard__item:nth-child(3),
	.hm-shop-standard__item:nth-child(4) {
		border-top: 1px solid rgba(255,255,255,.12);

		padding-top: 25px;
	}


	.hm-shop-models {
		grid-template-columns:
			repeat(3, minmax(0, 1fr));
	}


	.hm-shop-cta__inner {
		padding: 45px;
	}

}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 768px) {

	/* ----------------------------------------------------------------------
	   HERO — standard mobile layout
	   ---------------------------------------------------------------------- */

	.hm-shop-hero {
		min-height: 450px;
	}

	.hm-shop-hero__inner {
		position: relative;
		z-index: 3;
		width: calc(100% - 28px);
		min-height: 450px;
		max-width: none;
		margin: 0 auto;
		display: flex;
		align-items: flex-end;
		padding: 110px 0 28px;
		box-sizing: border-box;
	}

	.hm-shop-hero__content {
		width: 100%;
		max-width: 100%;
	}

	.hm-shop-hero__subtitle {
		gap: 8px;
		margin-bottom: 11px;
		font-size: 8px;
		letter-spacing: .16em;
	}

	.hm-shop-hero__subtitle::before {
		width: 22px;
		flex-basis: 22px;
	}

	.hm-shop-hero__content h1 {
		max-width: 100%;
		margin: 0;
		font-size: clamp(29px, 8.2vw, 39px);
		line-height: .95;
		letter-spacing: -.05em;
	}

	.hm-shop-hero__content p {
		display: block;
		max-width: 100%;
		margin: 18px 0 0;
		font-size: 13px;
		line-height: 1.6;
	}

	.hm-shop-hero__bg img {
		object-position: 60% center;
	}

	.hm-shop-hero__buttons {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		gap: 10px;
		flex-wrap: nowrap;
		margin-top: 18px;
	}

	/* ----------------------------------------------------------------------
	   CATEGORIES MODULE
	   ---------------------------------------------------------------------- */

	.hm-shop-categories {
		padding: 70px 0 78px;
	}

	.hm-shop-categories__container {
		width: calc(100% - 28px);
		padding: 0;
	}

	.hm-shop-categories__heading {
		margin-bottom: 32px;
		text-align: left;
	}

	.hm-shop-categories__subtitle {
		margin-bottom: 13px;
		font-size: 10px;
		letter-spacing: .16em;
	}

	.hm-shop-categories__heading h2 {
		font-size: 34px;
		line-height: 1.02;
	}

	.hm-shop-categories__grid {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));

		gap: 8px;
	}

	.hm-shop-category-card {
		border-radius: 4px;
	}

	.hm-shop-category-card__image {
		height: 175px;
		padding: 16px;
	}

	.hm-shop-category-card__footer {
		min-height: 56px;
		padding: 14px 15px;
	}

	.hm-shop-category-card__title {
		font-size: 13px;
	}

	.hm-shop-category-card__title::after {
		width: 23px;
		height: 23px;

		margin-left: 8px;

		font-size: 12px;
	}

/* ----------------------------------------------------------------------
	   SEARCH
	   ---------------------------------------------------------------------- */

	.hm-shop-search {
		width: calc(100% - 28px);

		margin-top: -28px;
	}


	.hm-shop-search__inner {
		display: block;

		padding: 0;

		border-radius: 12px;
	}


	.hm-shop-search__area {
		padding: 18px;
	}


	.hm-shop-search__payment {
		align-items: center;

		min-height: 0;

		padding: 18px;

		border-top: 1px solid rgba(23,26,33,.07);
		border-left: 0;

		gap: 18px;
	}

	.hm-shop-search__payment-content {
		display: block;
	}

	.hm-shop-search__payment-eyebrow {
		margin-bottom: 6px;
	}

	.hm-shop-search__payment-content strong {
		margin-bottom: 5px;
	}


	.hm-shop-search__payment-content strong {
		font-size: 17px;
	}


	.hm-shop-search__payment-text {
		font-size: 11px;
	}


	.hm-shop-search__payment-button {
		min-width: 92px;

		padding: 0 12px;

		font-size: 9px;
	}


	.hm-shop-search__label {
		margin-bottom: 13px;
	}


	.hm-shop-search__label strong {
		font-size: 15px;
	}


	.hm-shop-search__form {
		width: 100%;

		height: 46px;
	}


	.hm-shop-search__form input[type="search"] {
		padding: 0 13px;

		font-size: 13px;
	}


	.hm-shop-search__form button {
		min-width: 92px;

		padding: 0 12px;

		font-size: 9px;
	}


	/* ----------------------------------------------------------------------
	   SECTIONS
	   ---------------------------------------------------------------------- */

	.hm-shop-section {
		padding: 80px 0 85px;
	}


	.hm-shop-section--products {
		padding-top: 58px;
		padding-bottom: 52px;
	}


	.hm-shop-container {
		width: calc(100% - 28px);
	}


	.hm-shop-section__header {
		display: block;

		margin-bottom: 30px;
	}


	.hm-shop-section__header > p {
		max-width: 430px;

		margin: 18px 0 0;

		font-size: 13px;

		line-height: 1.6;
	}


	.hm-shop-section__header h2 {
		font-size: 34px;

		line-height: 1.02;
	}


	.hm-shop-section--new {
		padding-top: 55px;
	}


	/* ----------------------------------------------------------------------
	   SORTIMENT
	   ---------------------------------------------------------------------- */

	.hm-shop-category-layout {
		display: flex;
		flex-direction: column;

		gap: 12px;
	}


	.hm-shop-category,
	.hm-shop-category--original,
	.hm-shop-category--used,
	.hm-shop-category--new,
	.hm-shop-category--all,
	.hm-shop-category--procurement {
		width: 100%;

		height: 213px;

		min-height: 213px;

		grid-column: auto;
		grid-row: auto;
	}


	.hm-shop-category--original {
		height: 272px;

		min-height: 272px;
	}


	.hm-shop-category--procurement {
		height: 255px;
		min-height: 255px;
	}


	.hm-shop-category__procurement-inner {
		position: relative;
		inset: auto;
		box-sizing: border-box;
		min-height: 255px;
		height: 255px;
		padding: 26px 22px 24px;
	}


	.hm-shop-category__procurement-inner strong {
		max-width: 100%;
		font-size: 28px;
		line-height: 1.04;
	}


	.hm-shop-category__procurement-inner p {
		max-width: none;
		font-size: 12.5px;
		line-height: 1.55;
	}


	.hm-shop-category__content {
		left: 20px;
		right: 20px;
		bottom: 20px;
	}


	.hm-shop-category__content strong {
		font-size: 30px;
	}


	.hm-shop-category__all-inner {
		padding: 22px;
	}


	.hm-shop-category--all strong {
		font-size: 30px;
	}


	.hm-shop-category--all {
		height: 213px;
		min-height: 213px;
	}


	.hm-shop-section--products .hm-shop-section__all-link {
		margin-top: 18px;
	}


	.hm-shop-category--procurement {
		height: 255px;
		min-height: 255px;
	}


	.hm-shop-category__procurement-inner {
		padding: 26px 22px 24px;
	}


	.hm-shop-category__procurement-inner strong {
		font-size: 28px;
	}


	/* ----------------------------------------------------------------------
	   PRODUCTS
	   ---------------------------------------------------------------------- */

	.hm-shop-products {
		grid-template-columns: 1fr;

		gap: 12px;
	}


	.hm-shop-product__image {
		height: 260px;
	}


	/* ----------------------------------------------------------------------
	   HERITAGE STANDARD
	   ---------------------------------------------------------------------- */

	.hm-shop-standard {
		padding: 80px 0;
	}


	.hm-shop-standard__header {
		display: block;

		margin-bottom: 45px;
	}


	.hm-shop-standard__header-main {
		display: flex;
		flex-direction: column;
	}


	.hm-shop-standard__header h2 {
		font-size: 38px;

		line-height: 1;
	}


	.hm-shop-standard__header p {
		margin-top: 22px;

		font-size: 13px;
	}


	.hm-shop-standard__grid {
		display: grid;

		grid-template-columns: 1fr;

		gap: 0;
	}


	.hm-shop-standard__item,
	.hm-shop-standard__item:not(:first-child) {
		padding:
			24px
			0;

		border-right: 0;

		border-bottom: 1px solid rgba(255,255,255,.12);
	}


	.hm-shop-standard__item:first-child {
		padding-top: 0;
	}


	.hm-shop-standard__item:last-child {
		border-bottom: 0;
	}


	/* ----------------------------------------------------------------------
	   MODELLE
	   ---------------------------------------------------------------------- */

	.hm-shop-section--models {
		padding-bottom: 90px;
	}


	.hm-shop-models {
		display: grid;

		grid-template-columns:
			repeat(2, minmax(0, 1fr));

		gap: 8px;
	}


	.hm-shop-model {
		min-height: 175px;

		padding: 18px;
	}


	.hm-shop-model__content strong {
		font-size: 21px;
	}


	.hm-shop-model__content span {
		font-size: 10px;
	}


	.hm-shop-model__arrow {
		right: 15px;
		bottom: 15px;

		width: 26px;
		height: 26px;
	}


	/* ----------------------------------------------------------------------
	   CTA
	   ---------------------------------------------------------------------- */

	.hm-shop-cta {
		padding: 0 0 80px;
	}


	.hm-shop-cta__inner {
		display: block;

		width: calc(100% - 28px);

		padding: 35px 24px;
	}


	.hm-shop-cta__inner h2 {
		font-size: 34px;
	}


	.hm-shop-cta__inner p {
		margin-top: 15px;

		font-size: 13px;
	}


	.hm-shop-cta__button {
		margin-top: 25px;
	}

}


/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 430px) {

	.hm-shop-search__payment {
		align-items: stretch;
		flex-direction: column;

		gap: 14px;
	}

	.hm-shop-search__payment-content {
		display: block;
	}

	.hm-shop-search__payment-button {
		width: 100%;
		box-sizing: border-box;
	}


	.hm-shop-hero {
		min-height: 416px;
	}

	.hm-shop-hero__inner {
		min-height: 416px;
	}


	.hm-shop-models {
		grid-template-columns: 1fr;
	}


	.hm-shop-model {
		min-height: 145px;
	}


	.hm-shop-category--original {
		height: 272px;

		min-height: 272px;
	}


	.hm-shop-category,
	.hm-shop-category--used,
	.hm-shop-category--new,
	.hm-shop-category--all {
		height: 213px;

		min-height: 213px;
	}

}


/* ==========================================================================
   SMALL MOBILE – CATEGORY CARDS
   ========================================================================== */

@media (max-width: 430px) {

	.hm-shop-category-card__image {
		height: 160px;
		padding: 14px;
	}

	.hm-shop-category-card__footer {
		min-height: 54px;
		padding: 13px 14px;
	}

	.hm-shop-category-card__title {
		font-size: 12.5px;
	}

}


/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

	.hm-shop-category-card,
	.hm-shop-category-card__image img,
	.hm-shop-category-card__title::after,
	.hm-shop-category-card__arrow,

	.hm-shop-category img,
	.hm-shop-category__content em span,

	.hm-shop-product,
	.hm-shop-product__image img,
	.hm-shop-product__arrow,

	.hm-shop-model,
	.hm-shop-model__arrow,

	.hm-shop-cta__button,
	.hm-shop-cta__button span,

	.hm-shop-search__form button,
	.hm-shop-search__form button span {
		transition: none;
	}

}
/* Mobile: Sortiment in sinnvoller Reihenfolge */
@media (max-width: 768px) {
	.hm-shop-category-layout .hm-shop-category--original {
		order: 1;
	}

	.hm-shop-category-layout .hm-shop-category--used {
		order: 2;
	}

	.hm-shop-category-layout .hm-shop-category--new {
		order: 3;
	}

	.hm-shop-category-layout .hm-shop-category--all {
		order: 4;
	}

	.hm-shop-category-layout .hm-shop-category--procurement {
		order: 5;
	}
}


/* ============================================================================
   FINAL SEARCH + PREPAYMENT MODULE
   Harmonised single module – search remains primary, payment benefit secondary.
   ============================================================================ */

.hm-shop-search__inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	background: #fff;
	border: 1px solid rgba(23,26,33,.08);
	border-radius: 14px;
	box-shadow:
		0 18px 48px rgba(15,23,42,.09),
		0 4px 14px rgba(15,23,42,.045);
	overflow: hidden;
}

.hm-shop-search__area {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	align-items: center;
	column-gap: 22px;
	min-width: 0;
	padding: 22px 28px;
}

.hm-shop-search__label {
	gap: 5px;
	margin: 0;
}

.hm-shop-search__label strong {
	font-size: 16px;
}

.hm-shop-search__form {
	width: 100%;
	max-width: none;
	height: 48px;
}

.hm-shop-search__payment {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	min-width: 0;
	padding: 16px 28px 17px;
	background: #f5f5f2;
	color: #171a21;
	border-top: 1px solid rgba(23,26,33,.07);
}

.hm-shop-search__payment-content {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	column-gap: 15px;
	row-gap: 2px;
	min-width: 0;
}

.hm-shop-search__payment-eyebrow {
	flex: 0 0 auto;
	margin: 0;
	color: #18A891;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .18em;
	line-height: 1;
	text-transform: uppercase;
}

.hm-shop-search__payment-content strong {
	display: inline;
	margin: 0;
	color: #171a21;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -.025em;
	line-height: 1.2;
}

.hm-shop-search__payment-text {
	display: inline;
	max-width: none;
	min-width: 0;
	color: #73777c;
	font-size: 11px;
	line-height: 1.4;
}

.hm-shop-search__payment-link {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: #171a21 !important;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .14em;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none !important;
	white-space: nowrap;
	transition: color .25s ease;
}

.hm-shop-search__payment-link span {
	color: #18A891;
	font-size: 17px;
	line-height: 1;
	transition: transform .25s ease;
}

.hm-shop-search__payment-link:hover {
	color: #18A891 !important;
}

.hm-shop-search__payment-link:hover span {
	transform: translateX(4px);
}

@media (max-width: 768px) {

	.hm-shop-search__area {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 13px;
		padding: 18px;
	}

	.hm-shop-search__label {
		margin: 0;
	}

	.hm-shop-search__form {
		width: 100%;
		height: 46px;
		max-width: none;
	}

	.hm-shop-search__payment {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		gap: 16px;
		padding: 17px 18px 18px;
	}

	.hm-shop-search__payment-content {
		display: block;
		min-width: 0;
	}

	.hm-shop-search__payment-eyebrow {
		display: block;
		margin-bottom: 6px;
	}

	.hm-shop-search__payment-content strong {
		display: block;
		margin-bottom: 5px;
		font-size: 17px;
	}

	.hm-shop-search__payment-text {
		display: block;
		font-size: 11px;
		line-height: 1.5;
	}

	.hm-shop-search__payment-link {
		margin-top: 2px;
		font-size: 9px;
	}

}

@media (max-width: 430px) {

	.hm-shop-search__payment {
		flex-direction: column;
		gap: 11px;
	}

	.hm-shop-search__payment-link {
		margin-top: 0;
	}
}
