/* ==========================================================================
   SHOP.CSS - Modernes Frontend-Stylesheet
   Ersetzt schrittweise das Template-CSS (style.css)
   Mobile-First | Bootstrap 5.3.2 Ergaenzung
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
	--shop-primary: #7a9d6b; /* #8C5B5B */
	--shop-primary-hover: #6b8b5d; /* #6e4545 */
	--shop-secondary: #997ead;
	--shop-accent: #ffd8cb;
	/* CTA-Farbe für Warenkorb-/Bestellabschluss-Buttons (positiv, "Go") */
	--shop-cta: #7a9d6b;
	--shop-cta-hover: #6b8b5d;
	--shop-dark: #333;
	--shop-gray-800: #444;
	--shop-gray-600: #666;
	--shop-gray-400: #999;
	--shop-gray-200: #e9ecef;
	--shop-gray-100: #f5f5f5;
	--shop-white: #fff;
	--shop-success: #198754;
	--shop-danger: #dc3545;
	--shop-warning: #ffc107;

	--shop-font-body: 'Lato', sans-serif;
	--shop-font-heading: 'Montserrat', sans-serif;
	--shop-font-accent: 'Instrument Serif', serif;

	--shop-radius: 6px;
	--shop-radius-lg: 12px;
	--shop-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
	--shop-shadow: 0 2px 8px rgba(0,0,0,0.1);
	--shop-shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
	--shop-transition: 0.2s ease;

	--shop-container-max: 1200px;
	--shop-navbar-height: 46px;
}

/* --------------------------------------------------------------------------
   2. Base / Typography
   -------------------------------------------------------------------------- */
body {
	font-family: var(--shop-font-body);
	color: var(--shop-dark);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.page {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.shop-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--shop-font-heading);
	font-weight: 600;
	line-height: 1.3;
}

a {
	color: var(--shop-primary);
	text-decoration: none;
	transition: color var(--shop-transition);
}
a:hover {
	color: var(--shop-primary-hover);
}

/* Topbar */
.shop-topbar {
    background: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.78rem;
    color: var(--shop-gray-800);
    padding: 5px 0;
    text-align: center;
}
.shop-topbar a { color: var(--shop-gray-800); }
.shop-topbar strong { font-weight: 700; }

/* --------------------------------------------------------------------------
   3. Header mit Logo, Suche und Icons
   -------------------------------------------------------------------------- */

.shop-header {
	background: var(--shop-white);
	padding: 1rem 0;
	border-bottom: 1px solid var(--shop-gray-200);
}
.shop-header-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 2rem;
}

/* Logo */
.shop-header-logo {
	justify-self: start;
}
.shop-header-logo img {
	height: 50px;
	width: auto;
	display: block;
}

/* Prominentes Suchfeld */
.shop-header-search {
	width: 100%;
	max-width: 480px;
	min-width: 280px;
}
.shop-search-main {
	position: relative;
	display: flex;
	align-items: center;
	background: var(--shop-gray-100);
	border: 2px solid var(--shop-gray-200);
	border-radius: 50px;
	overflow: hidden;
	transition: all var(--shop-transition);
}
.shop-search-main:focus-within {
	border-color: var(--shop-primary);
	background: var(--shop-white);
	box-shadow: 0 0 0 4px rgba(140, 91, 91, 0.1);
}
.shop-search-main .shop-search-icon {
	position: absolute;
	left: 1rem;
	color: var(--shop-gray-400);
	pointer-events: none;
}
.shop-search-main:focus-within .shop-search-icon {
	color: var(--shop-primary);
}
.shop-search-main input {
	flex: 1;
	border: none;
	background: transparent;
	padding: 0.85rem 1rem 0.85rem 3rem;
	font-size: 0.95rem;
	color: var(--shop-dark);
	outline: none;
}
.shop-search-main input::placeholder {
	color: var(--shop-gray-400);
}
.shop-search-main button {
	flex-shrink: 0;
	border: none;
	background: var(--shop-primary);
	color: var(--shop-white);
	padding: 0.7rem 1.5rem;
	margin: 0.25rem;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: background var(--shop-transition);
}
.shop-search-main button:hover {
	background: var(--shop-primary-hover);
}

/* Header Icons */
.shop-header-icons {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	justify-self: end;
}
.shop-header-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: var(--shop-gray-600);
	background: transparent;
	border: none;
	cursor: pointer;
	transition: all var(--shop-transition);
	text-decoration: none;
}
.shop-header-icon:hover {
	background: var(--shop-gray-100);
	color: var(--shop-primary);
}
.shop-header-icon.shop-cart-badge {
	position: relative;
}

/* Cart Badge */
.shop-cart-count {
	position: absolute;
	top: 2px;
	right: 2px;
	background: var(--shop-primary);
	color: var(--shop-white);
	font-size: 0.65rem;
	font-weight: 700;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}
.shop-cart-count:empty,
.shop-cart-count[data-count="0"] {
	display: none;
}

/* Mobile Suchfeld unter Header */
.shop-header-search-mobile {
	margin-top: 0.75rem;
}
.shop-header-search-mobile .shop-search-main {
	background: var(--shop-gray-100);
	border: 1px solid var(--shop-gray-200);
}
.shop-header-search-mobile .shop-search-main input {
	padding: 0.65rem 1rem 0.65rem 2.75rem;
	font-size: 0.9rem;
}
.shop-header-search-mobile .shop-search-main .shop-search-icon {
	left: 0.85rem;
	width: 18px;
	height: 18px;
}
.shop-header-search-mobile .shop-search-main button {
	display: none;
}

/* Navbar (nur Navigation) */
.shop-navbar {
	background: var(--shop-white);
	box-shadow: var(--shop-shadow-sm);
	z-index: 1030;
	padding: 0;
}
.shop-navbar .navbar-nav {
	justify-content: center;
	width: 100%;
}
.shop-navbar .navbar-nav .nav-link {
	font-family: var(--shop-font-heading);
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--shop-dark);
	padding: 0.85rem 1.25rem;
	transition: color var(--shop-transition);
	text-transform: none;
	letter-spacing: 0;
}
.shop-navbar .navbar-nav .nav-link:hover,
.shop-navbar .navbar-nav .nav-link:focus {
	color: var(--shop-primary);
}
.shop-navbar .dropdown-menu {
	border: none;
	box-shadow: var(--shop-shadow);
	border-radius: var(--shop-radius);
	padding: 0.5rem 0;
	min-width: 220px;
}
.shop-navbar .dropdown-item {
	font-size: 0.9rem;
	padding: 0.5rem 1.25rem;
	transition: background var(--shop-transition);
}
.shop-navbar .dropdown-item:hover {
	background: var(--shop-gray-100);
	color: var(--shop-primary);
}

/* Mega-Navigation (navi-1) */
.shop-mainnav {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1px;
    padding: 0;
}
.shop-mainnav-item {
    position: static;
    flex: 1 1 auto;
    text-align: center;
    min-width: 100px;
	padding: 15px 0 0 0;
	transition: all 0.7s ease;
}
.shop-mainnav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    color: var(--shop-dark);
    text-decoration: none;
}
.shop-mainnav-link:hover,
.shop-mainnav-item.has-mega:hover .shop-mainnav-link,
.shop-mainnav-item.active .shop-mainnav-link {
    color: var(--shop-primary);
    border-bottom-color: var(--shop-primary);
}
.shop-mainnav-item.active {
    background-color: #f5f1ec;
}
.shop-mainnav-item.active .shop-mainnav-label {
    font-weight: 500;
}
.shop-mainnav-item.active .shop-mainnav-sublabel {
    font-weight: 400;
}
.shop-mainnav-item.has-mega:hover {
    background-color: #f9f6f1;
}
.shop-mainnav-img {
    width: auto;
    height: 100px;
    display: block;
    margin: 0 auto 10px;
}
.shop-mainnav-img-placeholder {
    width: auto;
    height: 100px;
    display: block;
    margin: 0 auto 4px;
}
.shop-mainnav-label {
    font-size: 0.8rem;
    font-weight: 400;
    font-family: var(--shop-font-heading);
    line-height: 1.6;
    letter-spacing: 0.02em;
    display: block;
	color: #5e503e;
}
.shop-mainnav-sublabel {
	font-size: 0.65rem;
	font-weight: 400;
	font-family: var(--shop-font-body);
	line-height: 1.2;
	letter-spacing: 0em;
	display: block;
	color: #9b8467;
	padding-bottom: 5px;
}


/* Mega-Dropdown */
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--shop-white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    border-radius: 0 0 var(--shop-radius) var(--shop-radius);
    z-index: 1050;
}
.shop-mainnav-item.has-mega:hover .mega-menu { display: block; }
/* Hover-Lock: unterdrückt Mega-Menu nach Interaktion in der Kopfleiste, bis der Cursor die Navbar nach unten verlassen hat */
body.nav-hover-locked .shop-mainnav-item.has-mega:hover .mega-menu { display: none; }
.mega-menu-body {
    display: flex;
    align-items: stretch;
}
.mega-menu-links {
    flex: 1;
    padding: 1.25rem 1.5rem;
}
.mega-menu-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 12px;
}
.mega-menu-link {
    display: flex;
    flex-direction: column;
    padding: 8px 10px;
    border-radius: 4px;
    border-bottom: 1px solid #f0ece6;
    color: var(--shop-dark);
    text-decoration: none;
    transition: background 0.15s;
    line-height: 1.3;
    text-align: left;
}
.mega-menu-link:hover,
.mega-menu-link.is-active {
    background: #f5f3ef;
    color: var(--shop-dark);
}
.mega-menu-link-title {
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--shop-font-heading);
}
.mega-menu-link-sub {
    font-size: 0.76rem;
    color: #888;
    margin-top: 1px;
    min-height: 1em;
}
.mega-menu-all {
    display: inline-block;
    margin-top: 0.9rem;
    font-size: 0.82rem;
    color: var(--shop-primary);
    text-decoration: none;
    font-weight: 600;
}
.mega-menu-all:hover { text-decoration: underline; }
.mega-menu-preview {
    width: 320px;
    flex: 0 0 320px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mega-menu-preview[data-empty] { display: none; }
.mega-menu-preview-img-wrap {
    width: 100%;
}
.mega-menu-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mega-menu-preview-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--shop-font-heading);
    color: var(--shop-dark);
    margin-bottom: 6px;
}
.mega-menu-preview-text {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
    text-align: left;
}
.mega-menu-preview-text ul,
.mega-menu-preview-text ol {
    padding-left: 1.1rem;
    margin: 0;
}
.mega-menu-preview-text li {
    margin-bottom: 2px;
}

/* Autocomplete positionieren */
.shop-header-search .shop-search-wrapper {
	position: relative;
}
.shop-header-search .search-autocomplete {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin-top: 0.5rem;
	z-index: 1050;
}

/* Responsive Header */
@media (max-width: 991.98px) {
	.shop-header {
		padding: 0.75rem 0;
	}
	.shop-header-inner {
		display: flex;
		justify-content: space-between;
		gap: 1rem;
	}
	.shop-header-logo img {
		height: 44px;
	}
}

/* Offcanvas Mobile Menu */
.shop-offcanvas {
	max-width: 300px;
}
.shop-offcanvas .nav-link {
	font-size: 1rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--shop-gray-200);
	color: var(--shop-dark);
}
.shop-offcanvas .nav-link:hover {
	color: var(--shop-primary);
}
.shop-offcanvas .dropdown-menu {
	border: none;
	box-shadow: none;
	padding-left: 1rem;
}

/* --------------------------------------------------------------------------
   4. Breadcrumbs
   -------------------------------------------------------------------------- */
.shop-breadcrumb {
	padding: 0.875rem 0;
	background: var(--shop-gray-100);
	font-size: 0.75rem;
	letter-spacing: 0.05em;
}
.shop-breadcrumb .breadcrumb {
	margin-bottom: 0;
	background: transparent;
	padding: 0;
	align-items: center;
}
.shop-breadcrumb .breadcrumb-item {
	text-transform: uppercase;
	font-weight: 500;
}
.shop-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
	content: ">";
	color: var(--shop-gray-400);
	font-weight: 400;
	padding: 0 0.6rem;
}
.shop-breadcrumb .breadcrumb-item a {
	color: var(--shop-gray-400);
	text-decoration: none;
	transition: color 0.2s ease;
}
.shop-breadcrumb .breadcrumb-item a:hover {
	color: var(--shop-gray-600);
}
.shop-breadcrumb .breadcrumb-item.active {
	color: var(--shop-gray-600);
	font-weight: 600;
}
.shop-breadcrumb .breadcrumb-home a {
	display: flex;
	align-items: center;
}
.shop-breadcrumb .breadcrumb-home svg {
	color: var(--shop-gray-400);
	transition: color 0.2s ease;
}
.shop-breadcrumb .breadcrumb-home a:hover svg {
	color: var(--shop-gray-600);
}

/* --------------------------------------------------------------------------
   5. Section / Page Heading
   -------------------------------------------------------------------------- */
.shop-section {
	padding: 2rem 0;
}
.shop-section-heading {
	margin-bottom: 1.5rem;
}
.shop-section-heading h1 {
	font-size: 1.6rem;
	margin-bottom: 0.25rem;
}
.shop-section-heading h3 {
	font-size: 1rem;
	font-weight: 400;
	color: var(--shop-gray-600);
	margin-bottom: 0;
}
.shop-section-heading .shop-divider {
	width: 60px;
	height: 2px;
	background: var(--shop-primary);
	margin: 0.75rem 0;
}

@media (min-width: 768px) {
	.shop-section {
		padding: 3rem 0;
	}
	.shop-section-heading h1 {
		font-size: 2rem;
	}
}

/* --------------------------------------------------------------------------
   6. Product Listing
   -------------------------------------------------------------------------- */
.shop-listing {
	padding: 3rem 0 3rem;
}

/* Listing Header */
.listing-header {
	margin-bottom: 1.5rem;
	text-align: center;
}
.listing-title {
	font-family: var(--shop-font-heading);
	font-size: 1.6rem;
	font-weight: 300;
	color: var(--shop-dark);
	margin-bottom: 0.25rem;
}
.listing-subheadline {
	font-family: var(--shop-font-heading);
	font-size: 1.2rem !important;
	color: var(--shop-gray-400);
	margin-bottom: 1rem;
	font-weight: 300;
}
.listing-description {
	font-size: 0.95rem;
	color: var(--shop-gray-600);
	line-height: 1.6;
	max-width: 680px;
	margin: 0 auto;
}

/* Subcategory Chips */
/* Alte Chip-Ansicht (wird nicht mehr für Subcategories verwendet, aber ggf. anderswo) */
.listing-subcategories {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}
.listing-chip {
	display: inline-block;
	padding: 0.35rem 0.9rem;
	border-radius: 999px;
	background: var(--shop-gray-100);
	color: var(--shop-dark);
	font-size: 0.85rem;
	text-decoration: none;
	transition: background var(--shop-transition), color var(--shop-transition);
	border: 1px solid var(--shop-gray-200);
}
.listing-chip:hover {
	background: var(--shop-primary);
	color: var(--shop-white);
	border-color: var(--shop-primary);
}

/* Unterkategorie-Karten
   Spalten kommen aus dem Preset (kategorien.columns_sub) per CSS-Custom-Property,
   die das Partial inline setzt — Default-Werte hier als Fallback.

   Flexbox statt CSS-Grid, damit eine unvollständige letzte Zeile (z.B. 3 von 4
   Karten) automatisch zentriert wird. Bei vollen Zeilen wirkt es wie ein Grid,
   weil alle Karten die berechnete Spaltenbreite haben. */
.listing-subcategories-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}
.listing-subcat-card {
	flex: 0 0 calc((100% - (var(--subcat-cols-lg, 3) - 1) * 1.5rem) / var(--subcat-cols-lg, 3));
	max-width: calc((100% - (var(--subcat-cols-lg, 3) - 1) * 1.5rem) / var(--subcat-cols-lg, 3));
}
@media (max-width: 767.98px) {
	.listing-subcat-card {
		flex: 0 0 calc((100% - (var(--subcat-cols-md, 2) - 1) * 1.5rem) / var(--subcat-cols-md, 2));
		max-width: calc((100% - (var(--subcat-cols-md, 2) - 1) * 1.5rem) / var(--subcat-cols-md, 2));
	}
}
@media (max-width: 479.98px) {
	.listing-subcat-card {
		flex: 0 0 calc((100% - (var(--subcat-cols-sm, 1) - 1) * 1.5rem) / var(--subcat-cols-sm, 1));
		max-width: calc((100% - (var(--subcat-cols-sm, 1) - 1) * 1.5rem) / var(--subcat-cols-sm, 1));
	}
}
.listing-subcat-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border-radius: var(--shop-radius);
	border: 1px solid transparent;
	padding: 1.25rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.listing-subcat-card:hover {
	border-color: var(--shop-gray-200);
	box-shadow: 0 4px 16px rgba(0,0,0,0.07);
	transform: translateY(-2px);
	text-decoration: none;
	color: inherit;
}
.listing-subcat-card-image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.listing-subcat-card-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}
.listing-subcat-card-body {
	padding-top: 1rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.listing-subcat-card-title {
	font-size: 1.22rem;
	font-weight: 500;
	color: var(--shop-dark);
	margin-bottom: 0.25rem;
	text-align: center;
}
.listing-subcat-card-subtitle {
	font-size: 0.85rem;
	color: var(--shop-gray-500);
	text-align: center;
	margin-bottom: 0.75rem;
	line-height: 1.4;
}
.listing-subcat-card-bullets {
	list-style: none !important;
	padding: 0.75rem 1rem !important;
	margin: 0;
	margin-bottom: 0 !important;
	background: var(--shop-gray-100);
	border-radius: var(--shop-radius);
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	flex: 1;
}
.listing-subcat-card-bullets li {
	list-style: none !important;
	font-size: 0.8rem;
	color: var(--shop-gray-600);
	font-style: italic;
	padding-left: 1.2rem;
	position: relative;
	line-height: 1.4;
}
.listing-subcat-card-bullets li::before {
	content: '✓';
	position: absolute;
	left: 0;
	font-style: normal;
	font-weight: 600;
	color: var(--shop-primary);
}

/* Overrides: listing-subcat-card innerhalb von .cms-page-content
   cms-page-content ul li::before hat Spezifität (0,1,3) und würde
   das ✓ mit einem Kreis-Bullet überschreiben → hier mit (0,2,2) gegenhalten */
.cms-page-content .listing-subcat-card-title {
	color: var(--shop-primary);
}
.cms-page-content .listing-subcat-card-bullets li {
	padding-left: 1.2rem;
	margin-bottom: 0;
}
.cms-page-content .listing-subcat-card-bullets li::before {
	content: '✓';
	width: auto;
	height: auto;
	border-radius: 0;
	background: transparent;
	color: var(--shop-primary);
	font-weight: 600;
	top: 0;
}

/* Toolbar */
.listing-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--shop-gray-200);
}
.listing-count {
	font-size: 0.85rem;
	color: var(--shop-gray-600);
}
.listing-toolbar-sort {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.listing-sort-label {
	font-size: 0.85rem;
	color: var(--shop-gray-600);
	margin: 0;
}
.listing-sort-select {
	font-size: 0.85rem;
	padding: 0.35rem 2rem 0.35rem 0.75rem;
	border-radius: var(--shop-radius);
	border: 1px solid var(--shop-gray-200);
	background: var(--shop-white);
	cursor: pointer;
}

/* Product Card */
.listing-grid {
	--bs-gutter-x: 0.75rem;
	--bs-gutter-y: 0.75rem;
}
.listing-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid var(--shop-gray-200);
	border-radius: var(--shop-radius);
	overflow: hidden;
	background: #fff;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s ease-in, box-shadow 0.2s ease-in;
}
.listing-card:hover {
	border-color: var(--shop-gray-400);
	box-shadow: 0 4px 14px rgba(0,0,0,0.08);
	color: inherit;
}
.listing-card-image {
	height: 240px;
	padding: 0.5rem;
	box-sizing: border-box;
	overflow: hidden;
	background: var(--shop-white);
	display: flex;
	align-items: center;
	justify-content: center;
}
.listing-card-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: transform 0.3s ease-in;
}
.listing-card:hover .listing-card-image img {
	transform: scale(1.02);
}
.listing-card-noimage {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.listing-card-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0.75rem;
	/* Schwebende Trennlinie zwischen Bild und Inhalt */
	position: relative;
}
.listing-card-body::before {
	content: '';
	display: block;
	width: 70%;
	height: 1px;
	background: var(--shop-gray-200);
	margin: 0 auto 0.75rem;
}
.listing-card-title,
h3.listing-card-title{
	font-family: var(--shop-font-heading);
	font-size: 1rem !important;
	font-weight: 400 !important;
	color: var(--shop-dark);
	margin-bottom: 0.6rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.3;
}
.listing-card-text {
	font-size: 0.75rem;
	color: var(--shop-gray-400);
	margin-bottom: 0.5rem;
	line-height: 1.3;
	/* max-height clippt block-level Inhalte (line-clamp greift nur bei inline) */
	max-height: calc(1.3em * 3);
	overflow: hidden;
	/* line-clamp als Bonus, wenn der Inhalt rein inline ist */
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
/* Block-Inhalte aus WYSIWYG (<p>, <h*>) ohne Margins darstellen */
.listing-card-text > p,
.listing-card-text > div,
.listing-card-text > h1,
.listing-card-text > h2,
.listing-card-text > h3,
.listing-card-text > h4 {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-weight: inherit;
}
/* Listen in der Listing-Card: Häkchen statt orange Punkte (überschreibt cms-page-content) */
.listing-card-text ul,
.listing-card-text ol {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
}
.listing-card-text ul li,
.listing-card-text ol li {
	position: relative;
	padding-left: 1.25rem;
	margin: 0 0 0.2rem 0;
	line-height: 1.4;
}
/* CMS-Punkt-Bullet ausschalten und durch Häkchen ersetzen */
.listing-card-text ul li::before,
.listing-card-text ol li::before {
	content: '\2713'; /* ✓ */
	position: absolute;
	left: 0;
	top: 0;
	width: auto;
	height: auto;
	background: transparent;
	border-radius: 0;
	color: var(--shop-primary);
	font-weight: 700;
	font-size: 0.85rem;
	line-height: 1.4;
}
.listing-card-text ol li::marker {
	content: '';
}
.listing-card-price {
	font-family: var(--shop-font-heading);
	font-size: 1rem;
	font-weight: 700;
	color: var(--shop-primary);
	margin-top: auto;
}
.listing-card-price-hint {
	font-size: 12px;
	font-weight: 400;
	color: #888;
}

/* Sternebewertung in Listing-Karten */
.listing-card-stars {
    display: flex; gap: 2px; margin-bottom: 4px;
}
.listing-card-stars .star {
    color: var(--shop-primary);
    font-size: 0.7rem;
}
.listing-card-stars .star-empty { color: var(--shop-gray-300); }

/* Preis: netto + brutto */
.listing-card-price-netto {
    display: block;
    font-size: 0.75rem;
    color: var(--shop-gray-500);
}

.listing-card-wrap {
	position: relative;
	height: 100%;
}
.listing-card-wrap .listing-card {
	height: 100%;
}
.listing-card-merkzettel {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 2;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.7);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	opacity: 0.5;
	color: var(--shop-gray-600);
	transition: opacity 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
	padding: 0;
}
.listing-card-wrap:hover .listing-card-merkzettel,
.listing-card-merkzettel:focus {
	opacity: 1;
}
.listing-card-merkzettel:hover {
	opacity: 1;
	background: rgba(255,255,255,0.95);
	transform: scale(1.1);
}
.listing-card-merkzettel.is-active {
	opacity: 1;
	color: var(--shop-cta, #c9302c);
}
.listing-card-merkzettel.is-active:hover {
	color: var(--shop-cta-hover, #a02520);
}
@keyframes merkzettelPulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.3); }
	100% { transform: scale(1); }
}
.listing-card-merkzettel.is-animating {
	animation: merkzettelPulse 0.3s ease;
}

/* Pagination */
.listing-pagination {
	display: flex;
	justify-content: center;
	padding: 2rem 0 1rem;
}
.listing-pagination ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 0.25rem;
}
.listing-pagination li a,
.listing-pagination li span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	height: 2.25rem;
	padding: 0 0.5rem;
	border-radius: var(--shop-radius);
	font-size: 0.9rem;
	text-decoration: none;
	color: var(--shop-dark);
	border: 1px solid var(--shop-gray-200);
	background: var(--shop-white);
	transition: background var(--shop-transition), color var(--shop-transition), border-color var(--shop-transition);
}
.listing-pagination li a:hover {
	background: var(--shop-gray-100);
	border-color: var(--shop-gray-300);
}
.listing-pagination li span.active {
	background: var(--shop-primary);
	color: var(--shop-white);
	border-color: var(--shop-primary);
}
.listing-pagination-dots span {
	border: none !important;
	background: none !important;
	cursor: default;
}

/* Empty State */
.listing-empty {
	text-align: center;
	padding: 4rem 1rem;
	color: var(--shop-gray-600);
}
.listing-empty svg {
	margin-bottom: 1.5rem;
}
.listing-empty h2 {
	font-family: var(--shop-font-heading);
	font-size: 1.4rem;
	color: var(--shop-dark);
	margin-bottom: 0.5rem;
}
.listing-empty p {
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}
.listing-empty-btn {
	display: inline-block;
	padding: 0.6rem 1.5rem;
	background: var(--shop-primary);
	color: var(--shop-white);
	border-radius: var(--shop-radius);
	text-decoration: none;
	font-size: 0.9rem;
	transition: background var(--shop-transition);
}
.listing-empty-btn:hover {
	background: var(--shop-primary-dark);
	color: var(--shop-white);
}

/* Responsive */
@media (max-width: 575.98px) {
	.listing-title {
		font-size: 1.3rem;
	}
	.listing-subheadline {
		font-size: 0.95rem;
	}
	.shop-breadcrumb {
		display: none;
	}
	.listing-toolbar {
		display: none;
	}
	.listing-card-body {
		padding: 0.5rem;
	}
	.listing-card-title {
		font-size: 1rem;
	}
	.listing-card-text {
		font-size: 0.75rem;
		-webkit-line-clamp: 1;
	}
	.listing-card-price {
		font-size: 0.9rem;
	}
}

/* --------------------------------------------------------------------------
   7. Product Details
   -------------------------------------------------------------------------- */
.shop-details {
	padding: 1.5rem 0 3rem;
}
.shop-details .shop-details-heading h1 {
	font-size: 1.4rem;
	margin-bottom: 0.25rem;
}
.shop-details .shop-details-heading h3 {
	font-size: 0.95rem;
	font-weight: 400;
	color: var(--shop-gray-600);
	margin-bottom: 1rem;
}

/* Image Gallery */
.shop-details-gallery {
	margin-bottom: 1.5rem;
	padding-right: 2rem;
}
@media (max-width: 767.98px) {
	.shop-details-gallery {
		padding-right: 0;
	}
}
.shop-details-gallery .details-slider {
	border-radius: var(--shop-radius);
	overflow: visible;
	background: none;
	padding:0px;
}
.shop-details-gallery .details-slider .slick-list {
	border-radius: var(--shop-radius);
	overflow: hidden;
}
.shop-details-gallery img {
	max-width: 100%;
	height: auto;
}

/* Product Info */
.shop-details-info {
	font-size: 0.95rem;
	color: var(--shop-gray-800);
	line-height: 1.7;
	margin-bottom: 1.25rem;
}

/* Bulletpoints */
.details-bulletpoints {
	list-style: none;
	padding: 0;
	margin: 0 0 1.25rem;
}
.details-bulletpoints li {
	position: relative;
	padding-left: 1.4rem;
	margin-bottom: 0.3rem;
	font-size: 0.9rem;
	color: var(--shop-gray-700);
	line-height: 1.5;
}
.details-bulletpoints li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--shop-primary);
	font-weight: 600;
}

/* Price & Quantity Box (Combined) */
.shop-price-quantity-box {
	background: var(--shop-gray-100);
	border-radius: var(--shop-radius-lg);
	padding: 1.25rem;
	margin-bottom: 1.5rem;
}
.shop-pq-main {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
}
.shop-pq-price {
	flex: 1;
	min-width: 140px;
}
.shop-pq-price-value {
	display: block;
	font-family: var(--shop-font-heading);
	font-size: 2rem;
	font-weight: 700;
	color: var(--shop-primary);
	line-height: 1.1;
}
.shop-pq-price-tax {
	display: block;
	font-size: 0.75rem;
	color: var(--shop-gray-500);
	margin-top: 0.2rem;
}
.shop-pq-price-secondary {
	display: block;
	font-size: 0.85rem;
	color: var(--shop-gray-600);
	margin-top: 0.15rem;
}

/* Quantity Controls */
.shop-pq-quantity {
	text-align: right;
}
.shop-pq-quantity label {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--shop-gray-600);
	margin-bottom: 0.5rem;
}
.shop-pq-quantity-control {
	display: inline-flex;
	align-items: center;
	background: var(--shop-white);
	border: 1px solid var(--shop-gray-200);
	border-radius: var(--shop-radius);
	overflow: hidden;
}
.shop-pq-btn {
	width: 40px;
	height: 44px;
	border: none;
	background: transparent;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1;
	color: var(--shop-gray-600);
	cursor: pointer;
	transition: all var(--shop-transition);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}
.shop-pq-btn:hover {
	background: var(--shop-gray-100);
	color: var(--shop-primary);
}
.shop-pq-btn:active {
	background: var(--shop-gray-200);
}
.shop-pq-quantity-control input,
.shop-pq-quantity-control select {
	width: 60px;
	height: 44px;
	border: none;
	border-left: 1px solid var(--shop-gray-200);
	border-right: 1px solid var(--shop-gray-200);
	text-align: center;
	font-family: var(--shop-font-heading);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--shop-dark);
	background: var(--shop-white);
	-moz-appearance: textfield;
	appearance: textfield;
}
.shop-pq-quantity-control input::-webkit-outer-spin-button,
.shop-pq-quantity-control input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.shop-pq-quantity-control select {
	width: 70px;
	padding: 0 0.25rem;
	cursor: pointer;
}
.shop-pq-quantity-control input:focus,
.shop-pq-quantity-control select:focus {
	outline: none;
	background: #fffef5;
}

/* Mengen-Dropdown mit Staffelpreis-Tabelle */
.details-menge-dropdown {
	position: relative;
	display: inline-block;
}
.details-menge-trigger {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border: 1px solid var(--shop-gray-300);
	border-radius: var(--shop-radius);
	background: var(--shop-white);
	cursor: pointer;
	font-size: 1rem;
	font-weight: 700;
	font-family: var(--shop-font-heading);
	color: var(--shop-dark);
	transition: border-color var(--shop-transition);
	min-width: 80px;
	justify-content: space-between;
}
.details-menge-trigger:hover {
	border-color: var(--shop-primary);
}
.details-menge-trigger svg {
	flex-shrink: 0;
	transition: transform var(--shop-transition);
}
.details-menge-dropdown.is-open .details-menge-trigger {
	border-color: var(--shop-primary);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.details-menge-dropdown.is-open .details-menge-trigger svg {
	transform: rotate(180deg);
}
.details-menge-panel {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 120;
	background: var(--shop-white);
	border: 1px solid var(--shop-primary);
	border-top: none;
	border-radius: 0 0 var(--shop-radius) var(--shop-radius);
	box-shadow: 0 6px 16px rgba(0,0,0,0.10);
	max-height: 340px;
	overflow-y: auto;
	min-width: 320px;
}
.details-menge-dropdown.is-open .details-menge-panel {
	display: block;
}
.details-menge-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.85rem;
}
.details-menge-table th {
	font-size: 0.73rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--shop-gray-600);
	padding: 8px 12px;
	border-bottom: 2px solid var(--shop-gray-200);
	text-align: left;
	position: sticky;
	top: 0;
	background: var(--shop-white);
}
.details-menge-table th:last-child {
	text-align: right;
}
.details-menge-row {
	cursor: pointer;
	transition: background 0.1s;
}
.details-menge-row:hover {
	background: #f5f3ef;
}
.details-menge-row.is-active {
	background: #fef5eb;
}
.details-menge-row.is-active td {
	color: var(--shop-primary);
}
.details-menge-row td {
	padding: 6px 12px;
	border-bottom: 1px solid var(--shop-gray-100);
}
.details-menge-row td:first-child {
	font-weight: 600;
	white-space: nowrap;
}
.details-menge-row td:last-child {
	text-align: right;
	color: var(--shop-gray-600);
}
/* bestellmengenart=2: gleichmaessige Spalten, zentriert, Spaltentrenner */
[data-bestellmengenart="2"] .details-menge-table {
	table-layout: fixed;
}
[data-bestellmengenart="2"] .details-menge-table th,
[data-bestellmengenart="2"] .details-menge-table td {
	text-align: center;
	border-right: 1px solid var(--shop-gray-200);
}
[data-bestellmengenart="2"] .details-menge-table th:last-child,
[data-bestellmengenart="2"] .details-menge-table td:last-child {
	border-right: none;
	text-align: center;
}

/* Total Price Row */
.shop-pq-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--shop-gray-200);
}
.shop-pq-total-prices {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
}
.shop-pq-total-label {
	font-size: 0.85rem;
	color: var(--shop-gray-600);
}
.shop-pq-total-value {
	font-family: var(--shop-font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--shop-dark);
}
.shop-pq-total-secondary {
	font-size: 0.8rem;
	color: var(--shop-gray-500);
	margin-left: 0.25rem;
}
/* Wishlist button inside price box - icon only */
.shop-pq-total .shop-btn-wishlist {
	padding: 0.5rem;
	border: none;
	background: none;
	flex-shrink: 0;
}
.shop-pq-total .merkzettel-text {
	display: none;
}

/* Responsive */
@media (max-width: 400px) {
	.shop-pq-main {
		flex-direction: column;
		gap: 1rem;
	}
	.shop-pq-quantity {
		text-align: left;
		width: 100%;
	}
	.shop-pq-quantity-control {
		width: 100%;
		justify-content: center;
	}
}

/* Staffelpreise Dropdown */
.shop-pq-staffel {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--shop-gray-200);
}
.shop-pq-staffel-toggle {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
	padding: 0.6rem 0.75rem;
	background: var(--shop-white);
	border: 1px solid var(--shop-gray-200);
	border-radius: var(--shop-radius);
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--shop-gray-600);
	cursor: pointer;
	transition: all var(--shop-transition);
}
.shop-pq-staffel-toggle:hover {
	border-color: var(--shop-primary);
	color: var(--shop-primary);
}
.shop-pq-staffel-toggle .staffel-icon {
	flex-shrink: 0;
	color: var(--shop-primary);
}
.shop-pq-staffel-toggle .chevron-icon {
	flex-shrink: 0;
	margin-left: auto;
	transition: transform var(--shop-transition);
}
.shop-pq-staffel.is-open .shop-pq-staffel-toggle {
	border-color: var(--shop-primary);
	color: var(--shop-primary);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.shop-pq-staffel.is-open .shop-pq-staffel-toggle .chevron-icon {
	transform: rotate(180deg);
}

/* Staffelpreise Content */
.shop-pq-staffel-content {
	display: none;
	background: var(--shop-white);
	border: 1px solid var(--shop-primary);
	border-top: none;
	border-radius: 0 0 var(--shop-radius) var(--shop-radius);
	padding: 0.75rem;
	animation: staffelSlideDown 0.2s ease;
}
.shop-pq-staffel.is-open .shop-pq-staffel-content {
	display: block;
}
@keyframes staffelSlideDown {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Staffelpreis Tabelle */
.shop-pq-staffel-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.85rem;
}
.shop-pq-staffel-content table th,
.shop-pq-staffel-content table td {
	padding: 0.5rem 0.75rem;
	text-align: left;
	border-bottom: 1px solid var(--shop-gray-100);
}
.shop-pq-staffel-content table th {
	font-weight: 600;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--shop-gray-500);
	background: var(--shop-gray-100);
}
.shop-pq-staffel-content table tr:last-child td {
	border-bottom: none;
}
.shop-pq-staffel-content table td:first-child {
	font-weight: 600;
	color: var(--shop-dark);
}
.shop-pq-staffel-content table td:last-child {
	text-align: right;
	font-family: var(--shop-font-heading);
	font-weight: 600;
	color: var(--shop-primary);
}
.shop-pq-staffel-content table tr.is-active {
	background: rgba(140, 91, 91, 0.06);
}
.shop-pq-staffel-content table tr.is-active td {
	color: var(--shop-primary);
}

/* Staffelpreise als Liste (falls kein Table) */
.shop-pq-staffel-content .staffel-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--shop-gray-100);
}
.shop-pq-staffel-content .staffel-item:last-child {
	border-bottom: none;
}
.shop-pq-staffel-content .staffel-menge {
	font-weight: 500;
	color: var(--shop-dark);
}
.shop-pq-staffel-content .staffel-preis {
	font-family: var(--shop-font-heading);
	font-weight: 600;
	color: var(--shop-primary);
}

/* Legacy Quantity (fallback) */
.shop-quantity {
	margin-bottom: 1.25rem;
}
.shop-quantity label {
	font-weight: 600;
	font-size: 0.85rem;
	margin-bottom: 0.35rem;
	display: block;
}
.shop-quantity select,
.shop-quantity input {
	max-width: 120px;
	border-radius: var(--shop-radius);
}

/* Variants */
.shop-variants {
	margin-bottom: 1rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: .5rem .75rem;
}
.shop-variant-group {
	margin-bottom: 0;
}
.shop-variant-group label {
	font-weight: 500;
	font-size: 0.75rem;
	text-transform: none;
	letter-spacing: 0;
	color: var(--shop-gray-600);
	margin-bottom: .2rem;
	display: block;
}
.shop-variant-group select {
	width: 100%;
	height: 36px;
	padding: 0 .75rem;
	border: 1px solid var(--shop-gray-200);
	border-radius: var(--shop-radius);
	background: var(--shop-white);
	font-family: var(--shop-font-body);
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--shop-dark);
	cursor: pointer;
	transition: border-color var(--shop-transition), box-shadow var(--shop-transition);
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right .75rem center;
}
.shop-variant-group select option {
	font-family: var(--shop-font-body);
	font-size: 0.72rem;
}
.shop-variant-group select:hover {
	border-color: var(--shop-gray-400);
}
.shop-variant-group select:focus {
	outline: none;
	border-color: var(--shop-primary);
	box-shadow: 0 0 0 3px rgba(140, 91, 91, 0.1);
}

/* Ausgeblendete Varianten-Optionen (Fallback für ältere Browser)
   Mobile: Optionen werden per JS via detach() aus dem DOM entfernt */
.details-varianten .variante option.ausgeblendet {
	display: none;
}

/* Ausgeblendete Variantengruppen */
.details-varianten .ausgeblendete-gruppe {
	display: none !important;
}

.shop-variant-group:has(.variante-freitext-row) {
	grid-column: 1 / -1;
}
.variante-freitext-row {
	display: flex;
	gap: .5rem;
	align-items: center;
}
.variante-freitext-row .variante {
	flex: 0 0 55%;
	min-width: 0;
}
.variante-freitext {
	flex: 1 1 45%;
	min-width: 0;
	height: 36px;
	background-color: #e8f4fd;
	border-color: #7ec8e3;
}
.variante-freitext::placeholder {
	color: #7ec8e3;
	opacity: 1;
}
.variante-freitext:focus {
	background-color: #dceefb;
	border-color: #4da8da;
	box-shadow: 0 0 0 .2rem rgba(78, 168, 218, .25);
}

/* Personalization */
.shop-personalization {
	margin-bottom: 1.5rem;
	border: 1px solid var(--shop-gray-200);
	border-radius: var(--shop-radius-lg);
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.shop-personalization-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.85rem 1.1rem;
	background: var(--shop-gray-100);
	border-bottom: 1px solid var(--shop-gray-200);
}
.shop-personalization-icon {
	font-size: 1.1rem;
	line-height: 1;
	flex-shrink: 0;
}
.shop-personalization-title {
	margin: 0;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--shop-primary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.2;
}
.shop-personalization-subtitle {
	margin: 0;
	font-size: 0.78rem;
	color: var(--shop-gray-500);
	line-height: 1.3;
}
.shop-personalization-body {
	padding: 1rem;
	background: #fff;
}
.shop-personalization-textarea {
	width: 100%;
	border: 1px solid var(--shop-gray-200);
	border-radius: var(--shop-radius);
	padding: 0.75rem 1rem;
	font-size: 0.92rem;
	font-family: var(--shop-font-body);
	min-height: 90px;
	resize: vertical;
	transition: border-color var(--shop-transition), box-shadow var(--shop-transition);
	background: var(--shop-gray-100);
}
.shop-personalization-textarea:hover {
	border-color: var(--shop-gray-400);
	background: #fff;
}
.shop-personalization-textarea:focus {
	outline: none;
	border-color: var(--shop-primary);
	box-shadow: 0 0 0 3px rgba(140, 91, 91, 0.1);
	background: #fff;
}
.shop-personalization-textarea::placeholder {
	color: var(--shop-gray-400);
	font-style: italic;
}
.shop-personalization-textarea.shop-personalization-error {
	border-color: #dc3545;
	background: #fff8f8;
	box-shadow: 0 0 0 3px rgba(220,53,69,0.12);
}
.shop-personalization-hint {
	margin: 0.4rem 0 0;
	font-size: 0.85rem;
	color: #dc3545;
}

/* Zusatzartikel / Zubehoer */
.details-zusatzartikel {
	background: var(--shop-gray-100);
	border-radius: var(--shop-radius);
	padding: 1.25rem 0;
	margin-bottom: 1rem;
}
.zusatzartikel-header {
	margin-bottom: 1rem;
}
.zusatzartikel-title {
	font-family: var(--shop-font-heading);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--shop-dark);
}
.zusatzartikel-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.zusatzartikel-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: var(--shop-white);
	border: 1px solid var(--shop-gray-200);
	border-radius: var(--shop-radius);
	padding: 0.75rem 1rem;
	cursor: pointer;
	transition: all var(--shop-transition);
}
.zusatzartikel-item:hover {
	border-color: var(--shop-gray-300);
	box-shadow: var(--shop-shadow-sm);
}
.zusatzartikel-item:has(input:checked) {
	border-color: var(--shop-primary);
	background: rgba(140, 91, 91, 0.03);
}

/* Custom Checkbox */
.zusatzartikel-item input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
.zusatzartikel-check {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border: 2px solid var(--shop-gray-300);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--shop-transition);
	background: var(--shop-white);
}
.zusatzartikel-check .check-icon {
	opacity: 0;
	transform: scale(0.5);
	transition: all var(--shop-transition);
	color: var(--shop-white);
}
.zusatzartikel-item:has(input:checked) .zusatzartikel-check {
	background: var(--shop-primary);
	border-color: var(--shop-primary);
}
.zusatzartikel-item:has(input:checked) .zusatzartikel-check .check-icon {
	opacity: 1;
	transform: scale(1);
}
.zusatzartikel-item:hover .zusatzartikel-check {
	border-color: var(--shop-primary);
}

/* Zusatzartikel Bild */
.zusatzartikel-image {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border-radius: var(--shop-radius);
	overflow: hidden;
	background: #fff;
}
.zusatzartikel-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Zusatzartikel Info */
.zusatzartikel-info {
	flex: 1;
	min-width: 0;
}
.zusatzartikel-name {
	display: block;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--shop-dark);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.zusatzartikel-sku {
	display: block;
	font-size: 0.75rem;
	color: var(--shop-gray-400);
	margin-top: 0.15rem;
}

/* Zusatzartikel Preis */
.zusatzartikel-price {
	flex-shrink: 0;
	font-family: var(--shop-font-heading);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--shop-primary);
	white-space: nowrap;
}

/* Preis + Info-Button als Spalte */
.zusatzartikel-price-area {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.3rem;
}
.zusatzartikel-price-area .zusatzartikel-price {
	white-space: nowrap;
}

/* Info-Button */
.zusatzartikel-info-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.15rem 0.45rem;
	background: none;
	border: 1px solid var(--shop-gray-300);
	border-radius: 20px;
	color: var(--shop-gray-500);
	font-size: 0.7rem;
	line-height: 1;
	cursor: pointer;
	white-space: nowrap;
	transition: border-color 0.15s, color 0.15s;
}
.zusatzartikel-info-btn:hover {
	border-color: var(--shop-primary);
	color: var(--shop-primary);
}

/* Zusatzartikel Info Modal */
.zusatzartikel-modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 1080;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(2px);
	align-items: center;
	justify-content: center;
}
.zusatzartikel-modal-overlay.is-open {
	display: flex;
}
.zusatzartikel-modal-box {
	position: relative;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(0,0,0,0.18);
	width: 510px;
	max-width: calc(100vw - 2rem);
	max-height: 80vh;
	overflow-y: auto;
	animation: zusatzModalIn 0.18s ease;
}
@keyframes zusatzModalIn {
	from { opacity: 0; transform: scale(0.93) translateY(8px); }
	to   { opacity: 1; transform: scale(1) translateY(0); }
}
.zusatzartikel-modal-close {
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	background: var(--shop-gray-100);
	border: none;
	border-radius: 50%;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--shop-gray-500);
	transition: background 0.15s, color 0.15s;
	z-index: 1;
}
.zusatzartikel-modal-close:hover {
	background: var(--shop-gray-200);
	color: var(--shop-gray-800);
}
.zusatzartikel-modal-img {
	border-radius: 12px 12px 0 0;
	overflow: hidden;
	background: #fff;
	line-height: 0;
}
.zusatzartikel-modal-img::after {
	content: '';
	display: block;
	width: 70%;
	height: 1px;
	background: var(--shop-gray-200);
	margin: 0 auto;
}
.zusatzartikel-modal-img img {
	width: 100%;
	height: 220px;
	object-fit: contain;
	padding: 1.25rem;
	background: #fff;
}
.zusatzartikel-modal-body {
	padding: 1rem 1.25rem 1.25rem;
}
.zusatzartikel-modal-title {
	font-family: var(--shop-font-heading);
	font-size: 1rem;
	font-weight: 700;
	color: var(--shop-gray-800);
	margin-bottom: 0.5rem;
}
.zusatzartikel-modal-text {
	font-size: 0.85rem;
	color: var(--shop-gray-600);
	line-height: 1.55;
}
.zusatzartikel-modal-text p { margin-bottom: 0.5rem; }
.zusatzartikel-modal-text p:last-child { margin-bottom: 0; }
.zusatzartikel-modal-text ul, .zusatzartikel-modal-text ol { padding-left: 1.25rem; margin-bottom: 0.5rem; }

/* Fallback fuer Browser ohne :has() */
@supports not selector(:has(*)) {
	.zusatzartikel-item.is-checked {
		border-color: var(--shop-primary);
		background: rgba(140, 91, 91, 0.03);
	}
	.zusatzartikel-item.is-checked .zusatzartikel-check {
		background: var(--shop-primary);
		border-color: var(--shop-primary);
	}
	.zusatzartikel-item.is-checked .zusatzartikel-check .check-icon {
		opacity: 1;
		transform: scale(1);
	}
}

/* Add to Cart Actions */
.shop-add-actions {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
	width: 100%;
}
.shop-btn-cart {
	width: 100%;
	background: var(--shop-cta);
	color: var(--shop-white);
	border: none;
	border-radius: var(--shop-radius);
	padding: 0.75rem 1.5rem;
	font-family: var(--shop-font-heading);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background var(--shop-transition), transform var(--shop-transition);
}
.shop-btn-cart:hover {
	background: var(--shop-cta-hover);
	transform: translateY(-1px);
}
.shop-btn-cart:active {
	transform: translateY(0);
}
.shop-btn-cart.added {
	background: var(--shop-success);
}
.shop-btn-wishlist {
	background: none;
	border: 1px solid var(--shop-gray-200);
	border-radius: var(--shop-radius);
	padding: 0.65rem 0.85rem;
	cursor: pointer;
	color: var(--shop-gray-600);
	transition: all var(--shop-transition);
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.85rem;
}
.shop-btn-wishlist:hover,
.shop-btn-wishlist.active {
	border-color: var(--shop-primary);
	color: var(--shop-primary);
}

/* Mobile Sticky Add-to-Cart */
@media (max-width: 767.98px) {
	.shop-sticky-cart {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		background: var(--shop-white);
		padding: 0.75rem 1rem;
		box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
		z-index: 1020;
		display: flex;
		gap: 0.5rem;
		align-items: center;
	}
	.shop-sticky-cart .shop-btn-cart {
		flex: 1;
	}
	.shop-sticky-cart .shop-sticky-price {
		font-weight: 700;
		color: var(--shop-primary);
		font-size: 1.1rem;
		white-space: nowrap;
	}
}

@media (min-width: 768px) {
	.shop-details .shop-details-heading h1 {
		font-size: 1.8rem;
	}
}

/* Service Info Box (unterhalb Buybox) */
.shop-service-info {
	margin-top: 1.5rem;
	border-top: 1px solid var(--shop-gray-200);
}
.shop-service-info-item {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	padding: 0.875rem 0;
	border-bottom: 1px solid var(--shop-gray-200);
}
.shop-service-info-item:last-child {
	border-bottom: none;
}
.shop-service-info-icon {
	flex-shrink: 0;
	color: var(--shop-gray-400);
	display: flex;
	align-items: center;
	justify-content: center;
}
.shop-service-info-text {
	flex: 1;
	font-size: 0.9rem;
	color: var(--shop-gray-600);
}
.shop-service-info-tooltip {
	flex-shrink: 0;
	color: var(--shop-gray-400);
	cursor: help;
	display: flex;
	align-items: center;
	transition: color var(--shop-transition);
}
.shop-service-info-tooltip:hover {
	color: var(--shop-gray-600);
}

/* GPSR Herstellerangabe */
.shop-gpsr-notice {
	margin-top: 1rem;
	padding: 0.75rem 1rem;
	background: var(--shop-bg, #f8f9fa);
	border: 1px solid var(--shop-gray-200, #e9ecef);
	border-radius: 0.5rem;
}
.shop-gpsr-notice-title {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--shop-gray-600);
	margin-bottom: 0.25rem;
}
.shop-gpsr-notice-title svg {
	flex-shrink: 0;
	color: var(--shop-gray-400);
}
.shop-gpsr-notice-text {
	font-size: 0.8rem;
	font-style: italic;
	color: var(--shop-gray-500, #6c757d);
	line-height: 1.4;
}

/* --------------------------------------------------------------------------
   8. Cart / Warenkorb
   -------------------------------------------------------------------------- */
.shop-cart {
	padding: 2rem 0 3rem;
}
.shop-cart-items {
	margin-bottom: 1.5rem;
}

/* Table Header (Desktop only) */
.shop-cart-header {
	display: none;
}

/* Cart Item - Mobile First */
.shop-cart-item {
	display: grid;
	grid-template-columns: 80px 1fr;
	grid-template-rows: auto;
	grid-template-areas:
		"image details"
		"image qty"
		"image einzelpreis"
		"image gesamt"
		"actions actions";
	gap: 0.25rem 1rem;
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--shop-gray-200);
	align-items: start;
	transition: background-color var(--shop-transition);
}
.shop-cart-item:last-child {
	border-bottom: none;
}
.shop-cart-item .shop-cart-item-image {
	grid-area: image;
	aspect-ratio: 1/1;
	border-radius: var(--shop-radius-lg);
	overflow: hidden;
	background: var(--shop-gray-100);
	box-shadow: var(--shop-shadow-sm);
}
.shop-cart-item .shop-cart-item-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.3s ease;
}
.shop-cart-item .shop-cart-item-image:hover img {
	transform: scale(1.05);
}
.shop-cart-item .shop-cart-item-details {
	grid-area: details;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	min-width: 0;
}
.shop-cart-item .shop-cart-item-title {
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--shop-dark);
	text-decoration: none;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.shop-cart-item .shop-cart-item-title:hover {
	color: var(--shop-primary);
}
.shop-cart-item .shop-cart-item-sku {
	font-size: 0.75rem;
	color: var(--shop-gray-400);
	letter-spacing: 0.02em;
}
.shop-cart-item .shop-cart-item-variants {
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem;
	margin-top: 0.15rem;
}
.shop-cart-variant-tag {
	display: inline-block;
	font-size: 0.73rem;
	color: var(--shop-gray-600);
	background: var(--shop-gray-100);
	border: 1px solid var(--shop-gray-200);
	border-radius: 99px;
	padding: 0.15rem 0.6rem;
	white-space: nowrap;
	line-height: 1.4;
}
.shop-cart-personalization {
	margin-top: 0.5rem;
	padding: 0.5rem 0.7rem;
	background: var(--shop-gray-100);
	border-left: 3px solid var(--shop-primary);
	border-radius: 3px;
}
.shop-cart-personalization-label {
	display: block;
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: var(--shop-primary);
	margin-bottom: 0.2rem;
	font-weight: 700;
}
.shop-cart-personalization-text {
	margin: 0;
	font-size: 0.78rem;
	color: var(--shop-gray-600);
	font-style: italic;
	line-height: 1.4;
}
.shop-cart-item .shop-cart-item-qty {
	grid-area: qty;
	align-self: start;
}
.shop-qty-control {
	display: inline-flex;
	align-items: stretch;
	border: 1px solid var(--shop-gray-200);
	border-radius: var(--shop-radius);
	overflow: hidden;
	background: var(--shop-white);
	transition: border-color var(--shop-transition);
}
.shop-qty-control:focus-within {
	border-color: var(--shop-primary);
	box-shadow: 0 0 0 3px rgba(140,91,91,0.1);
}
.shop-qty-input {
	width: 48px;
	text-align: center;
	font-size: 0.85rem;
	border: none;
	outline: none;
	background: transparent;
	padding: 0.3rem 0;
	-moz-appearance: textfield;
}
.shop-qty-input::-webkit-outer-spin-button,
.shop-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.shop-qty-btns {
	display: flex;
	flex-direction: column;
	border-left: 1px solid var(--shop-gray-200);
}
.shop-qty-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	flex: 1;
	border: none;
	background: var(--shop-gray-50);
	color: var(--shop-gray-600);
	cursor: pointer;
	padding: 0;
	transition: background var(--shop-transition), color var(--shop-transition);
}
.shop-qty-btn:hover {
	background: var(--shop-gray-100);
	color: var(--shop-gray-900);
}
/* Feste Menge (Zusatzartikel) */
.shop-cart-qty-fixed {
	font-size: 0.85rem;
	color: var(--shop-gray-600);
	white-space: nowrap;
}
/* Staffelpreis-Dropdown */
.shop-qty-dropdown-wrap {
	position: relative;
	display: inline-block;
}
.shop-qty-dropdown-trigger {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 1px solid var(--shop-gray-200);
	border-radius: var(--shop-radius);
	background: var(--shop-white);
	padding: 0.3rem 0.6rem;
	font-size: 0.85rem;
	cursor: pointer;
	transition: border-color var(--shop-transition);
}
.shop-qty-dropdown-trigger:hover {
	border-color: var(--shop-primary);
}
.shop-qty-dropdown-value {
	font-weight: 600;
	min-width: 24px;
	text-align: center;
}
.shop-qty-dropdown-panel {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 100;
	margin-top: 4px;
	background: var(--shop-white);
	border: 1px solid var(--shop-gray-200);
	border-radius: var(--shop-radius);
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
	min-width: 260px;
	overflow: hidden;
}
.shop-qty-dropdown-wrap.open .shop-qty-dropdown-panel {
	display: block;
}
.shop-qty-dropdown-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.8rem;
}
.shop-qty-dropdown-table thead th {
	padding: 6px 10px;
	font-weight: 600;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--shop-gray-500);
	border-bottom: 1px solid var(--shop-gray-200);
	white-space: nowrap;
}
.shop-qty-dropdown-row {
	cursor: pointer;
	transition: background 0.15s;
}
.shop-qty-dropdown-row td {
	padding: 7px 10px;
	white-space: nowrap;
	border-bottom: 1px solid var(--shop-gray-100);
}
.shop-qty-dropdown-row:last-child td {
	border-bottom: none;
}
.shop-qty-dropdown-row:hover {
	background: var(--shop-gray-50);
}
.shop-qty-dropdown-row.active {
	background: var(--shop-primary-light, rgba(140,91,91,0.08));
	font-weight: 600;
}
.shop-qty-dropdown-row.active td:first-child {
	color: var(--shop-primary);
}
.shop-qty-btn:active {
	background: var(--shop-gray-200);
}
.shop-qty-btns .shop-qty-plus {
	border-bottom: 1px solid var(--shop-gray-200);
}
.shop-cart-item .shop-cart-item-einzelpreis,
.shop-cart-item .shop-cart-item-gesamt {
	display: inline;
}
.shop-cart-item .shop-cart-item-einzelpreis {
	font-size: 0.85rem;
	color: var(--shop-gray-600);
	white-space: nowrap;
}
.shop-cart-item .shop-cart-item-gesamt {
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--shop-dark);
	white-space: nowrap;
}

/* Mobile grid areas */
.shop-cart-item .shop-cart-item-einzelpreis {
	grid-area: einzelpreis;
}
.shop-cart-item .shop-cart-item-gesamt {
	grid-area: gesamt;
}
/* Mobile label */
.shop-cart-mobile-label {
	display: inline;
	font-size: 0.73rem;
	color: var(--shop-gray-400);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-right: 0.25rem;
}

/* Actions (Remove) */
.shop-cart-item .shop-cart-item-actions {
	grid-area: actions;
	justify-self: end;
}
.shop-cart-item .shop-cart-item-remove {
	background: none;
	border: none;
	color: var(--shop-gray-400);
	font-size: 0.8rem;
	cursor: pointer;
	padding: 0.25rem 0;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	transition: color var(--shop-transition);
}
.shop-cart-item .shop-cart-item-remove:hover {
	color: var(--shop-danger);
}

/* ---- Desktop Layout (>=768px) ---- */
@media (min-width: 768px) {
	.shop-cart-header {
		display: grid;
		grid-template-columns: 100px 1fr 80px 110px 110px 40px;
		gap: 1rem;
		align-items: center;
		padding: 0 0 0.6rem;
		border-bottom: 2px solid var(--shop-gray-200);
		margin-bottom: 0.25rem;
	}
	.shop-cart-header span {
		font-size: 0.72rem;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.06em;
		color: var(--shop-gray-400);
	}
	.shop-cart-header span:nth-child(3),
	.shop-cart-header span:nth-child(4),
	.shop-cart-header span:nth-child(5) {
		text-align: right;
	}
	.shop-cart-item {
		grid-template-columns: 100px 1fr 80px 110px 110px 40px;
		grid-template-rows: auto;
		grid-template-areas: none;
		align-items: start;
		gap: 1rem;
		padding: 1rem 0;
		border-radius: var(--shop-radius);
		margin: 0 -0.5rem;
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}
	.shop-cart-item:hover {
		background: var(--shop-gray-100);
	}
	.shop-cart-item:last-child {
		border-bottom: none;
	}
	.shop-cart-item .shop-cart-item-image {
		grid-area: auto;
	}
	.shop-cart-item .shop-cart-item-details {
		grid-area: auto;
	}
	.shop-cart-item .shop-cart-item-qty {
		grid-area: auto;
		justify-self: end;
	}
	.shop-cart-item .shop-cart-item-einzelpreis {
		grid-area: auto;
		display: block;
		text-align: right;
	}
	.shop-cart-item .shop-cart-item-gesamt {
		grid-area: auto;
		display: block;
		text-align: right;
	}
	.shop-cart-item .shop-cart-item-actions {
		grid-area: auto;
		justify-self: center;
	}
	.shop-cart-remove-text {
		display: none;
	}
	.shop-cart-mobile-label {
		display: none;
	}
}

/* Cart Summary */
.shop-cart-summary {
	background: var(--shop-white);
	border: 1px solid var(--shop-gray-200);
	border-radius: var(--shop-radius-lg);
	padding: 1.5rem;
	box-shadow: var(--shop-shadow-sm);
}
.shop-cart-summary h3 {
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--shop-gray-200);
}
.shop-cart-summary-rows {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.shop-cart-summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.45rem 0;
	font-size: 0.88rem;
	color: var(--shop-gray-600);
}
.shop-cart-summary-row span:last-child {
	font-variant-numeric: tabular-nums;
}
.shop-cart-versand-row {
	align-items: center;
}
.shop-cart-versand-label {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	flex-wrap: wrap;
}
.shop-cart-land-select {
	font-size: 0.8rem;
	padding: 2px 6px;
	border: 1px solid var(--shop-gray-300);
	border-radius: 4px;
	background: #fff;
	color: var(--shop-gray-700);
	cursor: pointer;
	max-width: 130px;
}
.shop-cart-land-select:focus {
	outline: none;
	border-color: var(--shop-primary);
}
.shop-cart-summary-row.cart-gutschein-row {
	color: var(--shop-success);
}
.shop-cart-summary-row.cart-gutschein-row span {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}
.shop-cart-summary-row.cart-gutschein-row .cart-gutschein-wert {
	font-weight: 600;
}

/* Total Row */
.shop-cart-summary-total {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-weight: 700;
	font-size: 1.15rem;
	color: var(--shop-dark);
	border-top: 2px solid var(--shop-dark);
	margin-top: 0.6rem;
	padding-top: 0.75rem;
}
.shop-cart-summary-total span:last-child {
	font-size: 1.3rem;
	font-variant-numeric: tabular-nums;
}

/* Checkout Button */
.shop-btn-checkout {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	margin-top: 1.25rem;
	padding: 0.85rem 1.5rem;
	background: var(--shop-cta);
	color: var(--shop-white);
	border: none;
	border-radius: var(--shop-radius-lg);
	font-family: var(--shop-font-heading);
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: all var(--shop-transition);
	box-shadow: 0 2px 8px rgba(122,157,107,0.30);
}
.shop-btn-checkout:hover {
	background: var(--shop-cta-hover);
	box-shadow: 0 4px 14px rgba(107,139,93,0.40);
	transform: translateY(-1px);
}
.shop-btn-checkout:active {
	transform: translateY(0);
	box-shadow: 0 1px 4px rgba(122,157,107,0.25);
}
.shop-btn-checkout svg {
	flex-shrink: 0;
}
.shop-agb-link:hover {
	color: var(--shop-gray-800) !important;
	text-decoration: underline !important;
}

/* Coupon Section */
.shop-coupon {
	margin-top: 1.25rem;
	padding-top: 1rem;
	border-top: 1px solid var(--shop-gray-200);
}

/* Coupon Toggle */
.shop-coupon-toggle {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.85rem;
	color: var(--shop-gray-600);
	cursor: pointer;
	padding: 0.25rem 0;
	transition: color var(--shop-transition);
}
.shop-coupon-toggle:hover {
	color: var(--shop-primary);
}
.shop-coupon-toggle svg {
	flex-shrink: 0;
}

/* Coupon Input */
.shop-coupon-input-wrap {
	margin-top: 0.6rem;
}
.shop-coupon-input {
	display: flex;
	gap: 0;
	border: 1px solid var(--shop-gray-200);
	border-radius: var(--shop-radius);
	overflow: hidden;
	transition: border-color var(--shop-transition);
}
.shop-coupon-input:focus-within {
	border-color: var(--shop-primary);
	box-shadow: 0 0 0 3px rgba(140,91,91,0.08);
}
.shop-coupon-input input {
	flex: 1;
	border: none;
	padding: 0.55rem 0.75rem;
	font-size: 0.85rem;
	outline: none;
	min-width: 0;
}
.shop-coupon-apply-btn {
	background: var(--shop-gray-100);
	color: var(--shop-dark);
	border: none;
	border-left: 1px solid var(--shop-gray-200);
	padding: 0.55rem 1rem;
	font-size: 0.82rem;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: all var(--shop-transition);
}
.shop-coupon-apply-btn:hover {
	background: var(--shop-gray-200);
}

/* Coupon Applied */
.shop-coupon-applied {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	background: linear-gradient(135deg, #f0faf0, #e8f5e9);
	border: 1px solid #c8e6c9;
	border-radius: var(--shop-radius);
	padding: 0.65rem 0.75rem;
}
.shop-coupon-applied-info {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	min-width: 0;
}
.shop-coupon-applied-info svg {
	color: var(--shop-success);
	flex-shrink: 0;
}
.shop-coupon-applied-info strong {
	font-size: 0.85rem;
	color: var(--shop-dark);
}
.shop-coupon-applied-discount {
	display: block;
	font-size: 0.78rem;
	color: var(--shop-success);
	font-weight: 600;
}
.shop-coupon-remove {
	flex-shrink: 0;
	background: none;
	border: none;
	color: var(--shop-gray-400);
	cursor: pointer;
	padding: 0.25rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--shop-transition);
}
.shop-coupon-remove:hover {
	color: var(--shop-danger);
	background: rgba(220,53,69,0.08);
}

@media (min-width: 992px) {
	.shop-cart-summary {
		position: sticky;
		top: calc(var(--shop-navbar-height) + 1rem);
	}
}

/* Cart Title */
.shop-cart-title {
	font-family: var(--shop-font-heading);
	font-size: 1.6rem;
	margin-bottom: 1.5rem;
}
.shop-cart-title-count {
	font-weight: 400;
	color: var(--shop-gray-500);
	font-size: 1rem;
}

/* Cart Continue Shopping */
.shop-cart-continue {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.9rem;
	margin-top: 0.5rem;
}

/* Cart Empty State */
.shop-cart-empty {
	text-align: center;
	padding: 4rem 1rem;
	max-width: 400px;
	margin: 0 auto;
}
.shop-cart-empty svg {
	color: var(--shop-gray-300);
	margin-bottom: 1.5rem;
}
.shop-cart-empty h2 {
	font-family: var(--shop-font-heading);
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
}
.shop-cart-empty p {
	color: var(--shop-gray-500);
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

/* Cart Loading State */
.shop-cart-item.shop-loading {
	opacity: 0.5;
	pointer-events: none;
}

/* Coupon Error */
.shop-coupon-error {
	color: var(--shop-danger);
	font-size: 0.8rem;
	margin-top: 0.35rem;
}

/* --------------------------------------------------------------------------
   9. Checkout
   -------------------------------------------------------------------------- */

/* Progress Bar */
.shop-checkout-progress {
	display: flex;
	justify-content: center;
	gap: 0;
	margin-bottom: 2rem;
	counter-reset: step;
	padding: 0;
	list-style: none;
}
.shop-checkout-progress li {
	flex: 1;
	text-align: center;
	position: relative;
	counter-increment: step;
	font-size: 0.8rem;
	color: var(--shop-gray-400);
	max-width: 200px;
}
.shop-checkout-progress li::before {
	content: counter(step);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--shop-gray-200);
	color: var(--shop-gray-600);
	font-weight: 600;
	font-size: 0.85rem;
	margin: 0 auto 0.5rem;
	position: relative;
	z-index: 1;
}
.shop-checkout-progress li::after {
	content: '';
	position: absolute;
	top: 16px;
	left: calc(50% + 20px);
	right: calc(-50% + 20px);
	height: 2px;
	background: var(--shop-gray-200);
}
.shop-checkout-progress li:last-child::after {
	display: none;
}
.shop-checkout-progress li.active::before {
	background: var(--shop-primary);
	color: var(--shop-white);
}
.shop-checkout-progress li.active {
	color: var(--shop-dark);
	font-weight: 600;
}
.shop-checkout-progress li.done::before {
	background: var(--shop-success);
	color: var(--shop-white);
	content: '\2713';
}
.shop-checkout-progress li.done::after {
	background: var(--shop-success);
}

/* Checkout Card */
.shop-checkout-card {
	background: var(--shop-white);
	border: 1px solid var(--shop-gray-200);
	border-radius: var(--shop-radius-lg);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}
.shop-checkout-card h3 {
	font-size: 1.1rem;
	margin-bottom: 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--shop-gray-200);
}

/* Validation Errors */
.shop-field-error {
	color: var(--shop-danger);
	font-size: 0.8rem;
	margin-top: 0.25rem;
}
.shop-field-error:empty {
	display: none;
}
.is-invalid {
	border-color: var(--shop-danger) !important;
}

/* Trust Badges */
.shop-trust-badges {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	padding: 1.5rem 0;
	flex-wrap: wrap;
}
.shop-trust-badge {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8rem;
	color: var(--shop-gray-600);
}
.shop-trust-badge svg {
	color: var(--shop-success);
}

/* --------------------------------------------------------------------------
   10. Buttons (Shop-specific)
   -------------------------------------------------------------------------- */
.shop-btn-primary {
	background: var(--shop-primary);
	color: var(--shop-white);
	border: none;
	border-radius: var(--shop-radius);
	padding: 0.65rem 1.5rem;
	font-family: var(--shop-font-heading);
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all var(--shop-transition);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
}
.shop-btn-primary:hover {
	background: var(--shop-primary-hover);
	color: var(--shop-white);
}
.shop-btn-outline {
	background: transparent;
	color: var(--shop-primary);
	border: 1px solid var(--shop-primary);
	border-radius: var(--shop-radius);
	padding: 0.6rem 1.5rem;
	font-family: var(--shop-font-heading);
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all var(--shop-transition);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	text-decoration: none;
}
.shop-btn-outline:hover {
	background: var(--shop-primary);
	color: var(--shop-white);
}

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */
.shop-footer {
	background: #f0ebe4;
	color: #5a4e42;
	padding: 3rem 0 0;
	font-size: 0.9rem;
}
.shop-footer-heading {
	color: #3d3229;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1.25rem;
}
.shop-footer a {
	color: #6b5d4f;
	text-decoration: none;
	transition: color var(--shop-transition);
}
.shop-footer a:hover {
	color: var(--shop-primary);
}
.shop-footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}
.shop-footer-links li {
	margin-bottom: 0.6rem;
	display: flex;
	align-items: center;
}
.shop-footer-links li a {
	font-size: 0.88rem;
}
.shop-footer-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(0,0,0,0.06);
	color: #6b5d4f;
	transition: all var(--shop-transition);
}
.shop-footer-social:hover {
	background: var(--shop-primary);
	color: var(--shop-white);
}
.shop-footer-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.3rem 0.7rem;
	font-size: 0.78rem;
	border: 1px solid rgba(0,0,0,0.12);
	border-radius: 4px;
	color: #5a4e42;
	background: rgba(255,255,255,0.5);
}
.shop-footer-badge svg {
	flex-shrink: 0;
	opacity: 0.7;
}
.shop-footer-bottom {
	background: #1e2226;
	border-top: 1px solid rgba(0,0,0,0.08);
	padding: 1.25rem 0;
	margin-top: 2.5rem;
	font-size: 0.8rem;
	text-align: center;
	color: #8a7d70;
}

/* --------------------------------------------------------------------------
   12. Toast Notifications
   -------------------------------------------------------------------------- */
.shop-toast {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%) translateY(100px);
	background: var(--shop-dark);
	color: var(--shop-white);
	padding: 0.75rem 1.5rem;
	border-radius: var(--shop-radius);
	font-size: 0.9rem;
	z-index: 9999;
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
	box-shadow: var(--shop-shadow-lg);
}
.shop-toast.show {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
}
.shop-toast.success {
	background: var(--shop-success);
}
.shop-toast.error {
	background: var(--shop-danger);
}

/* --------------------------------------------------------------------------
   13. Utilities
   -------------------------------------------------------------------------- */
.shop-loading {
	position: relative;
	pointer-events: none;
	opacity: 0.6;
}
.shop-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 24px;
	margin: -12px 0 0 -12px;
	border: 2px solid var(--shop-gray-200);
	border-top-color: var(--shop-primary);
	border-radius: 50%;
	animation: shopSpin 0.6s linear infinite;
}
@keyframes shopSpin {
	to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   14. Product Details - Slider & Gallery
   -------------------------------------------------------------------------- */

/* Slider Items (replace old polaroid-item with CSS centering) */
.details-slider-item {
	background: none;
	border-radius: var(--shop-radius);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.details-slider-item img {
	width: 100%;
	height: auto;
	max-height: 600px;
	object-fit: contain;
	display: block;
}

/* Thumbnails - siehe unten bei Slick Slider Arrows */
.details-slider-thumbnail {
	width:70px;
	height:70px;
	border: 1px solid var(--shop-gray-200);
	border-radius: var(--shop-radius);
	padding: 0;
	overflow: hidden;
	cursor: pointer;
	transition: border-color var(--shop-transition);
}
.details-slider-thumbnail:hover,
.details-slider-thumbnail.active {
	border-color: var(--shop-primary);
}
.details-slider-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Slick Slider - Custom Navigation Buttons */
.details-slider {
	position: relative;
}
.details-slider-prev,
.details-slider-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 100;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	padding: 0;
}
.details-slider-prev:hover,
.details-slider-next:hover {
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.details-slider-prev:focus,
.details-slider-next:focus {
	outline: none;
}
.details-slider-prev svg,
.details-slider-next svg {
	color: var(--shop-gray-700);
	width: 20px;
	height: 20px;
}
.details-slider-prev:hover svg,
.details-slider-next:hover svg {
	color: var(--shop-primary);
}
.details-slider-prev {
	left: 15px;
}
.details-slider-next {
	right: 15px;
}

/* Thumbnails - umgebrochen anzeigen statt scrollen */
.details-slider-thumbnails {
	margin-top:50px;
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

/* Layer-Bilder fuer Varianten */
.details-layer-container {
	position: relative;
	width: 100%;
}
.details-layer-container img {
	width: 100%;
	height: auto;
	object-fit: contain;
}
.details-layer-base {
	position: relative;
	z-index: 0;
	width: 100%;
	height: auto;
	max-height: 600px;
	object-fit: contain;
	display: block;
}
.details-layer-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	pointer-events: none;
}
.details-layer-preload {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

/* Thumbnail Layer-Vorschau */
.thumb-layer-container {
	position: relative;
	width: 100%;
	height: 100%;
}
.thumb-layer-base {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.thumb-layer-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Price Loading Indicator */
.details-preisanzeige.shop-loading {
	min-height: 80px;
}

/* --------------------------------------------------------------------------
   15. Product Details - Cart Button States
   -------------------------------------------------------------------------- */

/* Cart button feedback animation */
.shop-btn-cart .btn-cart-added {
	display: none;
	align-items: center;
	gap: 0.35rem;
}
.shop-btn-cart.added {
	background: var(--shop-success);
}
.shop-btn-cart.added .btn-cart-text {
	display: none;
}
.shop-btn-cart.added .btn-cart-added {
	display: inline-flex;
}
.shop-btn-cart.is-loading {
	opacity: 0.7;
	pointer-events: none;
}

/* View Cart button (initially hidden, shown by JS after add-to-cart) */
.view-cart-button {
	display: none;
}

/* --------------------------------------------------------------------------
   16. Product Details - Mobile Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 767.98px) {
	.details-slider-item img {
		max-height: 400px;
	}
	.details-slider-thumbnail {
		flex: 0 0 56px;
		height: 56px;
	}
	/* Sticky cart visible only on mobile */
	.shop-sticky-cart {
		display: flex;
	}
}

@media (min-width: 768px) {
	/* Hide sticky cart on desktop */
	.shop-sticky-cart {
		display: none;
	}
}

/* --------------------------------------------------------------------------
   17. Checkout - Section / Radio / Summary / Finish / AGB
   -------------------------------------------------------------------------- */

/* Checkout Section wrapper */
.shop-checkout-section {
	margin-bottom: 1.5rem;
}

/* Kompaktere Floating Labels im Lieferanschrift-Formular */
.confirm-edit-lieferanschrift .form-floating > .form-control,
.confirm-edit-lieferanschrift .form-floating > .form-select {
	min-height: calc(2.8rem + 2px);
	height: calc(2.8rem + 2px);
	padding: 0.8rem 0.75rem 0.25rem;
}
.confirm-edit-lieferanschrift .form-floating > label {
	padding: 0.55rem 0.75rem;
	font-size: 0.875rem;
}
.confirm-edit-lieferanschrift .form-floating > .form-control:focus ~ label,
.confirm-edit-lieferanschrift .form-floating > .form-control:not(:placeholder-shown) ~ label,
.confirm-edit-lieferanschrift .form-floating > .form-select ~ label {
	transform: scale(0.78) translateY(-0.35rem) translateX(0.15rem);
}
.confirm-edit-lieferanschrift .form-floating {
	margin-bottom: 0.6rem !important;
}
.confirm-edit-lieferanschrift .row.g-2 .form-floating {
	margin-bottom: 0 !important;
}
.shop-checkout-section h3 {
	font-size: 1.1rem;
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--shop-gray-200);
}

/* Radio buttons for Versand/Zahlung */
.shop-checkout-radio {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.85rem 1rem;
	margin-bottom: 0.5rem;
	border: 1px solid var(--shop-gray-200);
	border-radius: var(--shop-radius);
	cursor: pointer;
	transition: border-color var(--shop-transition), background var(--shop-transition);
}
.shop-checkout-radio:hover {
	border-color: var(--shop-primary);
}
.shop-checkout-radio.active {
	border-color: var(--shop-primary);
	background: rgba(140, 91, 91, 0.04);
}
.shop-checkout-radio input[type="radio"] {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	accent-color: var(--shop-primary);
	margin: 0;
}
.shop-checkout-radio-content {
	flex: 1;
	min-width: 0;
}
.shop-checkout-radio-content strong {
	font-size: 0.9rem;
	display: block;
}
.shop-checkout-radio-content small {
	font-size: 0.8rem;
}
.shop-checkout-radio-price {
	font-weight: 600;
	font-size: 0.9rem;
	white-space: nowrap;
	color: var(--shop-dark);
}

/* Payment Option Cards (Zahlungsarten) */
.shop-checkout-payment-option {
	border: 2px solid var(--shop-gray-200);
	border-radius: var(--shop-radius-lg);
	padding: 1.25rem;
	margin-bottom: 0.75rem;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	gap: 1rem;
	background: var(--shop-white);
}
.shop-checkout-payment-option:hover {
	border-color: var(--shop-primary);
	background: rgba(140, 91, 91, 0.02);
}
.shop-checkout-payment-option.active {
	border-color: var(--shop-primary);
	background: rgba(140, 91, 91, 0.05);
	box-shadow: 0 0 0 3px rgba(140, 91, 91, 0.1);
}
.shop-checkout-payment-icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: var(--shop-gray-100);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--shop-primary);
}
.shop-checkout-payment-content {
	flex: 1;
	min-width: 0;
}
.shop-checkout-payment-title {
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 0.25rem;
	color: var(--shop-dark);
}
.shop-checkout-payment-desc {
	font-size: 0.875rem;
	color: var(--shop-gray-600);
	line-height: 1.4;
}
.shop-checkout-payment-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.75rem;
	padding-top: 0.75rem;
	border-top: 1px solid var(--shop-gray-200);
}
.shop-checkout-payment-badge {
	font-size: 0.75rem;
	color: var(--shop-success);
	display: flex;
	align-items: center;
	gap: 0.35rem;
}
.shop-checkout-payment-badge svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

/* Responsive Payment Cards */
@media (max-width: 575px) {
	.shop-checkout-payment-option {
		padding: 1rem;
		gap: 0.75rem;
	}
	.shop-checkout-payment-icon {
		width: 40px;
		height: 40px;
	}
	.shop-checkout-payment-title {
		font-size: 0.9rem;
	}
	.shop-checkout-payment-desc {
		font-size: 0.8rem;
	}
	.shop-checkout-payment-badges {
		gap: 0.5rem;
	}
}

/* Checkout Summary sidebar */
.shop-checkout-summary {
	background: var(--shop-gray-100);
	border-radius: var(--shop-radius-lg);
	padding: 1.5rem;
	position: sticky;
	top: calc(var(--shop-navbar-height) + 1rem);
}
.shop-checkout-summary h3 {
	font-size: 1.1rem;
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--shop-gray-200);
}

/* Summary item list */
.shop-checkout-summary-items {
	margin-bottom: 1rem;
}
.shop-checkout-summary-item {
	display: flex;
	gap: 0.75rem;
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--shop-gray-200);
	align-items: center;
}
.shop-checkout-summary-item:last-child {
	border-bottom: none;
}
.shop-checkout-summary-item-img {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	border-radius: var(--shop-radius);
	overflow: hidden;
	background: var(--shop-white);
}
.shop-checkout-summary-item-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.shop-checkout-summary-item-info {
	flex: 1;
	min-width: 0;
}
.shop-checkout-summary-item-title {
	font-size: 0.85rem;
	font-weight: 600;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.shop-checkout-summary-item-price {
	font-weight: 600;
	font-size: 0.85rem;
	white-space: nowrap;
}

/* Checkout Finish page */
.shop-checkout-finish-section {
	padding: 2rem 0 4rem;
}

/* Erfolgs-Header */
.shop-finish-header {
	text-align: center;
	margin-bottom: 2rem;
}
.shop-finish-icon {
	width: 64px;
	height: 64px;
	background: var(--shop-success);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
	color: var(--shop-white);
	animation: finishPop 0.4s ease;
}
@keyframes finishPop {
	0% { transform: scale(0); opacity: 0; }
	60% { transform: scale(1.1); }
	100% { transform: scale(1); opacity: 1; }
}
.shop-finish-header h1 {
	font-family: var(--shop-font-heading);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--shop-dark);
	margin-bottom: 0.5rem;
}
.shop-finish-ordernr {
	font-size: 1rem;
	color: var(--shop-gray-600);
}
.shop-finish-ordernr strong {
	color: var(--shop-primary);
}

/* Bestätigungstext */
.shop-finish-message {
	text-align: center;
	margin-bottom: 1.5rem;
}
.shop-finish-message p {
	font-size: 0.95rem;
	color: var(--shop-gray-600);
	margin: 0;
}

/* Zahlungs-Box */
.shop-finish-payment {
	background: var(--shop-white);
	border: 1px solid var(--shop-gray-200);
	border-radius: var(--shop-radius-lg);
	overflow: hidden;
	margin-bottom: 1.5rem;
}
.shop-finish-payment-header {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 1rem 1.25rem;
	background: var(--shop-gray-100);
	border-bottom: 1px solid var(--shop-gray-200);
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--shop-dark);
}
.shop-finish-payment-header svg {
	color: var(--shop-primary);
}
.shop-finish-payment-body {
	padding: 1.25rem;
}
.shop-finish-amount {
	font-size: 1rem;
	margin-bottom: 1rem;
	color: var(--shop-gray-700);
}
.shop-finish-amount strong {
	font-size: 1.25rem;
	color: var(--shop-primary);
}

/* Bank-Details */
.shop-finish-bank-details {
	background: var(--shop-gray-100);
	border-radius: var(--shop-radius);
	padding: 0.25rem 0;
}
.shop-finish-bank-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.6rem 1rem;
	border-bottom: 1px solid var(--shop-white);
}
.shop-finish-bank-row:last-child {
	border-bottom: none;
}
.shop-finish-bank-row .label {
	font-size: 0.8rem;
	color: var(--shop-gray-500);
	text-transform: uppercase;
	letter-spacing: 0.3px;
}
.shop-finish-bank-row .value {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--shop-dark);
	text-align: right;
	word-break: break-all;
}
.shop-finish-bank-verwendung {
	background: rgba(140, 91, 91, 0.08);
	margin-top: 0.25rem;
	border-radius: 0 0 var(--shop-radius) var(--shop-radius);
}
.shop-finish-bank-verwendung .value {
	color: var(--shop-primary);
	font-weight: 600;
}

/* GiroCode */
.shop-finish-girocode {
	text-align: center;
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--shop-gray-200);
}
.shop-finish-girocode p {
	font-size: 0.85rem;
	color: var(--shop-gray-600);
	margin-bottom: 0.75rem;
}
.shop-finish-girocode img {
	max-width: 180px;
	height: auto;
	border-radius: 0;
}

/* PayPal Button */
.shop-finish-paypal-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	padding: 0.85rem 1.5rem;
	margin-top: 0.5rem;
}

/* Rechnung Hinweis (inline im Payment-Body) */
.shop-finish-rechnung-note {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	margin-top: 1.25rem;
	padding: 0.85rem 1rem;
	background: #f0f7ff;
	border-radius: var(--shop-radius);
	font-size: 0.85rem;
	color: var(--shop-gray-700);
	line-height: 1.45;
}
.shop-finish-rechnung-note svg {
	flex-shrink: 0;
	color: #4a90d9;
	margin-top: 0.1rem;
}

/* Hinweis-Box */
.shop-finish-note {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	background: #fffbf0;
	border: 1px solid #f5e6c8;
	border-radius: var(--shop-radius);
	padding: 1rem 1.25rem;
	margin-bottom: 1.5rem;
}
.shop-finish-note svg {
	flex-shrink: 0;
	color: #c9a227;
	margin-top: 0.1rem;
}
.shop-finish-note p {
	font-size: 0.85rem;
	color: var(--shop-gray-700);
	margin: 0;
	line-height: 1.5;
}

/* Kontakt */
.shop-finish-contact {
	text-align: center;
	margin-bottom: 1.5rem;
}
.shop-finish-contact p {
	font-size: 0.85rem;
	color: var(--shop-gray-500);
	margin: 0;
}
.shop-finish-contact a {
	color: var(--shop-primary);
	font-weight: 500;
}

/* Actions */
.shop-finish-actions {
	text-align: center;
}
.shop-finish-actions .shop-btn-primary {
	min-width: 200px;
}

/* Responsive */
@media (max-width: 575.98px) {
	.shop-checkout-finish-section {
		padding: 1.5rem 0 3rem;
	}
	.shop-finish-header h1 {
		font-size: 1.3rem;
	}
	.shop-finish-icon {
		width: 56px;
		height: 56px;
	}
	.shop-finish-bank-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.25rem;
	}
	.shop-finish-bank-row .value {
		text-align: left;
	}
}

/* AGB Checkbox */
.shop-checkout-agb {
	font-size: 0.85rem;
}
.shop-checkout-agb .form-check-label {
	line-height: 1.5;
}
.shop-checkout-agb .form-check-label a {
	text-decoration: underline;
}

/* Responsive */
@media (max-width: 991.98px) {
	.shop-checkout-summary {
		position: static;
	}
}

/* --------------------------------------------------------------------------
   18. Search Autocomplete
   -------------------------------------------------------------------------- */

/* Wrapper fuer Position */
.shop-search-wrapper {
	position: relative;
}

/* Autocomplete Dropdown */
.search-autocomplete {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--shop-white);
	border: 1px solid var(--shop-gray-200);
	border-radius: var(--shop-radius);
	box-shadow: var(--shop-shadow-lg);
	z-index: 1050;
	max-height: 420px;
	overflow-y: auto;
	display: none;
	margin-top: 4px;
}
.search-autocomplete.active {
	display: block;
}

/* Einzelner Vorschlag */
.search-autocomplete-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.65rem 0.85rem;
	text-decoration: none;
	color: var(--shop-dark);
	border-bottom: 1px solid var(--shop-gray-100);
	transition: background var(--shop-transition);
}
.search-autocomplete-item:last-of-type {
	border-bottom: none;
}
.search-autocomplete-item:hover,
.search-autocomplete-item.active {
	background: var(--shop-gray-100);
}

/* Bild */
.search-autocomplete-img {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	background: var(--shop-gray-100);
	border-radius: var(--shop-radius);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.search-autocomplete-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Content */
.search-autocomplete-content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}
.search-autocomplete-title {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--shop-dark);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.search-autocomplete-price {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--shop-primary);
}

/* "Alle Ergebnisse" Link */
.search-autocomplete-more {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 0.75rem;
	background: var(--shop-gray-100);
	color: var(--shop-primary);
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 500;
	transition: background var(--shop-transition);
}
.search-autocomplete-more:hover {
	background: var(--shop-gray-200);
	color: var(--shop-primary-hover);
}

/* Mobile Offcanvas Anpassung */
.shop-offcanvas .search-autocomplete {
	position: absolute;
	left: 0;
	right: 0;
}

/* --------------------------------------------------------------------------
   19. Search No Results / Vorschlaege
   -------------------------------------------------------------------------- */
.search-no-results {
	text-align: center;
	padding: 3rem 1rem;
	max-width: 700px;
	margin: 0 auto;
}
.search-no-results svg {
	margin-bottom: 1.5rem;
	color: var(--shop-gray-400);
}
.search-no-results h2 {
	font-family: var(--shop-font-heading);
	font-size: 1.4rem;
	color: var(--shop-dark);
	margin-bottom: 0.5rem;
}
.search-no-results p {
	color: var(--shop-gray-600);
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

/* Tipps */
.search-suggestions {
	text-align: left;
	background: var(--shop-gray-100);
	border-radius: var(--shop-radius-lg);
	padding: 1.25rem 1.5rem;
	margin-bottom: 2rem;
}
.search-suggestions h4 {
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: var(--shop-dark);
}
.search-suggestions ul {
	margin: 0;
	padding-left: 1.25rem;
	color: var(--shop-gray-600);
	font-size: 0.9rem;
}
.search-suggestions ul li {
	margin-bottom: 0.35rem;
}

/* Verwandte Kategorien */
.search-related-categories {
	margin-bottom: 2rem;
}
.search-related-categories h4 {
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: var(--shop-dark);
}
.search-related-categories .listing-subcategories {
	justify-content: center;
}

/* Beliebte Produkte */
.search-popular-products {
	margin-bottom: 2rem;
}
.search-popular-products h4 {
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 0;
	color: var(--shop-dark);
}

/* Responsive */
@media (max-width: 575.98px) {
	.search-no-results {
		padding: 2rem 0.5rem;
	}
	.search-no-results h2 {
		font-size: 1.2rem;
	}
	.search-suggestions {
		padding: 1rem;
	}
}

/* --------------------------------------------------------------------------
   20. Kundenkonto / Mein Konto
   -------------------------------------------------------------------------- */

/* Konto Page Layout */
.konto-page {
	background: var(--shop-gray-100);
	flex: 1;
}

/* Sidebar Navigation */
.konto-sidebar {
	background: var(--shop-white);
	border-radius: var(--shop-radius-lg);
	box-shadow: var(--shop-shadow-sm);
	padding: 1rem 0;
}
.konto-nav {
	display: flex;
	flex-direction: column;
}
.konto-nav-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1.25rem;
	color: var(--shop-gray-600);
	font-weight: 500;
	font-size: 0.9rem;
	transition: all var(--shop-transition);
	text-decoration: none;
}
.konto-nav-item:hover {
	color: var(--shop-primary);
	background: var(--shop-gray-100);
}
.konto-nav-item.active {
	color: var(--shop-primary);
	background: rgba(140, 91, 91, 0.08);
	border-left: 3px solid var(--shop-primary);
}
.konto-nav-item svg {
	flex-shrink: 0;
	opacity: 0.7;
}
.konto-nav-item.active svg,
.konto-nav-item:hover svg {
	opacity: 1;
}
.konto-nav hr {
	margin: 0.5rem 1.25rem;
	border-color: var(--shop-gray-200);
}

/* Konto Content */
.konto-content {
	/* Spacing handled by container */
}
.konto-header {
	margin-bottom: 1.5rem;
}
.konto-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--shop-dark);
	margin-bottom: 0.25rem;
}

/* Konto Cards */
.konto-card {
	background: var(--shop-white);
	border-radius: var(--shop-radius-lg);
	box-shadow: var(--shop-shadow-sm);
	overflow: hidden;
}
.konto-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid var(--shop-gray-200);
	background: var(--shop-gray-100);
}
.konto-card-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--shop-dark);
	margin: 0;
}
.konto-card-link {
	font-size: 0.85rem;
	color: var(--shop-primary);
}
.konto-card-body {
	padding: 1.25rem;
}
.konto-card-danger .konto-card-header {
	background: #fff5f5;
	border-bottom-color: #f8d7da;
}

/* Statistik-Kacheln */
.konto-stat-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1.5rem;
	background: var(--shop-white);
	border-radius: var(--shop-radius-lg);
	box-shadow: var(--shop-shadow-sm);
	text-decoration: none;
	color: var(--shop-dark);
	transition: all var(--shop-transition);
}
.konto-stat-card:hover {
	color: var(--shop-primary);
	box-shadow: var(--shop-shadow);
	transform: translateY(-2px);
}
.konto-stat-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--shop-gray-100);
	border-radius: 50%;
	margin-bottom: 0.75rem;
	color: var(--shop-primary);
}
.konto-stat-value {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 0.25rem;
}
.konto-stat-label {
	font-size: 0.85rem;
	color: var(--shop-gray-600);
}

/* Bestellliste */
.konto-order-list {
	display: flex;
	flex-direction: column;
}
.konto-order-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.875rem 0;
	border-bottom: 1px solid var(--shop-gray-200);
	text-decoration: none;
	color: var(--shop-dark);
	transition: background var(--shop-transition);
}
.konto-order-item:last-child {
	border-bottom: none;
}
.konto-order-item:hover {
	background: var(--shop-gray-100);
	margin: 0 -1.25rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}
.konto-order-info {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.konto-order-number {
	font-weight: 600;
	color: var(--shop-primary);
}
.konto-order-date {
	font-size: 0.85rem;
	color: var(--shop-gray-600);
}
.konto-order-details {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.konto-order-total {
	font-weight: 600;
}

/* Status Badges */
.konto-status {
	display: inline-block;
	padding: 0.25rem 0.6rem;
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}
.konto-status-neu {
	background: #e3f2fd;
	color: #1565c0;
}
.konto-status-in_bearbeitung,
.konto-status-offen {
	background: #fff3e0;
	color: #e65100;
}
.konto-status-versendet {
	background: #e8f5e9;
	color: #2e7d32;
}
.konto-status-abgeschlossen {
	background: #e8f5e9;
	color: #2e7d32;
}
.konto-status-storniert {
	background: #ffebee;
	color: #c62828;
}
.konto-status-large {
	font-size: 0.85rem;
	padding: 0.4rem 0.8rem;
}

/* Quick Links */
.konto-quick-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.25rem;
	background: var(--shop-white);
	border-radius: var(--shop-radius-lg);
	box-shadow: var(--shop-shadow-sm);
	color: var(--shop-dark);
	text-decoration: none;
	transition: all var(--shop-transition);
}
.konto-quick-link:hover {
	color: var(--shop-primary);
	box-shadow: var(--shop-shadow);
}
.konto-quick-link svg {
	color: var(--shop-primary);
}

/* Konto Table */
.konto-table {
	margin: 0;
}
.konto-table thead th {
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--shop-gray-600);
	background: var(--shop-gray-100);
	border-bottom: none;
	padding: 0.875rem 1rem;
}
.konto-table tbody td {
	padding: 1rem;
	vertical-align: middle;
	border-bottom: 1px solid var(--shop-gray-200);
}
.konto-table tbody tr:last-child td {
	border-bottom: none;
}

/* Adressen */
.konto-address-card {
	padding: 1rem;
	border: 1px solid var(--shop-gray-200);
	border-radius: var(--shop-radius);
	height: 100%;
	display: flex;
	flex-direction: column;
}
.konto-address-main {
	background: var(--shop-gray-100);
}
.konto-address-type {
	margin-bottom: 0.5rem;
}
.konto-address-content {
	font-size: 0.9rem;
	line-height: 1.5;
	flex: 1;
	color: var(--shop-gray-800);
}
.konto-address-actions {
	margin-top: 1rem;
	padding-top: 0.75rem;
	border-top: 1px solid var(--shop-gray-200);
	display: flex;
	gap: 0.5rem;
}

/* Bestellung Detail - Positionen */
.konto-order-positions {
	/* Container */
}
.konto-order-position {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid var(--shop-gray-200);
}
.konto-order-position:last-child {
	border-bottom: none;
}
.konto-order-position-image {
	width: 200px;
	min-width: 200px;
	flex-shrink: 0;
	border-radius: var(--shop-radius);
	overflow: hidden;
	background: var(--shop-gray-100);
}
.konto-order-position-image img {
	width: 100%;
	height: auto;
	display: block;
}
.konto-order-designer-previews {
	border: 1px solid var(--shop-gray-200);
	border-radius: 6px;
	padding: 0.6rem 0.75rem 0.75rem;
	background: var(--shop-gray-50, #fafafa);
}
.konto-order-designer-previews-label {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--shop-gray-500);
	margin-bottom: 0.5rem;
}
.konto-order-designer-previews-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.konto-order-designer-preview-thumb {
	display: block;
	border: 1px solid var(--shop-gray-200);
	border-radius: 0;
	overflow: hidden;
	flex: 0 0 auto;
	transition: border-color var(--shop-transition);
}
a.konto-order-designer-preview-thumb:hover {
	border-color: var(--shop-primary);
	box-shadow: 0 2px 6px rgba(0,0,0,0.10);
}
.konto-order-designer-preview-thumb img {
	width: auto;
	max-height: 90px;
	height: auto;
	display: block;
}
.konto-order-position-artnr {
	font-size: 0.75rem;
	color: var(--shop-gray-400);
	margin-top: 0.6rem;
}
.konto-order-position-placeholder {
	width: 100%;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--shop-gray-100);
	color: var(--shop-gray-400);
}
.konto-order-position-info {
	flex: 1;
	min-width: 0;
}
.konto-order-position-title {
	font-weight: 600;
	font-size: 0.95rem;
	margin-bottom: 0.25rem;
}
.konto-order-position-meta {
	font-size: 0.8rem;
	color: var(--shop-gray-600);
}
.konto-order-position-qty {
	font-size: 0.9rem;
	color: var(--shop-gray-600);
	text-align: right;
	min-width: 80px;
	white-space: nowrap;
	align-self: flex-start;
}
.konto-order-position-price {
	font-weight: 600;
	text-align: right;
	min-width: 80px;
	white-space: nowrap;
	align-self: flex-start;
}

/* Order Summary */
.konto-order-summary {
	max-width: 400px;
	margin-left: auto;
}
.konto-order-summary-row {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 0;
	font-size: 0.9rem;
}
.konto-order-summary-total {
	font-weight: 700;
	font-size: 1.1rem;
	border-top: 2px solid var(--shop-dark);
	margin-top: 0.5rem;
	padding-top: 0.75rem;
}

/* Uploads */
.konto-uploads-list {
	/* Container */
}
.konto-upload-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.875rem 1.25rem;
	border-bottom: 1px solid var(--shop-gray-200);
}
.konto-upload-item:last-child {
	border-bottom: none;
}
.konto-upload-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--shop-gray-100);
	border-radius: var(--shop-radius);
	color: var(--shop-gray-600);
	flex-shrink: 0;
}
.konto-upload-icon-pdf {
	background: #ffebee;
	color: #c62828;
}
.konto-upload-icon-jpg,
.konto-upload-icon-jpeg,
.konto-upload-icon-png,
.konto-upload-icon-gif {
	background: #e3f2fd;
	color: #1565c0;
}
.konto-upload-info {
	flex: 1;
	min-width: 0;
}
.konto-upload-name {
	font-weight: 500;
	font-size: 0.9rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.konto-upload-meta {
	font-size: 0.8rem;
	color: var(--shop-gray-600);
}
.konto-upload-actions {
	flex-shrink: 0;
}

/* Dropzone */
.konto-dropzone {
	border: 2px dashed var(--shop-gray-400);
	border-radius: var(--shop-radius-lg);
	padding: 2.5rem 1.5rem;
	text-align: center;
	cursor: pointer;
	transition: all var(--shop-transition);
	position: relative;
}
.konto-dropzone:hover,
.konto-dropzone.is-dragover {
	border-color: var(--shop-primary);
	background: rgba(140, 91, 91, 0.03);
}
.konto-dropzone.is-uploading {
	pointer-events: none;
	opacity: 0.8;
}
.konto-dropzone-content {
	/* Default state */
}
.konto-dropzone-uploading {
	/* Loading state - hidden by default */
}

/* Toast Notifications */
.konto-toast {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	padding: 1rem 1.5rem;
	background: var(--shop-dark);
	color: var(--shop-white);
	border-radius: var(--shop-radius);
	box-shadow: var(--shop-shadow-lg);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	transform: translateY(100%);
	opacity: 0;
	transition: all 0.3s ease;
	z-index: 9999;
	max-width: 400px;
}
.konto-toast.show {
	transform: translateY(0);
	opacity: 1;
}
.konto-toast-success {
	background: var(--shop-success);
}
.konto-toast-error {
	background: var(--shop-danger);
}

/* Konto Form */
.konto-form .form-label {
	position: static;
	transform: none;
	display: block;
	font-weight: 500;
	font-size: 0.875rem;
	color: var(--shop-gray-800);
	margin-bottom: 0.35rem;
	padding: 0;
	opacity: 1;
	pointer-events: auto;
}
.konto-form .form-control,
.konto-form .form-select {
	border-color: var(--shop-gray-200);
	padding: 0.6rem 0.9rem;
	font-size: 0.9rem;
}
.konto-form .form-control:focus,
.konto-form .form-select:focus {
	border-color: var(--shop-primary);
	box-shadow: 0 0 0 3px rgba(140, 91, 91, 0.1);
}

/* Responsive Konto */
@media (max-width: 991.98px) {
	.konto-sidebar {
		margin-bottom: 1.5rem;
	}
	.konto-nav {
		flex-direction: row;
		flex-wrap: wrap;
		padding: 0.5rem;
	}
	.konto-nav-item {
		padding: 0.5rem 0.75rem;
		font-size: 0.8rem;
	}
	.konto-nav-item.active {
		border-left: none;
		border-radius: var(--shop-radius);
	}
	.konto-nav hr {
		display: none;
	}
}
@media (max-width: 767.98px) {
	.konto-title {
		font-size: 1.25rem;
	}
	.konto-stat-card {
		padding: 1rem;
	}
	.konto-stat-value {
		font-size: 1.5rem;
	}
	.konto-order-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}
	.konto-order-details {
		width: 100%;
		justify-content: space-between;
	}
	.konto-order-position {
		flex-wrap: wrap;
	}
	.konto-order-position-image {
		width: 100%;
		min-width: 0;
	}
	.konto-order-position-info {
		flex: 1 1 100%;
	}
	.konto-order-position-qty,
	.konto-order-position-price {
		flex: 1 1 50%;
		margin-top: 0.5rem;
	}
	.konto-order-position-qty {
		text-align: left;
	}
	.konto-toast {
		left: 1rem;
		right: 1rem;
		bottom: 1rem;
		max-width: none;
	}
}

/* ==========================================================================
   Designer Integration (Produktdetails)
   ========================================================================== */

.details-quickdesigner-section {
	margin: 1.5rem 0;
	padding: 1.25rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 12px;
	text-align: center;
}

.shop-btn-quickdesigner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 0.875rem 2rem;
	background: #fff;
	color: #667eea;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.2s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.shop-btn-quickdesigner:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
	color: #764ba2;
}

.shop-btn-quickdesigner svg {
	flex-shrink: 0;
}

.quickdesigner-hint {
	margin: 0.75rem 0 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.875rem;
}

@media (max-width: 576px) {
	.details-quickdesigner-section {
		padding: 1rem;
	}
	.shop-btn-quickdesigner {
		width: 100%;
		padding: 0.75rem 1rem;
		font-size: 0.9375rem;
	}
}

/* Quickdesigner Popup Modal */
.quickdesigner-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quickdesigner-popup-overlay.active {
	opacity: 1;
	visibility: visible;
}

.quickdesigner-popup {
	width: 95vw;
	height: 95vh;
	max-width: 1600px;
	background: #1a1d24;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

.quickdesigner-popup-overlay.active .quickdesigner-popup {
	transform: scale(1);
}

.quickdesigner-popup-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 20px;
	background: #2d3139;
	border-bottom: 1px solid #3d4149;
}

.quickdesigner-popup-title {
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
}

.quickdesigner-popup-close {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	background: transparent;
	border: none;
	border-radius: 6px;
	color: #aaa;
	font-size: 0.85rem;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	white-space: nowrap;
}

.quickdesigner-popup-close:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.quickdesigner-popup-body {
	flex: 1;
	overflow: hidden;
}

.quickdesigner-popup-body iframe {
	width: 100%;
	height: 100%;
	border: none;
}

@media (max-width: 768px) {
	.quickdesigner-popup {
		width: 100vw;
		height: 100vh;
		max-width: none;
		border-radius: 0;
	}
}

/* Quickdesigner Success Toast */
.quickdesigner-success-toast {
	position: fixed;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%) translateY(100px);
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.5rem;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
	z-index: 100000;
	opacity: 0;
	transition: transform 0.4s ease, opacity 0.4s ease;
}

.quickdesigner-success-toast.show {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
}

.quickdesigner-success-toast svg {
	flex-shrink: 0;
	color: #fff;
}

.quickdesigner-success-toast div {
	display: flex;
	flex-direction: column;
}

.quickdesigner-success-toast strong {
	font-size: 1rem;
	font-weight: 600;
}

.quickdesigner-success-toast span {
	font-size: 0.875rem;
	opacity: 0.9;
}

.quickdesigner-success-toast .btn-view-cart {
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 6px;
	transition: background 0.2s;
	white-space: nowrap;
}

.quickdesigner-success-toast .btn-view-cart:hover {
	background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 576px) {
	.quickdesigner-success-toast {
		left: 1rem;
		right: 1rem;
		bottom: 1rem;
		transform: translateX(0) translateY(100px);
		flex-wrap: wrap;
	}
	.quickdesigner-success-toast.show {
		transform: translateX(0) translateY(0);
	}
	.quickdesigner-success-toast .btn-view-cart {
		width: 100%;
		text-align: center;
		margin-top: 0.5rem;
	}
}


/* --------------------------------------------------------------------------
   Cookie Consent Banner
   --------------------------------------------------------------------------
   Layout-Modell:
     .cookie-consent-banner         (fixed, bottom, flex column, max-height)
       .cookie-consent-header       (statisch — Titel)
       .cookie-consent-body         (scrollbar — compact/details)
       .cookie-consent-footer       (statisch — Buttons)
   -------------------------------------------------------------------------- */

.cookie-consent-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	background: #fff;
	border-top: 1px solid var(--shop-gray-200);
	box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.14);
	max-height: 85vh;
	display: flex;
	flex-direction: column;
	font-size: 14px;
	line-height: 1.5;
}

.cookie-consent-banner .container {
	max-width: 760px;
}

/* Header */
.cookie-consent-header {
	border-bottom: 1px solid var(--shop-gray-200);
	background: #fff;
	flex-shrink: 0;
}

.cookie-consent-header .container {
	padding-top: 1rem;
	padding-bottom: 0.75rem;
}

.cookie-consent-title {
	font-size: 1.05rem;
	font-weight: 600;
	margin: 0;
	color: var(--shop-dark);
	letter-spacing: -0.01em;
}

/* Body — scrollbar */
.cookie-consent-body {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background: #fff;
}

.cookie-consent-body .container {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

/* Footer — Buttons immer sichtbar */
.cookie-consent-footer {
	border-top: 1px solid var(--shop-gray-200);
	background: #fff;
	flex-shrink: 0;
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.04);
}

.cookie-consent-footer .container {
	padding-top: 0.85rem;
	padding-bottom: 0.85rem;
}

/* Description-Block */
.cookie-consent-text p,
.cookie-consent-intro {
	font-size: 0.875rem;
	color: var(--shop-gray-800);
	line-height: 1.55;
	margin: 0 0 0.5rem 0;
}

.cookie-consent-text p.small,
.cookie-consent-text .small {
	font-size: 0.78rem;
	color: var(--shop-gray-600);
	line-height: 1.5;
}

.cookie-consent-text p:last-child,
.cookie-consent-intro:last-child {
	margin-bottom: 0;
}

.cookie-consent-text a,
.cookie-consent-intro a {
	color: var(--shop-primary);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.cookie-consent-text a:hover,
.cookie-consent-intro a:hover {
	color: var(--shop-primary-hover);
}

.cookie-consent-intro {
	margin-bottom: 0.75rem;
}

/* Action-Buttons (im Footer) */
.cookie-consent-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: stretch;
}

.cookie-consent-btn {
	flex: 1 1 auto;
	min-width: 140px;
	padding: 0.55rem 1.1rem;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 4px;
	border: 1px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cookie-consent-btn-accept {
	background: var(--shop-primary);
	color: #fff;
	border-color: var(--shop-primary);
}

.cookie-consent-btn-accept:hover {
	background: var(--shop-primary-hover);
	border-color: var(--shop-primary-hover);
	color: #fff;
}

.cookie-consent-btn-deny {
	background: #fff;
	color: var(--shop-primary);
	border-color: var(--shop-primary);
}

.cookie-consent-btn-deny:hover {
	background: var(--shop-primary);
	color: #fff;
}

.cookie-consent-btn-configure,
.cookie-consent-btn-save {
	background: #fff;
	color: var(--shop-gray-800);
	border-color: var(--shop-gray-200);
}

.cookie-consent-btn-configure:hover,
.cookie-consent-btn-save:hover {
	background: var(--shop-gray-100);
	border-color: var(--shop-gray-400);
	color: var(--shop-dark);
}

/* Kategorie-Karten (Detail-View) */
.cookie-consent-details {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.cookie-consent-category {
	background: #fafafa;
	border: 1px solid var(--shop-gray-200);
	border-radius: 6px;
	padding: 0.7rem 0.85rem;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.cookie-consent-category:hover {
	background: #f5ebeb;
	border-color: #d8c4c4;
}

.cookie-consent-category-header {
	gap: 0.75rem;
}

.cookie-consent-category-header > div:first-child {
	flex: 1;
	min-width: 0;
}

.cookie-consent-category-header strong {
	display: block;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--shop-dark);
	line-height: 1.3;
	margin: 0;
}

.cookie-consent-category-header > div:first-child > p {
	font-size: 0.78rem;
	color: var(--shop-gray-600);
	line-height: 1.45;
	margin: 0.2rem 0 0 0;
}

/* Toggle-Switches einheitlich */
.cookie-consent-category .form-check {
	margin: 0;
	padding: 0;
	min-height: unset;
	flex-shrink: 0;
}

.cookie-consent-category .form-check-input {
	width: 2.25rem;
	height: 1.15rem;
	margin: 0;
	cursor: pointer;
}

.cookie-consent-category .form-check-input:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.cookie-consent-category .form-check-input:checked {
	background-color: var(--shop-primary);
	border-color: var(--shop-primary);
}

.cookie-consent-category .form-check-input:focus {
	box-shadow: 0 0 0 0.2rem rgba(140, 91, 91, 0.18);
	border-color: var(--shop-primary);
}

/* Child-Cookie-Toggles (Sub-Items) */
.cookie-consent-children {
	list-style: none;
	padding: 0;
	margin: 0.55rem 0 0 0;
	border-top: 1px solid var(--shop-gray-200);
}

.cookie-consent-children > li {
	padding: 0.5rem 0 0.1rem 0;
}

.cookie-consent-children > li + li {
	border-top: 1px dashed var(--shop-gray-200);
	margin-top: 0.2rem;
}

.cookie-consent-children span {
	display: block;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--shop-dark);
	line-height: 1.3;
}

.cookie-consent-children li > div:first-child > div:first-child > p {
	font-size: 0.75rem;
	color: var(--shop-gray-600);
	margin: 0.15rem 0 0 0;
	line-height: 1.4;
}

.cookie-consent-children .form-check {
	margin: 0;
	padding: 0;
	min-height: unset;
}

.cookie-consent-children .form-check-input {
	width: 1.85rem;
	height: 1rem;
	margin: 0;
}

/* Mehr-Details-Box (ausklappbar) */
.cookie-consent-details-box {
	margin-top: 0.55rem;
}

.cookie-consent-details-box summary {
	cursor: pointer;
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--shop-primary);
	padding: 0.2rem 0;
	user-select: none;
	list-style: none;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	transition: color 0.15s ease;
}

.cookie-consent-details-box summary::-webkit-details-marker {
	display: none;
}

.cookie-consent-details-box summary::before {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 5px solid currentColor;
	transition: transform 0.18s ease;
	flex-shrink: 0;
}

.cookie-consent-details-box[open] summary::before {
	transform: rotate(90deg);
}

.cookie-consent-details-box summary:hover {
	color: var(--shop-primary-hover);
}

.cookie-consent-details-content {
	margin-top: 0.5rem;
	padding: 0.65rem 0.75rem;
	background: #fff;
	border: 1px solid var(--shop-gray-200);
	border-radius: 4px;
}

.cookie-consent-details-content p {
	margin: 0 0 0.45rem 0;
	font-size: 0.78rem;
	color: var(--shop-gray-800);
	line-height: 1.5;
}

.cookie-consent-details-content p:last-child {
	margin-bottom: 0;
}

.cookie-consent-details-content p strong {
	color: var(--shop-dark);
	font-weight: 600;
}

.cookie-consent-details-content a {
	color: var(--shop-primary);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.cookie-consent-details-content a:hover {
	color: var(--shop-primary-hover);
}

/* Cookie-Tabelle */
.cookie-consent-cookie-table-wrap {
	overflow-x: auto;
	margin: 0.5rem 0;
}

.cookie-consent-cookie-table {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
	font-size: 0.75rem;
	table-layout: auto;
}

.cookie-consent-cookie-table thead th {
	background: var(--shop-gray-100);
	color: var(--shop-gray-800);
	font-weight: 600;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 0.4rem 0.6rem;
	border-bottom: 2px solid var(--shop-gray-200);
	text-align: left;
	white-space: nowrap;
}

.cookie-consent-cookie-table tbody td {
	padding: 0.4rem 0.6rem;
	border-bottom: 1px solid var(--shop-gray-200);
	vertical-align: top;
	color: var(--shop-gray-800);
	line-height: 1.45;
}

.cookie-consent-cookie-table tbody tr:last-child td {
	border-bottom: none;
}

.cookie-consent-cookie-table tbody tr:hover td {
	background: rgba(140, 91, 91, 0.04);
}

.cookie-consent-cookie-table td:first-child,
.cookie-consent-cookie-table th:first-child {
	width: 30%;
}

.cookie-consent-cookie-table td:last-child,
.cookie-consent-cookie-table th:last-child {
	width: 22%;
	white-space: nowrap;
}

.cookie-consent-cookie-table code,
.cookie-consent-children code,
.cookie-consent-category-header code {
	font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
	font-size: 0.72rem;
	background: var(--shop-gray-100);
	color: var(--shop-primary);
	padding: 0.05rem 0.3rem;
	border-radius: 3px;
	white-space: nowrap;
}

.cookie-consent-cookie-table code {
	background: transparent;
	padding: 0;
}

/* Mobile */
@media (max-width: 640px) {
	.cookie-consent-banner {
		max-height: 92vh;
		font-size: 13px;
	}
	.cookie-consent-header .container,
	.cookie-consent-body .container,
	.cookie-consent-footer .container {
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.cookie-consent-actions {
		flex-direction: column;
	}
	.cookie-consent-btn {
		width: 100%;
		min-width: 0;
	}
	.cookie-consent-cookie-table thead th,
	.cookie-consent-cookie-table tbody td {
		padding: 0.3rem 0.45rem;
		font-size: 0.7rem;
	}
}

/* --------------------------------------------------------------------------
   Banner (Positionen 1-4)
   -------------------------------------------------------------------------- */
.shop-banner {
	position: relative;
	text-align: center;
}
.shop-banner img { max-width: 100%; height: auto; }
.shop-banner-close {
	position: absolute;
	top: 4px;
	right: 8px;
	background: none;
	border: none;
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	opacity: 0.6;
	color: inherit;
	padding: 4px 6px;
}
.shop-banner-close:hover { opacity: 1; }

/* Position 4: Fixierte Box am linken Seitenrand */
.shop-banner-side {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1000;
	max-width: 250px;
}
.shop-banner-side .shop-banner-close {
	top: 2px;
	right: 4px;
}

/* Footer Payment Badges */
.shop-footer-pay-badge {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--shop-footer-text);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 3px;
    font-family: var(--shop-font-body);
}
.shop-footer-phone {
    color: var(--shop-primary);
    font-size: 1.0rem;
    font-weight: 700;
    font-family: var(--shop-font-body);
}

/* ============================================================
   Cart Flyout Bestätigung
   ============================================================ */
.shop-cart-flyout {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1060;
    width: 340px;
    background: var(--bs-body-bg, #fff);
    border: 1px solid var(--bs-border-color, #dee2e6);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    overflow: hidden;
    transform: translateX(calc(100% + 30px));
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}
.shop-cart-flyout.show {
    transform: translateX(0);
    pointer-events: auto;
}
.shop-cart-flyout-inner {
    padding: 16px;
}

/* Header */
.shop-cart-flyout-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #27ae60;
}
.shop-cart-flyout-header svg { flex-shrink: 0; stroke: #27ae60; }
.shop-cart-flyout-header > span { flex: 1; }
.shop-cart-flyout-close {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--bs-secondary-color, #6c757d);
    line-height: 1;
    opacity: 0.5;
    transition: opacity 0.15s;
    flex-shrink: 0;
}
.shop-cart-flyout-close:hover { opacity: 1; }

/* Artikel-Liste */
.shop-cart-flyout-product {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

/* Einzelne Artikel-Zeile */
.shop-cart-flyout-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.shop-cart-flyout-row + .shop-cart-flyout-row {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--bs-border-color, #dee2e6);
}

/* Artikelbild */
.shop-cart-flyout-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid var(--bs-border-color, #dee2e6);
    flex-shrink: 0;
    background: var(--bs-tertiary-bg, #f8f9fa);
}
.shop-cart-flyout-img-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 6px;
    flex-shrink: 0;
    background: var(--bs-tertiary-bg, #f0f0f0);
    border: 1px dashed var(--bs-border-color, #dee2e6);
}

/* Artikel-Info */
.shop-cart-flyout-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.shop-cart-flyout-zusatz-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--shop-primary, #4a6fa5);
    opacity: 0.8;
}
.shop-cart-flyout-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.shop-cart-flyout-qty {
    font-size: 12px;
    color: var(--bs-secondary-color, #6c757d);
    white-space: nowrap;
}

/* Buttons */
.shop-cart-flyout-actions {
    display: flex;
    gap: 8px;
}
.shop-cart-flyout-actions .shop-btn-outline,
.shop-cart-flyout-actions .shop-btn-primary {
    flex: 1;
    font-size: 13px;
    padding: 8px 10px;
    text-align: center;
    white-space: nowrap;
}

/* Timer-Leiste */
.shop-cart-flyout-progress {
    height: 3px;
    background: var(--bs-border-color, #dee2e6);
    margin-top: 14px;
    border-radius: 2px;
    overflow: hidden;
}
.shop-cart-flyout-progress-bar {
    height: 100%;
    width: 100%;
    background: var(--shop-primary, #4a6fa5);
    border-radius: 2px;
    transform-origin: left;
}

@media (max-width: 480px) {
    .shop-cart-flyout {
        width: calc(100vw - 24px);
        right: 12px;
        top: 70px;
    }
}

/* ===== Designer Vorschau im Warenkorb ===== */
.shop-cart-designer-previews {
	margin-top: 0.5rem;
	padding: 0.6rem 0.7rem 0.7rem;
	background: var(--shop-gray-100);
	border: 1px solid #e0ddd8;
	border-left: 3px solid var(--shop-primary);
	border-radius: 3px;
	overflow: visible;
}

.shop-cart-designer-previews-label {
	display: block;
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: var(--shop-primary);
	margin-bottom: 0.4rem;
	font-weight: 700;
}

.shop-cart-designer-previews-scroll {
	display: flex;
	gap: 6px;
	overflow-x: auto;
	padding-bottom: 4px;
	scrollbar-width: thin;
	scrollbar-color: var(--shop-primary) transparent;
}

.shop-cart-designer-previews-scroll::-webkit-scrollbar {
	height: 3px;
}

.shop-cart-designer-previews-scroll::-webkit-scrollbar-thumb {
	background: var(--shop-primary);
	border-radius: 2px;
}

.shop-cart-designer-preview-item {
	flex: 0 0 auto;
	display: block;
	border: 1px solid #e0e0e0;
	border-radius: 3px;
	overflow: hidden;
	transition: box-shadow 0.15s, border-color 0.15s;
}

a.shop-cart-designer-preview-item:hover {
	box-shadow: 0 2px 6px rgba(0,0,0,0.12);
	border-color: var(--shop-primary);
}

.shop-cart-designer-preview-item img {
	display: block;
	height: 80px;
	width: auto;
	max-width: 110px;
	object-fit: contain;
	background: #fff;
}

.shop-cart-designer-edit-link {
	display: inline-block;
	margin-top: 0.5rem;
	margin-bottom: 0.1rem;
	font-size: 0.72rem;
	color: var(--shop-primary);
	text-decoration: underline;
	font-weight: 600;
}

.shop-cart-designer-edit-link:hover {
	color: var(--shop-primary-dark, var(--shop-primary));
	opacity: 0.8;
}

/* Migriert aus style.css */

.details-wunschdaten {padding:0;}
.details-wunschdaten-head {font-size:17px;
	font-weight: 600;
	line-height: 30px;}
.merkzettel-button {display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	background: #fff;
	border: 2px solid #ddd;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	color: #666;
	transition: all 0.2s ease;}
.merkzettel-button:hover {border-color: #e8b4b8;
	color: #d4a5a5;}
.merkzettel-button.is-active {background: #fef6f3;
	border-color: #e8b4b8;
	color: #d4a5a5;}
.merkzettel-button.is-active .heart-empty {display: none !important;}
.merkzettel-button.is-active .heart-filled {display: block !important;
	color: #e8b4b8;}
.merkzettel-button .heart-filled {display: none;}
.merkzettel-button.is-loading {opacity: 0.6;
	pointer-events: none;}
.merkzettel-button {justify-content: center;}
.merkzettel-icon {display: flex;
	align-items: center;}
/* =====================================================
   MERKZETTEL STYLES
   ===================================================== */

/* Merkzettel Button auf Produktdetailseite */
.details-actions {display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;}
.details-actions {flex-direction: column;
		align-items: stretch;}
.add-to-cart-button {display:inline-block;
	background-color: #3c763d;
	color:white;
	border:none;
	border-radius: 5px;
	line-height: 50px;
	width:100%;
	text-align: center;
	text-shadow: 1px 2px 3px rgba(0,0,0,0.15);
	transition: all 0.6s ease-out;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;}
.add-to-cart-button:hover {background-color: #539554;
	color:white;
	border:none;
	border-radius: 5px;
	line-height: 50px;
	width:100%;
	text-align: center;
	text-shadow: 2px 3px 3px rgba(0,0,0,0.25);}
.zusatzartikel-item:has(.zusatzartikel-checkbox:checked) {border-color: #d4a5a5;
	background: #fef6f3;}
/* Checkbox verstecken */
.zusatzartikel-checkbox {position: absolute;
	opacity: 0;
	pointer-events: none;}
.zusatzartikel-checkbox:checked ~ .zusatzartikel-check {background: #d4a5a5;
	border-color: #d4a5a5;}
.zusatzartikel-checkbox:checked ~ .zusatzartikel-check .check-icon {opacity: 1;
	transform: scale(1);}
.zusatzartikel-checkbox:checked ~ .zusatzartikel-price {color: #d4a5a5;}
/* =====================================================
   PRODUKT DOWNLOADS STYLES
   ===================================================== */

.product-downloads {margin-top: 40px;
	padding: 30px;
	background: #fafafa;
	border-radius: 12px;
	border: 1px solid #eee;}
.product-downloads-header {display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e5e5e5;}
.product-downloads-title {display: flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin: 0;}
.product-downloads-count {font-size: 13px;
	color: #888;
	background: #eee;
	padding: 4px 12px;
	border-radius: 12px;}
.product-downloads-list {display: flex;
	flex-direction: column;
	gap: 10px;}
.download-title-icon {color: #888;}
/* Download Item */
.product-download-item {display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px 18px;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 10px;
	text-decoration: none;
	color: inherit;
	transition: all 0.2s ease;}
.product-download-item:hover {border-color: #d4a5a5;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	transform: translateY(-1px);
	text-decoration: none;
	color: inherit;}
.product-download-item:hover .download-action {background: #e8b4b8;
	color: #fff;}
/* Download Icon */
.download-icon {flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: #f0f0f0;
	color: #666;}
.download-icon-pdf {background: #fee2e2;
	color: #dc2626;}
.download-icon-zip {background: #fef3c7;
	color: #d97706;}
.download-icon-doc {background: #dbeafe;
	color: #2563eb;}
.download-icon-xls {background: #d1fae5;
	color: #059669;}
.download-icon-ai {background: #fff3e0;
	color: #e65100;}
.download-icon-indd {background: #fce4ec;
	color: #c2185b;}
.download-icon-psd {background: #e3f2fd;
	color: #1565c0;}
.download-icon-img {background: #ede9fe;
	color: #7c3aed;}
.download-icon-video {background: #fce7f3;
	color: #db2777;}
.download-icon-audio {background: #e0e7ff;
	color: #4f46e5;}
/* Download Info */
.download-info {flex-grow: 1;
	min-width: 0;}
.download-title {font-size: 15px;
	font-weight: 600;
	color: #333;
	margin-bottom: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;}
.download-subtitle {font-size: 13px;
	color: #666;
	margin-bottom: 2px;}
.download-text {font-size: 12px;
	color: #888;
	line-height: 1.4;}
/* Download Meta */
.download-meta {display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 3px;
	flex-shrink: 0;}
.download-size {font-size: 12px;
	color: #888;}
.download-type {font-size: 10px;
	font-weight: 600;
	color: #999;
	background: #f0f0f0;
	padding: 2px 8px;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.5px;}
/* Download Action */
.download-action {flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #f5f5f5;
	color: #888;
	transition: all 0.2s ease;}
/* =====================================================
   CROSS-SELLING SECTION
   ===================================================== */

/* ==========================================================================
   PRODUKT-SLIDER (Cross-Selling + Zuletzt angesehen)
   ========================================================================== */
.product-slider-section {
	margin-top: 60px;
	padding: 40px 0;
	border-top: 1px solid #eee;
	position: relative;
}
.product-slider-title {
	font-size: 24px;
	font-weight: 600;
	color: #333;
	margin: 0 0 30px;
	text-align: center;
	position: relative;
	display: block;
}
.product-slider-title::after {
	content: '';
	display: block;
	margin: 10px auto 0;
	width: 60px;
	height: 2px;
	background: #d4a5a5;
}
.product-slider {
	margin: 0 -12px;
}
.product-slider .slick-track {
	display: flex !important;
}
.product-slider .slick-slide {
	height: auto;
	padding: 0 4px;
}
.product-slider .slick-slide > div {
	display: flex;
	height: 100%;
}
.product-slider-item {
	display: flex !important;
	width: 100%;
}
.product-slider-item .listing-card {
	width: 100%;
}
/* Navigation Buttons */
.product-slider-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	padding: 0 5px;
}
.product-slider-prev,
.product-slider-next {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 50%;
	color: #555;
	cursor: pointer;
	transition: all 0.2s ease;
	pointer-events: auto;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.product-slider-prev:hover,
.product-slider-next:hover {
	background: #d4a5a5;
	border-color: #d4a5a5;
	color: #fff;
}
.product-slider-prev:disabled,
.product-slider-next:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}
.product-slider-prev { margin-left: -22px; }
.product-slider-next { margin-right: -22px; }
@media (max-width: 768px) {
	.product-slider-section { margin-top: 40px; padding: 30px 0; }
	.product-slider-title { font-size: 20px; }
	.product-slider-prev { margin-left: -10px; }
	.product-slider-next { margin-right: -10px; }
}
@media (max-width: 576px) {
	.product-slider-section { margin-top: 30px; padding: 20px 0; }
	.product-slider-nav { display: none; }
}
/* ==========================================================================
   PRODUKT-BEWERTUNGEN / REVIEWS
   ========================================================================== */

.reviews-section {margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid #eee;}
.reviews-section {margin-top: 40px;
		padding-top: 30px;}
.reviews-header {margin-bottom: 30px;}
.reviews-title {font-size: 24px;
	font-weight: 600;
	color: #333;
	margin: 0;}
.reviews-title {font-size: 20px;}
/* Bewertungs-Statistik */
.reviews-summary {display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 40px;
	padding: 30px;
	background: #f9f9f9;
	border-radius: 12px;}
.reviews-summary-left {flex: 0 0 200px;
	text-align: center;}
.reviews-summary-right {flex: 1;
	min-width: 250px;}
.reviews-summary {flex-direction: column;
		gap: 30px;
		padding: 20px;}
.reviews-summary-left {flex: none;
		width: 100%;}
.reviews-average {margin-bottom: 20px;}
.reviews-average-number {display: block;
	font-size: 48px;
	font-weight: 700;
	color: #333;
	line-height: 1;}
.reviews-average-stars {margin: 10px 0;}
.reviews-average-stars .star-icon {width: 24px;
	height: 24px;}
.reviews-average-number {font-size: 40px;}
/* Sterne-Icons */
.star-icon {width: 20px;
	height: 20px;
	display: inline-block;
	vertical-align: middle;}
.star-icon.star-full {fill: #e91e8c;
	color: #e91e8c;}
.star-icon.star-half {color: #e91e8c;}
.star-icon.star-empty {fill: none;
	stroke: #e91e8c;
	stroke-width: 1.5;}
.star-icon.star-mini {width: 12px;
	height: 12px;
	fill: #e91e8c;}
.review-stars .star-icon {width: 18px;
	height: 18px;}
.star-rating-input label .star-icon {width: 32px;
	height: 32px;
	fill: none;
	stroke: #e91e8c;
	stroke-width: 1.5;
	transition: all 0.15s;}
.star-rating-input label.active .star-icon {fill: #e91e8c;
	stroke: #e91e8c;}
.star-rating-input label .star-icon {width: 36px;
		height: 36px;}
.reviews-count {display: block;
	font-size: 14px;
	color: #666;}
.btn-review-write {display: inline-block;
	padding: 10px 24px;
	background: #e91e8c;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s;}
.btn-review-write:hover {background: #c4177a;
	color: #fff;}
.reviews-distribution {max-width: 400px;}
.reviews-distribution {max-width: none;}
.reviews-bar-row {display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;}
.reviews-bar-label {flex: 0 0 40px;
	font-size: 14px;
	color: #666;
	display: flex;
	align-items: center;
	gap: 4px;}
.reviews-bar {flex: 1;
	height: 10px;
	background: #e0e0e0;
	border-radius: 5px;
	overflow: hidden;}
.reviews-bar-fill {height: 100%;
	background: #e91e8c;
	border-radius: 5px;
	transition: width 0.3s;}
.reviews-bar-percent {flex: 0 0 40px;
	font-size: 13px;
	color: #666;
	text-align: right;}
/* Eigene Bewertung (pending) */
.review-own-pending {display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 20px;
	background: #fff8e1;
	border: 1px solid #ffe082;
	border-radius: 8px;
	margin-bottom: 30px;}
.review-own-pending-icon {flex-shrink: 0;
	color: #f9a825;}
.review-own-pending-text {font-size: 14px;
	color: #5d4037;}
/* Bewertungsliste */
.reviews-list {display: flex;
	flex-direction: column;
	gap: 20px;}
.review-item {padding: 25px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 10px;}
.review-item {padding: 20px 15px;}
.review-header {display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;}
.review-header {flex-direction: column;
		align-items: flex-start;
		gap: 8px;}
.review-title {font-weight: 600;
	color: #333;
	font-size: 16px;}
.review-verified {display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: #2e7d32;
	background: #e8f5e9;
	padding: 4px 10px;
	border-radius: 4px;}
.review-meta {display: flex;
	gap: 15px;
	margin-bottom: 12px;
	font-size: 13px;
	color: #888;}
.review-meta {flex-direction: column;
		gap: 5px;}
.review-author {font-weight: 500;
	color: #666;}
.review-text {font-size: 15px;
	line-height: 1.7;
	color: #444;
	margin-bottom: 15px;}
.review-footer {display: flex;
	justify-content: flex-start;}
.review-helpful-btn {display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: #f5f5f5;
	border: 1px solid #ddd;
	border-radius: 20px;
	font-size: 13px;
	color: #666;
	cursor: pointer;
	transition: all 0.2s;}
.review-helpful-btn:hover:not(.disabled):not(.voted) {background: #e91e8c;
	border-color: #e91e8c;
	color: #fff;}
.review-helpful-btn:hover:not(.disabled):not(.voted) svg {stroke: #fff;}
.review-helpful-btn.voted {background: #fce4ec;
	border-color: #f8bbd9;
	color: #e91e8c;
	cursor: default;}
.review-helpful-btn:disabled {opacity: 0.7;
	cursor: default;}
/* Keine Bewertungen */
.reviews-empty {padding: 40px;
	text-align: center;
	background: #f9f9f9;
	border-radius: 10px;
	color: #666;}
.reviews-empty p {margin: 0 0 10px;}
.reviews-empty p:last-child {margin-bottom: 0;}
/* Sterne-Auswahl im Formular */
.review-form-rating {margin-bottom: 20px;}
.review-form-rating label {display: block;
	margin-bottom: 10px;
	font-weight: 500;}
.review-form-rating .required {color: #e91e8c;}
.star-rating-input {display: flex;
	flex-direction: row;
	justify-content: flex-start;
	gap: 5px;}
.star-rating-input input {display: none;}
.star-rating-input label {cursor: pointer;
	margin: 0;}
/* ==========================================================================
   PASSWORT RESET
   ========================================================================== */

.password-reset-section {padding: 60px 0;
	min-height: 60vh;
	background: #f8f9fa;}
.password-reset-section {padding: 40px 0;}
.password-reset-box {background: #fff;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);}
.password-reset-box h2 {font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #333;
	text-align: center;}
.password-reset-box .alert {border-radius: 6px;}
.password-reset-box .alert i {margin-right: 8px;}
.password-reset-box {padding: 30px 20px;}
.password-reset-form .form-floating {margin-bottom: 15px;}
.password-reset-form .form-control {border-radius: 6px;}
.password-reset-form .form-control:focus {border-color: #28a745;
	box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15);}
.password-reset-form .btn-success {padding: 12px 24px;
	font-weight: 600;
	border-radius: 6px;}
/* Leerer Merkzettel */
.merkzettel-empty {text-align: center;
	padding: 80px 20px;
	color: #888;}
.merkzettel-empty-icon {margin-bottom: 25px;}
.merkzettel-empty h3 {font-size: 22px;
	color: #666;
	margin-bottom: 10px;}
.merkzettel-empty p {font-size: 15px;
	margin-bottom: 25px;}
/* Merkzettel Card */
.merkzettel-item {margin-bottom: 30px;}
.merkzettel-card {background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	height: 100%;
	display: flex;
	flex-direction: column;}
.merkzettel-card:hover {box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	transform: translateY(-2px);}
/* Produktbild */
.merkzettel-card-image {display: block;
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: #f9f9f9;}
.merkzettel-card-image img {width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;}
.merkzettel-card:hover .merkzettel-card-image img {transform: scale(1.05);}
.merkzettel-card-image .no-image {width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;}
/* Card Body */
.merkzettel-card-body {padding: 15px;
	flex-grow: 1;}
.merkzettel-card-title {font-size: 15px;
	font-weight: 600;
	color: #333;
	text-decoration: none;
	display: block;
	margin-bottom: 8px;
	line-height: 1.4;}
.merkzettel-card-title:hover {color: #666;}
.merkzettel-card-sku {font-size: 12px;
	color: #999;
	margin-bottom: 8px;}
.merkzettel-card-price {font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;}
.merkzettel-card-date {font-size: 11px;
	color: #aaa;}
/* Card Actions */
.merkzettel-card-actions {padding: 0 15px 15px;}
.merkzettel-card-actions .btn {width: 100%;}
.merkzettel-card-image {height: 180px;}
/* Entfernen Button */
.merkzettel-remove {position: absolute;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	background: rgba(255,255,255,0.9);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	transition: all 0.2s ease;
	z-index: 10;}
.merkzettel-remove:hover {background: #ff6b6b;
	color: #fff;}
/* =====================================================
   SEITEN / LANDINGPAGES (Einfaches System)
   ===================================================== */

.page-content {min-height: 50vh;}
/* Inhalt Titel */
.page-inhalt-titel {font-size: 28px;
	font-weight: 600;
	color: #333;
	margin: 0 0 20px 0;}
.page-inhalt-titel {font-size: 24px;}
.page-inhalt-titel {font-size: 22px;}
/* Inhalt Content (HTML aus Datenbank) */
.page-inhalt-content {font-size: 16px;
	line-height: 1.8;
	color: #444;}
.page-inhalt-content h1 {font-size: 36px;
	font-weight: 600;
	margin: 0 0 25px 0;
	color: #333;}
.page-inhalt-content h2 {font-size: 28px;
	font-weight: 600;
	margin: 35px 0 18px 0;
	color: #333;}
.page-inhalt-content h3 {font-size: 22px;
	font-weight: 600;
	margin: 30px 0 15px 0;
	color: #333;}
.page-inhalt-content h4 {font-size: 18px;
	font-weight: 600;
	margin: 25px 0 12px 0;
	color: #333;}
.page-inhalt-content p {margin-bottom: 18px;}
.page-inhalt-content ul,
.page-inhalt-content ol {margin-bottom: 20px;
	padding-left: 25px;}
.page-inhalt-content li {margin-bottom: 8px;}
.page-inhalt-content a {color: #d4a5a5;
	text-decoration: underline;}
.page-inhalt-content a:hover {color: #c49090;}
.page-inhalt-content img {max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 20px 0;}
.page-inhalt-content blockquote {border-left: 4px solid #d4a5a5;
	padding-left: 20px;
	margin: 25px 0;
	font-style: italic;
	color: #666;}
.page-inhalt-content table {width: 100%;
	border-collapse: collapse;
	margin: 20px 0;}
.page-inhalt-content th,
.page-inhalt-content td {padding: 12px 15px;
	border: 1px solid #e0e0e0;
	text-align: left;}
.page-inhalt-content th {background: #f5f5f5;
	font-weight: 600;}
.page-inhalt-content hr {border: none;
	height: 1px;
	background: #e0e0e0;
	margin: 30px 0;}
.page-inhalt-content h1 {font-size: 30px;}
.page-inhalt-content h2 {font-size: 24px;}
.page-inhalt-content {font-size: 15px;}
.page-inhalt-content h1 {font-size: 26px;}
.page-inhalt-content h2 {font-size: 22px;}
.page-inhalt-content h3 {font-size: 19px;}
.page-inhalt-content h1 {font-size: 24px;}
.page-inhalt-content th,
	.page-inhalt-content td {padding: 8px 10px;
		font-size: 14px;}
/* Sektionen (aus seiten_blocks) */
.page-section {padding: 50px 0;}
.page-section:first-child {padding-top: 40px;}
.page-section:nth-child(even) {background: #f9f9f9;}
/* Abstand zwischen Inhalten */
.page-section .row + .row {margin-top: 40px;}
.page-section {padding: 40px 0;}
.page-section {padding: 30px 0;}
.page-section {padding: 25px 0;}
.section-heading {margin-bottom: 50px;
	text-align: center;}
.section-heading .hr {border-top: 1px dotted;
	text-align: center;
	max-width: 100px;
	margin:40px auto;
	margin-bottom: 40px;}
.section-heading .hr:after {content: '\f004';
	font-family: FontAwesome;
	display: inline-block;
	position: relative;
	top: -20px;
	padding: 0 10px;
	font-size: 28px;}
.section-heading h2 {z-index: 99;
	text-align: center;}
#merkzettel .section-heading h1 {margin-bottom: 10px;}

@media (max-width: 767px) {
  .merkzettel-button {justify-content: center;}
  .details-actions {flex-direction: column;
		align-items: stretch;}
  .merkzettel-card-image {height: 180px;}
}

@media (max-width: 767px) {
  .product-downloads {padding: 20px;
		margin-top: 30px;}
  .product-downloads-header {flex-direction: column;
		align-items: flex-start;
		gap: 10px;}
  .product-download-item {flex-wrap: wrap;
		padding: 12px 15px;}
  .download-info {flex-basis: calc(100% - 70px);}
  .download-meta {flex-direction: row;
		gap: 10px;
		margin-top: 8px;
		margin-left: 59px;
		width: calc(100% - 59px);}
  .download-action {display: none;}
}

@media (max-width: 991px) {
  .page-inhalt-titel {font-size: 24px;}
  .page-inhalt-content h1 {font-size: 30px;}
  .page-inhalt-content h2 {font-size: 24px;}
  .page-section {padding: 40px 0;}
}

@media (max-width: 767px) {
  .page-inhalt-titel {font-size: 22px;}
  .page-inhalt-content {font-size: 15px;}
  .page-inhalt-content h1 {font-size: 26px;}
  .page-inhalt-content h2 {font-size: 22px;}
  .page-inhalt-content h3 {font-size: 19px;}
  .page-section {padding: 30px 0;}
}

@media (max-width: 576px) {
  .page-inhalt-content h1 {font-size: 24px;}
  .page-inhalt-content th,
	.page-inhalt-content td {padding: 8px 10px;
		font-size: 14px;}
  .page-section {padding: 25px 0;}
}

@media (max-width: 768px) {
  .password-reset-section {padding: 40px 0;}
  .password-reset-box {padding: 30px 20px;}
}

@media (max-width: 768px) {
  .reviews-summary {flex-direction: column;
		gap: 30px;
		padding: 20px;}
  .reviews-summary-left {flex: none;
		width: 100%;}
  .star-rating-input label .star-icon {width: 36px;
		height: 36px;}
  .reviews-distribution {max-width: none;}
  .review-item {padding: 20px 15px;}
  .review-header {flex-direction: column;
		align-items: flex-start;
		gap: 8px;}
}

@media (max-width: 480px) {
  .reviews-section {margin-top: 40px;
		padding-top: 30px;}
  .reviews-title {font-size: 20px;}
  .reviews-average-number {font-size: 40px;}
  .review-meta {flex-direction: column;
		gap: 5px;}
}


/* ==========================================================================
   MODAL – Allgemein (shop-modal)
   ========================================================================== */
.shop-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.45);
	z-index: 9990;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}
.shop-modal {
	background: var(--shop-white);
	border-radius: var(--shop-radius);
	padding: 2rem;
	max-width: 480px;
	width: 100%;
	box-shadow: 0 8px 32px rgba(0,0,0,0.18);
	outline: none;
}
.shop-modal-title {
	font-family: var(--shop-font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--shop-dark);
	margin: 0 0 0.75rem;
}
.shop-modal-text {
	color: var(--shop-gray-600);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0 0 1.5rem;
}
.shop-modal-actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}
.shop-modal-actions .shop-btn-primary,
.shop-modal-actions .shop-btn-outline {
	flex: 1;
	min-width: 120px;
	text-align: center;
}
@media (max-width: 480px) {
	.shop-modal { padding: 1.5rem; }
	.shop-modal-actions { flex-direction: column; }
}

/* ==========================================================================
   DRUCKDATEN-UPLOAD
   ========================================================================== */
.druckdaten-box {
	margin-top: 0.75rem;
}
.druckdaten-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: none;
	border: 1px solid var(--shop-gray-300);
	border-radius: 6px;
	padding: 0.3rem 0.65rem;
	font-size: 0.8rem;
	color: var(--shop-gray-600);
	cursor: pointer;
	transition: border-color 0.15s, color 0.15s;
	margin-top: 0.6rem;
}
.druckdaten-toggle:hover {
	border-color: var(--shop-primary);
	color: var(--shop-primary);
}
.druckdaten-toggle-count {
	background: var(--shop-primary);
	color: #fff;
	border-radius: 99px;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 0 5px;
	line-height: 1.5;
	min-width: 18px;
	text-align: center;
}
.druckdaten-panel {
	display: none;
	margin-top: 0.6rem;
	border: 1px solid var(--shop-gray-200);
	border-radius: 8px;
	overflow: hidden;
	background: var(--shop-gray-50, #fafafa);
}
.druckdaten-panel.open {
	display: block;
}
.druckdaten-drop-zone {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.3rem;
	padding: 1rem;
	border-top: 1px dashed var(--shop-gray-200);
	cursor: pointer;
	text-align: center;
	transition: background 0.15s;
}
/* Kein Trennstrich wenn die Dateiliste leer ist */
.druckdaten-file-list:empty + .druckdaten-drop-zone {
	border-top: none;
}
.druckdaten-drop-zone:hover,
.druckdaten-drop-zone.drag-over {
	background: color-mix(in srgb, var(--shop-primary) 5%, transparent);
	border-color: var(--shop-primary);
}
.druckdaten-drop-zone svg {
	color: var(--shop-primary);
	opacity: 0.7;
}
.druckdaten-drop-zone span {
	font-size: 0.85rem;
	color: var(--shop-gray-600);
}
.druckdaten-drop-zone strong {
	color: var(--shop-primary);
	text-decoration: underline;
}
.druckdaten-drop-zone small {
	font-size: 0.75rem;
	color: var(--shop-gray-400);
}
.druckdaten-file-input {
	display: none;
}
.druckdaten-file-list {
	padding: 0.25rem 0;
}
.druckdaten-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.75rem;
	font-size: 0.82rem;
	border-bottom: 1px solid var(--shop-gray-100);
}
.druckdaten-item:last-child { border-bottom: none; }
.druckdaten-item--uploading { opacity: 0.7; }
.druckdaten-item-icon {
	flex-shrink: 0;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	background: var(--shop-gray-200);
	color: var(--shop-gray-600);
	border-radius: 3px;
	padding: 2px 5px;
	min-width: 32px;
	text-align: center;
}
.druckdaten-ext-pdf { background: #fde8e8; color: #c0392b; }
.druckdaten-ext-eps,
.druckdaten-ext-ai  { background: #fef0e8; color: #e67e22; }
.druckdaten-ext-tif,
.druckdaten-ext-tiff,
.druckdaten-ext-jpg,
.druckdaten-ext-jpeg,
.druckdaten-ext-png { background: #e8f4fd; color: #2980b9; }
.druckdaten-ext-zip { background: #e8f8ed; color: #27ae60; }
.druckdaten-item-name {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--shop-dark);
}
.druckdaten-item-meta {
	flex-shrink: 0;
	color: var(--shop-gray-400);
	font-size: 0.75rem;
}
.druckdaten-delete-btn {
	flex-shrink: 0;
	background: none;
	border: none;
	cursor: pointer;
	padding: 2px 4px;
	color: var(--shop-gray-400);
	border-radius: 4px;
	transition: color 0.15s, background 0.15s;
	line-height: 1;
}
.druckdaten-delete-btn:hover { color: #e74c3c; background: #fde8e8; }
.druckdaten-progress {
	flex: 1;
	height: 4px;
	background: var(--shop-gray-200);
	border-radius: 2px;
	overflow: hidden;
}
.druckdaten-progress-bar {
	height: 100%;
	background: var(--shop-primary);
	width: 0%;
	transition: width 0.2s;
}
.druckdaten-error {
	margin: 0.35rem 0.75rem;
	padding: 0.4rem 0.6rem;
	background: #fde8e8;
	color: #c0392b;
	border-radius: 4px;
	font-size: 0.8rem;
}
/* Status-Badges */
.druckdaten-status {
	flex-shrink: 0;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	border-radius: 99px;
	padding: 2px 8px;
	text-transform: uppercase;
}
.druckdaten-status-neu         { background: #fff8e1; color: #b8860b; }
.druckdaten-status-geprueft    { background: #e8f0fd; color: #1a56db; }
.druckdaten-status-freigegeben { background: #e8f8ed; color: #27ae60; }
.druckdaten-status-abgelehnt   { background: #fde8e8; color: #c0392b; }
/* Ablehnungsgrund */
.druckdaten-reject-reason {
	display: flex;
	align-items: flex-start;
	gap: 0.35rem;
	margin: 0 0.75rem 0.4rem;
	padding: 0.4rem 0.6rem;
	background: #fde8e8;
	color: #c0392b;
	border-radius: 4px;
	font-size: 0.79rem;
	line-height: 1.4;
}
.druckdaten-reject-reason svg { flex-shrink: 0; margin-top: 2px; }
.druckdaten-item-notiz {
	flex-shrink: 0;
	color: #c0392b;
	cursor: default;
}
/* Druckdaten-Karte (Thumbnail-Ansicht) */
.druckdaten-card {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.55rem 0.75rem;
	border-bottom: 1px solid var(--shop-gray-100);
	font-size: 0.82rem;
}
.druckdaten-card:last-child { border-bottom: none; }
.druckdaten-card--uploading { opacity: 0.7; }
.druckdaten-card-thumb {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 5px;
	overflow: hidden;
	background: var(--shop-gray-100);
	border: 1px solid var(--shop-gray-200);
	display: flex;
	align-items: center;
	justify-content: center;
}
.druckdaten-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.druckdaten-card-thumb-placeholder {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	border-radius: 3px;
	padding: 3px 6px;
	text-align: center;
}
.druckdaten-card-info {
	flex: 1;
	min-width: 0;
}
.druckdaten-card-name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--shop-dark);
	font-weight: 500;
	font-size: 0.82rem;
}
.druckdaten-card-meta {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: 0.25rem;
	color: var(--shop-gray-400);
	font-size: 0.75rem;
}
.druckdaten-card-progress {
	flex: 1;
	height: 4px;
	background: var(--shop-gray-200);
	border-radius: 2px;
	overflow: hidden;
	margin-top: 0.4rem;
}
.druckdaten-card-progress-bar {
	height: 100%;
	background: var(--shop-primary);
	width: 0%;
	transition: width 0.2s;
}

/* Druckdaten-Card: klickbarer Thumb + Name */
.druckdaten-card-thumb {
	cursor: pointer;
	transition: opacity .15s ease;
}
.druckdaten-card-thumb:hover { opacity: 0.8; }
a.druckdaten-card-name { color: inherit; }
a.druckdaten-card-name:hover { color: var(--shop-primary); }

/* Druckdaten-Card: Action-Buttons rechts (Ansehen / Download / Löschen) */
.druckdaten-card-actions {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	flex-shrink: 0;
}
.druckdaten-action-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 1px solid transparent;
	border-radius: 4px;
	background: transparent;
	color: var(--shop-gray-400);
	cursor: pointer;
	transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.druckdaten-action-btn:hover {
	background: var(--shop-gray-100);
	color: var(--shop-dark);
	border-color: var(--shop-gray-200);
	text-decoration: none;
}
.druckdaten-action-btn.druckdaten-delete-btn:hover {
	color: #c0392b;
}


/* =============================================================
   Inline-Login-Popup (Konfigurator / Designer "Im Konto speichern")
   ============================================================= */
.tp-login-popup {
    padding: 1.75rem !important;
    min-width: 320px;
    max-width: 380px;
}
.tp-login-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--shop-primary, #8b7355) 0%, #a08872 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
}
.tp-login-title {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.3rem;
    color: #212529;
}
.tp-login-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}
.tp-login-error {
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
}
.tp-login-form .form-control {
    padding: 0.7rem 0.9rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.tp-login-form .form-control:focus {
    border-color: var(--shop-primary, #8b7355);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.15);
}
.tp-login-forgot {
    font-size: 0.8rem;
    color: #6c757d;
    text-decoration: none;
}
.tp-login-forgot:hover { color: var(--shop-primary, #8b7355); }
.tp-login-submit {
    background: var(--shop-primary, #8b7355);
    border-color: var(--shop-primary, #8b7355);
    color: #fff;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}
.tp-login-submit:hover {
    background: #7a6349;
    border-color: #7a6349;
    color: #fff;
    transform: translateY(-1px);
}
.tp-login-submit:disabled { opacity: 0.7; transform: none; }
@keyframes tp-spin { to { transform: rotate(360deg); } }
.tp-spinner { animation: tp-spin 0.8s linear infinite; }
.tp-login-divider {
    border-top: 1px solid #e9ecef;
    margin: 1.25rem 0 1rem;
}
.tp-login-register-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    color: var(--shop-primary, #8b7355);
    border: 2px solid var(--shop-primary, #8b7355);
    border-radius: 8px;
    text-decoration: none;
    background: transparent;
    transition: all 0.2s;
    margin-bottom: 0.6rem;
}
.tp-login-register-btn:hover {
    background: var(--shop-primary, #8b7355);
    color: #fff;
}
.tp-login-cancel {
    width: 100%;
    background: transparent;
    color: #6c757d;
    font-size: 0.85rem;
    padding: 0.4rem;
    border: none;
    text-decoration: underline;
}
.tp-login-cancel:hover { color: #333; }

/* =====================================================
   PRODUKTANFRAGE
   ===================================================== */
.shop-anfrage {
    padding: 40px 0 60px;
}
.anfrage-headline {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}
.anfrage-divider {
    margin-bottom: 1.5rem;
}
.anfrage-intro {
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}
.anfrage-intro a {
    color: var(--shop-primary, #4a7c59);
}
.anfrage-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}
.anfrage-produkt-box {
    background: #fdfcfb;
    border: 1px solid #e0dbd4;
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}
.anfrage-produkt-nummer {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}
.anfrage-variante-item {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}
.anfrage-variante-label {
    margin-right: 0.25rem;
}
.anfrage-input,
.anfrage-textarea,
.anfrage-select {
    border-radius: 3px;
    border-color: #ccc;
    font-size: 0.9rem;
}
.anfrage-input:focus,
.anfrage-textarea:focus,
.anfrage-select:focus {
    border-color: var(--shop-primary, #4a7c59);
    box-shadow: 0 0 0 2px rgba(74, 124, 89, 0.15);
}
.anfrage-input.is-invalid,
.anfrage-select.is-invalid {
    border-color: #dc3545;
}
.anfrage-hinweis {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 1rem;
}
.anfrage-headline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.anfrage-headline-row .anfrage-headline {
    margin-bottom: 0;
}
.anfrage-feedback-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.anfrage-back-btn--inline {
    border-color: #0f5132;
    color: #0f5132;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
}
.anfrage-back-btn--inline:hover {
    background-color: #0f5132;
    color: #fff;
}
.anfrage-back-btn {
    background-color: transparent;
    color: #4a7c59;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    border-radius: 3px;
    border: 1px solid #4a7c59;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.anfrage-back-btn:hover {
    background-color: #4a7c59;
    color: #fff;
}
.anfrage-submit-btn {
    background-color: #4a7c59;
    color: #fff;
    padding: 0.6rem 2.5rem;
    min-width: 220px;
    font-size: 0.95rem;
    border-radius: 3px;
    border: none;
}
.anfrage-submit-btn:hover:not(:disabled) {
    background-color: #3a6347;
    color: #fff;
}
.anfrage-submit-btn:disabled {
    opacity: 0.65;
}
.anfrage-success {
    background: #d1e7dd;
    color: #0f5132;
    padding: 0.85rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
}
.anfrage-error {
    background: #f8d7da;
    color: #842029;
    padding: 0.85rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
}
.anfrage-datenschutz {
    font-size: 0.8rem;
    color: #666;
}
.anfrage-datenschutz a {
    color: var(--shop-primary, #4a7c59);
}
/* Anfrage-Button auf Produktseite */
.anfrage-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    margin-top: 0.5rem;
}
.anfrage-btn:hover {
    opacity: 0.85;
}

/* Trusted Shops: Light-Badge (Pre-Consent-Variante, vertikales Layout wie echtes Trustbadge) */
.ts-badge-light {
    position: fixed;
    right: 16px;
    bottom: 54px;
    z-index: 1040;
    width: 93px;
    /*height: 155px;*/
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
    font-family: inherit;
    line-height: 1.15;
    color: #1a1a1a;
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.ts-badge-light:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}
.ts-badge-light__close {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
    z-index: 2;
}
.ts-badge-light__close:hover {
    background: #f3f3f3;
}
.ts-badge-light__close img {
    display: block;
    width: 8px;
    height: 8px;
    opacity: 0.55;
}
.ts-badge-light__close:hover img {
    opacity: 1;
}
.ts-badge-light__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 10px 6px 8px;
    height: 100%;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}
.ts-badge-light__link:hover {
    color: inherit;
    text-decoration: none;
}
.ts-badge-light__mark {
    display: block;
    width: 50px;
    height: 50px;
    margin-bottom: 2px;
}
.ts-badge-light__title {
    font-size: 0.78rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 2px;
}
.ts-badge-light__stars {
    display: inline-flex;
    gap: 1px;
    margin-top: 1px;
}
.ts-badge-light__stars img {
    display: block;
    width: 12px;
    height: 11px;
}
.ts-badge-light__rating {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2px;
}
.ts-badge-light__label {
    font-size: 0.72rem;
    color: #1a1a1a;
    margin-top: -1px;
}
@media (max-width: 768px) {
    .ts-badge-light { right: auto; left: 10px; bottom: 12px; }
}

/* =========================================================================
   Versand-Hinweis (Drittland-Gebühren) im Warenkorb + Checkout-Confirm
   ========================================================================= */
.cart-versand-hinweis {
    margin-top: 1.5rem;
    padding: 1rem 1.1rem;
    background: rgba(140, 91, 91, 0.06);
    border-left: 3px solid var(--shop-primary, #8c5b5b);
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--shop-gray-800, #333);
}
.cart-versand-hinweis-title {
    margin: 0 0 0.6rem 0;
    font-family: var(--shop-font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--shop-primary, #8c5b5b);
}
.cart-versand-hinweis-intro {
    margin-bottom: 0.75rem;
}
.cart-versand-hinweis-list {
    margin: 0 0 0.6rem 0;
    padding-left: 1.1rem;
}
.cart-versand-hinweis-list li {
    margin-bottom: 0.3rem;
}
.cart-versand-hinweis-foot {
    margin-top: 0.5rem;
    font-style: italic;
    opacity: 0.85;
}
