/* ============================================================
   ZULA KIDS – GERMAN E-COMMERCE DESIGN SYSTEM 2026
   Premium Kindermöbel Shop · Komplett-Framework
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --zk-cream: #F5F0EB;
  --zk-cream-dark: #EDE5DB;
  --zk-warm-beige: #E8E0D6;
  --zk-sand: #D4C5B5;
  --zk-taupe: #A89585;
  --zk-brown: #7A6B5D;
  --zk-brown-dark: #5C4F43;
  --zk-dark: #2C2420;
  --zk-darker: #1A1512;
  --zk-white: #FFFFFF;
  --zk-off-white: #FAFAF8;
  --zk-accent: #C4956A;
  --zk-accent-light: #D4AD88;
  --zk-accent-dark: #A67B52;
  --zk-accent-hover: #B8884E;
  --zk-green: #5B8C5A;
  --zk-green-light: #E8F0E8;
  --zk-red: #C44B4B;
  --zk-red-light: #FDE8E8;
  --zk-blue: #4B7CC4;
  --zk-yellow: #F5A623;
  --zk-font-heading: 'Playfair Display', Georgia, serif;
  --zk-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --zk-text-xs: clamp(0.7rem, 0.65rem + 0.2vw, 0.75rem);
  --zk-text-sm: clamp(0.8rem, 0.75rem + 0.2vw, 0.875rem);
  --zk-text-base: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
  --zk-text-lg: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  --zk-text-xl: clamp(1.1rem, 1rem + 0.4vw, 1.25rem);
  --zk-text-2xl: clamp(1.3rem, 1.1rem + 0.8vw, 1.75rem);
  --zk-text-3xl: clamp(1.6rem, 1.3rem + 1.2vw, 2.25rem);
  --zk-text-4xl: clamp(2rem, 1.5rem + 2vw, 3rem);
  --zk-text-5xl: clamp(2.5rem, 1.8rem + 3vw, 4rem);
  --zk-space-1: 0.25rem; --zk-space-2: 0.5rem; --zk-space-3: 0.75rem;
  --zk-space-4: 1rem; --zk-space-5: 1.25rem; --zk-space-6: 1.5rem;
  --zk-space-8: 2rem; --zk-space-10: 2.5rem; --zk-space-12: 3rem;
  --zk-space-16: 4rem; --zk-space-20: 5rem; --zk-space-24: 6rem;
  --zk-radius-sm: 4px; --zk-radius-md: 8px; --zk-radius-lg: 12px;
  --zk-radius-xl: 16px; --zk-radius-full: 50%;
  --zk-shadow-sm: 0 1px 3px rgba(44,36,32,0.06);
  --zk-shadow-md: 0 4px 12px rgba(44,36,32,0.08);
  --zk-shadow-lg: 0 8px 30px rgba(44,36,32,0.1);
  --zk-shadow-xl: 0 20px 60px rgba(44,36,32,0.12);
  --zk-transition-fast: 0.15s ease;
  --zk-transition-base: 0.3s ease;
  --zk-transition-slow: 0.5s ease;
  --zk-container: 1280px;
  --zk-z-dropdown: 100;
  --zk-z-sticky: 200;
  --zk-z-overlay: 300;
  --zk-z-modal: 400;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--zk-font-body);
  font-size: var(--zk-text-base);
  line-height: 1.6;
  color: var(--zk-dark);
  background: var(--zk-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--zk-transition-fast); }
a:hover { color: var(--zk-accent); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea {
  font-family: inherit; font-size: inherit;
  border: 1px solid var(--zk-warm-beige);
  border-radius: var(--zk-radius-md);
  padding: var(--zk-space-3) var(--zk-space-4);
  transition: border-color var(--zk-transition-fast);
  background: var(--zk-white);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--zk-accent);
  box-shadow: 0 0 0 3px rgba(196,149,106,0.15);
}

/* ===== CONTAINER ===== */
.container {
  width: min(100% - (var(--zk-space-6) * 2), var(--zk-container));
  max-width: var(--zk-container);
  margin: 0 auto;
  padding: 0;
}

/* ===== TOP BAR ===== */
.zk-topbar {
  background: var(--zk-dark);
  color: rgba(255,255,255,0.8);
  font-size: var(--zk-text-xs);
  padding: var(--zk-space-2) 0;
  letter-spacing: 0.02em;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.35s ease;
}
.zk-topbar--hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.zk-topbar .container {
  display: flex;
  justify-content: center;
  gap: var(--zk-space-8);
  flex-wrap: wrap;
}
.zk-topbar-item {
  display: flex;
  align-items: center;
  gap: var(--zk-space-2);
  white-space: normal;
  text-wrap: balance;
  font-size: 12px;
}
.zk-topbar-item svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.7; }
.zk-topbar-item a { min-height: 32px; display: inline-flex; align-items: center; }

/* ===== HEADER ===== */
.zk-header {
  background: var(--zk-white);
  position: sticky;
  top: 0;
  z-index: var(--zk-z-sticky);
  transition: box-shadow var(--zk-transition-base);
  border-bottom: 1px solid transparent;
}
.zk-header.scrolled {
  box-shadow: var(--zk-shadow-md);
  border-bottom-color: var(--zk-cream-dark);
}
.zk-scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--zk-accent), var(--zk-accent-light));
  transition: width 0.1s linear;
  z-index: 10;
  border-radius: 0 1px 1px 0;
}
.zk-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--zk-space-6);
}
.zk-header-logo { display: flex; align-items: center; flex-shrink: 0; }
.zk-header-logo img { height: 44px; width: auto; }
.zk-header-logo .custom-logo-link { display: inline-flex; }
.zk-logo-text { font-weight: 700; font-size: var(--zk-text-xl); color: var(--zk-brown-dark); text-decoration: none; }

/* Nav */
.zk-header-nav { display: flex; align-items: center; }
.zk-nav-list { display: flex; align-items: center; gap: var(--zk-space-1); list-style: none; margin: 0; padding: 0; }
.zk-nav-list > li > a, .zk-nav-dropdown > a {
  padding: var(--zk-space-2) var(--zk-space-3);
  font-size: var(--zk-text-sm);
  font-weight: 500;
  color: var(--zk-brown-dark);
  border-radius: var(--zk-radius-md);
  transition: all var(--zk-transition-fast);
  white-space: nowrap;
  display: inline-block;
  text-decoration: none;
}
.zk-nav-list > li > a:hover, .zk-nav-dropdown:hover > a {
  color: var(--zk-accent);
  background: var(--zk-cream);
}
.zk-nav-list .current-menu-item > a, .zk-nav-list .current_page_item > a {
  color: var(--zk-accent);
}

/* WordPress-generated dropdown (menu-item-has-children + sub-menu) */
.zk-nav-list .menu-item-has-children { position: relative; }
.zk-nav-list .menu-item-has-children > a {
  display: inline-flex; align-items: center; gap: 5px;
}
.zk-nav-list .menu-item-has-children > a::after {
  content: ""; width: 10px; height: 10px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C4F43' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") center/contain no-repeat;
  transition: transform .25s;
  margin-left: 2px;
}
.zk-nav-list .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}
.zk-nav-list .sub-menu {
  position: absolute; top: 100%; left: 0;
  min-width: 220px;
  list-style: none; padding: 8px; margin: 0;
  background: #fff;
  border-radius: var(--zk-radius-lg, 12px);
  box-shadow: 0 16px 40px rgba(42,36,32,.12);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .25s cubic-bezier(.22,1,.36,1);
  z-index: 100;
  /* invisible bridge to avoid hover gap */
  padding-top: 12px; top: calc(100% - 4px);
}
.zk-nav-list .sub-menu::before {
  content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 12px;
}
.zk-nav-list .menu-item-has-children:hover > .sub-menu,
.zk-nav-list .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.zk-nav-list .sub-menu li { margin: 0; }
.zk-nav-list .sub-menu li a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--zk-dark, #2C2420);
  text-decoration: none;
  border-radius: 8px;
  transition: all .2s;
}
.zk-nav-list .sub-menu li a:hover {
  background: var(--zk-cream, #F5F0EB);
  color: var(--zk-accent, #C4956A);
}

/* Custom logo sizing */
.zk-header-logo .custom-logo,
.zk-header-logo img.custom-logo {
  height: 44px; width: auto; max-height: 44px;
  display: block;
}
.zk-header-logo .custom-logo-link { display: inline-block; line-height: 0; }

/* Dropdown */
.zk-nav-dropdown { position: relative; }
.zk-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--zk-white);
  border-radius: var(--zk-radius-lg);
  box-shadow: var(--zk-shadow-lg);
  padding: var(--zk-space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--zk-transition-base);
  z-index: var(--zk-z-dropdown);
}
.zk-nav-dropdown:hover .zk-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.zk-nav-dropdown-menu a {
  display: block;
  padding: var(--zk-space-2) var(--zk-space-4);
  font-size: var(--zk-text-sm);
  color: var(--zk-brown);
  border-radius: var(--zk-radius-md);
}
.zk-nav-dropdown-menu a:hover {
  background: var(--zk-cream);
  color: var(--zk-accent);
}

/* Header Actions */
.zk-header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--zk-space-6); width: 100%; }
.zk-header-actions { display: flex; align-items: center; gap: var(--zk-space-2); }
.zk-header-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--zk-radius-full);
  position: relative;
  color: var(--zk-brown-dark);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--zk-transition-fast);
}
.zk-header-icon:hover { background: var(--zk-cream); color: var(--zk-accent); }
.zk-header-icon svg { width: 20px; height: 20px; }
.zk-cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--zk-accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  padding: 0 4px;
}

/* Hamburger / Menu Trigger */
.zk-menu-trigger {
  display: none;
}
.zk-menu-trigger svg { width: 22px; height: 22px; }

/* Mobile Menu */
.zk-mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 85%; max-width: 400px;
  height: 100vh;
  background: var(--zk-white);
  z-index: var(--zk-z-modal);
  padding: var(--zk-space-8) var(--zk-space-6);
  display: flex;
  flex-direction: column;
  gap: var(--zk-space-1);
  transition: right var(--zk-transition-base);
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  overflow-y: auto;
}
.zk-mobile-menu.open { right: 0; }
.zk-mobile-menu-inner { display: flex; flex-direction: column; gap: var(--zk-space-1); }
.zk-mobile-nav { list-style: none; padding: 0; margin: var(--zk-space-4) 0 0; display: flex; flex-direction: column; gap: var(--zk-space-1); }
.zk-mobile-nav li { list-style: none; }
.zk-mobile-menu a {
  display: block;
  padding: var(--zk-space-3) var(--zk-space-4);
  font-size: var(--zk-text-lg);
  font-weight: 500;
  border-radius: var(--zk-radius-md);
  color: var(--zk-dark);
  text-decoration: none;
}
.zk-mobile-menu a:hover { background: var(--zk-cream); color: var(--zk-accent); }
.zk-mobile-menu-close {
  align-self: flex-end;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--zk-space-4);
  border-radius: var(--zk-radius-full);
  background: transparent;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: var(--zk-brown-dark);
}
.zk-mobile-menu-close:hover { background: var(--zk-cream); }
.zk-mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: calc(var(--zk-z-modal) - 1);
  opacity: 0; visibility: hidden;
  transition: all var(--zk-transition-base);
}
.zk-mobile-overlay.open { opacity: 1; visibility: visible; }

/* ===== BUTTONS ===== */
.zk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--zk-space-2);
  padding: var(--zk-space-3) var(--zk-space-6);
  font-size: var(--zk-text-sm);
  font-weight: 600;
  border-radius: var(--zk-radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--zk-transition-fast);
  white-space: nowrap;
  text-align: center;
}
.zk-btn svg { width: 18px; height: 18px; }
.zk-btn--primary {
  background: var(--zk-accent);
  color: var(--zk-white);
  border-color: var(--zk-accent);
}
.zk-btn--primary:hover {
  background: var(--zk-accent-hover);
  border-color: var(--zk-accent-hover);
  color: var(--zk-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(196,149,106,0.3);
}
.zk-btn--secondary {
  background: var(--zk-dark);
  color: var(--zk-white);
  border-color: var(--zk-dark);
}
.zk-btn--secondary:hover {
  background: var(--zk-darker);
  color: var(--zk-white);
}
.zk-btn--outline {
  background: transparent;
  color: var(--zk-dark);
  border-color: var(--zk-sand);
}
.zk-btn--outline:hover {
  border-color: var(--zk-accent);
  color: var(--zk-accent);
}
.zk-btn--outline-light {
  background: transparent;
  color: var(--zk-white);
  border-color: rgba(255,255,255,0.4);
}
.zk-btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--zk-white);
  color: var(--zk-white);
}
.zk-btn--lg { padding: var(--zk-space-4) var(--zk-space-8); font-size: var(--zk-text-base); }
.zk-btn--sm { padding: var(--zk-space-2) var(--zk-space-4); font-size: var(--zk-text-xs); }
.zk-btn--full { width: 100%; }

/* ===== HERO ===== */
.zk-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.zk-hero-bg {
  position: absolute; inset: 0;
  background: var(--zk-sand);
}
.zk-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.zk-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(44,36,32,0.55) 0%, rgba(44,36,32,0.2) 100%);
}
.zk-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: var(--zk-space-20) var(--zk-space-6);
  color: var(--zk-white);
}
.zk-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--zk-space-2);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: var(--zk-space-2) var(--zk-space-4);
  border-radius: var(--zk-radius-full);
  font-size: var(--zk-text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--zk-space-6);
  border: 1px solid rgba(255,255,255,0.2);
}
.zk-hero-content h1 {
  font-family: var(--zk-font-heading);
  font-size: var(--zk-text-5xl);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: var(--zk-space-5);
}
.zk-hero-content p {
  font-size: var(--zk-text-lg);
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: var(--zk-space-8);
}
.zk-hero-buttons { display: flex; gap: var(--zk-space-4); flex-wrap: wrap; }

/* ===== SECTIONS ===== */
.zk-section { padding: var(--zk-space-16) 0; }
.zk-section--cream { background: var(--zk-cream); }
.zk-section--dark { background: var(--zk-dark); color: var(--zk-white); }

/* Alternating backgrounds for smoother visual rhythm on homepage. */
.zk-bestsellers-section,
.zk-process-section,
.zk-fabric-strip-section,
.zk-reviews-section { background: var(--zk-cream, #F5F0EB); }

/* Collapse abutting same-colour sections so the gap doesn't double up */
.zk-section + .zk-section { padding-top: calc(var(--zk-space-16) - var(--zk-space-4)); }
.zk-bestsellers-section + .zk-section:not(.zk-bestsellers-section),
.zk-section:not(.zk-bestsellers-section) + .zk-bestsellers-section { padding-top: var(--zk-space-16); }
.zk-section-header { text-align: center; max-width: 700px; margin: 0 auto var(--zk-space-12); }
.zk-section-label {
  font-size: var(--zk-text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zk-accent);
  margin-bottom: var(--zk-space-3);
}
.zk-section-title {
  font-family: var(--zk-font-heading);
  font-size: var(--zk-text-3xl);
  font-weight: 600;
  color: var(--zk-dark);
  margin-bottom: var(--zk-space-4);
  line-height: 1.2;
}
.zk-section--dark .zk-section-title { color: var(--zk-white); }
.zk-section-desc {
  font-size: var(--zk-text-base);
  color: var(--zk-brown);
  line-height: 1.7;
}

/* ===== TRUST BAR ===== */
/* Trust bar — flex centered row, items w jednej linii (proto 1:1) */
.zk-trust-bar {
  background: var(--zk-cream);
  padding: var(--zk-space-8) 0;
  border-bottom: 1px solid var(--zk-warm-beige);
}
.zk-trust-bar .container {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: var(--zk-space-8);
}
.zk-trust-bar .zk-trust-items {
  /* v1.9.10: CSS Grid 4 kolumn na desktop, 2x2 tablet, 1 mobile.
   * Wcześniej flex 1 1 auto powodował 3+1 layout gdy items się nie mieściły. */
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--zk-space-6) var(--zk-space-8);
  list-style: none; padding: 0; margin: 0;
  width: 100%;
  align-items: center;
}
.zk-trust-item {
  display: flex; align-items: center; gap: var(--zk-space-4);
  min-width: 0;
  padding: var(--zk-space-2) 0;
}
.zk-trust-icon {
  width: 52px; height: 52px;
  background: var(--zk-white);
  border-radius: var(--zk-radius-full);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(42,36,32,.08);
  color: var(--zk-accent);
}
.zk-trust-icon svg {
  width: 24px; height: 24px;
  color: var(--zk-accent);
  stroke-width: 1.8;
  display: block;
}
.zk-trust-text { min-width: 0; white-space: normal; overflow-wrap: anywhere; }
.zk-trust-text strong {
  display: block; font-size: var(--zk-text-sm); font-weight: 600;
  color: var(--zk-dark); line-height: 1.3; margin-bottom: 2px;
  white-space: normal;
  overflow-wrap: anywhere;
}
.zk-trust-text span {
  display: block; font-size: var(--zk-text-xs); color: var(--zk-brown);
  line-height: 1.4; white-space: normal; overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
  .zk-trust-bar .zk-trust-items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px) {
  .zk-trust-bar .zk-trust-items { grid-template-columns: 1fr; gap: var(--zk-space-4); }
  .zk-trust-text, .zk-trust-text strong, .zk-trust-text span { white-space: normal; }
}
@media (max-width: 480px) {
  .zk-trust-item { flex: 1 1 100%; }
}

/* ===== BREADCRUMB ===== */
.zk-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--zk-space-2);
  font-size: var(--zk-text-sm);
  color: var(--zk-brown);
  flex-wrap: wrap;
}
.zk-breadcrumb a { color: var(--zk-taupe); }
.zk-breadcrumb a:hover { color: var(--zk-accent); }
.zk-breadcrumb-sep { color: var(--zk-sand); font-size: var(--zk-text-xs); }

/* ===== CATEGORY CARDS ===== */
.zk-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--zk-space-6);
}
.zk-category-card {
  position: relative;
  border-radius: var(--zk-radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  align-items: flex-end;
}
/* v2.0.3 — category card images: contain so the full product photo is visible.
 * Cream gradient backdrop fills the leftover space (gallery-frame look). */
.zk-category-card {
  background: linear-gradient(135deg, var(--zk-cream-dark, #EDE5DB) 0%, var(--zk-warm-beige, #E8E0D6) 100%);
}
.zk-category-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform var(--zk-transition-slow);
}
.zk-category-card:hover img { transform: scale(1.04); }
.zk-category-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--zk-space-6);
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--zk-white);
}
.zk-category-card-content h3 {
  font-family: var(--zk-font-heading);
  font-size: var(--zk-text-2xl);
  margin-bottom: var(--zk-space-1);
}
.zk-category-card-content span {
  font-size: var(--zk-text-sm);
  opacity: 0.8;
}

/* ===== PRODUCT CARDS ===== */
.zk-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--zk-space-6);
}
.zk-products-grid--3 { grid-template-columns: repeat(3, 1fr); }
.zk-product-card {
  background: var(--zk-white);
  border-radius: var(--zk-radius-lg);
  overflow: hidden;
  border: 1px solid var(--zk-cream-dark);
  transition: all var(--zk-transition-base);
  display: flex;
  flex-direction: column;
}
.zk-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--zk-shadow-lg);
  border-color: transparent;
}
.zk-product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--zk-cream);
  padding: 16px;
}
.zk-product-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform var(--zk-transition-slow);
}
.zk-product-card:hover .zk-product-image img { transform: scale(1.03); }
@media (max-width: 600px) {
  .zk-product-image { padding: 12px; }
}
.zk-product-badge {
  position: absolute;
  top: var(--zk-space-3); left: var(--zk-space-3);
  background: var(--zk-accent);
  color: var(--zk-white);
  font-size: var(--zk-text-xs);
  font-weight: 700;
  padding: var(--zk-space-1) var(--zk-space-3);
  border-radius: var(--zk-radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.zk-product-badge--new { background: var(--zk-green); }
.zk-product-wishlist {
  position: absolute;
  top: var(--zk-space-3); right: var(--zk-space-3);
  width: 36px; height: 36px;
  background: var(--zk-white);
  border-radius: var(--zk-radius-full);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--zk-shadow-sm);
  color: var(--zk-brown);
  transition: all var(--zk-transition-fast);
}
.zk-product-wishlist:hover { color: var(--zk-red); transform: scale(1.1); }
.zk-product-wishlist svg { width: 18px; height: 18px; }
.zk-product-info { padding: var(--zk-space-4); flex: 1; display: flex; flex-direction: column; }
.zk-product-collection {
  font-size: var(--zk-text-xs);
  color: var(--zk-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--zk-space-1);
}
.zk-product-name {
  font-family: var(--zk-font-heading);
  font-size: var(--zk-text-lg);
  font-weight: 600;
  color: var(--zk-dark);
  margin-bottom: var(--zk-space-1);
}
.zk-product-desc {
  font-size: var(--zk-text-sm);
  color: var(--zk-brown);
  margin-bottom: var(--zk-space-3);
}
.zk-product-price-row {
  display: flex;
  align-items: baseline;
  gap: var(--zk-space-2);
  margin-bottom: var(--zk-space-3);
  margin-top: auto;
}
.zk-product-price {
  font-family: var(--zk-font-heading);
  font-size: var(--zk-text-xl);
  font-weight: 700;
  color: var(--zk-dark);
}
.zk-product-vat {
  font-size: var(--zk-text-xs);
  color: var(--zk-brown);
}
.zk-product-shipping {
  display: flex;
  align-items: center;
  gap: var(--zk-space-1);
  font-size: var(--zk-text-xs);
  color: var(--zk-green);
  font-weight: 500;
  margin-bottom: var(--zk-space-3);
}
.zk-product-shipping svg { width: 14px; height: 14px; }
.zk-product-actions { margin-top: auto; }

/* ===== USP CARDS ===== */
.zk-usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--zk-space-6);
}
.zk-usp-card {
  text-align: center;
  padding: var(--zk-space-8) var(--zk-space-6);
  background: var(--zk-white);
  border-radius: var(--zk-radius-xl);
  border: 1px solid var(--zk-cream-dark);
  transition: all var(--zk-transition-base);
}
.zk-usp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--zk-shadow-lg);
  border-color: transparent;
}
.zk-usp-icon {
  width: 64px; height: 64px;
  background: var(--zk-cream);
  border-radius: var(--zk-radius-full);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--zk-space-5);
}
.zk-usp-icon svg { width: 28px; height: 28px; color: var(--zk-accent); }
.zk-usp-card h3 {
  font-family: var(--zk-font-heading);
  font-size: var(--zk-text-xl);
  margin-bottom: var(--zk-space-3);
}
.zk-usp-card p { font-size: var(--zk-text-sm); color: var(--zk-brown); line-height: 1.7; }

/* ===== PROCESS TIMELINE ===== */
/* Process grid — numbers rendered via markup (zk-process-step-num), not ::before pseudo. */
.zk-process-step h4 {
  font-family: var(--zk-font-heading);
  font-size: var(--zk-text-lg);
  margin-bottom: var(--zk-space-2);
}
.zk-process-step p { font-size: var(--zk-text-sm); color: var(--zk-brown); line-height: 1.6; }

/* ===== REVIEWS ===== */
.zk-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--zk-space-6);
}
.zk-review-card {
  background: var(--zk-white);
  border-radius: var(--zk-radius-xl);
  padding: var(--zk-space-8);
  border: 1px solid var(--zk-cream-dark);
  transition: all var(--zk-transition-base);
}
.zk-review-card:hover { transform: translateY(-2px); box-shadow: var(--zk-shadow-md); }
.zk-review-stars { color: var(--zk-yellow); font-size: var(--zk-text-lg); margin-bottom: var(--zk-space-4); letter-spacing: 2px; }
.zk-review-text {
  font-size: var(--zk-text-base);
  color: var(--zk-brown);
  line-height: 1.7;
  margin-bottom: var(--zk-space-5);
  font-style: italic;
}
.zk-review-author { display: flex; align-items: center; gap: var(--zk-space-3); }
.zk-review-avatar {
  width: 44px; height: 44px;
  border-radius: var(--zk-radius-full);
  background: var(--zk-cream);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: var(--zk-text-sm);
  color: var(--zk-accent);
}
.zk-review-name { font-weight: 600; font-size: var(--zk-text-sm); }
.zk-review-location { font-size: var(--zk-text-xs); color: var(--zk-brown); }

/* ===== NEWSLETTER — v1.9.54 (display:contents fix dla CF7 <p> wrapper) =====
 * CF7 wraps email + dsgvo wewnątrz <p>, submit jest POZA tym <p>.
 * `display: contents` na <p> powoduje że children stają się flex-children
 * parent-a `.zk-newsletter-form-inline` — dzięki temu mogę zarządzać kolejnością
 * via `order:` (email→1, submit→2, dsgvo→3, recaptcha→4).
 *
 * Klient feedback (3rd round) 6.05: "puste przestrzenie zlaby przycisk zgody".
 * Layout teraz: [Email...][Anmelden] (1 wiersz) + DSGVO + recaptcha (osobne wiersze).
 */
/* ===== NEWSLETTER — v1.9.53 single-column centered =====
 * Klient feedback 6.05 (drugi raz): "puste przestrzenie, zły przycisk zgody".
 * Decyzja: zrezygnować z 2-col (title left / text right tworzyło puste pola).
 * Nowy layout: jedna kolumna centered, max-width 720px, wszystko symetrycznie.
 *
 * Struktura:
 *   ┌─────────────────────────────┐
 *   │ 10 % Rabatt auf...          │  Title (centered, large)
 *   │ Melden Sie sich für...      │  Subtitle (small, muted)
 *   │ ┌──────────────┬─────────┐  │  Form row:
 *   │ │  Email...    │ Anmelden│  │  - email left (flex 1)
 *   │ └──────────────┴─────────┘  │  - submit right (auto width)
 *   │ □ Ich stimme dem Newsletter │  DSGVO checkbox (full row)
 *   │ Diese Seite ist durch...    │  reCAPTCHA notice (small, muted)
 *   │ Mit Ihrer Anmeldung...      │  Privacy (smallest, muted)
 *   └─────────────────────────────┘
 */
/* v2.1.7 — Compact newsletter (klient: "ta sekcja jest za duza zrob noramlna").
 * Było: padding 56px 0 (=112px wysokości pustki), title 32px, input 50px,
 * gap 14px. Teraz: padding 24px, title 22px, input 42px, gap 8px → ~⅓ space. */
.zk-newsletter {
  background: linear-gradient(135deg, var(--zk-dark, #2C2420) 0%, #3d332d 100%);
  color: #fff;
  padding: 24px 0;
  position: relative;
}
.zk-newsletter .container { max-width: 1280px; position: relative; z-index: 1; }

.zk-newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.zk-newsletter-title {
  font-family: var(--zk-font-heading);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600; color: #fff;
  margin: 0; line-height: 1.25;
}
.zk-newsletter-text {
  font-size: 13px;
  color: rgba(255,255,255,.72);
  margin: 0 0 4px; line-height: 1.5;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* CF7 form wrapper reset */
.zk-newsletter .wpcf7 { width: 100%; min-width: 0; }
.zk-newsletter form.wpcf7-form { margin: 0; }
.zk-newsletter .screen-reader-response { display: none; }

/* Neutralize CF7 default <p> margins/padding */
.zk-newsletter .wpcf7 p,
.zk-newsletter form.wpcf7-form > p,
.zk-newsletter .zk-newsletter-form-inline,
.zk-newsletter .zk-newsletter-form-inline > p {
  margin: 0 !important;
  padding: 0 !important;
}
.zk-newsletter .zk-newsletter-form-inline br { display: none !important; }
.zk-newsletter .akismet-fields-container { display: none !important; }
.zk-newsletter .wpcf7-spinner { display: none; }

/* Form jest flex-column — gap między elementami */
.zk-newsletter form.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

/* GŁÓWNY TRICK: <p> w CF7 ukrywamy strukturalnie via display:contents.
 * Wtedy children (email-wrap, dsgvo-wrap) stają się flex-children
 * .zk-newsletter-form-inline obok submit i recaptcha-notice. */
.zk-newsletter .zk-newsletter-form-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
}
.zk-newsletter .zk-newsletter-form-inline > p {
  display: contents;
}

/* Email input wrapper — flex 1, order 1 (lewa część 1 wiersza) */
.zk-newsletter .wpcf7-form-control-wrap[data-name="email"] {
  flex: 1 1 240px;
  min-width: 0;
  margin: 0;
  order: 1;
}
.zk-newsletter input[type="email"] {
  width: 100%; padding: 0 14px;
  height: 42px; box-sizing: border-box;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: #fff; border-radius: 8px;
  font-size: 15px; font-family: inherit;
  min-width: 0;
}
.zk-newsletter input[type="email"]::placeholder { color: rgba(255,255,255,.55); }
.zk-newsletter input[type="email"]:focus {
  outline: none;
  border-color: var(--zk-accent, #C4956A);
  background: rgba(255,255,255,.14);
  box-shadow: 0 0 0 3px rgba(196,149,106,.22);
}

/* DSGVO checkbox wrapper — own row */
.zk-newsletter .wpcf7-form-control-wrap[data-name="dsgvo"] {
  flex: 1 1 100%;
  margin: 0;
  order: 3;
  text-align: left;
}
.zk-newsletter .wpcf7-acceptance { font-size: 13px; color: rgba(255,255,255,.78); }
.zk-newsletter .wpcf7-acceptance .wpcf7-list-item { margin: 0; }
.zk-newsletter .wpcf7-acceptance label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  line-height: 1.4;
}
.zk-newsletter .wpcf7-acceptance input[type="checkbox"] {
  accent-color: var(--zk-accent, #C4956A);
  flex-shrink: 0;
  width: 16px; height: 16px;
  cursor: pointer;
}
.zk-newsletter .wpcf7-acceptance a { color: #fff; text-decoration: underline; }

/* Submit — inline po prawej od email, ale z order:2 zostanie w prawym końcu */
.zk-newsletter input[type="submit"],
.zk-newsletter .wpcf7-submit {
  flex: 0 0 auto;
  order: 2;
  padding: 0 22px; height: 42px;
  background: var(--zk-accent, #C4956A); color: #fff;
  border: 0; border-radius: 8px;
  font-family: inherit; font-weight: 600; font-size: 14px;
  letter-spacing: .02em; cursor: pointer;
  transition: background .2s, transform .2s;
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1;
  min-width: 110px;
}
.zk-newsletter .wpcf7-submit:hover {
  background: var(--zk-accent-dark, #A67B52);
  transform: translateY(-1px);
}
.zk-newsletter .wpcf7-submit[disabled] { opacity: .6; cursor: not-allowed; }

/* reCAPTCHA notice — small full-width */
.zk-newsletter .zk-recaptcha-notice {
  font-size: 10px; line-height: 1.4;
  color: rgba(255,255,255,.45) !important;
  margin: 0 !important;
  flex: 1 1 100%;
  order: 4;
  text-align: center;
}
.zk-newsletter .zk-recaptcha-notice a { color: rgba(255,255,255,.7) !important; }

.zk-newsletter .wpcf7-response-output {
  margin: 0 !important;
  padding: 10px 14px !important;
  font-size: 13px;
  border-width: 1px !important;
  text-align: left;
}

/* Privacy text — small, centered, last item */
.zk-newsletter-privacy {
  margin: 2px 0 0;
  font-size: 11px; color: rgba(255,255,255,.45);
  text-align: center; line-height: 1.45;
}
.zk-newsletter-privacy a { color: rgba(255,255,255,.7); text-decoration: underline; }

/* Mobile */
@media (max-width: 480px) {
  .zk-newsletter { padding: 22px 0; }
  .zk-newsletter .zk-newsletter-form-inline > p:first-of-type { flex-direction: column; }
  .zk-newsletter input[type="submit"],
  .zk-newsletter .wpcf7-submit { width: 100%; min-width: 0; }
}

/* ===== WC REVIEWS / BEWERTUNGEN — v1.9.61 spójny styl z theme =====
 * Klient feedback (6.05): formularz recenzji niesresponsywny i bez stylu.
 * Brand colors, max-width, mobile-friendly. */
#reviews,
.woocommerce #reviews {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}

#reviews .woocommerce-Reviews-title,
#reviews #comments h2 {
  font-family: var(--zk-font-heading, 'Playfair Display', serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  color: var(--zk-dark, #2C2420);
  margin: 0 0 20px;
}

#reviews .commentlist,
#reviews ol.commentlist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
#reviews .commentlist > li {
  background: var(--zk-cream, #F5F0EB);
  border: 1px solid var(--zk-warm-beige, #E8E0D6);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 14px;
  list-style: none;
}
#reviews .commentlist .meta {
  font-size: 13px;
  color: var(--zk-brown, #7A6B5D);
  margin-bottom: 8px;
}
#reviews .star-rating {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  color: var(--zk-accent, #C4956A);
}

#reviews .woocommerce-noreviews {
  background: var(--zk-cream, #F5F0EB);
  padding: 18px 22px;
  border-radius: 10px;
  color: var(--zk-brown-dark, #5C4F43);
  font-style: italic;
  margin: 0 0 28px;
  border-left: 3px solid var(--zk-accent, #C4956A);
}

/* Comment form (Schreibe die erste Rezension) */
#review_form_wrapper,
#review_form,
.comment-respond {
  background: #fff;
  border: 1px solid var(--zk-warm-beige, #E8E0D6);
  border-radius: 14px;
  padding: 28px clamp(20px, 4vw, 36px);
  box-shadow: 0 1px 3px rgba(44, 36, 32, .04);
  margin-top: 32px;
}

#review_form .comment-reply-title,
.comment-respond .comment-reply-title {
  font-family: var(--zk-font-heading, 'Playfair Display', serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  color: var(--zk-dark, #2C2420);
  margin: 0 0 8px;
  display: block;
}

#review_form .comment-form,
#commentform,
.comment-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}
#review_form .comment-notes,
.comment-form .comment-notes {
  font-size: 13px;
  color: var(--zk-brown, #7A6B5D);
  margin: 0 0 8px;
}
#review_form .comment-notes .required,
.comment-form .required {
  color: var(--zk-red, #C44B4B);
}

/* Stars rating row */
.comment-form-rating {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.comment-form-rating label {
  font-size: 14px;
  font-weight: 500;
  color: var(--zk-dark, #2C2420);
}
.comment-form-rating .stars {
  display: inline-flex;
  gap: 4px;
  margin: 0;
}
.comment-form-rating .stars a {
  font-size: 24px;
  color: var(--zk-warm-beige, #E8E0D6);
  text-decoration: none;
  transition: color .15s, transform .15s;
}
.comment-form-rating .stars a:hover,
.comment-form-rating .stars a.active,
.comment-form-rating .stars.selected a.active {
  color: var(--zk-accent, #C4956A);
  transform: scale(1.1);
}
.comment-form-rating .stars.selected a:not(.active) ~ a { color: var(--zk-warm-beige, #E8E0D6); }

/* Comment textarea, name, email inputs */
.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.comment-form label {
  font-size: 14px;
  font-weight: 500;
  color: var(--zk-dark, #2C2420);
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--zk-warm-beige, #E8E0D6);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: var(--zk-dark, #2C2420);
  box-sizing: border-box;
  transition: border-color .15s, box-shadow .15s;
}
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--zk-accent, #C4956A);
  box-shadow: 0 0 0 3px rgba(196, 149, 106, .15);
}
.comment-form textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.55;
}

/* Cookie consent checkbox row */
.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 12px 14px;
  background: var(--zk-cream, #F5F0EB);
  border-radius: 8px;
}
.comment-form-cookies-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--zk-accent, #C4956A);
  cursor: pointer;
}
.comment-form-cookies-consent label {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--zk-brown-dark, #5C4F43);
  cursor: pointer;
  margin: 0;
}

/* Submit button */
.form-submit {
  margin: 8px 0 0;
}
.form-submit input[type="submit"],
#commentform input[type="submit"],
.comment-form input[type="submit"] {
  background: var(--zk-accent, #C4956A);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 12px 32px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  min-width: 140px;
}
.form-submit input[type="submit"]:hover {
  background: var(--zk-accent-dark, #A67B52);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196, 149, 106, .25);
}

/* Mobile */
@media (max-width: 640px) {
  #reviews,
  .woocommerce #reviews { padding: 0 12px; }
  #review_form_wrapper,
  #review_form,
  .comment-respond { padding: 20px 16px; }
  .comment-form input,
  .comment-form textarea { font-size: 16px; /* zapobiega zoom-in iOS */ }
  .form-submit input[type="submit"] { width: 100%; }
}

/* ===== PAYMENT BAR ===== */
.zk-payment-bar {
  background: var(--zk-cream);
  padding: var(--zk-space-4) 0;
  border-top: 1px solid var(--zk-warm-beige);
}
.zk-payment-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--zk-space-4);
  flex-wrap: wrap;
}
.zk-payment-label {
  font-size: var(--zk-text-sm);
  font-weight: 600;
  color: var(--zk-brown-dark);
}
.zk-payment-icons { display: flex; gap: var(--zk-space-3); flex-wrap: wrap; }
.zk-pay-card {
  background: var(--zk-white);
  padding: 5px 12px;
  border-radius: var(--zk-radius-md);
  border: 1px solid var(--zk-warm-beige);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.zk-pay-card:hover {
  border-color: var(--zk-accent-light);
  transform: translateY(-1px);
}
.zk-pay-card svg { display: block; }
.zk-pay-card--klarna { background: #FFB3C7; border-color: #FFB3C7; }
.zk-pay-card--dark { background: #f0f4fa; border-color: #d5dde8; }
.zk-pay-card--apple { background: #000; border-color: #000; }
.zk-pay-card--apple svg text { fill: #fff; }

/* ===== FOOTER ===== */
.zk-footer {
  background: var(--zk-darker);
  color: rgba(255,255,255,0.6);
  padding: var(--zk-space-16) 0 var(--zk-space-8);
}
.zk-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--zk-space-8);
  margin-bottom: var(--zk-space-10);
}
.zk-footer-brand p {
  font-size: var(--zk-text-sm);
  line-height: 1.7;
  margin-top: var(--zk-space-4);
  max-width: 300px;
}
/* v2.0.8 — social icons SVG, padding-based circle so text NEVER bleeds */
.zk-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: var(--zk-space-5);
  padding: 0;
  list-style: none;
}
.zk-footer-social li { list-style: none; margin: 0; padding: 0; }
.zk-footer-social a {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.04);
  text-decoration: none !important;
  overflow: hidden;
  font-size: 0;            /* belt-and-braces: no text leak */
  line-height: 1;
  transition: all .2s ease;
}
.zk-footer-social a:hover {
  border-color: var(--zk-accent);
  color: var(--zk-accent);
  background: rgba(196,149,106,0.12);
  transform: translateY(-2px);
}
.zk-footer-social svg {
  width: 18px; height: 18px;
  display: block;
  pointer-events: none;
}
.zk-footer-social .screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.zk-footer-col h4 {
  color: var(--zk-white);
  font-size: var(--zk-text-sm);
  font-weight: 600;
  margin-bottom: var(--zk-space-5);
  letter-spacing: 0.02em;
}
.zk-footer-col li { margin-bottom: var(--zk-space-2); }
.zk-footer-col a {
  font-size: var(--zk-text-sm);
  color: rgba(255,255,255,0.5);
  transition: color var(--zk-transition-fast);
}
.zk-footer-col a:hover { color: var(--zk-accent); }
.zk-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--zk-space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--zk-space-4);
}
.zk-footer-bottom p { font-size: var(--zk-text-xs); }
.zk-footer-legal { display: flex; gap: var(--zk-space-5); flex-wrap: wrap; }
.zk-footer-legal a { font-size: var(--zk-text-xs); color: rgba(255,255,255,0.4); padding: 8px 4px; display: inline-block; line-height: 1.4; }
.zk-footer-legal a:hover { color: var(--zk-accent); }

/* ===== PAGE TITLE ===== */
.zk-page-title {
  background: linear-gradient(135deg, var(--zk-cream) 0%, var(--zk-warm-beige) 100%);
  padding: var(--zk-space-10) 0;
  text-align: center;
}
.zk-page-title .zk-breadcrumb { justify-content: center; margin-bottom: var(--zk-space-5); }
.zk-page-title h1 {
  font-family: var(--zk-font-heading);
  font-size: var(--zk-text-4xl);
  font-weight: 600;
  color: var(--zk-dark);
  margin-bottom: var(--zk-space-3);
}
.zk-page-title p { max-width: 600px; margin: 0 auto; color: var(--zk-brown); }

/* ===== LEGAL PAGES ===== */
.container--narrow { max-width: 880px; }

/* ===== SEARCH page ===== */
.zk-search { padding: clamp(2rem, 4vw, 4rem) 0; }
.zk-search .zk-page-header {
  background: var(--zk-cream);
  padding: clamp(2rem, 4vw, 3.5rem) var(--zk-space-6);
  border-radius: var(--zk-radius-lg);
  text-align: center;
  margin-bottom: 2rem;
}
.zk-search .zk-page-title {
  font-family: var(--zk-font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--zk-dark);
  margin: 0;
}
.zk-search-results { list-style: none; padding: 0; margin: 0; max-width: 880px; }
.zk-search-results > li { list-style: none; }
.zk-search-item {
  padding: var(--zk-space-5) 0;
  border-bottom: 1px solid var(--zk-cream-dark);
}
.zk-search-item:last-child { border-bottom: none; }
.zk-search-item-title {
  font-family: var(--zk-font-heading);
  font-size: var(--zk-text-xl);
  font-weight: 600;
  margin: 0 0 var(--zk-space-2);
  line-height: 1.3;
}
.zk-search-item-title a { color: var(--zk-dark); text-decoration: none; transition: color var(--zk-transition-fast); }
.zk-search-item-title a:hover { color: var(--zk-accent); }
.zk-search-item-excerpt { color: var(--zk-brown); line-height: 1.6; font-size: var(--zk-text-sm); }
.zk-search-item-excerpt p { margin: 0; }
.zk-empty {
  padding: var(--zk-space-8);
  background: var(--zk-cream);
  border-radius: var(--zk-radius-lg);
  text-align: center;
  color: var(--zk-brown);
  font-size: var(--zk-text-base);
}

/* ===== 404 page ===== */
.zk-404 {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: var(--zk-cream);
  text-align: center;
}
.zk-404-inner {
  max-width: 600px;
  margin: 0 auto;
}
.zk-404-number {
  font-family: var(--zk-font-heading);
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 700;
  line-height: 1;
  color: var(--zk-accent);
  margin: 0 0 var(--zk-space-3);
  letter-spacing: -0.04em;
}
.zk-404-title {
  font-family: var(--zk-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--zk-dark);
  margin: 0 0 var(--zk-space-4);
  line-height: 1.2;
}
.zk-404-text {
  color: var(--zk-brown);
  font-size: var(--zk-text-lg);
  margin: 0 0 var(--zk-space-8);
  line-height: 1.6;
}
.zk-404-actions {
  display: flex;
  gap: var(--zk-space-3);
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .zk-404-actions { flex-direction: column; align-items: stretch; }
  .zk-404-actions .zk-btn { width: 100%; }
}
.zk-legal { padding: var(--zk-space-12) 0; }
.zk-legal-page { padding: var(--zk-space-10) 0 var(--zk-space-16); }
.zk-legal-header { text-align: center; margin-bottom: var(--zk-space-8); padding-bottom: var(--zk-space-6); border-bottom: 1px solid var(--zk-cream-dark); }
.zk-legal-header .zk-page-title {
  font-family: var(--zk-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--zk-dark);
  margin: 0 0 var(--zk-space-3);
  line-height: 1.2;
}
.zk-legal-updated { color: var(--zk-brown); font-size: var(--zk-text-sm); margin: 0; }
.zk-legal-content { max-width: none; margin: 0; }
.zk-legal-content h2 {
  font-family: var(--zk-font-heading);
  font-size: var(--zk-text-2xl);
  margin: var(--zk-space-10) 0 var(--zk-space-4);
  color: var(--zk-dark);
}
.zk-legal-content h2:first-child { margin-top: 0; }
.zk-legal-content h3 {
  font-size: var(--zk-text-lg);
  margin: var(--zk-space-6) 0 var(--zk-space-3);
  color: var(--zk-dark);
}
.zk-legal-content p {
  margin-bottom: var(--zk-space-4);
  color: var(--zk-brown);
  line-height: 1.8;
}
.zk-legal-content ul {
  margin: var(--zk-space-3) 0 var(--zk-space-4) var(--zk-space-6);
  list-style: disc;
}
.zk-legal-content li {
  margin-bottom: var(--zk-space-2);
  color: var(--zk-brown);
  line-height: 1.7;
}
.zk-legal-content a { color: var(--zk-accent); text-decoration: underline; }
.zk-legal-content a:hover { color: var(--zk-accent-dark); }
.zk-legal-box {
  background: var(--zk-cream);
  border-radius: var(--zk-radius-lg);
  padding: var(--zk-space-6);
  margin: var(--zk-space-6) 0;
  border-left: 4px solid var(--zk-accent);
}

/* ===== CATEGORY PAGE ===== */
.zk-category-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--zk-space-8);
  padding: var(--zk-space-10) 0;
}
.zk-filter-sidebar {
  position: sticky;
  top: 90px;
  align-self: start;
}
.zk-filter-group { margin-bottom: var(--zk-space-6); }
.zk-filter-group h4 {
  font-size: var(--zk-text-sm);
  font-weight: 600;
  margin-bottom: var(--zk-space-3);
  color: var(--zk-dark);
}
.zk-filter-check {
  display: flex;
  align-items: center;
  gap: var(--zk-space-2);
  margin-bottom: var(--zk-space-2);
  font-size: var(--zk-text-sm);
  color: var(--zk-brown);
  cursor: pointer;
}
.zk-filter-check input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--zk-accent);
}
.zk-filter-colors { display: flex; gap: var(--zk-space-2); flex-wrap: wrap; }
.zk-filter-color {
  width: 32px; height: 32px;
  border-radius: var(--zk-radius-full);
  border: 3px solid transparent;
  cursor: pointer;
  transition: all var(--zk-transition-fast);
}
.zk-filter-color:hover { transform: scale(1.1); }
.zk-filter-color.active {
  border-color: var(--zk-accent);
  box-shadow: 0 0 0 2px var(--zk-white), 0 0 0 4px var(--zk-accent);
}
.zk-category-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--zk-space-6);
  padding-bottom: var(--zk-space-4);
  border-bottom: 1px solid var(--zk-cream-dark);
}
.zk-category-count { font-size: var(--zk-text-sm); color: var(--zk-brown); }
.zk-category-sort select {
  padding: var(--zk-space-2) var(--zk-space-4);
  font-size: var(--zk-text-sm);
}
.zk-pagination {
  display: flex;
  justify-content: center;
  gap: var(--zk-space-2);
  margin-top: var(--zk-space-10);
}
.zk-pagination a, .zk-pagination span {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--zk-radius-md);
  font-size: var(--zk-text-sm);
  font-weight: 500;
  border: 1px solid var(--zk-cream-dark);
  transition: all var(--zk-transition-fast);
}
.zk-pagination .active {
  background: var(--zk-accent);
  color: var(--zk-white);
  border-color: var(--zk-accent);
}
.zk-pagination a:hover { border-color: var(--zk-accent); color: var(--zk-accent); }

/* ===== PRODUCT SINGLE ===== */
.zk-product-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--zk-space-12);
  padding: var(--zk-space-10) 0;
}
.zk-gallery-main {
  aspect-ratio: 1;
  border-radius: var(--zk-radius-xl);
  overflow: hidden;
  background: var(--zk-cream);
}
.zk-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.zk-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--zk-space-3);
  margin-top: var(--zk-space-3);
}
.zk-gallery-thumb {
  aspect-ratio: 1;
  border-radius: var(--zk-radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--zk-transition-fast);
}
.zk-gallery-thumb.active { border-color: var(--zk-accent); }
.zk-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.zk-product-details h1 {
  font-family: var(--zk-font-heading);
  font-size: var(--zk-text-3xl);
  margin-bottom: var(--zk-space-4);
}
.zk-option-group { margin-bottom: var(--zk-space-5); }
.zk-option-group label {
  display: block;
  font-size: var(--zk-text-sm);
  font-weight: 600;
  margin-bottom: var(--zk-space-2);
}
.zk-option-buttons { display: flex; gap: var(--zk-space-2); flex-wrap: wrap; }
.zk-option-btn {
  padding: var(--zk-space-2) var(--zk-space-4);
  border: 2px solid var(--zk-cream-dark);
  border-radius: var(--zk-radius-md);
  font-size: var(--zk-text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--zk-transition-fast);
  background: var(--zk-white);
}
.zk-option-btn:hover { border-color: var(--zk-accent); }
.zk-option-btn.active {
  border-color: var(--zk-accent);
  background: rgba(196,149,106,0.08);
  color: var(--zk-accent-dark);
}
.zk-quantity {
  display: flex;
  align-items: center;
  border: 2px solid var(--zk-cream-dark);
  border-radius: var(--zk-radius-md);
  overflow: hidden;
  width: fit-content;
}
.zk-quantity button {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--zk-text-lg);
  color: var(--zk-brown);
  transition: background var(--zk-transition-fast);
}
.zk-quantity button:hover { background: var(--zk-cream); }
.zk-quantity input {
  width: 56px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--zk-cream-dark);
  border-right: 1px solid var(--zk-cream-dark);
  border-radius: 0;
  font-weight: 600;
  padding: var(--zk-space-2);
}
.zk-quantity input:focus { box-shadow: none; }
.zk-add-to-cart { display: flex; gap: var(--zk-space-3); margin-top: var(--zk-space-5); }

/* Tabs — legacy prototype rules removed v1.3.0; product tabs now styled in woocommerce.css using .zk-tab-btn + [hidden] convention */
.zk-tab-panel p { color: var(--zk-brown); line-height: 1.8; margin-bottom: var(--zk-space-4); }

/* ===== CONTACT ===== */
.zk-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--zk-space-10);
}
.zk-contact-info { display: flex; flex-direction: column; gap: var(--zk-space-6); }
.zk-contact-card {
  display: flex;
  gap: var(--zk-space-4);
  padding: var(--zk-space-5);
  background: var(--zk-cream);
  border-radius: var(--zk-radius-lg);
}
.zk-contact-card-icon {
  width: 48px; height: 48px;
  background: var(--zk-white);
  border-radius: var(--zk-radius-full);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.zk-contact-card-icon svg { width: 22px; height: 22px; color: var(--zk-accent); }
.zk-contact-card h4 { font-size: var(--zk-text-base); font-weight: 600; margin-bottom: var(--zk-space-1); }
.zk-contact-card p { font-size: var(--zk-text-sm); color: var(--zk-brown); }
.zk-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--zk-space-4); }
.zk-form-group { margin-bottom: var(--zk-space-4); }
.zk-form-group label {
  display: block;
  font-size: var(--zk-text-sm);
  font-weight: 500;
  margin-bottom: var(--zk-space-2);
  color: var(--zk-dark);
}
.zk-form-group input, .zk-form-group select, .zk-form-group textarea { width: 100%; }
.zk-form-group textarea { min-height: 140px; resize: vertical; }
.zk-form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--zk-space-2);
  font-size: var(--zk-text-sm);
  color: var(--zk-brown);
}
.zk-form-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--zk-accent); }

/* ===== CART ===== */
.zk-cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--zk-space-8);
  padding: var(--zk-space-10) 0;
}
.zk-cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto auto;
  gap: var(--zk-space-4);
  align-items: center;
  padding: var(--zk-space-5) 0;
  border-bottom: 1px solid var(--zk-cream-dark);
}
.zk-cart-item-img {
  width: 100px; height: 100px;
  border-radius: var(--zk-radius-md);
  overflow: hidden;
  background: var(--zk-cream);
}
.zk-cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.zk-cart-item-name { font-weight: 600; font-size: var(--zk-text-base); }
.zk-cart-item-options { font-size: var(--zk-text-sm); color: var(--zk-brown); }
.zk-cart-item-price { font-weight: 600; white-space: nowrap; }
.zk-cart-item-remove {
  color: var(--zk-brown);
  font-size: var(--zk-text-sm);
  cursor: pointer;
}
.zk-cart-item-remove:hover { color: var(--zk-red); }
.zk-cart-summary {
  background: var(--zk-cream);
  border-radius: var(--zk-radius-xl);
  padding: var(--zk-space-8);
  position: sticky;
  top: 90px;
  align-self: start;
}
.zk-cart-summary h3 {
  font-family: var(--zk-font-heading);
  font-size: var(--zk-text-xl);
  margin-bottom: var(--zk-space-5);
}
.zk-cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: var(--zk-space-2) 0;
  font-size: var(--zk-text-sm);
  color: var(--zk-brown);
}
.zk-cart-summary-total {
  display: flex;
  justify-content: space-between;
  padding: var(--zk-space-4) 0;
  border-top: 2px solid var(--zk-dark);
  margin-top: var(--zk-space-3);
  font-size: var(--zk-text-xl);
  font-weight: 700;
  color: var(--zk-dark);
}
.zk-cart-empty {
  text-align: center;
  padding: var(--zk-space-20) 0;
}
.zk-cart-empty svg { width: 64px; height: 64px; color: var(--zk-sand); margin-bottom: var(--zk-space-5); }
.zk-cart-empty h2 {
  font-family: var(--zk-font-heading);
  font-size: var(--zk-text-2xl);
  margin-bottom: var(--zk-space-3);
}
.zk-cart-empty p { color: var(--zk-brown); margin-bottom: var(--zk-space-6); }

/* ===== CHECKOUT ===== */
.zk-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--zk-space-8);
  padding: var(--zk-space-10) 0;
}
.zk-checkout-section {
  margin-bottom: var(--zk-space-8);
}
.zk-checkout-section h2 {
  font-family: var(--zk-font-heading);
  font-size: var(--zk-text-xl);
  margin-bottom: var(--zk-space-5);
  padding-bottom: var(--zk-space-3);
  border-bottom: 2px solid var(--zk-cream-dark);
}
.zk-payment-option {
  display: flex;
  align-items: center;
  gap: var(--zk-space-3);
  padding: var(--zk-space-4);
  border: 2px solid var(--zk-cream-dark);
  border-radius: var(--zk-radius-md);
  margin-bottom: var(--zk-space-3);
  cursor: pointer;
  transition: border-color var(--zk-transition-fast);
}
.zk-payment-option:hover { border-color: var(--zk-accent); }
.zk-payment-option.active { border-color: var(--zk-accent); background: rgba(196,149,106,0.04); }
.zk-payment-option input[type="radio"] { accent-color: var(--zk-accent); }

/* ===== FAQ ===== */
.zk-faq-category { margin-bottom: var(--zk-space-8); }
.zk-faq-category h2 {
  font-family: var(--zk-font-heading);
  font-size: var(--zk-text-xl);
  margin-bottom: var(--zk-space-4);
  color: var(--zk-dark);
}
.zk-faq-item { border-bottom: 1px solid var(--zk-cream-dark); }
.zk-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--zk-space-4) 0;
  font-size: var(--zk-text-base);
  font-weight: 500;
  color: var(--zk-dark);
  text-align: left;
  cursor: pointer;
}
.zk-faq-question svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform var(--zk-transition-fast);
  color: var(--zk-brown);
}
.zk-faq-item.open .zk-faq-question svg { transform: rotate(180deg); }
.zk-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--zk-transition-base);
}
.zk-faq-item.open .zk-faq-answer { max-height: 500px; }
.zk-faq-answer p {
  padding-bottom: var(--zk-space-5);
  color: var(--zk-brown);
  line-height: 1.7;
  font-size: var(--zk-text-sm);
}

/* ===== ABOUT / ÜBER UNS ===== */
.zk-about-hero {
  background: linear-gradient(135deg, var(--zk-dark) 0%, #3d332d 100%);
  color: var(--zk-white);
  padding: var(--zk-space-20) 0;
  text-align: center;
}
.zk-about-hero h1 {
  font-family: var(--zk-font-heading);
  font-size: var(--zk-text-4xl);
}
.zk-about-hero p { max-width: 600px; margin: var(--zk-space-4) auto 0; opacity: 0.8; }
.zk-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--zk-space-12);
  align-items: center;
}
.zk-story-img {
  border-radius: var(--zk-radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--zk-cream-dark, #EDE5DB) 0%, var(--zk-warm-beige, #E8E0D6) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
}
/* v2.0.3 — contain so any image fits without crop, regardless of its native ratio */
.zk-story-img img { width: 100%; height: 100%; object-fit: contain; }
.zk-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--zk-space-6);
}
.zk-value-card {
  text-align: center;
  padding: var(--zk-space-8) var(--zk-space-4);
}
.zk-value-icon {
  width: 64px; height: 64px;
  background: var(--zk-cream);
  border-radius: var(--zk-radius-full);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--zk-space-4);
}
.zk-value-icon svg { width: 28px; height: 28px; color: var(--zk-accent); }
.zk-value-card h3 { font-family: var(--zk-font-heading); font-size: var(--zk-text-lg); margin-bottom: var(--zk-space-2); }
.zk-value-card p { font-size: var(--zk-text-sm); color: var(--zk-brown); line-height: 1.6; }
.zk-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--zk-space-6);
  text-align: center;
  padding: var(--zk-space-12) 0;
}
.zk-stat-number {
  font-family: var(--zk-font-heading);
  font-size: var(--zk-text-4xl);
  font-weight: 700;
  color: var(--zk-accent);
  display: block;
}
.zk-stat-label { font-size: var(--zk-text-sm); color: var(--zk-brown); margin-top: var(--zk-space-1); }

/* ===== PROGRESS BAR (Cart/Checkout) ===== */
.zk-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: var(--zk-space-6) 0;
}
.zk-progress-step {
  display: flex;
  align-items: center;
  gap: var(--zk-space-2);
  font-size: var(--zk-text-sm);
  font-weight: 500;
  color: var(--zk-sand);
}
.zk-progress-step.active { color: var(--zk-accent); font-weight: 700; }
.zk-progress-step.done { color: var(--zk-green); }
.zk-progress-line {
  width: 60px;
  height: 2px;
  background: var(--zk-cream-dark);
  margin: 0 var(--zk-space-3);
}
.zk-progress-line.done { background: var(--zk-green); }

/* ===== VERSAND INFO ===== */
.zk-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--zk-space-6);
}
.zk-info-card {
  background: var(--zk-white);
  border: 1px solid var(--zk-cream-dark);
  border-radius: var(--zk-radius-xl);
  padding: var(--zk-space-8);
  text-align: center;
  transition: all var(--zk-transition-base);
}
.zk-info-card:hover { transform: translateY(-4px); box-shadow: var(--zk-shadow-lg); border-color: transparent; }
.zk-info-card-icon {
  width: 56px; height: 56px;
  background: var(--zk-cream);
  border-radius: var(--zk-radius-full);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--zk-space-4);
}
.zk-info-card-icon svg { width: 24px; height: 24px; color: var(--zk-accent); }
.zk-info-card h3 { font-family: var(--zk-font-heading); font-size: var(--zk-text-lg); margin-bottom: var(--zk-space-2); }
.zk-info-card p { font-size: var(--zk-text-sm); color: var(--zk-brown); line-height: 1.6; }

/* ===== STOFFE PAGE ===== */
.zk-fabric-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--zk-space-4);
}
.zk-fabric-swatch {
  text-align: center;
  cursor: pointer;
  transition: transform var(--zk-transition-fast);
}
.zk-fabric-swatch:hover { transform: scale(1.05); }
.zk-fabric-circle {
  width: 64px; height: 64px;
  border-radius: var(--zk-radius-full);
  margin: 0 auto var(--zk-space-2);
  border: 3px solid var(--zk-cream-dark);
  transition: border-color var(--zk-transition-fast);
}
.zk-fabric-swatch:hover .zk-fabric-circle { border-color: var(--zk-accent); }
.zk-fabric-name { font-size: var(--zk-text-xs); color: var(--zk-brown); font-weight: 500; }

/* ===== SHIPPING TABLE ===== */
.zk-shipping-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--zk-radius-lg);
  overflow: hidden;
  border: 1px solid var(--zk-cream-dark);
}
.zk-shipping-table th, .zk-shipping-table td {
  padding: var(--zk-space-4);
  text-align: left;
  font-size: var(--zk-text-sm);
}
.zk-shipping-table th {
  background: var(--zk-cream);
  font-weight: 600;
  color: var(--zk-dark);
}
.zk-shipping-table td {
  border-bottom: 1px solid var(--zk-cream-dark);
  color: var(--zk-brown);
}
.zk-shipping-table tr:last-child td { border-bottom: none; }

/* ===== BUTTON ALIASES (single-dash compatibility) ===== */
.zk-btn-primary       { background: var(--zk-accent); color: var(--zk-white); border-color: var(--zk-accent); }
.zk-btn-primary:hover { background: var(--zk-accent-hover, var(--zk-accent-dark)); border-color: var(--zk-accent-hover, var(--zk-accent-dark)); color: var(--zk-white); transform: translateY(-1px); box-shadow: 0 4px 15px rgba(196,149,106,0.3); }
.zk-btn-secondary       { background: var(--zk-dark); color: var(--zk-white); border-color: var(--zk-dark); }
.zk-btn-secondary:hover { background: #1a1410; color: var(--zk-white); }
.zk-btn-outline       { background: transparent; color: var(--zk-dark); border-color: var(--zk-sand); }
.zk-btn-outline:hover { border-color: var(--zk-accent); color: var(--zk-accent); }
.zk-btn-outline-light       { background: transparent; color: var(--zk-white); border-color: rgba(255,255,255,0.5); }
.zk-btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--zk-white); color: var(--zk-white); }
.zk-btn-lg   { padding: var(--zk-space-4) var(--zk-space-8); font-size: var(--zk-text-base); }
.zk-btn-sm   { padding: var(--zk-space-2) var(--zk-space-4); font-size: var(--zk-text-xs); }
.zk-btn-full { width: 100%; }

/* ===== HERO MAIN (homepage centered banner) ===== */
/* v1.9.91 — hero capped to same container width (1280px) as the rest of the
 * page. Without this cap hero spanned the full viewport (1920px on FullHD,
 * 2732px CSS at zoom-out 50%) while the rest stayed inside the 1280 container
 * — nothing scaled "together". Now hero, manufaktur, products all share the
 * same 1280 max-width → uniform shrinking on zoom-out / wide screens. */
.zk-hero-main {
  position: relative;
  width: 100%;
  max-width: var(--zk-container, 1280px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;       /* matches hero-banner.webp 2752×1536 = 1.792 */
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--zk-cream, #F5F0EB);
  border-radius: 22px;        /* match manufaktur visual treatment */
}
.zk-hero-main-bg { position: absolute; inset: 0; }
.zk-hero-main-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;     /* slot ratio == image ratio → position irrelevant */
  display: block;
}
@media (max-width: 1024px) {
  .zk-hero-main { min-height: 340px; }
}
@media (max-width: 768px) {
  .zk-hero-main { min-height: 300px; }
}
.zk-hero-main-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,15,10,0.25) 0%, rgba(20,15,10,0.50) 60%, rgba(20,15,10,0.65) 100%);
}
.zk-hero-main-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  max-width: 680px; padding: 0 var(--zk-space-6);
}
.zk-hero-main-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  background: rgba(255,255,255,0.12);
  padding: 6px 16px; border-radius: 20px;
  backdrop-filter: blur(4px);
}
.zk-hero-main-badge svg { width: 14px !important; height: 14px !important; }
.zk-hero-main-content h1 {
  font-family: var(--zk-font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600; line-height: 1.15;
  margin-bottom: 14px; color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.zk-hero-main-content > p {
  font-size: var(--zk-text-lg);
  line-height: 1.6; color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}
.zk-hero-main-buttons {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
@keyframes zkHeroFadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.zk-hero-main-badge    { animation: zkHeroFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.2s both; }
.zk-hero-main-content h1 { animation: zkHeroFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.35s both; }
.zk-hero-main-content > p { animation: zkHeroFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.5s both; }
.zk-hero-main-buttons  { animation: zkHeroFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.65s both; }

/* v1.9.94 — phone (≤600): STACKED layout (image top + cream content below).
 * Placed AFTER the default rules so cascade order beats them — earlier
 * placement was overridden by the un-scoped .zk-hero-main-content blocks. */
@media (max-width: 600px) {
  .zk-hero-main {
    aspect-ratio: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
    display: flex; flex-direction: column;
    background: var(--zk-cream, #F5F0EB);
    border-radius: 18px;
  }
  .zk-hero-main-bg {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
  }
  .zk-hero-main-bg img { object-fit: cover; object-position: center; }
  .zk-hero-main-overlay { display: none; }
  .zk-hero-main-content {
    position: relative; z-index: 2;
    text-align: center;
    padding: 28px 22px 30px;
    max-width: 100%;
    color: var(--zk-dark, #2C2420);
  }
  .zk-hero-main-badge {
    background: rgba(196, 149, 106, .14);
    color: var(--zk-accent-dark, #A67B52);
    backdrop-filter: none;
  }
  .zk-hero-main-content h1 {
    color: var(--zk-dark, #2C2420);
    font-size: clamp(26px, 6.4vw, 34px);
    text-shadow: none;
  }
  .zk-hero-main-content > p {
    color: var(--zk-brown, #7A6B5D);
    text-shadow: none;
  }
  .zk-hero-main-buttons { gap: 10px; }
  /* Make outline button visible on cream bg */
  .zk-hero-main-buttons .zk-btn-secondary,
  .zk-hero-main-buttons .zk-btn-outline,
  .zk-hero-main-buttons .zk-btn-outline-light {
    color: var(--zk-dark, #2C2420);
    border-color: var(--zk-dark, #2C2420);
    background: transparent;
  }
}

/* ===== TRUST BAR (ul variant) ===== */
.zk-trust-items {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--zk-space-6);
}
.zk-trust-items .zk-trust-item { display: flex; align-items: center; gap: var(--zk-space-3); }

/* ===== COLLECTIONS (homepage 3-col grid) ===== */
.zk-collections-section { padding: var(--zk-space-16) 0; background: var(--zk-white); }
/* v2.1.0 — 4 cols na desktop dla 8 kollektion (4×2 grid) */
.zk-collections-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.zk-collection-card {
  display: block;
  text-decoration: none; color: inherit;
  border-radius: 16px;
  overflow: hidden;
  background: var(--zk-white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.zk-collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}
/* v1.9.95 — collection card images: NEVER crop. Each card uses contain
 * so the entire original photo is visible regardless of its ratio
 * (1:1 chmurka, 1.44 nubo, 1.33 zula). Cream gradient backdrop fills the
 * letterbox space → looks like a framed gallery print, not a clipped tile. */
.zk-collection-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--zk-cream-dark, #EDE5DB) 0%, var(--zk-warm-beige, #E8E0D6) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
}
.zk-collection-card-img img {
  width: 100%; height: 100%;
  object-fit: contain;       /* show ENTIRE image, never crop */
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.zk-collection-card:hover .zk-collection-card-img img { transform: scale(1.04); }
.zk-collection-card-body { padding: 20px 22px 24px; }
.zk-collection-card-body h3 {
  font-family: var(--zk-font-heading);
  font-size: var(--zk-text-lg); font-weight: 600;
  color: var(--zk-dark); margin-bottom: 6px;
}
.zk-collection-card-body p {
  font-size: var(--zk-text-sm); color: var(--zk-brown);
  line-height: 1.6; margin-bottom: 12px;
}
.zk-collection-card-link {
  font-size: 13px; font-weight: 600; color: var(--zk-accent);
  letter-spacing: 0.3px; transition: color 0.3s ease;
}
.zk-collection-card:hover .zk-collection-card-link { color: var(--zk-dark); }

/* ===== BESTSELLERS ===== */
.zk-bestsellers-section { padding: var(--zk-space-16) 0; background: var(--zk-cream); }
.zk-product-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--zk-space-6);
}
.zk-product-grid > li { list-style: none; }

/* ===== PARALLAX (single section) ===== */
.zk-parallax {
  position: relative;
  min-height: 500px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin: var(--zk-space-16) 0;
}
.zk-parallax-bg { position: absolute; inset: -60px 0; z-index: 0; }
.zk-parallax-bg img { width: 100%; height: 100%; object-fit: cover; }
.zk-parallax-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
}
.zk-parallax-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  max-width: 700px; padding: 0 var(--zk-space-6);
}
.zk-parallax-content h2 {
  font-family: var(--zk-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600; color: #fff;
  margin-bottom: var(--zk-space-4); line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.zk-parallax-content p {
  font-size: var(--zk-text-lg); line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--zk-space-6);
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

/* ============================================================
   Manufaktur — v1.9.93 premium 2-column editorial rebuild.
   Mirror of .zk-story-banner pattern: framed image + signature seal +
   floating stat badge LEFT, eyebrow + italic-emphasis title + lede +
   2×2 stats grid + premium CTA + trust row RIGHT.
   ============================================================ */
.zk-manufaktur {
  position: relative;
  margin: 0; padding: clamp(64px, 8vw, 120px) var(--zk-space-6);
  background: linear-gradient(180deg, var(--zk-cream-dark, #EDE5DB) 0%, var(--zk-cream, #F5F0EB) 100%);
  overflow: hidden;
}
.zk-manufaktur::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .05;
  background-image:
    linear-gradient(0deg, var(--zk-brown-dark, #5C4F43) 1px, transparent 1px),
    linear-gradient(90deg, var(--zk-brown-dark, #5C4F43) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.zk-manufaktur-container {
  position: relative; z-index: 2;
  max-width: var(--zk-container, 1280px);
  margin: 0 auto;
}
.zk-manufaktur-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;        /* let columns have natural heights → no stretch crop */
}

/* ---------- IMAGE COLUMN ---------- */
/* v1.9.94 — aspect matches hero-banner-1920x900.jpg (16/9) so the FULL image
 * is visible at every viewport. Was 4/5 portrait → cropped sides of mural. */
.zk-manufaktur-figure {
  position: relative; margin: 0;
  aspect-ratio: 1920 / 900;
  width: 100%;
  max-height: 640px;
}
.zk-manufaktur-frame {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(44, 36, 32, .08),
    0 24px 48px -12px rgba(44, 36, 32, .25),
    0 8px 24px -8px rgba(44, 36, 32, .18);
  background: var(--zk-warm-beige, #E8E0D6);
}
.zk-manufaktur-frame::after {
  content: ''; position: absolute; inset: 12px; pointer-events: none;
  border: 1px solid rgba(196, 149, 106, .28);
  border-radius: 2px;
}
.zk-manufaktur-frame img {
  width: 100%; height: 100%;
  object-fit: cover;               /* slot ratio = image ratio (1920/900) → no crop */
  object-position: center;
  display: block;
  transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}
.zk-manufaktur-figure:hover .zk-manufaktur-frame img { transform: scale(1.03); }

/* Floating stat badge — bottom-RIGHT (mirror of story-banner's bottom-left) */
.zk-manufaktur-stat-float {
  position: absolute; bottom: -28px; right: -28px;
  background: var(--zk-dark, #2C2420);
  color: #fff;
  padding: 22px 28px;
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 18px 44px -10px rgba(44, 36, 32, .45);
  z-index: 3;
}
.zk-manufaktur-stat-float-num {
  font-family: var(--zk-font-heading, 'Playfair Display'), Georgia, serif;
  font-size: 38px; font-weight: 600; line-height: 1; color: var(--zk-accent, #C4956A);
  letter-spacing: -0.02em;
}
.zk-manufaktur-stat-float-lbl {
  font-family: ui-monospace, 'SFMono-Regular', monospace;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255, 255, 255, .75); margin-top: 4px;
}

/* Signature seal — top-LEFT (mirror of story-banner's top-right) */
.zk-manufaktur-mark {
  position: absolute; top: -22px; left: -22px;
  color: var(--zk-accent, #C4956A);
  background: var(--zk-cream, #F5F0EB);
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 12px 28px -6px rgba(44, 36, 32, .25);
  z-index: 3;
  transform: rotate(8deg);
  transition: transform .5s ease;
}
.zk-manufaktur-figure:hover .zk-manufaktur-mark { transform: rotate(0deg); }

/* ---------- CONTENT COLUMN ---------- */
.zk-manufaktur-content {
  display: flex; flex-direction: column;
}
.zk-manufaktur-eyebrow {
  font-family: ui-monospace, 'SFMono-Regular', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--zk-accent-dark, #A67B52);
  margin: 0 0 18px;
  display: flex; align-items: center; gap: 10px;
}
.zk-manufaktur-eyebrow span[aria-hidden] { color: var(--zk-accent, #C4956A); }

.zk-manufaktur-title {
  font-family: var(--zk-font-heading, 'Playfair Display'), Georgia, serif;
  font-size: clamp(32px, 4.8vw, 54px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--zk-dark, #2C2420);
  margin: 0 0 24px;
}
.zk-manufaktur-title em {
  font-style: italic;
  color: var(--zk-accent-dark, #A67B52);
  font-weight: 500;
}

.zk-manufaktur-lede {
  font-family: var(--zk-font-body, Inter), sans-serif;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: var(--zk-brown, #7A6B5D);
  margin: 0 0 32px;
  max-width: 52ch;
}
.zk-manufaktur-lede p { margin: 0 0 12px; }
.zk-manufaktur-lede p:last-child { margin-bottom: 0; }

/* 2×2 stats grid — premium tile look on cream bg */
.zk-manufaktur-stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0 0 32px;
  border-top: 1px solid rgba(196, 149, 106, .35);
  padding-top: 28px;
}
.zk-manufaktur-stat-item {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(196, 149, 106, .18);
  border-radius: 6px;
  transition: background .25s, border-color .25s, transform .15s;
}
.zk-manufaktur-stat-item:hover {
  background: #fff;
  border-color: rgba(196, 149, 106, .45);
  transform: translateY(-2px);
}
.zk-manufaktur-stat-item-num {
  font-family: var(--zk-font-heading, 'Playfair Display'), Georgia, serif;
  font-size: clamp(28px, 3vw, 36px); font-weight: 600; line-height: 1;
  color: var(--zk-accent-dark, #A67B52);
  letter-spacing: -0.02em;
}
.zk-manufaktur-stat-item-lbl {
  font-family: ui-monospace, 'SFMono-Regular', monospace;
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--zk-brown, #7A6B5D);
  line-height: 1.4;
}

/* Actions + trust row */
.zk-manufaktur-actions {
  margin: 0 0 24px;
}
.zk-manufaktur-cta {
  display: inline-flex !important; align-items: center; gap: 10px;
  transition: transform .2s, box-shadow .2s, gap .2s;
}
.zk-manufaktur-cta:hover { gap: 14px; }
.zk-manufaktur-cta-arrow { transition: transform .25s; }
.zk-manufaktur-cta:hover .zk-manufaktur-cta-arrow { transform: translateX(3px); }

.zk-manufaktur-trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-family: ui-monospace, 'SFMono-Regular', monospace;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--zk-brown, #7A6B5D);
}
.zk-manufaktur-trust-sep { color: var(--zk-taupe, #A89585); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .zk-manufaktur-grid { grid-template-columns: 1fr; gap: 56px; }
  /* v1.9.94: keep 1920/900 ratio on tablet/mobile too — full image always visible */
  .zk-manufaktur-figure { aspect-ratio: 1920 / 900; max-width: 100%; max-height: none; margin: 0 auto; }
  .zk-manufaktur-stat-float { bottom: -20px; right: -20px; padding: 18px 22px; }
  .zk-manufaktur-stat-float-num { font-size: 32px; }
  .zk-manufaktur-mark { top: -16px; left: -16px; }
  .zk-manufaktur-mark svg { width: 70px; height: 70px; }
}
@media (max-width: 600px) {
  .zk-manufaktur { padding: 56px var(--zk-space-4); }
  .zk-manufaktur-stat-float { bottom: -16px; right: -10px; padding: 14px 18px; }
  .zk-manufaktur-stat-float-num { font-size: 26px; }
  .zk-manufaktur-mark { top: -12px; left: -10px; }
  .zk-manufaktur-mark svg { width: 56px; height: 56px; }
  .zk-manufaktur-stats-grid { gap: 10px; }
  .zk-manufaktur-stat-item { padding: 14px 16px; }
  .zk-manufaktur-trust { font-size: 10px; gap: 6px; }
}

/* ---------- LEGACY classes from old single-column layout (hidden) ---------- */
.zk-manufaktur-inner,
.zk-manufaktur-image,
.zk-manufaktur-content-wrap { display: none !important; }
@media (max-width: 480px) {
  .zk-manufaktur { padding: var(--zk-space-10) var(--zk-space-4); }
  .zk-manufaktur-inner { border-radius: 18px; }
  /* v1.9.90: removed height: 240px override — let aspect-ratio handle scaling */
  .zk-manufaktur-content-wrap { padding: var(--zk-space-8) var(--zk-space-5); }
  .zk-manufaktur-content-wrap .zk-manufaktur-stats { grid-template-columns: 1fr 1fr; gap: var(--zk-space-3); }
  .zk-manufaktur-content-wrap .zk-manufaktur-stat { padding: var(--zk-space-3); }
}

/* Legacy manufaktur-grid (if used elsewhere) keeps old behavior */
.zk-manufaktur-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--zk-space-12); align-items: center;
}
.zk-manufaktur-media {
  border-radius: var(--zk-radius-xl); overflow: hidden; aspect-ratio: 4/5;
  background: var(--zk-cream, #F5F0EB);
  padding: 16px;
}
.zk-manufaktur-media img {
  width: 100%; height: 100%; object-fit: contain; object-position: center; display: block;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.zk-manufaktur-media:hover img { transform: scale(1.03); }
.zk-manufaktur-body h2 {
  font-family: var(--zk-font-heading); margin-bottom: var(--zk-space-4); line-height: 1.2;
}
.zk-manufaktur-features {
  list-style: none; margin: 0 0 var(--zk-space-8); padding: 0;
}
.zk-manufaktur-features li {
  display: flex; flex-direction: column;
  padding: var(--zk-space-3) 0;
  border-bottom: 1px solid var(--zk-cream-dark);
}
.zk-manufaktur-features li:last-child { border-bottom: none; }
.zk-manufaktur-features strong {
  font-size: var(--zk-text-sm);
  font-weight: 600;
  color: var(--zk-dark);
  margin-bottom: 2px;
}
.zk-manufaktur-features span {
  font-size: var(--zk-text-xs);
  color: var(--zk-brown);
  line-height: 1.5;
}

/* ===== REVIEWS heading ===== */
.zk-reviews { padding: var(--zk-space-16) 0; background: var(--zk-white); }

/* ===== GENERIC SECTION heading ===== */
.zk-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--zk-space-10);
}
.zk-section-label {
  display: inline-block;
  font-size: var(--zk-text-xs);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--zk-accent);
  margin-bottom: var(--zk-space-2);
}
.zk-section-intro {
  color: var(--zk-brown);
  font-size: var(--zk-text-base);
  margin-top: var(--zk-space-3);
  line-height: 1.6;
}

/* ===== FEATURED PRODUCT SECTION ===== */
.zk-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--zk-space-12);
  align-items: center;
}
.zk-featured-image {
  border-radius: var(--zk-radius-xl);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--zk-cream);
  padding: 24px;
}
.zk-featured-image img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.zk-featured-image:hover img { transform: scale(1.02); }
.zk-featured-content { padding: var(--zk-space-4) 0; }
.zk-featured-content h2 {
  font-family: var(--zk-font-heading);
  font-size: var(--zk-text-3xl);
  font-weight: 600; color: var(--zk-dark);
  margin-bottom: var(--zk-space-4); line-height: 1.2;
}
.zk-featured-content > p { font-size: var(--zk-text-base); color: var(--zk-brown); line-height: 1.7; margin-bottom: var(--zk-space-6); }
.zk-featured-usps { list-style: none; margin: 0 0 var(--zk-space-8); padding: 0; }
.zk-featured-usps li { display: flex; align-items: center; gap: var(--zk-space-3); padding: var(--zk-space-3) 0; font-size: var(--zk-text-sm); color: var(--zk-brown-dark); border-bottom: 1px solid var(--zk-cream-dark); }
.zk-featured-usps li:last-child { border-bottom: none; }
.zk-featured-usps li svg { width: 20px; height: 20px; color: var(--zk-green); flex-shrink: 0; }

/* ===== DUAL IMAGE SHOWCASE ===== */
.zk-duo-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.zk-duo-card {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/5; text-decoration: none; color: #fff; display: block;
}
.zk-duo-card img { width: 100%; height: 100%; object-fit: contain; object-position: center; background: var(--zk-cream, #F5F0EB); transition: transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.zk-duo-card:hover img { transform: scale(1.06); }
.zk-duo-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.0) 100%);
}
.zk-duo-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 28px; z-index: 2; }
.zk-duo-card-content h3 { font-family: var(--zk-font-heading); font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 600; margin-bottom: 8px; }
.zk-duo-card-content p { font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 16px; line-height: 1.5; }
.zk-duo-card-content .zk-link-arrow { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; color: #fff; border-bottom: 1.5px solid rgba(255,255,255,0.4); padding-bottom: 2px; transition: border-color 0.3s ease; }
.zk-duo-card:hover .zk-link-arrow { border-color: #fff; }

/* ===== SECTION HEADLINE fallbacks ===== */
.zk-section-title {
  font-family: var(--zk-font-heading);
  font-size: var(--zk-text-4xl, 2.5rem);
  font-weight: 600;
  color: var(--zk-dark);
  line-height: 1.2;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.zk-animate { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }
.zk-animate.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .zk-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--zk-space-6); }
  .zk-products-grid { grid-template-columns: repeat(3, 1fr); }
  .zk-trust-bar .container { grid-template-columns: repeat(2, 1fr); }
  .zk-category-layout { grid-template-columns: 1fr; }
  .zk-filter-sidebar { position: static; }
  .zk-values-grid { grid-template-columns: repeat(2, 1fr); }
  .zk-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .zk-checkout-layout { grid-template-columns: 1fr; }
  .zk-cart-layout { grid-template-columns: 1fr; }
  .zk-cart-summary { position: static; }
  .zk-section { padding: var(--zk-space-16) 0; }
}

@media (max-width: 1024px) {
  .zk-trust-items { grid-template-columns: repeat(2, 1fr); gap: var(--zk-space-4); }
  .zk-collections-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .zk-product-grid { grid-template-columns: repeat(3, 1fr); }
  .zk-manufaktur-grid { gap: var(--zk-space-8); }
  .zk-featured { gap: var(--zk-space-8); }
  .zk-duo-showcase { gap: 16px; }
}
@media (max-width: 768px) {
  /* legacy mobile rule replaced by aspect-ratio above */
  .zk-hero-main-content h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .zk-hero-main-buttons { flex-direction: column; align-items: center; }
  .zk-hero-main-buttons .zk-btn { width: 100%; max-width: 300px; }
  .zk-trust-items { grid-template-columns: 1fr 1fr; }
  .zk-collections-row { grid-template-columns: 1fr; gap: 16px; }
  .zk-collection-card-img { aspect-ratio: 4/3; }
  .zk-product-grid { grid-template-columns: repeat(2, 1fr); gap: var(--zk-space-4); }
  .zk-parallax { min-height: 380px; margin: var(--zk-space-10) 0; }
  .zk-manufaktur-grid { grid-template-columns: 1fr; gap: var(--zk-space-6); }
  .zk-manufaktur-media { aspect-ratio: 4/3; }
  .zk-featured { grid-template-columns: 1fr; gap: var(--zk-space-6); }
  .zk-featured-image { aspect-ratio: 4/3; }
  .zk-duo-showcase { grid-template-columns: 1fr; }
  .zk-duo-card { aspect-ratio: 3/4; }
  .zk-section-header { margin-bottom: var(--zk-space-6); }
}
@media (max-width: 640px) {
  .zk-footer-grid { grid-template-columns: 1fr 1fr; gap: var(--zk-space-5) var(--zk-space-6); }
  .zk-footer-brand { grid-column: 1 / -1; margin-bottom: var(--zk-space-2); }
}

@media (max-width: 480px) {
  .zk-trust-items { grid-template-columns: 1fr; }
  .zk-product-grid { grid-template-columns: 1fr; }
  .zk-collection-card-body { padding: 16px; }
  .zk-parallax { min-height: 300px; }
  .zk-footer-grid { grid-template-columns: 1fr; gap: var(--zk-space-5); }
  .zk-footer-brand { grid-column: auto; margin-bottom: 0; }
}
@media (max-width: 768px) {
  .zk-header-nav { display: none; }
  .zk-menu-trigger { display: flex; }
  .zk-hero { min-height: 60vh; }
  .zk-hero-content h1 { font-size: var(--zk-text-3xl); }
  .zk-hero-content { padding: var(--zk-space-12) var(--zk-space-4); }
  .zk-categories-grid { grid-template-columns: 1fr; }
  .zk-products-grid, .zk-products-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .zk-usp-grid { grid-template-columns: 1fr; }
  .zk-reviews-grid { grid-template-columns: 1fr; }
  .zk-process-grid { grid-template-columns: repeat(2, 1fr); }
  .zk-product-single { grid-template-columns: 1fr; gap: var(--zk-space-6); }
  .zk-story-grid { grid-template-columns: 1fr; }
  .zk-contact-grid { grid-template-columns: 1fr; }
  .zk-info-cards { grid-template-columns: 1fr; }
  .zk-newsletter .container { flex-direction: column; text-align: center; }
  .zk-newsletter-form { width: 100%; }
  .zk-newsletter-form input { min-width: 0; flex: 1; }
  .zk-topbar .container { gap: var(--zk-space-3); justify-content: center; }
  .zk-topbar-item { font-size: 11px; }
  .zk-topbar-item:nth-child(3), .zk-topbar-item:nth-child(4) { display: none; }
  .zk-trust-bar .container { grid-template-columns: 1fr; }
  .zk-fabric-grid { grid-template-columns: repeat(4, 1fr); }
  .zk-form-row { grid-template-columns: 1fr; }
  .zk-cart-item { grid-template-columns: 80px 1fr auto; }
  .zk-footer-bottom { flex-direction: column; text-align: center; }
  .zk-footer-legal { justify-content: center; }
  .zk-section { padding: var(--zk-space-12) 0; }
  .zk-section-header { margin-bottom: var(--zk-space-8); }
  .zk-page-title { padding: var(--zk-space-6) 0; }
  .zk-page-title h1 { font-size: var(--zk-text-3xl); }
  .zk-progress-step { font-size: var(--zk-text-xs); }
  .zk-progress-line { width: 32px; margin: 0 var(--zk-space-2); }
  .zk-payment-bar .container { gap: var(--zk-space-2); }
  .zk-payment-label { font-size: var(--zk-text-xs); width: 100%; text-align: center; }
  .zk-pay-card { padding: 4px 8px; height: 30px; }
  .zk-about-hero { padding: var(--zk-space-12) 0; }
  .zk-header .container { height: 60px; gap: var(--zk-space-3); }
  .zk-header-logo img { height: 36px !important; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - (var(--zk-space-4) * 2)); }
  .zk-products-grid, .zk-products-grid--3 { grid-template-columns: 1fr; }
  .zk-hero { min-height: 50vh; }
  .zk-hero-buttons { flex-direction: column; }
  .zk-hero-buttons .zk-btn { width: 100%; }
  .zk-process-grid { grid-template-columns: 1fr; }
  .zk-values-grid { grid-template-columns: 1fr; }
  .zk-stats-bar { grid-template-columns: repeat(2, 1fr); gap: var(--zk-space-4); }
  .zk-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .zk-fabric-grid { grid-template-columns: repeat(3, 1fr); }
  .zk-section { padding: var(--zk-space-8) 0; }
  .zk-section-title { font-size: var(--zk-text-2xl); }
  .zk-progress { flex-wrap: wrap; justify-content: center; gap: var(--zk-space-1); }
  .zk-progress-step { font-size: 11px; gap: var(--zk-space-1); }
  .zk-progress-step svg { width: 14px; height: 14px; }
  .zk-progress-line { width: 20px; margin: 0 2px; }
  .zk-topbar .container { gap: var(--zk-space-2); }
  .zk-topbar-item:nth-child(2) { display: none; }
  .zk-cart-item { grid-template-columns: 70px 1fr; }
  .zk-cart-item-img img { width: 70px; height: 70px; }
  .zk-newsletter { padding: 22px 0; }
  .zk-newsletter-content h3 { font-size: var(--zk-text-xl); }
  .zk-footer { padding: var(--zk-space-10) 0 var(--zk-space-6); }
  .zk-about-hero { padding: var(--zk-space-8) 0; }
  .zk-about-hero h1 { font-size: var(--zk-text-3xl); }
  .zk-legal { padding: var(--zk-space-8) 0; }
  .zk-legal-content h2 { font-size: var(--zk-text-xl); margin: var(--zk-space-6) 0 var(--zk-space-3); }
  .zk-header .container { height: 56px; }
  .zk-header-logo img { height: 32px !important; }
  .zk-header-icon { width: 36px; height: 36px; }
  .zk-header-icon svg { width: 18px; height: 18px; }
  .zk-cart-count { min-width: 16px; height: 16px; font-size: 9px; }
  .zk-review-card { padding: var(--zk-space-5); }
  .zk-usp-card { padding: var(--zk-space-5) var(--zk-space-4); }
}

/* ===== PRINT ===== */
/* ============================================================
   Homepage section extras (Task 14 — prototype parity)
   ============================================================ */

/* Cream-background variant used by Duo / Process / Reviews */
.zk-section-cream { background: var(--zk-cream, #F5F0EB); }

/* Featured usps check-marks */
.zk-featured-usps { list-style: none; padding: 0; margin: 0 0 var(--zk-space-6, 1.5rem); display: grid; gap: 12px; }
.zk-featured-usps li {
	display: flex; align-items: flex-start; gap: 10px;
	color: var(--zk-dark, #2C2420); font-size: 15px; line-height: 1.5;
}
.zk-featured-usps li svg { width: 20px; height: 20px; color: var(--zk-green, #5B8C5A); flex-shrink: 0; margin-top: 2px; stroke-width: 2.5; }

/* ---- Duo showcase ---- */
.zk-duo-showcase {
	display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.zk-duo-card {
	position: relative; display: block; border-radius: 20px;
	overflow: hidden; aspect-ratio: 4/5; color: #fff; text-decoration: none;
	background: #2C2420;
}
.zk-duo-card img { width: 100%; height: 100%; object-fit: contain; object-position: center; background: var(--zk-cream, #F5F0EB); transition: transform .8s cubic-bezier(.22,1,.36,1); }
.zk-duo-card:hover img { transform: scale(1.06); }
.zk-duo-card-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(42,36,32,.2) 40%, rgba(42,36,32,.85) 100%);
}
.zk-duo-card-content {
	position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 28px 32px;
	z-index: 2;
}
.zk-duo-card-content h3 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(22px, 2.2vw, 28px); color: #fff; font-weight: 600; margin: 0 0 8px;
}
.zk-duo-card-content p {
	color: rgba(255,255,255,.88); font-size: 14px; line-height: 1.6; margin: 0 0 14px;
}
.zk-link-arrow {
	display: inline-flex; align-items: center; gap: 6px;
	color: var(--zk-accent, #C4956A); font-size: 13px; font-weight: 600;
	text-transform: uppercase; letter-spacing: .05em;
	transition: gap .25s;
}
.zk-duo-card:hover .zk-link-arrow { gap: 12px; }

@media (max-width: 768px) {
	.zk-duo-showcase { grid-template-columns: 1fr; }
}

/* ---- Process numbered steps (numbered list override) ---- */
.zk-process-grid {
	list-style: none; padding: 0; margin: 0;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
	counter-reset: none;
}
.zk-process-grid .zk-process-step {
	background: #fff; border-radius: 16px; padding: 32px 24px; text-align: center;
	transition: transform .3s ease, box-shadow .3s ease;
}
.zk-process-grid .zk-process-step:hover {
	transform: translateY(-4px); box-shadow: 0 12px 30px rgba(42,36,32,.06);
}
.zk-process-step-num {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; border-radius: 50%;
	background: var(--zk-accent, #C4956A); color: #fff;
	font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600;
	margin-bottom: 16px;
}
.zk-process-step-heading {
	font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600;
	color: var(--zk-dark, #2C2420); margin: 0 0 10px;
}
.zk-process-step-text {
	font-size: 14px; color: var(--zk-brown, #7A6B5D); line-height: 1.6; margin: 0;
}

@media (max-width: 960px) { .zk-process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .zk-process-grid { grid-template-columns: 1fr; } }

/* ---- Manufaktur stats grid ---- */
.zk-manufaktur-stats {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
	margin: 24px 0 28px;
	padding: 24px 0;
	border-top: 1px solid rgba(122,107,93,.12);
	border-bottom: 1px solid rgba(122,107,93,.12);
}
.zk-manufaktur-stat { text-align: center; }
.zk-manufaktur-stat-number {
	display: block; font-family: 'Playfair Display', serif;
	font-size: clamp(28px, 3.4vw, 40px); font-weight: 600;
	color: var(--zk-accent, #C4956A); line-height: 1; margin-bottom: 6px;
}
.zk-manufaktur-stat-label {
	display: block; font-size: 12px; color: var(--zk-brown, #7A6B5D);
	text-transform: uppercase; letter-spacing: .05em;
}
@media (max-width: 600px) {
	.zk-manufaktur-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
.zk-manufaktur-label { color: var(--zk-accent, #C4956A); margin-bottom: 8px; }

/* ---- Fabric strip — 2-col 200px image + content, proto l.1044-1067 ---- */
.zk-fabric-strip {
	background: linear-gradient(135deg, #F5F0EB 0%, #EDE5DB 100%);
	padding: 72px 0; margin: 0;
}
.zk-fabric-strip-inner {
	display: flex; align-items: center; gap: 56px;
	max-width: 1100px; margin: 0 auto;
}
.zk-fabric-strip-image {
	flex: 0 0 220px; width: 220px; height: 220px;
	border-radius: 50%; overflow: hidden;
	box-shadow: 0 16px 40px rgba(42,36,32,.15);
	border: 6px solid rgba(255,255,255,.4);
}
.zk-fabric-strip-image img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.zk-fabric-strip-content { flex: 1; }
.zk-fabric-strip-content h3 {
	font-family: 'Playfair Display', serif; font-size: clamp(24px, 2.6vw, 32px);
	color: var(--zk-dark, #2C2420); font-weight: 600; margin: 0 0 14px;
	line-height: 1.25;
}
.zk-fabric-strip-content p { color: var(--zk-brown, #7A6B5D); line-height: 1.75; margin: 0 0 22px; font-size: 15px; max-width: 560px; }
.zk-fabric-colors { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 26px; }
.zk-fabric-color {
	width: 36px; height: 36px; border-radius: 50%;
	box-shadow: 0 2px 8px rgba(42,36,32,.12), inset 0 0 0 2px rgba(255,255,255,.8);
	cursor: default; transition: transform .25s;
}
.zk-fabric-color:hover { transform: scale(1.15); }
.zk-fabric-strip .zk-btn { display: inline-block; }

@media (max-width: 768px) {
	.zk-fabric-strip-inner { flex-direction: column; gap: 28px; text-align: center; }
	.zk-fabric-strip-image { width: 180px; height: 180px; flex-basis: 180px; }
	.zk-fabric-colors { justify-content: center; }
}

/* ---- Ensure featured image aspect + layout ---- */
.zk-featured {
	display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
@media (max-width: 960px) { .zk-featured { grid-template-columns: 1fr; gap: 32px; } }
.zk-featured-intro { color: var(--zk-brown, #7A6B5D); font-size: 15px; line-height: 1.75; margin: 0 0 18px; }

/* ============================================================
   Story banner — v1.9.92 premium 2-column rebuild (replaces parallax-banner).
   Image left + editorial content right (eyebrow / title / lede / features /
   CTA / trust row). Inspired by .zk-featured pattern but elevated with
   numbered features, signature seal, floating stat badge, mono-font details.
   ============================================================ */
.zk-story-banner {
	position: relative;
	margin: 0; padding: clamp(64px, 8vw, 120px) var(--zk-space-6);
	background: linear-gradient(180deg, var(--zk-cream, #F5F0EB) 0%, var(--zk-cream-dark, #EDE5DB) 100%);
	overflow: hidden;
}
.zk-story-banner::before {
	/* subtle decorative grid texture */
	content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .06;
	background-image:
		linear-gradient(0deg, var(--zk-brown-dark, #5C4F43) 1px, transparent 1px),
		linear-gradient(90deg, var(--zk-brown-dark, #5C4F43) 1px, transparent 1px);
	background-size: 80px 80px;
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.zk-story-container {
	position: relative; z-index: 2;
	max-width: var(--zk-container, 1280px);
	margin: 0 auto;
}
.zk-story-grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: clamp(40px, 6vw, 88px);
	align-items: center;
}

/* ---------- IMAGE COLUMN ---------- */
.zk-story-image {
	position: relative; margin: 0;
	aspect-ratio: 4 / 5;
	max-height: 720px;
}
.zk-story-image-frame {
	position: relative;
	width: 100%; height: 100%;
	border-radius: 4px;
	overflow: hidden;
	box-shadow:
		0 1px 3px rgba(44, 36, 32, .08),
		0 24px 48px -12px rgba(44, 36, 32, .25),
		0 8px 24px -8px rgba(44, 36, 32, .18);
	background: var(--zk-warm-beige, #E8E0D6);
}
.zk-story-image-frame::after {
	/* inner thin gold border */
	content: ''; position: absolute; inset: 12px; pointer-events: none;
	border: 1px solid rgba(196, 149, 106, .28);
	border-radius: 2px;
}
.zk-story-image-frame img {
	/* v1.9.95 — contain so the original photo (chmurka 1300×1300 square) is
	 * never clipped by the 4/5 slot. Cream backdrop fills letterbox area. */
	width: 100%; height: 100%; object-fit: contain; object-position: center; display: block;
	padding: 8px;
	transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}
.zk-story-image:hover .zk-story-image-frame img { transform: scale(1.03); }

/* Floating stat badge — bottom-left */
.zk-story-image-stat {
	position: absolute; bottom: -28px; left: -28px;
	background: var(--zk-dark, #2C2420);
	color: #fff;
	padding: 22px 28px;
	border-radius: 4px;
	display: flex; flex-direction: column; gap: 2px;
	box-shadow: 0 18px 44px -10px rgba(44, 36, 32, .45);
	z-index: 3;
}
.zk-story-stat-num {
	font-family: var(--zk-font-heading, 'Playfair Display'), Georgia, serif;
	font-size: 38px; font-weight: 600; line-height: 1; color: var(--zk-accent, #C4956A);
	letter-spacing: -0.02em;
}
.zk-story-stat-lbl {
	font-family: ui-monospace, 'SFMono-Regular', monospace;
	font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
	color: rgba(255, 255, 255, .75); margin-top: 4px;
}

/* Signature seal — top-right */
.zk-story-image-mark {
	position: absolute; top: -22px; right: -22px;
	color: var(--zk-accent, #C4956A);
	background: var(--zk-cream, #F5F0EB);
	border-radius: 50%;
	padding: 8px;
	box-shadow: 0 12px 28px -6px rgba(44, 36, 32, .25);
	z-index: 3;
	transform: rotate(-8deg);
	transition: transform .5s ease;
}
.zk-story-image:hover .zk-story-image-mark { transform: rotate(0deg); }

/* ---------- CONTENT COLUMN ---------- */
.zk-story-content {
	display: flex; flex-direction: column;
}
.zk-story-eyebrow {
	font-family: ui-monospace, 'SFMono-Regular', monospace;
	font-size: 11px; font-weight: 500;
	letter-spacing: .22em; text-transform: uppercase;
	color: var(--zk-accent-dark, #A67B52);
	margin: 0 0 18px;
	display: flex; align-items: center; gap: 10px;
}
.zk-story-eyebrow span[aria-hidden] { color: var(--zk-accent, #C4956A); }

.zk-story-title {
	font-family: var(--zk-font-heading, 'Playfair Display'), Georgia, serif;
	font-size: clamp(32px, 4.8vw, 54px);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.015em;
	color: var(--zk-dark, #2C2420);
	margin: 0 0 24px;
}
.zk-story-title em {
	font-style: italic;
	color: var(--zk-accent-dark, #A67B52);
	font-weight: 500;
}

.zk-story-lede {
	font-family: var(--zk-font-body, Inter), sans-serif;
	font-size: clamp(15px, 1.2vw, 17px);
	line-height: 1.7;
	color: var(--zk-brown, #7A6B5D);
	margin: 0 0 32px;
	max-width: 52ch;
}

/* Numbered features list */
.zk-story-features {
	list-style: none; margin: 0 0 36px; padding: 0;
	display: flex; flex-direction: column; gap: 18px;
}
.zk-story-features li {
	display: grid; grid-template-columns: 56px 1fr; gap: 18px;
	align-items: start;
	padding: 14px 0;
	border-top: 1px solid rgba(196, 149, 106, .18);
}
.zk-story-features li:first-child { border-top: 1px solid rgba(196, 149, 106, .35); }
.zk-story-features li:last-child { border-bottom: 1px solid rgba(196, 149, 106, .35); }

.zk-story-feat-num {
	font-family: var(--zk-font-heading, 'Playfair Display'), Georgia, serif;
	font-size: 36px; font-weight: 500; line-height: 1;
	color: var(--zk-accent, #C4956A);
	letter-spacing: -0.02em;
}
.zk-story-feat-body {
	display: flex; flex-direction: column; gap: 4px;
	padding-top: 4px;
}
.zk-story-feat-body strong {
	font-family: var(--zk-font-heading, 'Playfair Display'), Georgia, serif;
	font-size: 17px; font-weight: 600;
	color: var(--zk-dark, #2C2420);
	letter-spacing: -0.01em;
}
.zk-story-feat-body span {
	font-family: ui-monospace, 'SFMono-Regular', monospace;
	font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
	color: var(--zk-brown, #7A6B5D);
}

/* CTA + trust row */
.zk-story-actions {
	margin: 0 0 24px;
}
.zk-story-cta {
	display: inline-flex !important; align-items: center; gap: 10px;
	transition: transform .2s, box-shadow .2s, gap .2s;
}
.zk-story-cta:hover { gap: 14px; }
.zk-story-cta-arrow { transition: transform .25s; }
.zk-story-cta:hover .zk-story-cta-arrow { transform: translateX(3px); }

.zk-story-trust {
	display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
	font-family: ui-monospace, 'SFMono-Regular', monospace;
	font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
	color: var(--zk-brown, #7A6B5D);
}
.zk-story-trust-stars { color: var(--zk-accent, #C4956A); letter-spacing: 2px; font-size: 13px; }
.zk-story-trust-rate {
	font-family: var(--zk-font-heading, 'Playfair Display'), Georgia, serif;
	font-weight: 600; font-size: 14px; letter-spacing: 0;
	color: var(--zk-dark, #2C2420); text-transform: none;
}
.zk-story-trust-sep { color: var(--zk-taupe, #A89585); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
	.zk-story-grid { grid-template-columns: 1fr; gap: 64px; }
	.zk-story-image { aspect-ratio: 4 / 5; max-width: 560px; margin: 0 auto; }
	.zk-story-image-stat { bottom: -20px; left: -20px; padding: 18px 22px; }
	.zk-story-stat-num { font-size: 32px; }
	.zk-story-image-mark { top: -16px; right: -16px; }
	.zk-story-image-mark svg { width: 70px; height: 70px; }
}
@media (max-width: 600px) {
	.zk-story-banner { padding: 56px var(--zk-space-4); }
	.zk-story-image-stat { bottom: -16px; left: -10px; padding: 14px 18px; }
	.zk-story-stat-num { font-size: 26px; }
	.zk-story-image-mark { top: -12px; right: -10px; }
	.zk-story-image-mark svg { width: 56px; height: 56px; }
	.zk-story-features li { grid-template-columns: 44px 1fr; gap: 14px; }
	.zk-story-feat-num { font-size: 28px; }
	.zk-story-trust { font-size: 10px; gap: 6px; }
}

/* ---------- LEGACY .zk-parallax-banner kept disabled ---------- */
.zk-parallax-banner { display: none !important; }

@media (max-width: 768px) { .zk-parallax-banner { min-height: 540px; } }
@media (max-width: 480px) { .zk-parallax-banner { min-height: 460px; } }

/* ============================================================
   Task 14 part 2 — Bestseller card (shop-v2 parity), avatars, newsletter BG
   ============================================================ */

/* Section header label prefix (many sections use it) */
.zk-section-label {
	display: block; text-align: center;
	font-size: 12px; font-weight: 600; letter-spacing: .12em;
	text-transform: uppercase; color: var(--zk-accent, #C4956A);
	margin: 0 0 10px;
}
.zk-section-desc {
	text-align: center; color: var(--zk-brown, #7A6B5D);
	font-size: 15px; line-height: 1.7; max-width: 620px;
	margin: 10px auto 0;
}

/* Full-width button (used in bestseller cards) */
.zk-btn-full { display: block; width: 100%; text-align: center; }

/* Bestseller product cards (custom layout — NOT the WC loop card) */
.zk-products-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.zk-product-card-bestseller {
	background: #fff; border-radius: 18px; overflow: hidden;
	box-shadow: 0 2px 10px rgba(42,36,32,.04);
	transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
	display: flex; flex-direction: column;
}
.zk-product-card-bestseller:hover {
	transform: translateY(-6px); box-shadow: 0 24px 50px rgba(42,36,32,.1);
}
.zk-product-card-bestseller .zk-product-image {
	position: relative; aspect-ratio: 1 / 1; display: block; overflow: hidden;
	background: var(--zk-cream, #F5F0EB);
	padding: 16px;
}
.zk-product-card-bestseller .zk-product-image img {
	width: 100%; height: 100%; object-fit: contain; object-position: center;
	transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.zk-product-card-bestseller:hover .zk-product-image img { transform: scale(1.03); }
@media (max-width: 600px) {
	.zk-product-card-bestseller .zk-product-image { aspect-ratio: 1 / 1; padding: 12px; }
}
.zk-product-card-bestseller .zk-product-badge {
	position: absolute; top: 14px; left: 14px; z-index: 2;
	background: var(--zk-accent, #C4956A); color: #fff;
	padding: 5px 12px; border-radius: 999px;
	font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.zk-product-card-bestseller .zk-product-info { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.zk-product-card-bestseller .zk-product-collection {
	display: inline-block; align-self: flex-start;
	font-size: 11px; font-weight: 600; letter-spacing: .1em;
	text-transform: uppercase; color: var(--zk-brown, #7A6B5D);
}
.zk-product-card-bestseller .zk-product-name {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 20px; font-weight: 600; margin: 0; line-height: 1.3;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
	overflow: hidden;
}
.zk-product-card-bestseller .zk-product-name a { color: var(--zk-dark, #2C2420); text-decoration: none; transition: color .2s; }
.zk-product-card-bestseller .zk-product-name a:hover { color: var(--zk-accent, #C4956A); }
.zk-product-card-bestseller .zk-product-desc { color: var(--zk-brown, #7A6B5D); font-size: 14px; line-height: 1.55; margin: 0; }
.zk-product-card-bestseller .zk-product-price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.zk-product-card-bestseller .zk-product-price {
	font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; color: var(--zk-dark, #2C2420);
}
.zk-product-card-bestseller .zk-product-vat { font-size: 12px; color: #999; }
.zk-product-card-bestseller .zk-product-shipping {
	display: flex; align-items: center; gap: 8px;
	color: var(--zk-green, #5B8C5A); font-size: 13px;
}
.zk-product-card-bestseller .zk-product-shipping svg { width: 16px; height: 16px; flex-shrink: 0; }
.zk-product-card-bestseller .zk-product-actions { margin-top: auto; }

@media (max-width: 960px) { .zk-products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .zk-products-grid { grid-template-columns: 1fr; } }

/* Review cards — avatars */
.zk-review-card .zk-review-text {
	color: var(--zk-dark, #2C2420); line-height: 1.7; font-size: 15px; margin: 10px 0 16px;
	font-style: italic;
}
.zk-review-card .zk-review-author { display: flex; align-items: center; gap: 12px; }
.zk-review-avatar {
	width: 42px; height: 42px; border-radius: 50%;
	background: var(--zk-accent, #C4956A); color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-family: 'Playfair Display', serif; font-weight: 600; font-size: 15px;
	flex-shrink: 0;
}
.zk-review-name { font-weight: 600; color: var(--zk-dark, #2C2420); font-size: 14px; line-height: 1.2; }
.zk-review-location { font-size: 12px; color: var(--zk-brown, #7A6B5D); margin-top: 2px; }
.zk-review-stars { color: #E4B756; font-size: 16px; letter-spacing: 2px; }

/* Newsletter BG image overlay */
.zk-newsletter { position: relative; overflow: hidden; }
.zk-newsletter-bg {
	position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.zk-newsletter-bg picture {
	display: block;
	width: 100%;
	height: 100%;
}
.zk-newsletter-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 62%;
	opacity: .08;
}
.zk-newsletter .container, .zk-newsletter-inner { position: relative; z-index: 1; }

@media (min-width: 768px) {
	.zk-newsletter {
		min-height: 360px;
		display: flex;
		align-items: center;
	}

	.zk-newsletter-bg img {
		object-position: center 78%;
		opacity: .12;
	}
}

@media (max-width: 767px) {
	.zk-newsletter {
		min-height: 460px;
		display: flex;
		align-items: center;
	}

	.zk-newsletter-bg img {
		object-position: center 78%;
		opacity: .16;
	}
}

/* ============================================================
   Footer brand logo — invert to white on dark bg
   ============================================================ */
.zk-footer .zk-footer-logo { margin: 0 0 14px; line-height: 0; }
.zk-footer .zk-footer-logo .custom-logo,
.zk-footer .zk-footer-logo img.custom-logo {
	height: 48px; width: auto; max-height: 48px; display: block;
	filter: brightness(0) invert(1);
	opacity: .92;
}
.zk-footer .zk-footer-logo .custom-logo-link { display: inline-block; line-height: 0; }
.zk-footer-logo-text {
	display: block;
	font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 600;
	color: #fff; margin: 0 0 14px;
}

/* ============================================================
   Task 17 — Industry-specific sections (certifications / matratzen teaser
   / instagram gallery / FAQ accordion)
   ============================================================ */

/* --- Certifications (5 badges grid) --- */
.zk-certifications-section { padding: 72px 0; background: #fff; }
.zk-cert-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.zk-cert-card {
  text-align: center; padding: 28px 16px;
  background: var(--zk-cream, #F5F0EB);
  border-radius: 14px;
  transition: transform .3s, box-shadow .3s, background .3s;
}
.zk-cert-card:hover {
  transform: translateY(-4px); background: #fff;
  box-shadow: 0 16px 36px rgba(42,36,32,.08);
}
.zk-cert-icon {
  width: 60px; height: 60px; margin: 0 auto 14px;
  border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(42,36,32,.06);
}
.zk-cert-icon svg { width: 28px; height: 28px; color: var(--zk-green, #5B8C5A); }
.zk-cert-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 600;
  color: var(--zk-dark, #2C2420); margin: 0 0 6px;
  line-height: 1.3;
}
.zk-cert-desc { font-size: 12px; color: var(--zk-brown, #7A6B5D); line-height: 1.5; margin: 0; }

@media (max-width: 960px) { .zk-cert-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .zk-cert-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .zk-cert-grid { grid-template-columns: 1fr; } }

/* --- Matratzen cross-sell teaser (2 tiles) --- */
.zk-matratzen-teaser { padding: 72px 0; background: var(--zk-cream, #F5F0EB); }
.zk-matratzen-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 0 0 36px;
}
.zk-matratze-tile {
  display: flex; flex-direction: column;
  background: #fff; border-radius: 20px; overflow: hidden;
  text-decoration: none; color: inherit;
  box-shadow: 0 4px 16px rgba(42,36,32,.06);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}
.zk-matratze-tile:hover {
  transform: translateY(-6px); box-shadow: 0 28px 56px rgba(42,36,32,.1);
}
.zk-matratze-media {
  position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--zk-cream, #F5F0EB);
  padding: 12px;
}
.zk-matratze-media img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform .7s cubic-bezier(.22,1,.36,1); }
.zk-matratze-tile:hover .zk-matratze-media img { transform: scale(1.05); }
.zk-matratze-tag {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  color: var(--zk-dark, #2C2420); font-size: 12px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
}
.zk-matratze-body { padding: 28px 28px 30px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.zk-matratze-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--zk-cream, #F5F0EB);
  display: flex; align-items: center; justify-content: center;
  color: var(--zk-accent, #C4956A); margin-bottom: 4px;
}
.zk-matratze-icon svg { width: 22px; height: 22px; }
.zk-matratze-body h3 {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600;
  color: var(--zk-dark, #2C2420); margin: 0; line-height: 1.3;
}
.zk-matratze-body p { color: var(--zk-brown, #7A6B5D); font-size: 14px; line-height: 1.6; margin: 0; }
.zk-matratze-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-top: auto; padding-top: 14px;
  border-top: 1px solid #f0ece5;
}
.zk-matratze-price {
  font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600;
  color: var(--zk-dark, #2C2420);
}
.zk-matratze-cta {
  color: var(--zk-accent, #C4956A); font-size: 14px; font-weight: 600;
  transition: gap .25s; display: inline-flex; gap: 6px;
}
.zk-matratze-tile:hover .zk-matratze-cta { gap: 12px; color: var(--zk-accent-dark, #A67B52); }
.zk-matratzen-footer-link { text-align: center; }

@media (max-width: 768px) { .zk-matratzen-grid { grid-template-columns: 1fr; gap: 20px; } }

/* --- Instagram gallery (8-tile grid + hover overlay) --- */
.zk-instagram-section { padding: 72px 0; background: #fff; }
.zk-instagram-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 0 0 36px;
  max-width: 1280px;
}
.zk-instagram-tile {
  position: relative; aspect-ratio: 1; overflow: hidden;
  border-radius: 8px; display: block;
  background: var(--zk-cream, #F5F0EB);
  padding: 8px;
}
.zk-instagram-tile img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.zk-instagram-tile:hover img { transform: scale(1.08); }
.zk-instagram-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(196,149,106,.75) 0%, rgba(166,123,82,.75) 100%);
  opacity: 0; transition: opacity .3s;
  color: #fff;
}
.zk-instagram-tile:hover .zk-instagram-overlay { opacity: 1; }
.zk-instagram-overlay svg { width: 36px; height: 36px; }
.zk-instagram-cta { text-align: center; }

@media (max-width: 960px) { .zk-instagram-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .zk-instagram-grid { grid-template-columns: repeat(2, 1fr); } }

/* --- FAQ accordion (native <details>) --- */
.zk-faq-section { padding: 72px 0; background: var(--zk-cream, #F5F0EB); }
.zk-faq-list {
  max-width: 860px; margin: 0 auto 40px;
  display: flex; flex-direction: column; gap: 14px;
}
.zk-faq-item {
  background: #fff; border-radius: 14px; overflow: hidden;
  transition: box-shadow .3s;
  box-shadow: 0 2px 10px rgba(42,36,32,.04);
}
.zk-faq-item[open] { box-shadow: 0 8px 30px rgba(42,36,32,.08); }
.zk-faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 22px 26px;
  cursor: pointer; list-style: none;
  transition: background .2s;
}
.zk-faq-item summary::-webkit-details-marker { display: none; }
.zk-faq-item summary::marker { display: none; content: ''; }
.zk-faq-item summary:hover { background: #faf7f2; }
.zk-faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 600;
  color: var(--zk-dark, #2C2420); line-height: 1.4;
}
.zk-faq-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--zk-cream, #F5F0EB); color: var(--zk-accent, #C4956A);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform .3s, background .2s;
}
.zk-faq-toggle svg { width: 16px; height: 16px; stroke-width: 2.5; }
.zk-faq-item[open] .zk-faq-toggle {
  transform: rotate(45deg);
  background: var(--zk-accent, #C4956A); color: #fff;
}
.zk-faq-a {
  padding: 0 26px 24px;
  color: var(--zk-brown, #7A6B5D); font-size: 15px; line-height: 1.75;
}
.zk-faq-a p { margin: 0 0 12px; }
.zk-faq-a p:last-child { margin-bottom: 0; }
.zk-faq-a strong { color: var(--zk-dark, #2C2420); font-weight: 600; }

.zk-faq-footer {
  text-align: center; max-width: 520px; margin: 0 auto;
  padding-top: 20px; border-top: 1px solid rgba(122,107,93,.15);
}
.zk-faq-footer p {
  color: var(--zk-brown, #7A6B5D); font-size: 15px; margin: 0 0 16px;
}

/* Button outline variant — for CTA inside light section */
.zk-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  background: transparent; color: var(--zk-dark, #2C2420);
  border: 1.5px solid var(--zk-dark, #2C2420);
  border-radius: 10px; text-decoration: none;
  font-weight: 600; font-size: 14px; letter-spacing: .02em;
  transition: all .25s;
}
.zk-btn-outline:hover {
  background: var(--zk-dark, #2C2420); color: #fff;
  transform: translateY(-1px);
}

@media print {
  .zk-topbar, .zk-header, .zk-newsletter, .zk-payment-bar, .zk-mobile-menu, .zk-mobile-overlay { display: none; }
  .zk-footer { background: white; color: black; }
  body { font-size: 12pt; }
}


/* ============================================================================
 * v1.9.67 — COMPREHENSIVE RESPONSIVE LAYER
 * ============================================================================
 * Klient (6.05): "zrob teraz responsywnosc wsyzsktiego skalowanie".
 * Mobile-first, touch-friendly (44px min), iOS zoom prevention (font-size 16px).
 * Breakpoints: 480 / 640 / 768 / 1024.
 * ============================================================================ */

/* Container fluid padding */
.container {
  width: 100%;
  box-sizing: border-box;
  padding-left: clamp(12px, 3vw, 24px);
  padding-right: clamp(12px, 3vw, 24px);
}

/* iOS zoom prevention */
@media (max-width: 640px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="url"],
  input[type="password"],
  input[type="number"],
  input[type="search"],
  input[type="date"],
  textarea,
  select { font-size: 16px !important; }
}

/* Touch-friendly buttons */
@media (max-width: 768px) {
  .zk-btn,
  .zk-btn-primary,
  .zk-btn-outline,
  .zk-btn-outline-light,
  .button,
  .wp-element-button,
  input[type="submit"],
  button[type="submit"] { min-height: 44px; padding: 12px 22px; }
}

/* HEADER + NAV */
@media (max-width: 1024px) {
  .zk-header-nav { display: none; }
  .zk-menu-trigger { display: inline-flex !important; }
}
@media (max-width: 640px) {
  .zk-topbar { font-size: 11px; padding: 6px 0; }
  .zk-topbar .container { flex-wrap: wrap; gap: 8px 14px; justify-content: center; }
  .zk-header { padding: 10px 0; }
  .zk-header-logo img.custom-logo { max-width: 130px; height: auto; }
  .zk-header-actions { gap: 8px; }
  .zk-header-icon { padding: 8px; }
}
@media (max-width: 380px) {
  .zk-topbar { display: none; }
  .zk-header-logo img.custom-logo { max-width: 110px; }
}
@media (max-width: 640px) {
  .zk-mobile-menu { width: 100%; max-width: 360px; }
  .zk-mobile-nav a { font-size: 16px; padding: 14px 20px; }
  .zk-mobile-nav .sub-menu a { padding-left: 36px; font-size: 15px; }
}

/* HOMEPAGE */
@media (max-width: 768px) {
  .zk-hero-main { min-height: 70vh; }
  .zk-hero-main h1 { font-size: clamp(28px, 7vw, 42px); line-height: 1.15; }
  .zk-hero-main p { font-size: 14px; }
  .zk-hero-main-buttons { flex-direction: column; gap: 10px; }
  .zk-hero-main-buttons .zk-btn { width: 100%; justify-content: center; }
  .zk-trust-items { grid-template-columns: 1fr 1fr; gap: 14px; }
  .zk-trust-item { padding: 12px; }
  .zk-trust-item-text strong { font-size: 13px; }
  .zk-trust-item-text span { font-size: 11px; }
  .zk-collections-row { grid-template-columns: 1fr; gap: 16px; }
  /* v1.9.95 — keep contain on mobile too (was forcing cover crop) */
  .zk-collection-card-img img { object-fit: contain; }
  .zk-section-title { font-size: clamp(22px, 5vw, 32px); line-height: 1.2; }
  .zk-section-desc { font-size: 14px; line-height: 1.55; }
  .zk-section { padding: 40px 0; }
  .zk-featured { grid-template-columns: 1fr; gap: 20px; }
  .zk-duo-showcase { grid-template-columns: 1fr; gap: 14px; }
  .zk-process-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .zk-cert-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .zk-manufaktur-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .zk-manufaktur-stat-number { font-size: clamp(28px, 6vw, 40px); }
  .zk-instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .zk-reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .zk-faq-q { font-size: 15px; }
  .zk-matratzen-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .zk-trust-items { grid-template-columns: 1fr; }
  .zk-process-grid { grid-template-columns: 1fr; }
  .zk-cert-grid { grid-template-columns: 1fr 1fr; }
  .zk-manufaktur-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .zk-instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .zk-fabric-strip-inner { grid-template-columns: 1fr; }
  .zk-fabric-colors { justify-content: center; }
}

/* SHOP LISTING */
@media (max-width: 768px) {
  .woocommerce ul.products,
  ul.products { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .woocommerce ul.products li.product { width: 100% !important; margin: 0 !important; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 14px; line-height: 1.3; }
  .woocommerce ul.products li.product .price { font-size: 14px; }
  .woocommerce ul.products li.product .button { padding: 8px 12px; font-size: 13px; }
}
@media (max-width: 380px) {
  .woocommerce ul.products,
  ul.products { grid-template-columns: 1fr !important; }
}

/* SINGLE PRODUCT */
@media (max-width: 1024px) {
  .woocommerce div.product .woocommerce-product-gallery,
  .woocommerce div.product .summary {
    width: 100% !important;
    float: none !important;
    margin: 0 0 24px !important;
  }
}
@media (max-width: 640px) {
  .woocommerce div.product .product_title { font-size: clamp(22px, 5vw, 30px); line-height: 1.25; }
  .woocommerce div.product p.price,
  .woocommerce div.product span.price { font-size: 22px; }
  .woocommerce div.product .woocommerce-tabs ul.tabs { flex-wrap: wrap; gap: 4px; padding: 0; }
  .woocommerce div.product .woocommerce-tabs ul.tabs li { flex: 1 1 auto; margin: 0; }
  .woocommerce div.product .woocommerce-tabs ul.tabs li a { padding: 10px 14px; font-size: 13px; }
  .zk-va-pills { gap: 6px; }
  .zk-va-pill { padding: 8px 14px; font-size: 13px; min-height: 40px; }
  .zk-va-head { padding: 14px 16px; }
  .zk-va-num { width: 28px; height: 28px; font-size: 13px; }
  .zk-va-label { font-size: 14px; }
  .zk-va-value { font-size: 13px; }
  .zk-va-body { padding: 12px 16px 18px; }
  .zk-va-atc-row { flex-direction: column; gap: 10px; }
  .zk-va-atc-btn { width: 100%; padding: 14px 20px; font-size: 14px; min-height: 48px; }
  .zk-va-atc-row .quantity { width: 100%; }
  .zk-drawer.zk-fabric-drawer { max-width: 100% !important; width: 100% !important; }
  .zk-fabric-grid { grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)) !important; gap: 6px !important; }
  .zk-fabric-swatch img { width: 100%; height: auto; aspect-ratio: 1; }
  .zk-stoff-trigger { padding: 10px 14px; }
  .zk-stoff-trigger-title { font-size: 14px; }
  .zk-stoff-trigger-sub { font-size: 12px; }
}

/* CART PAGE */
@media (max-width: 768px) {
  .woocommerce-cart table.cart,
  .woocommerce-cart table.cart thead { display: none; }
  .woocommerce-cart table.cart tbody { display: block; }
  .woocommerce-cart table.cart tr.cart_item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 10px 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--zk-warm-beige, #E8E0D6);
    background: transparent;
    position: relative;
  }
  .woocommerce-cart table.cart tr.cart_item td {
    display: block; padding: 0; border: 0; background: transparent;
  }
  .woocommerce-cart table.cart td.product-thumbnail { grid-row: 1 / 5; }
  .woocommerce-cart table.cart td.product-thumbnail img {
    width: 80px; height: 80px; object-fit: cover; border-radius: 8px;
  }
  .woocommerce-cart table.cart td.product-name { font-weight: 600; font-size: 14px; }
  .woocommerce-cart table.cart td.product-name a { color: var(--zk-dark, #2C2420); }
  .woocommerce-cart table.cart td.product-name dl.variation {
    font-size: 12px; color: var(--zk-brown, #7A6B5D); margin: 6px 0 0;
  }
  .woocommerce-cart table.cart td.product-price::before,
  .woocommerce-cart table.cart td.product-quantity::before,
  .woocommerce-cart table.cart td.product-subtotal::before {
    content: attr(data-title) ': ';
    font-weight: 500;
    color: var(--zk-brown, #7A6B5D);
    font-size: 12px;
    margin-right: 6px;
  }
  .woocommerce-cart table.cart .product-quantity .quantity input.qty { width: 70px; }
  .woocommerce-cart table.cart .product-remove { position: absolute; top: 12px; right: 0; }
  .woocommerce-cart table.cart .product-remove a.remove { font-size: 22px; }
  .woocommerce-cart .coupon { display: flex; flex-direction: column; gap: 8px; width: 100%; }
  .woocommerce-cart .coupon input.input-text { width: 100% !important; }
  .woocommerce-cart .actions { flex-direction: column; gap: 10px; align-items: stretch; }
  .woocommerce-cart .actions button[type="submit"] { width: 100%; }
  .woocommerce-cart .cart_totals { width: 100% !important; float: none !important; }
  .woocommerce-cart .cart-collaterals { display: block; }
}
@media (max-width: 480px) {
  .zk-cart-drawer { max-width: 100% !important; width: 100% !important; }
  .zk-mc-thumb { width: 60px !important; height: 60px !important; }
  .zk-mc-name { font-size: 13px; }
  .woocommerce-mini-cart-item dl.variation { font-size: 11px; }
  .woocommerce-mini-cart__buttons { flex-direction: column; gap: 8px; }
  .woocommerce-mini-cart__buttons .button { width: 100%; }
}

/* CHECKOUT */
@media (max-width: 1024px) {
  .woocommerce-checkout form.checkout { display: block !important; }
  #customer_details,
  #order_review_heading,
  #order_review {
    width: 100% !important;
    float: none !important;
    margin: 0 0 24px !important;
  }
}
@media (max-width: 640px) {
  .woocommerce-checkout .form-row {
    width: 100% !important;
    float: none !important;
    margin: 0 0 14px !important;
  }
  .woocommerce-checkout .form-row-first,
  .woocommerce-checkout .form-row-last { width: 100% !important; }
  .woocommerce-checkout #payment ul.payment_methods { padding: 12px; }
  .woocommerce-checkout #payment ul.payment_methods li { padding: 10px 0; }
  .woocommerce-checkout #payment ul.payment_methods li img { max-width: 60px; height: auto; }
  .woocommerce-checkout .place-order button[type="submit"] {
    width: 100%; padding: 16px 24px; font-size: 15px; min-height: 50px;
  }
  .woocommerce-checkout-review-order-table th,
  .woocommerce-checkout-review-order-table td { padding: 8px 4px; font-size: 13px; }
}

/* MY ACCOUNT */
@media (max-width: 768px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 100% !important;
    float: none !important;
    margin-bottom: 24px;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 0; margin: 0; list-style: none;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation li {
    margin: 0;
    border: 1px solid var(--zk-warm-beige, #E8E0D6);
    border-radius: 8px;
    background: var(--zk-cream, #F5F0EB);
  }
  .woocommerce-account .woocommerce-MyAccount-navigation li.is-active,
  .woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
    background: var(--zk-accent, #C4956A);
    color: #fff !important;
    border-color: var(--zk-accent, #C4956A);
  }
  .woocommerce-account .woocommerce-MyAccount-navigation a {
    display: block; padding: 10px 14px; font-size: 13px;
    text-align: center; color: var(--zk-dark, #2C2420);
    text-decoration: none;
  }
  .woocommerce-account .woocommerce-MyAccount-content {
    width: 100% !important; float: none !important;
  }
  .woocommerce-account .u-columns,
  .woocommerce-account .col2-set { display: block; }
  .woocommerce-account .u-column1,
  .woocommerce-account .u-column2,
  .woocommerce-account .col-1,
  .woocommerce-account .col-2 {
    width: 100% !important; float: none !important; margin: 0 0 24px !important;
  }
}
@media (max-width: 640px) {
  .woocommerce-orders-table,
  .woocommerce table.shop_table_responsive thead { display: none; }
  .woocommerce table.shop_table_responsive tbody tr {
    display: block;
    padding: 14px;
    border: 1px solid var(--zk-warm-beige, #E8E0D6);
    border-radius: 10px;
    margin-bottom: 12px;
    background: #fff;
  }
  .woocommerce table.shop_table_responsive tbody td {
    display: flex; justify-content: space-between;
    padding: 6px 0; border: 0; font-size: 13px;
  }
  .woocommerce table.shop_table_responsive tbody td::before {
    content: attr(data-title) ': ';
    font-weight: 600;
    color: var(--zk-brown-dark, #5C4F43);
  }
  .woocommerce table.shop_table_responsive tbody td.actions { justify-content: stretch; }
  .woocommerce table.shop_table_responsive tbody td.actions a { width: 100%; text-align: center; }
}

/* PAYMENT BAR */
@media (max-width: 640px) {
  .zk-payment-bar .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .zk-payment-icons { gap: 6px; flex-wrap: wrap; justify-content: center; }
  .zk-payment-label { font-size: 12px; }
  .zk-pay-card { transform: scale(.9); transform-origin: center; }
}

/* FOOTER */
@media (max-width: 1024px) {
  .zk-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .zk-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .zk-footer-col-brand { text-align: center; }
  .zk-footer-logo { display: flex; justify-content: center; }
  .zk-footer-tagline { text-align: center; max-width: 320px; margin: 0 auto; }
  .zk-footer-social { justify-content: center; }
  .zk-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* CF7 / forms */
@media (max-width: 640px) {
  .wpcf7 .wpcf7-form input,
  .wpcf7 .wpcf7-form textarea,
  .wpcf7 .wpcf7-form select {
    width: 100% !important;
    box-sizing: border-box;
  }
  .wpcf7 .wpcf7-submit { width: 100%; min-height: 48px; }
}

/* v2.0.8 — CF7 acceptance checkbox layout fix (was: label overflows under submit) */
.wpcf7 .wpcf7-acceptance,
.wpcf7-form .wpcf7-acceptance {
  display: block;
  margin: 16px 0;
  padding: 14px 16px;
  background: rgba(245,237,227,.4);
  border-radius: 10px;
}
.wpcf7 .wpcf7-acceptance .wpcf7-list-item {
  display: block !important;
  margin: 0 !important;
}
.wpcf7 .wpcf7-acceptance label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px;
  cursor: pointer;
  line-height: 1.5;
  font-size: 14px;
  color: #2C2420;
}
.wpcf7 .wpcf7-acceptance label input[type="checkbox"] {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 2px 0 0 0;
  accent-color: var(--zk-accent, #C4956A);
  cursor: pointer;
}
.wpcf7 .wpcf7-acceptance .wpcf7-list-item-label {
  flex: 1 1 auto;
  min-width: 0;
  word-break: break-word;
  hyphens: auto;
}
.wpcf7 .wpcf7-acceptance label a {
  color: var(--zk-accent-dark, #A67B52);
  text-decoration: underline;
}

/* reCAPTCHA notice + submit button — clean stack on mobile */
.wpcf7-form .grecaptcha-badge { z-index: 1; }
.wpcf7-form p:has(.wpcf7-submit),
.wpcf7-form .wpcf7-submit {
  margin-top: 18px;
  clear: both;
}
@media (max-width: 640px) {
  .wpcf7 .wpcf7-acceptance {
    padding: 12px 14px;
    margin: 12px 0;
  }
  .wpcf7 .wpcf7-acceptance label {
    font-size: 13px;
    line-height: 1.45;
  }
  .wpcf7 .wpcf7-acceptance label input[type="checkbox"] {
    width: 20px; height: 20px;
    flex: 0 0 20px;
  }
}

/* Safe overflow + images */
img { max-width: 100%; height: auto; }
@media (max-width: 768px) {
  body { overflow-x: hidden; }
  .container, main, .zk-section { max-width: 100vw; overflow-x: hidden; }
  table { max-width: 100%; }
  iframe { max-width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}


/* ============================================================================
 * v1.9.72 - MODERN TRUST BAR + STATS + USP BANNER
 * ============================================================================ */

/* MODERN TRUST BAR */
.zk-cat-trust--modern {
	background: linear-gradient(180deg, #fff 0%, var(--zk-cream, #F5F0EB) 100%);
	padding: 32px 0 28px;
	border-bottom: 1px solid var(--zk-warm-beige, #E8E0D6);
}
.zk-cat-trust--modern .zk-cat-trust-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	max-width: 1100px;
	margin: 0 auto;
}
.zk-cat-trust--modern .zk-cat-trust-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 18px;
	background: #fff;
	border-radius: 14px;
	border: 1px solid var(--zk-warm-beige, #E8E0D6);
	transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s, border-color .35s;
	position: relative;
	overflow: hidden;
}
.zk-cat-trust--modern .zk-cat-trust-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(42,36,32,.08);
	border-color: var(--zk-accent, #C4956A);
}
.zk-cat-trust--modern .zk-cat-trust-icon {
	flex-shrink: 0;
	width: 56px; height: 56px;
	border-radius: 14px;
	display: flex; align-items: center; justify-content: center;
	transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.zk-cat-trust--modern .zk-cat-trust-icon svg { width: 32px; height: 32px; }
.zk-cat-trust--modern .zk-cat-trust-icon svg * { vector-effect: non-scaling-stroke; }
.zk-cat-trust--modern .zk-cat-trust-item:hover .zk-cat-trust-icon { transform: scale(1.08) rotate(-3deg); }
.zk-trust-icon--gold  { background: linear-gradient(135deg, #FFF6E8 0%, #FBE4C2 100%); color: #A67B52; }
.zk-trust-icon--blue  { background: linear-gradient(135deg, #EAF4FB 0%, #C7E0F4 100%); color: #2B6FA8; }
.zk-trust-icon--green { background: linear-gradient(135deg, #EAF6EA 0%, #C7E5C8 100%); color: #4A7548; }
.zk-trust-icon--rose  { background: linear-gradient(135deg, #FBECEC 0%, #F5C8C8 100%); color: #B45757; }
.zk-cat-trust--modern .zk-cat-trust-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.zk-cat-trust--modern .zk-cat-trust-text strong {
	font-family: var(--zk-font-heading, 'Playfair Display', Georgia, serif);
	font-size: 15px; font-weight: 600;
	color: var(--zk-dark, #2C2420);
	line-height: 1.2;
}
.zk-cat-trust--modern .zk-cat-trust-text span {
	font-size: 12px;
	color: var(--zk-brown, #7A6B5D);
	line-height: 1.3;
}
@media (max-width: 1024px) {
	.zk-cat-trust--modern .zk-cat-trust-inner { grid-template-columns: repeat(2, 1fr); }
}
/* v2.1.10 — Klient: "ciasno na mobilkach tekst sie zle uklada".
 * Było: 2-col grid + ikona obok tekstu → "Frei Haus in DE" zawijał się
 * na 3 linie. Teraz: ikona NAD tekstem (column flex), pełna szerokość
 * dla tekstu, lepszy responsywny wrap. */
@media (max-width: 600px) {
	.zk-cat-trust--modern { padding: 18px 0 16px; }
	.zk-cat-trust--modern .zk-cat-trust-inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		padding: 0 12px;
	}
	.zk-cat-trust--modern .zk-cat-trust-item {
		flex-direction: column;
		gap: 8px;
		padding: 12px 10px;
		text-align: center;
		justify-content: center;
		min-height: 110px;
	}
	.zk-cat-trust--modern .zk-cat-trust-icon { width: 36px; height: 36px; border-radius: 10px; }
	.zk-cat-trust--modern .zk-cat-trust-icon svg { width: 22px; height: 22px; }
	.zk-cat-trust--modern .zk-cat-trust-text { gap: 1px; align-items: center; width: 100%; }
	.zk-cat-trust--modern .zk-cat-trust-text strong { font-size: 13.5px; line-height: 1.2; }
	.zk-cat-trust--modern .zk-cat-trust-text span { font-size: 11px; line-height: 1.3; }
}
@media (max-width: 380px) {
	.zk-cat-trust--modern .zk-cat-trust-inner { gap: 8px; padding: 0 10px; }
	.zk-cat-trust--modern .zk-cat-trust-item { min-height: 100px; padding: 10px 8px; }
	.zk-cat-trust--modern .zk-cat-trust-text strong { font-size: 12.5px; }
	.zk-cat-trust--modern .zk-cat-trust-text span { font-size: 10.5px; }
}

/* STATS COUNTER */
.zk-cat-stats {
	padding: 56px 0;
	background: linear-gradient(135deg, var(--zk-cream, #F5F0EB) 0%, var(--zk-warm-beige, #E8E0D6) 100%);
	position: relative;
	overflow: hidden;
}
.zk-cat-stats::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(circle at 80% 20%, var(--zk-accent, #C4956A) 0%, transparent 50%);
	opacity: .06;
	pointer-events: none;
}
.zk-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	position: relative;
}
.zk-stat-item {
	text-align: center;
	padding: 28px 20px;
	background: rgba(255,255,255,.7);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 18px;
	border: 1px solid rgba(232, 224, 214, .6);
	transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
}
.zk-stat-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(42,36,32,.10);
}
.zk-stat-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 64px; height: 64px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--zk-accent, #C4956A) 0%, var(--zk-accent-dark, #A67B52) 100%);
	color: #fff;
	box-shadow: 0 8px 20px rgba(196,149,106,.30);
	transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.zk-stat-icon svg { width: 38px; height: 38px; }
.zk-stat-icon svg * { vector-effect: non-scaling-stroke; }
.zk-stat-item:hover .zk-stat-icon { transform: scale(1.1) rotate(8deg); }
.zk-stat-num {
	font-family: var(--zk-font-heading, 'Playfair Display', Georgia, serif);
	font-size: clamp(36px, 4vw, 48px);
	font-weight: 700;
	color: var(--zk-dark, #2C2420);
	line-height: 1;
	margin-bottom: 6px;
	letter-spacing: -0.02em;
}
.zk-stat-label {
	font-size: 13px;
	color: var(--zk-brown, #7A6B5D);
	text-transform: uppercase;
	letter-spacing: .08em;
	font-weight: 600;
}
@media (max-width: 900px) { .zk-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 480px) {
	.zk-cat-stats { padding: 40px 0; }
	.zk-stat-item { padding: 22px 16px; }
	.zk-stat-icon { width: 52px; height: 52px; }
	.zk-stat-icon svg { width: 26px; height: 26px; }
}

/* MODERN USP BANNER */
.zk-usp-banner--modern {
	padding: 80px 0;
	background: #fff;
	position: relative;
}
.zk-usp-banner--modern .zk-usp-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 48px;
}
.zk-usp-banner--modern .zk-usp-header .zk-eyebrow {
	display: inline-block;
	font-size: 12px; font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--zk-accent-dark, #A67B52);
	margin-bottom: 12px;
}
.zk-usp-banner--modern .zk-usp-header h2 {
	font-family: var(--zk-font-heading, 'Playfair Display', Georgia, serif);
	font-size: clamp(28px, 3.5vw, 38px);
	font-weight: 500;
	color: var(--zk-dark, #2C2420);
	line-height: 1.15;
	margin: 0;
}
.zk-usp-banner--modern .zk-usp-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.zk-usp-banner--modern .zk-usp-item {
	background: #fff;
	border: 1px solid var(--zk-warm-beige, #E8E0D6);
	border-radius: 20px;
	padding: 32px 26px 28px;
	text-align: center;
	transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s, border-color .4s;
	position: relative;
	overflow: hidden;
}
.zk-usp-banner--modern .zk-usp-item::after {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 4px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.zk-usp-banner--modern .zk-usp-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 50px rgba(42,36,32,.10);
	border-color: currentColor;
}
.zk-usp-banner--modern .zk-usp-item:hover::after { transform: scaleX(1); }
.zk-usp-banner--modern .zk-usp-icon-wrap {
	position: relative;
	width: 96px; height: 96px;
	margin: 0 auto 24px;
}
.zk-usp-banner--modern .zk-usp-icon-bg {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	color: currentColor;
	animation: zkRotateSlow 30s linear infinite;
}
.zk-usp-banner--modern .zk-usp-icon {
	--icon-color: currentColor;   /* capture theme color BEFORE we set color:#fff */
	position: absolute; inset: 10px;
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, var(--icon-color) 0%, color-mix(in srgb, var(--icon-color) 70%, #fff) 100%);
	border-radius: 50%;
	box-shadow:
		0 12px 28px -4px color-mix(in srgb, var(--icon-color) 40%, transparent),
		inset 0 -4px 10px rgba(0,0,0,.12),
		inset 0 4px 10px rgba(255,255,255,.25);
	transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.zk-usp-banner--modern .zk-usp-icon svg {
	width: 46px; height: 46px;
	color: #fff;        /* SVG strokes/fills use this */
	filter: drop-shadow(0 1px 2px rgba(0,0,0,.18));
}
.zk-usp-banner--modern .zk-usp-icon svg * { vector-effect: non-scaling-stroke; }
.zk-usp-banner--modern .zk-usp-item:hover .zk-usp-icon { transform: scale(1.1); }
@keyframes zkRotateSlow { to { transform: rotate(360deg); } }
.zk-usp-banner--modern .zk-usp-item h3 {
	font-family: var(--zk-font-heading, 'Playfair Display', Georgia, serif);
	font-size: 20px; font-weight: 600;
	color: var(--zk-dark, #2C2420);
	margin: 0 0 12px;
	line-height: 1.25;
}
.zk-usp-banner--modern .zk-usp-item p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--zk-brown-dark, #5C4F43);
	margin: 0 0 18px;
}
.zk-usp-banner--modern .zk-usp-meta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	color: currentColor;
	text-transform: uppercase;
	letter-spacing: .06em;
	padding: 6px 14px;
	background: color-mix(in srgb, currentColor 8%, transparent);
	border-radius: 20px;
}
.zk-usp-item--gold  { color: #C4956A; }
.zk-usp-item--blue  { color: #4A89BE; }
.zk-usp-item--green { color: #5B8C5A; }
.zk-usp-item--rose  { color: #C77878; }
@media (max-width: 1100px) {
	.zk-usp-banner--modern .zk-usp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.zk-usp-banner--modern { padding: 48px 0; }
	.zk-usp-banner--modern .zk-usp-header { margin-bottom: 32px; }
	.zk-usp-banner--modern .zk-usp-grid { grid-template-columns: 1fr; gap: 16px; }
	.zk-usp-banner--modern .zk-usp-item { padding: 24px 20px; }
	.zk-usp-banner--modern .zk-usp-icon-wrap { width: 80px; height: 80px; margin-bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
	.zk-usp-banner--modern .zk-usp-icon-bg { animation: none; }
	.zk-cat-trust--modern .zk-cat-trust-item,
	.zk-stat-item,
	.zk-usp-banner--modern .zk-usp-item { transition: none; }
}

/* v2.1.24 — Mobile/iPhone image safety.
 * Show full product/interior photos on narrow screens instead of cropping them
 * inside fixed-ratio frames. Small utility thumbnails and fabric swatches keep
 * their original crop rules. */
@media (max-width: 767px) {
	.zk-featured-image,
	.zk-manufaktur-frame,
	.zk-parallax,
	.zk-hero-main,
	.zk-hero-main-bg,
	.zk-duo-card,
	.zk-story-figure,
	.zk-product-image,
	.zk-product-card-bestseller .zk-product-image,
	.zk-collection-card-img,
	.zk-coll-card-img {
		background: linear-gradient(135deg, var(--zk-cream-dark, #EDE5DB) 0%, var(--zk-warm-beige, #E8E0D6) 100%);
	}

	.zk-featured-image img,
	.zk-manufaktur-frame img,
	.zk-parallax-bg img,
	.zk-hero-main-bg img,
	.zk-duo-card > img,
	.zk-story-figure img,
	.zk-product-image img,
	.zk-product-card-bestseller .zk-product-image img,
	.zk-collection-card-img img,
	.zk-coll-card-img img {
		width: 100% !important;
		height: 100% !important;
		object-fit: contain !important;
		object-position: center center !important;
	}

	.zk-featured-image,
	.zk-manufaktur-frame,
	.zk-duo-card,
	.zk-story-figure {
		aspect-ratio: 1 / 1;
	}

	.zk-parallax-bg {
		inset: 0;
		background: var(--zk-cream, #F5F0EB);
	}

	.zk-hero-main-bg {
		background: var(--zk-cream, #F5F0EB);
	}
}


/* =====================================================
   v2.1.23 — iPhone / iOS Safari display fixes
   Fixes: horizontal overflow, Safari form zoom, safe-area spacing,
   mobile menu height, sticky/fixed elements and oversized media.
   ===================================================== */
html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	overflow-x: hidden;
}
body {
	overflow-x: clip;
}
img, svg, video, canvas, iframe {
	max-width: 100%;
}
input, select, textarea, button {
	font-size: 16px; /* prevents iOS auto-zoom on focus */
}
input[type="search"], input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="password"], textarea, select {
	-webkit-appearance: none;
	appearance: none;
	border-radius: 12px;
}
.zk-header, .zk-topbar {
	padding-left: max(0px, env(safe-area-inset-left));
	padding-right: max(0px, env(safe-area-inset-right));
}
.zk-mobile-menu {
	height: 100vh;
	height: 100dvh;
	padding-top: env(safe-area-inset-top);
	padding-bottom: env(safe-area-inset-bottom);
}
.zk-mobile-menu-inner {
	max-height: calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
@supports (-webkit-touch-callout: none) {
	body {
		min-height: -webkit-fill-available;
	}
	.zk-header, .zk-mobile-menu, .zk-cart-drawer, .zk-newsletter-popup {
		transform: translateZ(0);
	}
	[style*="background-attachment: fixed"],
	.zk-parallax,
	.zk-hero {
		background-attachment: scroll !important;
	}
}
@media (max-width: 767px) {
	.container,
	.zk-container,
	.zk-section,
	.zk-main {
		max-width: 100% !important;
	}
	.zk-header-inner,
	.zk-topbar .container {
		min-width: 0;
	}
	.zk-topbar .container {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}

