/*
WordPress / WooCommerce specific fixes.
Do not edit the Webflow-exported CSS files directly — put all overrides here,
loaded after them, so `wp core update` / re-exports never conflict.
*/

/* Mobile nav dropdown — Webflow's own CSS sets `.nav-menu-wrapper { width: 33.3% }`
 * as a desktop-only rule (the nav sits between logo and icons in a 3-column row) but
 * never resets it back to full width inside the mobile breakpoint. On the live Webflow
 * site the open mobile menu is cloned into a separate `.w-nav-overlay` element that
 * never carries the `.nav-menu-wrapper` class, so it never inherits that width — our
 * copy renders the open menu directly on `.nav-menu-wrapper` instead, so the narrow
 * 33% box leaks through. `.nav-menu-wrapper` is hidden at this breakpoint except when
 * explicitly opened, so resetting it here is safe and only affects the open state. */
@media screen and (max-width: 991px) {
	.nav-menu-wrapper {
		width: 100%;
	}
}

/* Nav user/cart icons — Webflow's own CSS sets `.cart-icon { width: 100% }` but never
 * a matching height rule, so the browser falls back to the <img height="96"> HTML
 * attribute as a literal pixel height. Inside the ~24px-wide cart/user button that
 * squashes the icon into a tall, distorted sliver. Force height to scale with width. */
.user-icon,
.cart-icon {
	height: auto;
}

/* FAQ accordion — single card, chevron rows, KlarZack palette */
.faq-lists-wrapper {
	background: #20211B;
	border: 1px solid rgba(240, 238, 223, 0.12);
	border-radius: 20px;
	padding: 0 32px;
	display: block;
}
.faq-list-wrap {
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	cursor: pointer;
	padding: 28px 0;
	border-bottom: 1px solid rgba(240, 238, 223, 0.12) !important;
}
.faq-list-wrap:last-child {
	border-bottom: none !important;
}
.faq-ques {
	color: #F0EEDF;
	font-weight: 700;
}
.faq-arrow-block {
	background: transparent !important;
	width: auto !important;
	height: auto !important;
	min-width: 0 !important;
	min-height: 0 !important;
	color: #E7B57B;
	transition: transform 0.3s ease;
}
.faq-list-wrap.is-open .faq-arrow-block {
	transform: rotate(180deg);
}
.faq-answer {
	max-height: 0;
	overflow: clip;
	transition: max-height 0.3s ease;
}
.faq-list-wrap.is-open .faq-answer {
	max-height: 600px;
}
.faq-para {
	color: rgba(240, 238, 223, 0.78) !important;
	font-weight: 300 !important;
}
@media (max-width: 767px) {
	.faq-lists-wrapper {
		padding: 0 20px;
	}
}

.kz-pdp-shipping-block .kz-pdp-shipping-subhead {
	color: #F0EEDF !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.02em;
	margin: 18px 0 8px;
}
.kz-pdp-shipping-block .kz-pdp-shipping-subhead:first-child {
	margin-top: 0;
}
.kz-pdp-arrow-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.kz-pdp-arrow-list li {
	position: relative;
	padding-left: 1.4em;
	color: rgba(240, 238, 223, 0.78);
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 6px;
}
.kz-pdp-arrow-list li::before {
	content: "\2192";
	position: absolute;
	left: 0;
	color: #E7B57B;
}

/* About page hero — vertical auto-scroll image walls (both columns scroll upward,
   content duplicated 2x in markup so translateY(-50%) loops seamlessly) */
/* Explicit heights (not 100%) — the Webflow CSS sets .about-hero-marquee to
   height:auto at >=1440px (fine for its original JS-transform layout, but breaks
   a pure-CSS clip+scroll), so these can't just inherit the parent's height. */
.about-hero-marquee-left,
.about-hero-marquee-right,
.about-hero-marquee-track {
	width: 280px !important;
}
.about-hero-marquee-left,
.about-hero-marquee-right {
	overflow: hidden;
	height: 760px !important;
}
@media screen and (min-width: 1440px) {
	.about-hero-marquee-left, .about-hero-marquee-right, .about-hero-marquee-track { width: 320px !important; }
}
@media screen and (min-width: 1920px) {
	.about-hero-marquee-left, .about-hero-marquee-right, .about-hero-marquee-track { width: 341px !important; }
}
@media screen and (max-width: 991px) {
	.about-hero-marquee-left, .about-hero-marquee-right { height: 540px !important; }
	.about-hero-marquee-left, .about-hero-marquee-right, .about-hero-marquee-track { width: 200px !important; }
}
@media screen and (max-width: 767px) {
	.about-hero-marquee-left, .about-hero-marquee-right { height: 390px !important; }
	.about-hero-marquee-left, .about-hero-marquee-right, .about-hero-marquee-track { width: 150px !important; }
}
@media screen and (max-width: 479px) {
	.about-hero-marquee-left, .about-hero-marquee-right { height: 325px !important; }
	.about-hero-marquee-left, .about-hero-marquee-right, .about-hero-marquee-track { width: 100px !important; }
}
.about-hero-marquee-track {
	display: flex;
	flex-direction: column;
	animation: kz-vertical-scroll 26s linear infinite;
}
.about-hero-marquee-right .about-hero-marquee-track {
	animation-direction: reverse;
}
.about-hero-marquee-left:hover .about-hero-marquee-track,
.about-hero-marquee-right:hover .about-hero-marquee-track {
	animation-play-state: paused;
}
@keyframes kz-vertical-scroll {
	from { transform: translateY(0); }
	to { transform: translateY(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.about-hero-marquee-track {
		animation: none;
	}
}

/* Clearfix — WooCommerce's checkout .col2-set (and similar) use floated columns;
   without this the .container wrapping them collapses to near-zero height and
   the floated content visually overlaps whatever follows (e.g. the footer). */
.container::after {
	content: "";
	display: table;
	clear: both;
}

/* Free-shipping banner — cream background, single-line text */
.large-paragraph.free-shipping-banner {
	background-color: #F0EEDF !important;
	color: #20211B !important;
	width: auto !important;
	white-space: nowrap !important;
	padding-left: 1rem;
	padding-right: 1rem;
}

/* WooCommerce buttons — KlarZack sand accent instead of the default purple */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce button.button.alt,
.woocommerce #respond input#submit,
.woocommerce input.button,
.woocommerce input.button.alt,
.single_add_to_cart_button,
.woocommerce a.added_to_cart {
	background-color: #E7B57B !important;
	color: #20211B !important;
	border: none !important;
	border-radius: 10px !important;
	font-weight: 600 !important;
	padding: 12.5px 24px !important;
	text-transform: none !important;
	box-shadow: none !important;
	transition: background-color .25s !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce button.button.alt:hover,
.woocommerce #respond input#submit:hover,
.woocommerce input.button:hover,
.woocommerce input.button.alt:hover,
.single_add_to_cart_button:hover,
.woocommerce a.added_to_cart:hover {
	background-color: #F0EEDF !important;
	color: #20211B !important;
}

/* WooCommerce — dark theme pass. Core/default WC templates assume a light
   background; the site is dark, so base text/border/background colors need
   overriding throughout, not just buttons. */
.woocommerce,
.woocommerce table,
.woocommerce p,
.woocommerce label,
.woocommerce th,
.woocommerce td {
	color: #F0EEDF;
}
.woocommerce .price,
.woocommerce ins {
	color: #F0EEDF;
	text-decoration: none;
}
.woocommerce del {
	color: #90947E;
}

/* Quantity input */
.woocommerce .quantity .qty,
.woocommerce input[type="number"] {
	background: transparent;
	border: 1px solid rgba(240, 238, 223, 0.3);
	color: #F0EEDF;
	border-radius: 6px;
	padding: 10px 12px;
	width: 70px;
}

/* Tables — cart, order review, order details */
.woocommerce table.shop_table,
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	border-color: rgba(240, 238, 223, 0.15);
}
.woocommerce table.shop_table {
	border: 1px solid rgba(240, 238, 223, 0.15);
}
.woocommerce-cart table.cart img {
	border-radius: 8px;
	width: 80px;
}
.woocommerce a.remove {
	color: #E7B57B !important;
	border-color: transparent !important;
}
.woocommerce a.remove:hover {
	background: transparent !important;
	color: #F0EEDF !important;
}

/* Coupon field + all generic text inputs (checkout billing fields, login, etc.) */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-cart .coupon input.input-text,
.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.woocommerce-account input.input-text {
	background: transparent;
	border: 1px solid rgba(240, 238, 223, 0.3);
	color: #F0EEDF;
	border-radius: 6px;
	padding: 12px 14px;
}
.woocommerce form .form-row label {
	color: rgba(240, 238, 223, 0.85);
}
.select2-container .select2-selection--single {
	background: transparent !important;
	border: 1px solid rgba(240, 238, 223, 0.3) !important;
	height: auto !important;
	padding: 6px 0;
}
.select2-selection__rendered {
	color: #F0EEDF !important;
}
.select2-dropdown {
	background: #20211B !important;
	border-color: rgba(240, 238, 223, 0.3) !important;
}
.select2-results__option {
	color: #F0EEDF !important;
}
.select2-results__option--highlighted {
	background: #E7B57B !important;
	color: #20211B !important;
}

/* Checkout — payment method boxes, order review */
.woocommerce-checkout-review-order-table,
.woocommerce-checkout #payment,
.woocommerce-checkout #payment ul.payment_methods {
	background: transparent;
	border-color: rgba(240, 238, 223, 0.15);
}

/* WooCommerce Germanized ships its own build/static/layout-styles.css which sets
 * `.woocommerce-checkout .shop_table { background-color: #eee }` — higher specificity
 * than the rule above, so it wins and leaves the cream table text unreadable on a
 * near-white background. Force it back to transparent. */
.woocommerce-checkout .shop_table,
.woocommerce-checkout .shop_table.woocommerce-checkout-review-order-table {
	background-color: transparent !important;
}
.woocommerce-checkout #payment div.payment_box {
	background: rgba(240, 238, 223, 0.06);
	color: #F0EEDF;
}
.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: rgba(240, 238, 223, 0.06) !important;
}

/* Notices — success / error / info messages */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
	background: rgba(240, 238, 223, 0.08);
	color: #F0EEDF;
	border-top-color: #E7B57B;
}
.woocommerce-message::before,
.woocommerce-info::before {
	color: #E7B57B;
}
.woocommerce-error {
	border-top-color: #c98b7a;
}
.woocommerce-error::before {
	color: #c98b7a;
}

/* Product data tabs (description / reviews) on the single product page */
.woocommerce-tabs ul.tabs li {
	background: transparent;
	border-color: rgba(240, 238, 223, 0.2);
}
.woocommerce-tabs ul.tabs li a {
	color: rgba(240, 238, 223, 0.7);
}
.woocommerce-tabs ul.tabs li.active a {
	color: #F0EEDF;
}
.woocommerce-tabs ul.tabs li.active {
	border-bottom-color: #20211B;
}
.woocommerce-Tabs-panel {
	color: rgba(240, 238, 223, 0.85);
}

/* Star ratings */
.woocommerce .star-rating span::before,
.star-rating::before {
	color: #E7B57B;
}

/* Stock / out-of-stock badges */
.stock.in-stock {
	color: #90947E;
}
.stock.out-of-stock {
	color: #c98b7a;
}

/* ==========================================================================
   Product detail page — redesigned to the Adanola PDP structure, KlarZack palette
   ========================================================================== */
.kz-pdp {
	padding: 3rem 0 4rem;
}
.kz-pdp-grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: clamp(2rem, 4vw, 4rem);
	align-items: start;
}
@media (max-width: 900px) {
	.kz-pdp-grid {
		grid-template-columns: 1fr;
	}
}

/* Gallery */
.kz-pdp-gallery {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: #1a1b16;
}
.kz-pdp-gallery-track {
	display: flex;
	transition: transform 0.4s ease;
}
.kz-pdp-slide {
	flex: 0 0 100%;
	aspect-ratio: 4 / 5;
}
.kz-pdp-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.kz-pdp-gallery-arrow {
	position: absolute;
	bottom: 16px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #F0EEDF;
	color: #20211B;
	border: none;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: background 0.2s ease;
}
.kz-pdp-gallery-arrow:hover {
	background: #E7B57B;
}
.kz-pdp-gallery-prev {
	right: 62px;
}
.kz-pdp-gallery-next {
	right: 16px;
}

/* Info column */
.kz-pdp-badges {
	margin-bottom: 12px;
}
.kz-pdp-badge {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 20px;
	background: rgba(240, 238, 223, 0.1);
	color: #F0EEDF;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.kz-pdp-badge a {
	color: inherit;
	text-decoration: none;
}
.kz-pdp-title {
	margin: 0 0 12px;
	color: #F0EEDF;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	line-height: 1.15;
}
.kz-pdp-price-row {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}
.kz-pdp-price {
	color: #F0EEDF;
	font-size: 1.25rem;
	font-weight: 600;
}
.kz-pdp-price .woocommerce-Price-amount {
	color: #F0EEDF;
}
.kz-pdp-short-desc {
	color: rgba(240, 238, 223, 0.75);
	line-height: 1.6;
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(240, 238, 223, 0.12);
}
.kz-pdp-actions {
	margin-bottom: 16px;
}
.kz-pdp-cart-row {
	display: flex;
	gap: 12px;
	align-items: stretch;
}
.kz-pdp-cart-row form.cart {
	flex: 1;
	display: flex;
	gap: 12px;
}
.kz-pdp-cart-row .quantity {
	flex: 0 0 auto;
}
.kz-pdp-cart-row .single_add_to_cart_button {
	flex: 1;
	width: 100%;
}
.kz-pdp-wishlist {
	flex: 0 0 52px;
	width: 52px;
	border-radius: 10px;
	border: 1px solid rgba(240, 238, 223, 0.3);
	background: transparent;
	color: #F0EEDF;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: border-color 0.2s ease, color 0.2s ease;
}
.kz-pdp-wishlist:hover {
	border-color: #E7B57B;
	color: #E7B57B;
}
.kz-pdp-wishlist.is-active {
	color: #E7B57B;
	border-color: #E7B57B;
}
.kz-pdp-wishlist.is-active svg {
	fill: #E7B57B;
}
.kz-pdp .free-shipping-banner {
	margin-top: 0;
	margin-bottom: 24px;
	width: auto;
	display: inline-flex;
}

/* Accordion (reuses .faq-* structure/behavior) */
.kz-pdp-accordion.faq-lists-wrapper {
	background: transparent;
	border: none;
	padding: 0;
}
.kz-pdp-accordion .faq-list-wrap {
	border-bottom: 1px solid rgba(240, 238, 223, 0.15) !important;
	padding: 18px 0;
}
.kz-pdp-accordion .faq-para p {
	margin: 0 0 0.75em;
}

/* "Mehr für dich" carousel */
.kz-mfy {
	padding: 3rem 0 5rem;
}
.kz-mfy-title {
	color: #F0EEDF;
	font-size: 1.75rem;
	margin-bottom: 24px;
}
.kz-mfy-track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	padding-bottom: 8px;
}
.kz-mfy-card {
	flex: 0 0 260px;
	scroll-snap-align: start;
}
.kz-mfy-card-link {
	text-decoration: none;
	display: block;
}
.kz-mfy-card-image {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: #1a1b16;
	margin-bottom: 10px;
}
.kz-mfy-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.kz-mfy-card-tag {
	position: absolute;
	left: 10px;
	bottom: 10px;
	display: inline-block;
	background: rgba(32, 33, 27, 0.75);
	border-radius: 20px;
	line-height: 1;
	white-space: nowrap;
	max-width: calc(100% - 20px);
	overflow: hidden;
	text-overflow: ellipsis;
}
.kz-mfy-card-tag a {
	display: inline-block;
	padding: 6px 10px;
	color: #F0EEDF !important;
	font-size: 0.7rem !important;
	line-height: 1.2 !important;
	text-decoration: none !important;
}
.kz-mfy-card-name {
	color: #F0EEDF;
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 4px;
}
.kz-mfy-card-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.kz-mfy-card-price {
	color: rgba(240, 238, 223, 0.8);
	font-size: 0.9rem;
}
.kz-mfy-quick-add {
	background: #E7B57B !important;
	color: #20211B !important;
	border-radius: 8px !important;
	padding: 5px 10px !important;
	font-size: 0.7rem !important;
	white-space: nowrap;
}

/* ==========================================================================
   Colour bar + slide-out panel
   ========================================================================== */
.kz-pdp-color-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 12px 16px;
	margin-bottom: 20px;
	border: 1px solid rgba(240, 238, 223, 0.25);
	border-radius: 10px;
	background: transparent;
}
.kz-pdp-color-swatch {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1px solid rgba(240, 238, 223, 0.3);
	flex: 0 0 auto;
}
.kz-pdp-color-name {
	color: #F0EEDF;
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.03em;
}
.kz-pdp-color-more {
	margin-left: auto;
	background: none;
	border: none;
	color: rgba(240, 238, 223, 0.75);
	font-size: 0.8rem;
	text-decoration: underline;
	cursor: pointer;
	padding: 0;
}
.kz-pdp-color-more:hover {
	color: #E7B57B;
}

.kz-color-panel {
	position: fixed;
	inset: 0;
	z-index: 9999;
	visibility: hidden;
	pointer-events: none;
}
.kz-color-panel.is-open {
	visibility: visible;
	pointer-events: auto;
}
.kz-color-panel-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity 0.25s ease;
}
.kz-color-panel.is-open .kz-color-panel-overlay {
	opacity: 1;
}
.kz-color-panel-content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(400px, 90vw);
	background: #20211B;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
	padding: 24px;
}
.kz-color-panel.is-open .kz-color-panel-content {
	transform: translateX(0);
}
.kz-color-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}
.kz-color-panel-header h3 {
	color: #F0EEDF;
	margin: 0;
	font-size: 1.15rem;
}
.kz-color-panel-close {
	background: none;
	border: 1px solid rgba(240, 238, 223, 0.3);
	border-radius: 50%;
	width: 34px;
	height: 34px;
	color: #F0EEDF;
	display: grid;
	place-items: center;
	cursor: pointer;
}
.kz-color-panel-close:hover {
	border-color: #E7B57B;
	color: #E7B57B;
}
.kz-color-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.kz-color-grid-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}
.kz-color-grid-swatch {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 1px solid rgba(240, 238, 223, 0.25);
	display: grid;
	place-items: center;
	color: #F0EEDF;
	transition: border-color 0.2s ease;
}
.kz-color-grid-item:hover .kz-color-grid-swatch {
	border-color: #E7B57B;
}
.kz-color-grid-item.is-current .kz-color-grid-swatch {
	border-color: #E7B57B;
	border-width: 2px;
}
.kz-color-grid-label {
	color: rgba(240, 238, 223, 0.85);
	font-size: 0.78rem;
	text-align: center;
}

/* ==========================================================================
   Size grid
   ========================================================================== */
.kz-pdp-size-block {
	margin-bottom: 20px;
}
.kz-pdp-size-label {
	color: rgba(240, 238, 223, 0.7);
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	margin-bottom: 10px;
}
.kz-pdp-size-selected {
	color: #F0EEDF;
	font-weight: 600;
}
.kz-pdp-size-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
	gap: 8px;
}
.kz-pdp-size-pill {
	padding: 12px 4px;
	background: transparent;
	border: 1px solid rgba(240, 238, 223, 0.3);
	border-radius: 8px;
	color: #F0EEDF;
	font-size: 0.85rem;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.kz-pdp-size-pill:hover {
	border-color: #E7B57B;
}
.kz-pdp-size-pill.is-selected {
	background: #F0EEDF;
	color: #20211B;
	border-color: #F0EEDF;
}

/* ==========================================================================
   Add-to-cart bar: "Choose your size" placeholder <-> real WooCommerce form
   ========================================================================== */
.kz-pdp-actions .variations,
.kz-pdp-actions .reset_variations {
	display: none !important;
}
.kz-pdp-cart-row {
	display: flex;
	gap: 12px;
	align-items: stretch;
}
.kz-pdp-cart-row .woocommerce-variation-add-to-cart,
.kz-pdp-cart-row form.cart {
	flex: 1;
	display: flex;
	gap: 12px;
}
.kz-pdp-cart-row .single_variation_wrap {
	flex: 1;
	display: flex;
}
.kz-pdp-cart-row .woocommerce-variation-price {
	display: none;
}
.kz-pdp-choose-size-placeholder {
	display: none;
	flex: 1;
	background: rgba(240, 238, 223, 0.08);
	color: rgba(240, 238, 223, 0.5);
	border: none;
	border-radius: 10px;
	padding: 12.5px 24px;
	font-weight: 600;
	cursor: not-allowed;
}
#kz-cart-row.kz-size-not-selected .woocommerce-variation-add-to-cart,
#kz-cart-row.kz-size-not-selected form.cart {
	display: none !important;
}
#kz-cart-row.kz-size-not-selected .kz-pdp-choose-size-placeholder {
	display: block;
}

/* Shop archive — category filter tabs */
.tabs-menu {
	flex-wrap: wrap;
	margin-bottom: 2.71rem !important;
}
.tabs-menu .kz-tab-link {
	border-radius: 10px !important;
	background-color: rgba(255, 255, 255, 0.07) !important;
	filter: none !important;
	text-decoration: none !important;
	transition: background-color 0.2s ease;
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 15.5rem;
	height: 51px;
	padding: 0 1rem;
	text-align: center;
	white-space: nowrap;
}
.tabs-menu .kz-tab-link .text-block-4,
.tabs-menu .kz-tab-link .text-block-2 {
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
}

.overflow-hidden.shop-overflow,
.shop-image {
	border-radius: 10px !important;
}
.shop-image {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block !important;
}
.overflow-hidden.shop-overflow {
	aspect-ratio: 4 / 5;
}

/* Shop grid — Adanola-style product card */
.kz-shop-card {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.kz-shop-card-media {
	position: relative;
}
.kz-shop-card-media-link {
	display: block;
}
.kz-shop-wishlist {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(240, 238, 223, 0.9);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #20211B;
	cursor: pointer;
	padding: 0;
}
.kz-shop-wishlist.is-active svg {
	fill: #E7B57B;
	stroke: #E7B57B;
}
.kz-shop-quick-add {
	background: #20211B;
	color: #F0EEDF;
	border: none;
	border-radius: 6px;
	padding: 5px 10px;
	font-size: 0.65rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}
.kz-shop-quick-add:hover {
	background: #E7B57B;
	color: #20211B;
}
.kz-shop-quick-panel {
	position: absolute;
	right: 0;
	top: 100%;
	margin-top: 6px;
	background: #20211B;
	border-radius: 8px;
	padding: 8px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 6px;
	width: 200px;
	z-index: 2;
}
.kz-shop-quick-panel[hidden] {
	display: none;
}
.kz-shop-quick-size {
	background: rgba(255, 255, 255, 0.08);
	color: #F0EEDF;
	border: 1px solid rgba(240, 238, 223, 0.2);
	border-radius: 6px;
	padding: 6px 2px;
	font-size: 0.68rem;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease;
}
.kz-shop-quick-size:hover {
	background: #E7B57B;
	color: #20211B;
	border-color: #E7B57B;
}
.kz-shop-quick-size.is-added {
	background: #E7B57B;
	color: #20211B;
}
.kz-shop-swatches {
	display: flex;
	gap: 6px;
	margin-top: 10px;
}
.kz-shop-swatch {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid transparent;
	box-shadow: 0 0 0 1px rgba(240, 238, 223, 0.25);
	display: inline-block;
}
.kz-shop-swatch.is-current {
	border-color: #E7B57B;
	box-shadow: none;
}
.kz-shop-card-title-link {
	display: block;
	margin-top: 10px;
	text-decoration: none !important;
}
.kz-shop-card-footer {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 4px;
}
.kz-shop-card-footer .shop-item-price {
	font-size: 0.8rem !important;
}
.tabs-menu .kz-tab-link .text-block-4,
.tabs-menu .kz-tab-link .text-block-2 {
	color: #F0EEDF;
}
.tabs-menu .kz-tab-link.w--current {
	background-color: #E7B57B !important;
}
.tabs-menu .kz-tab-link.w--current .text-block-4,
.tabs-menu .kz-tab-link.w--current .text-block-2 {
	color: #20211B;
}

/* Legal / plain-content pages (Impressum, Datenschutz, AGB, Widerruf) —
   readable typography instead of the site's big display headings. */
.page .kz-content-section article {
	max-width: 780px;
}
.page .kz-content-section article h1 {
	margin-bottom: 2rem;
}
.page .kz-content-section article h2 {
	font-family: inherit;
	text-transform: none;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 2.2rem 0 0.8rem;
	color: #F0EEDF;
}
.page .kz-content-section article h2:first-of-type {
	margin-top: 0;
}
.page .kz-content-section article p,
.page .kz-content-section article li {
	font-size: 0.95rem;
	line-height: 1.7;
	color: rgba(240, 238, 223, 0.8);
	margin-bottom: 0.9rem;
}
.page .kz-content-section article ul {
	padding-left: 1.3rem;
	margin-bottom: 0.9rem;
}
.page .kz-content-section article a {
	color: #E7B57B;
}
.page .kz-content-section article hr {
	border: none;
	border-top: 1px solid rgba(240, 238, 223, 0.15);
	margin: 2.2rem 0;
}

/* Blog — category sidebar */
.kz-blog-sidebar-inner {
	background: #1C1D17;
	border: 1px solid rgba(240, 238, 223, 0.12);
	border-radius: 12px;
	overflow: hidden;
}
.kz-blog-sidebar-header {
	padding: 18px;
	border-bottom: 1px solid rgba(240, 238, 223, 0.1);
}
.kz-blog-sidebar-eyebrow {
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(240, 238, 223, 0.5);
	margin-bottom: 6px;
}
.kz-blog-sidebar-title {
	font-size: 0.95rem;
	font-weight: 600;
	color: #F0EEDF;
}
.kz-blog-sidebar-list {
	list-style: none;
	margin: 0;
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.kz-blog-sidebar-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 8px;
	text-decoration: none;
	color: rgba(240, 238, 223, 0.75);
	font-size: 0.85rem;
	font-weight: 500;
	border: 1px solid transparent;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.kz-blog-sidebar-list a:hover {
	background: rgba(231, 181, 123, 0.08);
	border-color: rgba(231, 181, 123, 0.2);
	color: #F0EEDF;
}
.kz-blog-sidebar-list a.is-active {
	background: rgba(231, 181, 123, 0.12);
	border-color: rgba(231, 181, 123, 0.3);
	color: #E7B57B;
}
.kz-blog-sidebar-count {
	font-size: 0.65rem;
	font-weight: 600;
	color: rgba(240, 238, 223, 0.5);
	background: rgba(240, 238, 223, 0.06);
	border: 1px solid rgba(240, 238, 223, 0.12);
	border-radius: 100px;
	padding: 1px 7px;
	min-width: 20px;
	text-align: center;
}
.kz-blog-sidebar-list a.is-active .kz-blog-sidebar-count {
	color: #E7B57B;
	border-color: rgba(231, 181, 123, 0.3);
}
.kz-blog-sidebar-footer {
	padding: 12px 10px 14px;
	border-top: 1px solid rgba(240, 238, 223, 0.1);
}
.kz-blog-sidebar-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	padding: 10px 16px;
	border: 1px solid rgba(231, 181, 123, 0.3);
	border-radius: 8px;
	text-decoration: none;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: #E7B57B;
	transition: background-color 0.15s ease;
}
.kz-blog-sidebar-cta:hover {
	background: rgba(231, 181, 123, 0.1);
}

/* Blog — post card category label */
.blog-img-div {
	display: block;
	border-radius: 10px;
	width: 100%;
	height: 40%;
	margin-bottom: 1rem;
}
.kz-blog-card-cat {
	color: #E7B57B;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 0.5rem;
}
/* Blog — sticky category/search sidebar (desktop & tablet). Disabled again
   below 767px, where the mobile pill scroller replaces it. --kz-header-h is
   measured and set by app.js from the actual sticky navbar height. */
.kz-blog-sidebar {
	position: sticky;
	top: calc(var(--kz-header-h, 96px) + 24px);
	align-self: flex-start;
}

/* Blog — search toggle, search bar and result label */
.kz-sr-only {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.kz-blog-sidebar-title-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.kz-blog-search-toggle {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border-radius: 8px;
	background: rgba(240, 238, 223, 0.06);
	border: 1px solid rgba(240, 238, 223, 0.12);
	color: rgba(240, 238, 223, 0.6);
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.kz-blog-search-toggle:hover {
	background: rgba(231, 181, 123, 0.1);
	border-color: rgba(231, 181, 123, 0.3);
	color: #E7B57B;
}
/* The swipe hint only makes sense once the list actually scrolls sideways. */
.kz-blog-sidebar-subtitle {
	display: none;
	margin: 0;
}
.kz-blog-search {
	display: none;
	position: relative;
	align-items: center;
}
.kz-blog-sidebar-inner.search-open .kz-blog-search {
	display: flex;
}
.kz-blog-sidebar-inner.search-open .kz-blog-sidebar-eyebrow,
.kz-blog-sidebar-inner.search-open .kz-blog-sidebar-title-row,
.kz-blog-sidebar-inner.search-open .kz-blog-sidebar-subtitle {
	display: none;
}
.kz-blog-search-icon {
	position: absolute;
	left: 12px;
	color: rgba(240, 238, 223, 0.45);
	pointer-events: none;
}
.kz-blog-search-input {
	width: 100%;
	height: 40px;
	padding: 0 34px;
	border-radius: 8px;
	background: rgba(240, 238, 223, 0.06);
	border: 1px solid rgba(240, 238, 223, 0.14);
	color: #F0EEDF;
	font-size: 0.85rem;
	line-height: 40px;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}
.kz-blog-search-input::placeholder {
	color: rgba(240, 238, 223, 0.4);
}
/* The browser's own clear affordance duplicates .kz-blog-search-close. */
.kz-blog-search-input::-webkit-search-cancel-button,
.kz-blog-search-input::-webkit-search-decoration {
	-webkit-appearance: none;
	appearance: none;
}
.kz-blog-search-input:focus {
	background: rgba(240, 238, 223, 0.09);
	border-color: rgba(231, 181, 123, 0.5);
}
.kz-blog-search-close,
.kz-blog-search-clear {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(240, 238, 223, 0.08);
	color: rgba(240, 238, 223, 0.55);
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease;
}
.kz-blog-search-close {
	position: absolute;
	right: 8px;
	width: 22px;
	height: 22px;
}
.kz-blog-search-close:hover,
.kz-blog-search-clear:hover {
	background: #E7B57B;
	color: #20211B;
}
.kz-blog-search-label {
	display: none;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	font-size: 0.75rem;
	color: rgba(240, 238, 223, 0.6);
	cursor: pointer;
}
.kz-blog-sidebar-inner.has-results .kz-blog-search-label {
	display: flex;
}
.kz-blog-search-label svg {
	flex-shrink: 0;
	opacity: 0.6;
}
.kz-blog-search-label span {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.kz-blog-search-clear {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
}

/* Blog — no-results state */
.kz-blog-empty {
	width: 100%;
	flex: 1 1 100%;
	grid-column: 1 / -1;
	padding: 2rem 0;
	color: rgba(240, 238, 223, 0.75);
}
.kz-blog-empty .kz-blog-sidebar-cta {
	display: inline-flex;
	width: auto;
	margin-top: 0.9rem;
}

@media (max-width: 767px) {
	.blogs-wrapper {
		flex-direction: column;
	}
	.blogs-sidefilter-div {
		width: 100%;
	}
	.blogs-grid {
		width: 100%;
	}

	.kz-blog-sidebar {
		position: static;
		top: auto;
	}

	/* Filter card collapses to a title + search toggle above a horizontally
	   scrollable row of category pills. */
	.kz-blog-sidebar-inner {
		position: relative;
		background: transparent;
		border: none;
		border-radius: 0;
		overflow: visible;
	}
	.kz-blog-sidebar-header {
		padding: 0;
		margin-bottom: 12px;
		border-bottom: none;
	}
	.kz-blog-sidebar-eyebrow {
		display: none;
	}
	.kz-blog-sidebar-title {
		font-size: 1.05rem;
	}
	.kz-blog-sidebar-subtitle {
		display: block;
		margin-top: 4px;
		font-size: 0.78rem;
		color: rgba(240, 238, 223, 0.5);
	}
	.kz-blog-sidebar-inner.search-open .kz-blog-search {
		margin-top: 0;
	}
	.kz-blog-sidebar-footer {
		display: none;
	}
	.kz-blog-sidebar-list {
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 8px;
		padding: 2px 0;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x proximity;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}
	.kz-blog-sidebar-list::-webkit-scrollbar {
		display: none;
	}
	.kz-blog-sidebar-list li {
		flex: 0 0 auto;
		scroll-snap-align: start;
	}
	.kz-blog-sidebar-list a {
		padding: 9px 14px;
		border-radius: 100px;
		white-space: nowrap;
		background: rgba(240, 238, 223, 0.06);
		border-color: rgba(240, 238, 223, 0.12);
	}
	/* Counts crowd the pills at this width — the reference drops them too. */
	.kz-blog-sidebar-count {
		display: none;
	}
	/* Fade hints that the pill row keeps going; JS clears it at the end. */
	.kz-blog-sidebar-inner::after {
		content: "";
		position: absolute;
		right: 0;
		bottom: 0;
		width: 40px;
		height: 42px;
		pointer-events: none;
		background: linear-gradient(to right, rgba(0, 0, 0, 0), #000);
		opacity: 1;
		transition: opacity 0.2s ease;
	}
	.kz-blog-sidebar-inner.is-scroll-end::after {
		opacity: 0;
	}
}

/* Header search — live product suggestions dropdown */
.search {
	position: relative;
}
.kz-search-suggestions {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%);
	width: 340px;
	max-width: calc(100vw - 32px);
	max-height: 420px;
	overflow-y: auto;
	background: #20211B;
	border: 1px solid rgba(240, 238, 223, 0.15);
	border-radius: 10px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
	z-index: 200;
	padding: 8px;
}
.kz-search-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px;
	border-radius: 6px;
	text-decoration: none;
	color: #F0EEDF;
}
.kz-search-item:hover,
.kz-search-item.is-active {
	background: rgba(240, 238, 223, 0.08);
}
.kz-search-item-thumb {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-radius: 6px;
	background-size: cover;
	background-position: center;
	background-color: rgba(240, 238, 223, 0.06);
}
.kz-search-item-meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.kz-search-item-name {
	font-size: 0.9rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.kz-search-item-price {
	font-size: 0.8rem;
	color: rgba(240, 238, 223, 0.65);
}
.kz-search-item-price bdi {
	unicode-bidi: normal;
}
.kz-search-item-all {
	justify-content: center;
	font-weight: 700;
	color: #E7B57B;
	border-top: 1px solid rgba(240, 238, 223, 0.12);
	margin-top: 4px;
	padding-top: 12px;
	border-radius: 0 0 6px 6px;
}
.kz-search-empty {
	padding: 16px 8px;
	font-size: 0.85rem;
	color: rgba(240, 238, 223, 0.65);
	text-align: center;
}
