/* ==========================================================================
   _SHOP.CSS - notizblock24 Theme Overrides
   Nur Regeln, die sich von der Default-shop.css unterscheiden oder neu sind.
   Wird nach shop.css geladen und überschreibt gezielt die Theme-spezifischen Styles.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties (komplett verschieden)
   -------------------------------------------------------------------------- */
:root {
	--shop-primary: #7a9d6b; /* #f0932b; */
	--shop-primary-hover: #6b8b5d; /* #d4821f; */
	--shop-primary-light: #e6efe3; /* #fff3e6; */
	--shop-secondary: #474a57;
	--shop-accent: #e8a124;
	/* CTA-Farbe für Warenkorb-/Bestellabschluss-Buttons (positiv, "Go") */
	--shop-cta: #7a9d6b;
	--shop-cta-hover: #6b8b5d;
	--shop-dark: #333333;
	--shop-gray-800: #4a4a4a;
	--shop-gray-600: #645f59;
	--shop-gray-500: #798490;
	--shop-gray-400: #a29e9a;
	--shop-gray-300: #c1b49d;
	--shop-gray-200: #e5ded5;
	--shop-gray-100: #f8f5f1;
	--shop-white: #fff;
	--shop-success: #007e4e;
	--shop-danger: #c20017;
	--shop-info: #005b99;
	--shop-warning: #974200;
	--shop-footer-bg: #2b3136;
	--shop-footer-text: #a29e9a;
	--shop-footer-heading: #e5ded5;

	--shop-font-body: 'Nunito', 'Lato', sans-serif;
	--shop-font-heading: 'Roboto Slab', 'Montserrat', serif;

	--shop-radius: 4px;
	--shop-radius-lg: 8px;
	--shop-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
	--shop-shadow: 0 2px 8px rgba(0,0,0,0.08);
	--shop-shadow-lg: 0 4px 16px rgba(0,0,0,0.10);
	--shop-transition: 0.2s ease;

	--shop-container-max: 1280px;
	--shop-navbar-height: 46px;
}

/* --------------------------------------------------------------------------
   2. Base / Typography
   -------------------------------------------------------------------------- */
/* body: Theme fügt background-color hinzu */
body {
	font-family: var(--shop-font-body);
	color: var(--shop-dark);
	line-height: 1.6;
	background-color: var(--shop-gray-100);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   3. Header mit Logo, Suche und Icons
   -------------------------------------------------------------------------- */

/* shop-header: anderer border-bottom-Wert */
.shop-header {
	background: var(--shop-white);
	padding: 1rem 0;
	border-bottom: 1px solid var(--shop-gray-100);
}

/* shop-navbar: Theme fügt border-bottom und position hinzu */
.shop-navbar {
	background: var(--shop-white);
	box-shadow: var(--shop-shadow-sm);
	border-bottom: 1px solid #e5ded5;
	z-index: 1030;
	padding: 0;
	position: relative;
}

/* nav-link active-State: Theme ergänzt .active als Selektor */
.shop-navbar .navbar-nav .nav-link:hover,
.shop-navbar .navbar-nav .nav-link:focus,
.shop-navbar .navbar-nav .nav-link.active {
	color: var(--shop-primary);
}

/* --------------------------------------------------------------------------
   4. Breadcrumbs
   -------------------------------------------------------------------------- */
/* Theme: weißer Hintergrund + border-bottom statt grauem Hintergrund */
.shop-breadcrumb {
	padding: 0.875rem 0;
	background: var(--shop-white);
	border-bottom: 1px solid var(--shop-gray-200);
	font-size: 0.75rem;
	letter-spacing: 0.05em;
}

/* Theme: text-transform: none statt uppercase */
.shop-breadcrumb .breadcrumb-item {
	text-transform: none;
	font-weight: 500;
}

/* --------------------------------------------------------------------------
   6. Product Listing
   -------------------------------------------------------------------------- */

/* listing-card:hover: Theme ergänzt primary border + shadow */
.listing-card:hover {
	border-color: var(--shop-primary);
	box-shadow: var(--shop-shadow);
	color: inherit;
}

/* listing-card-title: Theme nutzt font-body und kleinere Schrift */
.listing-card-title,
h3.listing-card-title{
	font-family: var(--shop-font-body);
	font-size: 1rem !important;
	font-weight: 400 !important;
	color: var(--shop-dark);
	margin-bottom: 0.6rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.3;
}

/* listing-card-price: Theme nutzt font-body statt font-heading */
.listing-card-price {
	font-family: var(--shop-font-body);
	font-size: 1rem;
	font-weight: 700;
	color: var(--shop-primary);
	margin-top: auto;
}

/* Responsive Listing: Theme blendet breadcrumb NICHT aus, zeigt toolbar als column */
@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;
	}
}

/* --------------------------------------------------------------------------
   8. Cart / Warenkorb
   -------------------------------------------------------------------------- */

/* cart-variant-tag: Theme nutzt weißen Hintergrund + dunkleren Border */
.shop-cart-variant-tag {
	display: inline-block;
	font-size: 0.73rem;
	color: var(--shop-gray-600);
	background: var(--shop-white);
	border: 1px solid var(--shop-gray-400);
	border-radius: 99px;
	padding: 0.15rem 0.6rem;
	white-space: nowrap;
	line-height: 1.4;
}

/* --------------------------------------------------------------------------
   10. Buttons (Shop-specific)
   -------------------------------------------------------------------------- */

/* btn-nb24: Neuer Theme-spezifischer Button */
.btn-nb24 {
    background: var(--shop-primary);
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--shop-radius);
    font-weight: 700;
    font-family: var(--shop-font-body);
    transition: background var(--shop-transition);
}
.btn-nb24:hover { background: var(--shop-primary-hover); color: #fff; }

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */

/* shop-footer: Theme nutzt CSS-Variablen statt hardcodierter Farben */
.shop-footer {
	background: var(--shop-footer-bg);
	color: var(--shop-footer-text);
	padding: 0 0;
	font-size: 0.9rem;
}

/* shop-footer-heading: Theme nutzt font-body, andere letter-spacing und margin */
.shop-footer-heading {
	color: var(--shop-footer-heading);
	font-family: var(--shop-font-body);
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 0.75rem;
}

/* shop-footer a: Theme nutzt CSS-Variable für Linkfarbe */
.shop-footer a {
	color: var(--shop-footer-text);
	text-decoration: none;
	transition: color var(--shop-transition);
}
.shop-footer a:hover {
	color: var(--shop-white);
}

/* shop-footer-links: Theme ergänzt eigene Link-Farben und Hover */
.shop-footer-links li a {
	color: var(--shop-footer-text);
	font-size: 0.85rem;
}
.shop-footer-links li a:hover {
	color: var(--shop-white);
}

/* Neue Theme-spezifische Footer-Utility-Klassen */
.shop-footer-phone { color: var(--shop-primary); font-size: 1.1rem; font-weight: 700; }
.shop-footer-email { color: var(--shop-footer-text); font-size: 0.85rem; }

/* shop-footer-social: Theme nutzt dunkleres rgba-Hintergrundcolor */
.shop-footer-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	color: var(--shop-footer-text);
	transition: all var(--shop-transition);
}
.shop-footer-social:hover {
	background: var(--shop-primary);
	color: var(--shop-white);
}

/* shop-footer-badge: Theme nutzt halbtransparenten dunklen Hintergrund */
.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(255,255,255,0.12);
	border-radius: 4px;
	color: var(--shop-footer-text);
	background: rgba(255,255,255,0.06);
}
.shop-footer-badge svg {
	flex-shrink: 0;
	opacity: 0.7;
}

/* shop-footer-bottom: Theme ergänzt color */
.shop-footer-bottom {
	background: #1e2226;
	color: var(--shop-footer-text);
	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;
}

/* Cross-Channel Logos im Footer (Theme-neu) */
.shop-footer-channels {
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 1rem 0;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.shop-footer-channels img, .shop-footer-channels span {
    opacity: 0.5;
    filter: grayscale(1) brightness(2);
    transition: opacity 0.2s;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--shop-footer-text);
}
.shop-footer-channels img:hover, .shop-footer-channels span:hover { opacity: 0.9; }


/* ==========================================================================
   Theme-exklusive Blöcke (existieren nicht in der Default-shop.css)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Merkzettel Styles
   -------------------------------------------------------------------------- */
.details-wunschdaten { padding: 0; }
.details-wunschdaten-head {
	font-size: 17px;
	font-weight: 600;
	line-height: 30px;
}
.merkzettel-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	background: #fff;
	border: 2px solid #ddd;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	color: #666;
	transition: all 0.2s ease;
}
.merkzettel-button:hover { border-color: #e8b4b8; color: #d4a5a5; }
.merkzettel-button.is-active {
	background: #fef6f3;
	border-color: #e8b4b8;
	color: #d4a5a5;
}
.merkzettel-button.is-active .heart-empty { display: none !important; }
.merkzettel-button.is-active .heart-filled { display: block !important; color: #e8b4b8; }
.merkzettel-button .heart-filled { display: none; }
.merkzettel-button.is-loading { opacity: 0.6; pointer-events: none; }
.merkzettel-button { justify-content: center; }
.merkzettel-icon { display: flex; align-items: center; }

.details-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}
.details-actions {
	flex-direction: column;
	align-items: stretch;
}
.add-to-cart-button {
	display: inline-block;
	background-color: #3c763d;
	color: white;
	border: none;
	border-radius: 5px;
	line-height: 50px;
	width: 100%;
	text-align: center;
	text-shadow: 1px 2px 3px rgba(0,0,0,0.15);
	transition: all 0.6s ease-out;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
}
.add-to-cart-button:hover {
	background-color: #539554;
	color: white;
	border: none;
	border-radius: 5px;
	line-height: 50px;
	width: 100%;
	text-align: center;
	text-shadow: 2px 3px 3px rgba(0,0,0,0.25);
}

.zusatzartikel-item:has(.zusatzartikel-checkbox:checked) {
	border-color: #d4a5a5;
	background: #fef6f3;
}
.zusatzartikel-checkbox {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.zusatzartikel-checkbox:checked ~ .zusatzartikel-check {
	background: #d4a5a5;
	border-color: #d4a5a5;
}
.zusatzartikel-checkbox:checked ~ .zusatzartikel-check .check-icon {
	opacity: 1;
	transform: scale(1);
}
.zusatzartikel-checkbox:checked ~ .zusatzartikel-price { color: #d4a5a5; }

/* Leerer Merkzettel */
.merkzettel-empty {
	text-align: center;
	padding: 80px 20px;
	color: #888;
}
.merkzettel-empty-icon { margin-bottom: 25px; }
.merkzettel-empty h3 { font-size: 22px; color: #666; margin-bottom: 10px; }
.merkzettel-empty p { font-size: 15px; margin-bottom: 25px; }

/* Merkzettel Card */
.merkzettel-item { margin-bottom: 30px; }
.merkzettel-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.merkzettel-card:hover { box-shadow: 0 5px 20px rgba(0,0,0,0.1); transform: translateY(-2px); }
.merkzettel-card-image {
	display: block;
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: #f9f9f9;
}
.merkzettel-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.merkzettel-card:hover .merkzettel-card-image img { transform: scale(1.05); }
.merkzettel-card-image .no-image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
}
.merkzettel-card-body { padding: 15px; flex-grow: 1; }
.merkzettel-card-title {
	font-size: 15px;
	font-weight: 600;
	color: #333;
	text-decoration: none;
	display: block;
	margin-bottom: 8px;
	line-height: 1.4;
}
.merkzettel-card-title:hover { color: #666; }
.merkzettel-card-sku { font-size: 12px; color: #999; margin-bottom: 8px; }
.merkzettel-card-price { font-size: 18px; font-weight: 600; color: #333; margin-bottom: 8px; }
.merkzettel-card-date { font-size: 11px; color: #aaa; }
.merkzettel-card-actions { padding: 0 15px 15px; }
.merkzettel-card-actions .btn { width: 100%; }
.merkzettel-remove {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	background: rgba(255,255,255,0.9);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	transition: all 0.2s ease;
	z-index: 10;
}
.merkzettel-remove:hover { background: #ff6b6b; color: #fff; }

@media (max-width: 767px) {
  .merkzettel-button { justify-content: center; }
  .details-actions { flex-direction: column; align-items: stretch; }
  .merkzettel-card-image { height: 180px; }
}

/* --------------------------------------------------------------------------
   Produkt Downloads
   -------------------------------------------------------------------------- */
.product-downloads {
	margin-top: 40px;
	padding: 30px;
	background: #fafafa;
	border-radius: 12px;
	border: 1px solid #eee;
}
.product-downloads-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e5e5e5;
}
.product-downloads-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin: 0;
}
.product-downloads-count {
	font-size: 13px;
	color: #888;
	background: #eee;
	padding: 4px 12px;
	border-radius: 12px;
}
.product-downloads-list { display: flex; flex-direction: column; gap: 10px; }
.download-title-icon { color: #888; }
.product-download-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px 18px;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 10px;
	text-decoration: none;
	color: inherit;
	transition: all 0.2s ease;
}
.product-download-item:hover {
	border-color: #d4a5a5;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	transform: translateY(-1px);
	text-decoration: none;
	color: inherit;
}
.product-download-item:hover .download-action { background: #e8b4b8; color: #fff; }
.download-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: #f0f0f0;
	color: #666;
}
.download-icon-pdf { background: #fee2e2; color: #dc2626; }
.download-icon-zip { background: #fef3c7; color: #d97706; }
.download-icon-doc { background: #dbeafe; color: #2563eb; }
.download-icon-xls { background: #d1fae5; color: #059669; }
.download-icon-img { background: #ede9fe; color: #7c3aed; }
.download-icon-video { background: #fce7f3; color: #db2777; }
.download-icon-audio { background: #e0e7ff; color: #4f46e5; }
.download-info { flex-grow: 1; min-width: 0; }
.download-title {
	font-size: 15px;
	font-weight: 600;
	color: #333;
	margin-bottom: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.download-subtitle { font-size: 13px; color: #666; margin-bottom: 2px; }
.download-text { font-size: 12px; color: #888; line-height: 1.4; }
.download-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 3px;
	flex-shrink: 0;
}
.download-size { font-size: 12px; color: #888; }
.download-type {
	font-size: 10px;
	font-weight: 600;
	color: #999;
	background: #f0f0f0;
	padding: 2px 8px;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.download-action {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #f5f5f5;
	color: #888;
	transition: all 0.2s ease;
}

@media (max-width: 767px) {
  .product-downloads { padding: 20px; margin-top: 30px; }
  .product-downloads-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .product-download-item { flex-wrap: wrap; padding: 12px 15px; }
  .download-info { flex-basis: calc(100% - 70px); }
  .download-meta { flex-direction: row; gap: 10px; margin-top: 8px; margin-left: 59px; width: calc(100% - 59px); }
  .download-action { display: none; }
}

/* --------------------------------------------------------------------------
   Produkt-Bewertungen / Reviews
   -------------------------------------------------------------------------- */
.reviews-section {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid #eee;
}
.reviews-header { margin-bottom: 30px; }
.reviews-title { font-size: 24px; font-weight: 600; color: #333; margin: 0; }
.reviews-summary {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 40px;
	padding: 30px;
	background: #f9f9f9;
	border-radius: 12px;
}
.reviews-summary-left { flex: 0 0 200px; text-align: center; }
.reviews-summary-right { flex: 1; min-width: 250px; }
.reviews-average { margin-bottom: 20px; }
.reviews-average-number { display: block; font-size: 48px; font-weight: 700; color: #333; line-height: 1; }
.reviews-average-stars { margin: 10px 0; }
.reviews-average-stars .star-icon { width: 24px; height: 24px; }
.star-icon { width: 20px; height: 20px; display: inline-block; vertical-align: middle; }
.star-icon.star-full { fill: #e91e8c; color: #e91e8c; }
.star-icon.star-half { color: #e91e8c; }
.star-icon.star-empty { fill: none; stroke: #e91e8c; stroke-width: 1.5; }
.star-icon.star-mini { width: 12px; height: 12px; fill: #e91e8c; }
.review-stars .star-icon { width: 18px; height: 18px; }
.star-rating-input label .star-icon {
	width: 32px;
	height: 32px;
	fill: none;
	stroke: #e91e8c;
	stroke-width: 1.5;
	transition: all 0.15s;
}
.star-rating-input label.active .star-icon { fill: #e91e8c; stroke: #e91e8c; }
.reviews-count { display: block; font-size: 14px; color: #666; }
.btn-review-write {
	display: inline-block;
	padding: 10px 24px;
	background: #e91e8c;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s;
}
.btn-review-write:hover { background: #c4177a; color: #fff; }
.reviews-distribution { max-width: 400px; }
.reviews-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.reviews-bar-label { flex: 0 0 40px; font-size: 14px; color: #666; display: flex; align-items: center; gap: 4px; }
.reviews-bar { flex: 1; height: 10px; background: #e0e0e0; border-radius: 5px; overflow: hidden; }
.reviews-bar-fill { height: 100%; background: #e91e8c; border-radius: 5px; transition: width 0.3s; }
.reviews-bar-percent { flex: 0 0 40px; font-size: 13px; color: #666; text-align: right; }
.review-own-pending {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 20px;
	background: #fff8e1;
	border: 1px solid #ffe082;
	border-radius: 8px;
	margin-bottom: 30px;
}
.review-own-pending-icon { flex-shrink: 0; color: #f9a825; }
.review-own-pending-text { font-size: 14px; color: #5d4037; }
.reviews-list { display: flex; flex-direction: column; gap: 20px; }
.review-item { padding: 25px; background: #fff; border: 1px solid #eee; border-radius: 10px; }
.review-header { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-title { font-weight: 600; color: #333; font-size: 16px; }
.review-verified {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: #2e7d32;
	background: #e8f5e9;
	padding: 4px 10px;
	border-radius: 4px;
}
.review-meta { display: flex; gap: 15px; margin-bottom: 12px; font-size: 13px; color: #888; }
.review-author { font-weight: 500; color: #666; }
.review-text { font-size: 15px; line-height: 1.7; color: #444; margin-bottom: 15px; }
.review-footer { display: flex; justify-content: flex-start; }
.review-helpful-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: #f5f5f5;
	border: 1px solid #ddd;
	border-radius: 20px;
	font-size: 13px;
	color: #666;
	cursor: pointer;
	transition: all 0.2s;
}
.review-helpful-btn:hover:not(.disabled):not(.voted) { background: #e91e8c; border-color: #e91e8c; color: #fff; }
.review-helpful-btn:hover:not(.disabled):not(.voted) svg { stroke: #fff; }
.review-helpful-btn.voted { background: #fce4ec; border-color: #f8bbd9; color: #e91e8c; cursor: default; }
.review-helpful-btn:disabled { opacity: 0.7; cursor: default; }
.reviews-empty { padding: 40px; text-align: center; background: #f9f9f9; border-radius: 10px; color: #666; }
.reviews-empty p { margin: 0 0 10px; }
.reviews-empty p:last-child { margin-bottom: 0; }
.review-form-rating { margin-bottom: 20px; }
.review-form-rating label { display: block; margin-bottom: 10px; font-weight: 500; }
.review-form-rating .required { color: #e91e8c; }
.star-rating-input { display: flex; flex-direction: row; justify-content: flex-start; gap: 5px; }
.star-rating-input input { display: none; }
.star-rating-input label { cursor: pointer; margin: 0; }

@media (max-width: 768px) {
  .reviews-summary { flex-direction: column; gap: 30px; padding: 20px; }
  .reviews-summary-left { flex: none; width: 100%; }
  .star-rating-input label .star-icon { width: 36px; height: 36px; }
  .reviews-distribution { max-width: none; }
  .review-item { padding: 20px 15px; }
  .review-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 480px) {
  .reviews-section { margin-top: 40px; padding-top: 30px; }
  .reviews-title { font-size: 20px; }
  .reviews-average-number { font-size: 40px; }
  .review-meta { flex-direction: column; gap: 5px; }
}

/* --------------------------------------------------------------------------
   Passwort Reset
   -------------------------------------------------------------------------- */
.password-reset-section {
	padding: 60px 0;
	min-height: 60vh;
	background: #f8f9fa;
}
.password-reset-box {
	background: #fff;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}
.password-reset-box h2 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #333;
	text-align: center;
}
.password-reset-box .alert { border-radius: 6px; }
.password-reset-box .alert i { margin-right: 8px; }
.password-reset-form .form-floating { margin-bottom: 15px; }
.password-reset-form .form-control { border-radius: 6px; }
.password-reset-form .form-control:focus {
	border-color: #28a745;
	box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15);
}
.password-reset-form .btn-success { padding: 12px 24px; font-weight: 600; border-radius: 6px; }

@media (max-width: 768px) {
  .password-reset-section { padding: 40px 0; }
  .password-reset-box { padding: 30px 20px; }
}

/* --------------------------------------------------------------------------
   Seiten / Landingpages
   -------------------------------------------------------------------------- */
.page-content { min-height: 50vh; }
.page-inhalt-titel { font-size: 28px; font-weight: 600; color: #333; margin: 0 0 20px 0; }
.page-inhalt-content {
	font-size: 16px;
	line-height: 1.8;
	color: #444;
}
.page-inhalt-content h1 { font-size: 36px; font-weight: 600; margin: 0 0 25px 0; color: #333; }
.page-inhalt-content h2 { font-size: 28px; font-weight: 600; margin: 35px 0 18px 0; color: #333; }
.page-inhalt-content h3 { font-size: 22px; font-weight: 600; margin: 30px 0 15px 0; color: #333; }
.page-inhalt-content h4 { font-size: 18px; font-weight: 600; margin: 25px 0 12px 0; color: #333; }
.page-inhalt-content p { margin-bottom: 18px; }
.page-inhalt-content ul,
.page-inhalt-content ol { margin-bottom: 20px; padding-left: 25px; }
.page-inhalt-content li { margin-bottom: 8px; }
.page-inhalt-content a { color: #d4a5a5; text-decoration: underline; }
.page-inhalt-content a:hover { color: #c49090; }
.page-inhalt-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 20px 0; }
.page-inhalt-content blockquote {
	border-left: 4px solid #d4a5a5;
	padding-left: 20px;
	margin: 25px 0;
	font-style: italic;
	color: #666;
}
.page-inhalt-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.page-inhalt-content th,
.page-inhalt-content td { padding: 12px 15px; border: 1px solid #e0e0e0; text-align: left; }
.page-inhalt-content th { background: #f5f5f5; font-weight: 600; }
.page-inhalt-content hr { border: none; height: 1px; background: #e0e0e0; margin: 30px 0; }
.page-section { padding: 50px 0; }
.page-section:first-child { padding-top: 40px; }
.page-section:nth-child(even) { background: #f9f9f9; }
.page-section .row + .row { margin-top: 40px; }
.section-heading { margin-bottom: 50px; text-align: center; }
.section-heading .hr {
	border-top: 1px dotted;
	text-align: center;
	max-width: 100px;
	margin: 40px auto;
	margin-bottom: 40px;
}
.section-heading .hr:after {
	content: '\f004';
	font-family: FontAwesome;
	display: inline-block;
	position: relative;
	top: -20px;
	padding: 0 10px;
	font-size: 28px;
}
.section-heading h2 { z-index: 99; text-align: center; }
#merkzettel .section-heading h1 { margin-bottom: 10px; }

@media (max-width: 991px) {
  .page-inhalt-titel { font-size: 24px; }
  .page-inhalt-content h1 { font-size: 30px; }
  .page-inhalt-content h2 { font-size: 24px; }
  .page-section { padding: 40px 0; }
}
@media (max-width: 767px) {
  .page-inhalt-titel { font-size: 22px; }
  .page-inhalt-content { font-size: 15px; }
  .page-inhalt-content h1 { font-size: 26px; }
  .page-inhalt-content h2 { font-size: 22px; }
  .page-inhalt-content h3 { font-size: 19px; }
  .page-section { padding: 30px 0; }
}
@media (max-width: 576px) {
  .page-inhalt-content h1 { font-size: 24px; }
  .page-inhalt-content th,
  .page-inhalt-content td { padding: 8px 10px; font-size: 14px; }
  .page-section { padding: 25px 0; }
}
