/* ==========================================================================
   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: #8C5B5B;
	--shop-primary-hover: #6e4545;
	--shop-secondary: #997ead;
	--shop-accent: #ffd8cb;
	--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);
}

/* --------------------------------------------------------------------------
   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);
}

/* 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: 1.5rem 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: 700;
	color: var(--shop-dark);
	margin-bottom: 0.25rem;
}
.listing-subheadline {
	font-size: 1.1rem;
	color: var(--shop-gray-600);
	margin-bottom: 0.75rem;
	font-weight: 400;
}
.listing-description {
	font-size: 0.95rem;
	color: var(--shop-gray-600);
	line-height: 1.6;
	max-width: 680px;
	margin: 0 auto;
}

/* Subcategory Chips */
.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);
}

/* 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-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid var(--shop-gray-200);
	border-radius: var(--shop-radius);
	overflow: hidden;
	background: var(--shop-white);
	text-decoration: none;
	color: inherit;
	transition: border-color var(--shop-transition);
}
.listing-card:hover {
	border-color: var(--shop-gray-400);
	color: inherit;
}
.listing-card-image {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--shop-gray-100);
	display: flex;
	align-items: center;
	justify-content: center;
}
.listing-card-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 0.5rem;
	transition: transform 0.3s ease;
}
.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;
}
.listing-card-title {
	font-family: var(--shop-font-heading);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--shop-dark);
	margin-bottom: 0.25rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.3;
}
.listing-card-text {
	font-size: 0.8rem;
	color: var(--shop-gray-600);
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
}
.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;
}

/* 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;
	}
	.listing-toolbar {
		flex-direction: column;
		align-items: flex-start;
	}
	.listing-card-body {
		padding: 0.5rem;
	}
	.listing-card-title {
		font-size: 0.8rem;
	}
	.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: var(--shop-gray-100);
	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;
}

/* 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;
	color: var(--shop-gray-600);
	cursor: pointer;
	transition: all var(--shop-transition);
	display: flex;
	align-items: center;
	justify-content: center;
}
.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;
}

/* 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: 1.5rem;
}
.shop-variant-group {
	margin-bottom: 1rem;
}
.shop-variant-group label {
	font-weight: 600;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--shop-gray-600);
	margin-bottom: 0.5rem;
	display: block;
}
.shop-variant-group select {
	width: 100%;
	height: 48px;
	padding: 0 1rem;
	border: 1px solid var(--shop-gray-200);
	border-radius: var(--shop-radius);
	background: var(--shop-white);
	font-size: 0.95rem;
	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 1rem center;
}
.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 */
.details-varianten .variante option.ausgeblendet {
	display: none;
}

/* Ausgeblendete Variantengruppen */
.details-varianten .ausgeblendete-gruppe {
	display: none !important;
}

/* 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;
}

/* Zusatzartikel / Zubehoer */
.details-zusatzartikel {
	background: var(--shop-gray-100);
	border-radius: var(--shop-radius-lg);
	padding: 1.25rem;
	margin-bottom: 1.5rem;
}
.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: var(--shop-gray-100);
}
.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;
}

/* 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-primary);
	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-primary-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: center;
}
.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);
}
.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: center;
		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-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-primary);
	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(140,91,91,0.25);
}
.shop-btn-checkout:hover {
	background: var(--shop-primary-hover);
	box-shadow: 0 4px 14px rgba(140,91,91,0.35);
	transform: translateY(-1px);
}
.shop-btn-checkout:active {
	transform: translateY(0);
	box-shadow: 0 1px 4px rgba(140,91,91,0.2);
}
.shop-btn-checkout svg {
	flex-shrink: 0;
}

/* 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;
	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: 3.5rem 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 {
	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: var(--shop-gray-100);
	border-radius: var(--shop-radius);
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
.details-slider-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	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%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
.details-layer-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.details-layer-base {
	position: relative;
	z-index: 0;
	width: 100%;
	height: 100%;
}
.details-layer-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	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 {
		aspect-ratio: 1 / 1;
	}
	.details-slider-item img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.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;
}
.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;
	border: 1px solid var(--shop-gray-200);
}

/* 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: center;
	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: 60px;
	height: 60px;
	flex-shrink: 0;
	border-radius: var(--shop-radius);
	overflow: hidden;
	background: var(--shop-gray-100);
}
.konto-order-position-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.konto-order-position-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	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: center;
	min-width: 40px;
}
.konto-order-position-price {
	font-weight: 600;
	text-align: right;
	min-width: 80px;
}

/* 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-info {
		flex: 1 1 calc(100% - 76px);
	}
	.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-designer-section {
	margin: 1.5rem 0;
	padding: 1.25rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 12px;
	text-align: center;
}

.shop-btn-designer {
	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-designer:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
	color: #764ba2;
}

.shop-btn-designer svg {
	flex-shrink: 0;
}

.designer-hint {
	margin: 0.75rem 0 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.875rem;
}

@media (max-width: 576px) {
	.details-designer-section {
		padding: 1rem;
	}
	.shop-btn-designer {
		width: 100%;
		padding: 0.75rem 1rem;
		font-size: 0.9375rem;
	}
}

/* Designer Popup Modal */
.designer-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;
}

.designer-popup-overlay.active {
	opacity: 1;
	visibility: visible;
}

.designer-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;
}

.designer-popup-overlay.active .designer-popup {
	transform: scale(1);
}

.designer-popup-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 20px;
	background: #2d3139;
	border-bottom: 1px solid #3d4149;
}

.designer-popup-title {
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
}

.designer-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;
}

.designer-popup-close:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.designer-popup-body {
	flex: 1;
	overflow: hidden;
}

.designer-popup-body iframe {
	width: 100%;
	height: 100%;
	border: none;
}

@media (max-width: 768px) {
	.designer-popup {
		width: 100vw;
		height: 100vh;
		max-width: none;
		border-radius: 0;
	}
}

/* Designer Success Toast */
.designer-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;
}

.designer-success-toast.show {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
}

.designer-success-toast svg {
	flex-shrink: 0;
	color: #fff;
}

.designer-success-toast div {
	display: flex;
	flex-direction: column;
}

.designer-success-toast strong {
	font-size: 1rem;
	font-weight: 600;
}

.designer-success-toast span {
	font-size: 0.875rem;
	opacity: 0.9;
}

.designer-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;
}

.designer-success-toast .btn-view-cart:hover {
	background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 576px) {
	.designer-success-toast {
		left: 1rem;
		right: 1rem;
		bottom: 1rem;
		transform: translateX(0) translateY(100px);
		flex-wrap: wrap;
	}
	.designer-success-toast.show {
		transform: translateX(0) translateY(0);
	}
	.designer-success-toast .btn-view-cart {
		width: 100%;
		text-align: center;
		margin-top: 0.5rem;
	}
}


/* --------------------------------------------------------------------------
   Cross-Selling Overrides (ueberschreibt style.css)
   -------------------------------------------------------------------------- */

/* Slider: gleiche Hoehe + Gap */
.cross-selling-slider {
	margin: 0 -12px;
}
.cross-selling-slider .slick-track {
	display: flex !important;
	gap: 10px;
}
.cross-selling-slider .slick-slide {
	height: auto;
	padding: 0 12px;
}
.cross-selling-slider .slick-slide > div {
	display: flex;
	width: 100%;
}

/* Cards */
.cross-selling-item {
	box-shadow: none;
	border: 1px solid var(--shop-gray-200);
	transition: border-color 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
}
.cross-selling-item:hover {
	box-shadow: none;
	transform: none;
	border-color: var(--shop-gray-400);
}
.cross-selling-link {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.cross-selling-info {
	text-align: center;
	flex: 1;
}
.cross-selling-actions {
	flex-shrink: 0;
}
.cross-selling-item:hover .cross-selling-image img {
	transform: scale(1.02);
}


/* --------------------------------------------------------------------------
   Zuletzt angesehen (Recently Viewed) — kopiert von Cross-Selling
   -------------------------------------------------------------------------- */

/* Section */
.recently-viewed-section {
	margin-top: 60px;
	padding: 40px 0;
	border-top: 1px solid #eee;
	position: relative;
}
.recently-viewed-header {
	text-align: center;
	margin-bottom: 30px;
}
.recently-viewed-title {
	font-size: 24px;
	font-weight: 600;
	color: #333;
	margin: 0;
	position: relative;
	display: inline-block;
}
.recently-viewed-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 2px;
	background: #d4a5a5;
}

/* Slider */
.recently-viewed-slider {
	margin: 0 -12px;
}
.recently-viewed-slider .slick-track {
	display: flex !important;
	gap: 10px;
}
.recently-viewed-slider .slick-slide {
	height: auto;
	padding: 0 12px;
}
.recently-viewed-slider .slick-slide > div {
	display: flex;
	width: 100%;
}

/* Cards */
.recently-viewed-item {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: none;
	border: 1px solid var(--shop-gray-200);
	transition: border-color 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
}
.recently-viewed-item:hover {
	box-shadow: none;
	transform: none;
	border-color: var(--shop-gray-400);
}
.recently-viewed-link {
	flex: 1;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
}
.recently-viewed-image {
	position: relative;
	padding-top: 100%;
	overflow: hidden;
	background: #f8f8f8;
}
.recently-viewed-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.recently-viewed-item:hover .recently-viewed-image img {
	transform: scale(1.02);
}

/* Info */
.recently-viewed-info {
	padding: 15px;
	text-align: center;
	flex: 1;
}
.recently-viewed-name {
	font-size: 15px;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.recently-viewed-subtitle {
	font-size: 12px;
	color: #888;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.recently-viewed-price {
	font-size: 16px;
	font-weight: 700;
	color: #d4a5a5;
}
.recently-viewed-price-hint {
	font-size: 12px;
	font-weight: 400;
	color: #888;
}

/* Actions */
.recently-viewed-actions {
	display: flex;
	gap: 8px;
	padding: 0 15px 15px;
	flex-shrink: 0;
}
.recently-viewed-btn-details {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 12px;
	background: #f5f5f5;
	border: none;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 500;
	color: #555;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
}
.recently-viewed-btn-details:hover {
	background: #e8e8e8;
	color: #333;
	text-decoration: none;
}
.recently-viewed-btn-cart {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: #d4a5a5;
	border: none;
	border-radius: 6px;
	color: #fff;
	cursor: pointer;
	transition: all 0.2s ease;
}
.recently-viewed-btn-cart:hover {
	background: #c49090;
}
.recently-viewed-btn-cart.is-loading {
	opacity: 0.7;
	pointer-events: none;
}
.recently-viewed-btn-cart.is-added {
	background: #5cb85c;
}

/* Navigation */
.recently-viewed-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	padding: 0 5px;
}
.recently-viewed-prev,
.recently-viewed-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);
}
.recently-viewed-prev:hover,
.recently-viewed-next:hover {
	background: #d4a5a5;
	border-color: #d4a5a5;
	color: #fff;
}
.recently-viewed-prev:disabled,
.recently-viewed-next:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}
.recently-viewed-prev {
	margin-left: -22px;
}
.recently-viewed-next {
	margin-right: -22px;
}

/* Responsive */
@media (max-width: 1200px) {
	.recently-viewed-prev {
		margin-left: -10px;
	}
	.recently-viewed-next {
		margin-right: -10px;
	}
}
@media (max-width: 992px) {
	.recently-viewed-section {
		margin-top: 40px;
		padding: 30px 0;
	}
	.recently-viewed-title {
		font-size: 20px;
	}
	.recently-viewed-nav {
		display: none;
	}
	.recently-viewed-name {
		font-size: 14px;
	}
	.recently-viewed-price {
		font-size: 15px;
	}
	.recently-viewed-btn-details {
		padding: 8px 10px;
		font-size: 12px;
	}
	.recently-viewed-btn-cart {
		width: 38px;
		height: 38px;
	}
}
@media (max-width: 576px) {
	.recently-viewed-section {
		margin-top: 30px;
		padding: 20px 0;
	}
	.recently-viewed-info {
		padding: 12px;
	}
	.recently-viewed-actions {
		padding: 0 12px 12px;
	}
}


/* --------------------------------------------------------------------------
   Cookie Consent Banner
   -------------------------------------------------------------------------- */
.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 -4px 20px rgba(0,0,0,.12);
	padding: 1.25rem 0;
}

.cookie-consent-banner .container {
	max-width: 960px;
}

.cookie-consent-text {
	margin-bottom: 1rem;
}

.cookie-consent-text p {
	margin: 0;
	font-size: 0.875rem;
	color: var(--shop-gray-600);
	line-height: 1.5;
}

.cookie-consent-text a {
	color: var(--shop-primary);
	text-decoration: underline;
}

.cookie-consent-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.cookie-consent-btn-accept {
	background: var(--shop-primary);
	color: #fff;
	border: 1px solid var(--shop-primary);
	padding: 0.5rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 4px;
}

.cookie-consent-btn-accept:hover {
	background: var(--shop-primary-hover);
	border-color: var(--shop-primary-hover);
	color: #fff;
}

.cookie-consent-btn-essential {
	background: #fff;
	color: var(--shop-dark);
	border: 1px solid var(--shop-gray-200);
	padding: 0.5rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 4px;
}

.cookie-consent-btn-essential:hover {
	background: var(--shop-gray-100);
	border-color: var(--shop-gray-400);
}

.cookie-consent-btn-settings {
	background: transparent;
	color: var(--shop-gray-600);
	border: none;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	text-decoration: underline;
}

.cookie-consent-btn-settings:hover {
	color: var(--shop-dark);
}

.cookie-consent-btn-save {
	background: #fff;
	color: var(--shop-dark);
	border: 1px solid var(--shop-gray-200);
	padding: 0.5rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 4px;
}

.cookie-consent-btn-save:hover {
	background: var(--shop-gray-100);
	border-color: var(--shop-gray-400);
}

/* Detail-Ansicht: Kategorie-Toggles */
.cookie-consent-details {
	margin-bottom: 1rem;
}

.cookie-consent-category {
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--shop-gray-200);
}

.cookie-consent-category:last-of-type {
	border-bottom: none;
	margin-bottom: 0.75rem;
}

.cookie-consent-category strong {
	font-size: 0.9rem;
	color: var(--shop-dark);
}

.cookie-consent-category .text-muted {
	font-size: 0.8rem;
}

.cookie-consent-category .form-check-input {
	width: 2.5rem;
	height: 1.25rem;
	cursor: pointer;
}

.cookie-consent-category .form-check-input:disabled {
	opacity: 0.7;
	cursor: default;
}

.cookie-consent-category .form-check-input:checked {
	background-color: var(--shop-primary);
	border-color: var(--shop-primary);
}

/* Mobile */
@media (max-width: 576px) {
	.cookie-consent-banner {
		padding: 1rem 0;
	}
	.cookie-consent-actions {
		flex-direction: column;
	}
	.cookie-consent-actions .btn {
		width: 100%;
		text-align: center;
	}
	.cookie-consent-btn-settings {
		text-align: center;
	}
}

/* --------------------------------------------------------------------------
   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;
}
