:root {
  --czer-bg: #f8f5f0;
  --czer-paper: #fff;
  --czer-soft: #f1ede7;
  --czer-ink: #10100f;
  --czer-muted: #655f58;
  --czer-line: #e4ded6;
  --czer-radius: 6px;
  --czer-shell: 1392px;
  --czer-shadow: 0 16px 45px rgba(38, 31, 24, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--czer-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.czer-drawer-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }

.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute !important; width: 1px;
}
.screen-reader-text:focus {
  background: #fff; clip: auto !important; clip-path: none; color: #111;
  display: block; height: auto; left: 8px; padding: 12px 16px; top: 8px;
  width: auto; z-index: 100000;
}

.czer-shell { width: min(calc(100% - 48px), var(--czer-shell)); margin-inline: auto; }
.czer-site-content { min-height: 55vh; }
.czer-icon { flex: 0 0 auto; }

/* Top bar */
.czer-topbar {
  height: 30px;
  background: #f2efea;
  border-bottom: 1px solid #ebe6df;
  font-size: 11px;
}
.czer-topbar__inner {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(52px, 6.8vw, 112px);
}
.czer-topbar__inner span { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }

/* Header */
.czer-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 76px;
  background: rgba(255,255,255,.985);
  border-bottom: 1px solid #e6e1da;
  backdrop-filter: blur(14px);
}
.admin-bar .czer-header { top: 32px; }
.czer-header__inner {
  height: 76px;
  display: grid;
  grid-template-columns: 220px 1fr 300px;
  align-items: center;
  gap: 20px;
}
.czer-brand { display: flex; align-items: center; min-width: 0; }
.czer-brand__fallback, .czer-brand__fallback picture { display: inline-flex; align-items: center; line-height: 0; }
.czer-brand img { width: 134px; max-width: none; height: auto; object-fit: contain; }
.czer-nav { justify-self: center; }
.czer-menu, .czer-nav ul, .czer-footer-menu, .czer-mobile-menu { list-style: none; margin: 0; padding: 0; }
.czer-menu { display: flex; align-items: stretch; gap: 38px; }
.czer-menu > li { position: relative; }
.czer-menu > li > a {
  position: relative;
  height: 76px;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .025em;
  text-transform: uppercase;
  white-space: nowrap;
}
.czer-menu > li > a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 1px;
  background: currentColor;
  transition: right .2s ease;
}
.czer-menu > li:hover > a::after, .czer-menu > .current-menu-item > a::after { right: 0; }
.czer-menu .sub-menu {
  display: none; position: absolute; top: 100%; left: -22px; min-width: 215px;
  padding: 10px 22px; background: #fff; border: 1px solid var(--czer-line); box-shadow: var(--czer-shadow);
}
.czer-menu li:hover > .sub-menu { display: block; }
.czer-menu .sub-menu a { display: block; padding: 12px 0; font-size: 12px; }
.czer-header-actions { justify-self: end; display: flex; align-items: center; gap: 2px; }
.czer-icon-button {
  width: 40px; height: 40px; padding: 0; display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 50%; background: transparent; cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.czer-icon-button:hover { background: #f1ede7; transform: translateY(-1px); }
.czer-cart-link { position: relative; z-index: 6; margin-left: 3px; flex: 0 0 40px; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.czer-cart-count {
  position: absolute; top: 1px; right: -1px; min-width: 17px; height: 17px; padding: 0 4px;
  display: grid; place-items: center; border-radius: 20px; background: #111; color: #fff;
  font-size: 9px; font-weight: 700;
}
.czer-cart-summary {
  min-width: 91px;
  margin-left: 8px;
  padding-left: 18px;
  display: grid;
  gap: 1px;
  border-left: 1px solid #ded8d0;
  line-height: 1.2;
}
.czer-cart-summary span { font-size: 10px; color: #4f4a44; }
.czer-cart-summary strong { font-size: 14px; font-weight: 700; white-space: nowrap; }
.czer-mobile-menu-button { display: none; }

.czer-search-panel {
  position: absolute; inset: 100% 0 auto; padding: 20px 0; background: #fff;
  border-top: 1px solid var(--czer-line); box-shadow: var(--czer-shadow);
}
.czer-search-panel__inner { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; }
.czer-search-panel form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.czer-search-panel input[type="search"] { width: 100%; min-height: 48px; padding: 0 16px; border: 1px solid var(--czer-line); background: #fff; }
.czer-search-panel input[type="submit"] { padding: 0 24px; border: 1px solid #111; background: #111; color: #fff; cursor: pointer; }
.czer-mobile-drawer {
  position: fixed; top: 0; left: 0; z-index: 1200; width: min(88vw, 380px); height: 100dvh;
  padding: 20px; background: #fff; box-shadow: 20px 0 50px rgba(0,0,0,.18); overflow: auto;
}
.czer-mobile-drawer__head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--czer-line); font-weight: 700; }
.czer-mobile-menu a { display: block; padding: 15px 0; border-bottom: 1px solid var(--czer-line); font-size: 14px; font-weight: 700; text-transform: uppercase; }
.czer-mobile-drawer__links { margin-top: 22px; display: grid; gap: 12px; }
.czer-mobile-drawer__links a { display: flex; align-items: center; gap: 10px; }
.czer-drawer-overlay { position: fixed; inset: 0; z-index: 1100; background: rgba(0,0,0,.42); }

/* Hero: full-width, exact desktop proportions from approved mockup */
.czer-hero { background: var(--czer-bg); overflow: hidden; }
.czer-hero__inner {
  width: 100%;
  height: 400px;
  display: grid;
  grid-template-columns: 39.8% 60.2%;
}
.czer-hero__copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 54px 42px max(28px, calc((100vw - var(--czer-shell)) / 2));
  background: var(--czer-bg);
}
.czer-hero h1 {
  margin: 0;
  max-width: 490px;
  font-size: clamp(36px, 2.62vw, 41px);
  line-height: 1.18;
  letter-spacing: -.045em;
  font-weight: 400;
}
.czer-hero__lead {
  max-width: 360px;
  margin: 18px 0 0;
  color: #4f4943;
  font-size: 15px;
  line-height: 1.45;
}
.czer-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 25px; }
.czer-button {
  min-height: 42px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #151513;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .025em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.czer-button:hover { transform: translateY(-2px); }
.czer-button--dark { background: #111; color: #fff; }
.czer-button--dark:hover { background: #2a2723; }
.czer-button--light { background: rgba(255,255,255,.62); color: #111; }
.czer-button--light:hover { background: #fff; }
.czer-hero__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  height: 400px;
  overflow: hidden;
  background: var(--czer-bg);
}
.czer-hero__picture { position: absolute; inset: 0; display: block; }
.czer-hero__picture img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 45%;
  image-rendering: auto;
}
.czer-hero__visual::after {
  content: '';
  position: absolute;
  z-index: 1;
  left: -2px;
  top: -8%;
  bottom: -8%;
  width: clamp(150px, 15vw, 260px);
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 100% 68% at 0% 50%,
      rgba(248,245,240,1) 0%,
      rgba(248,245,240,.98) 20%,
      rgba(248,245,240,.88) 40%,
      rgba(248,245,240,.58) 62%,
      rgba(248,245,240,.22) 80%,
      rgba(248,245,240,0) 100%
    );
  filter: blur(2px);
}
.czer-hero__benefits {
  position: absolute;
  z-index: 2;
  right: max(52px, calc((100vw - var(--czer-shell)) / 2));
  top: 50%;
  transform: translateY(-50%);
  width: 250px;
  display: grid;
  gap: 23px;
}
.czer-hero__benefits > div { display: grid; grid-template-columns: 48px 1fr; gap: 13px; align-items: center; }
.czer-hero__benefits .czer-icon {
  width: 46px; height: 46px; padding: 10px; border: 1px solid rgba(17,17,15,.48);
  border-radius: 50%; background: rgba(247,243,237,.72); backdrop-filter: blur(4px);
}
.czer-hero__benefits span { display: grid; gap: 2px; }
.czer-hero__benefits strong { font-size: 14px; line-height: 1.22; }
.czer-hero__benefits small { font-size: 11px; line-height: 1.35; }
.czer-mobile-benefits { display: none; }

/* Homepage sections */
.czer-section, .czer-editorial, .czer-promise { content-visibility: auto; contain-intrinsic-size: auto 420px; }

.czer-section { padding-top: 24px; }
.czer-section__head {
  min-height: 26px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.czer-section__head h2 {
  margin: 0;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.czer-section__head a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.czer-section__head a:hover .czer-icon { transform: translateX(4px); }
.czer-section__head .czer-icon { transition: transform .2s ease; }

.czer-category-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.czer-category-card {
  overflow: hidden;
  border: 1px solid var(--czer-line);
  border-radius: var(--czer-radius);
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.czer-category-card:hover { transform: translateY(-3px); box-shadow: var(--czer-shadow); }
.czer-category-card__image { display: block; aspect-ratio: 1.72 / 1; overflow: hidden; background: #f2eee8; }
.czer-category-card__image picture { width: 100%; height: 100%; display: block; }
.czer-category-card__image img { width: 100%; height: 100%; padding: 4px 10px 0; object-fit: contain; transition: transform .45s ease; }
.czer-category-card:hover img { transform: scale(1.03); }
.czer-category-card__copy { min-height: 54px; padding: 9px 10px; display: grid; align-content: center; text-align: center; }
.czer-category-card__copy strong { font-size: 10px; text-transform: uppercase; letter-spacing: .04em; }
.czer-category-card__copy small { margin-top: 3px; color: var(--czer-muted); font-size: 10px; }

.czer-products { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 14px; }
.czer-product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--czer-line);
  border-radius: var(--czer-radius);
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.czer-product-card:hover { transform: translateY(-3px); box-shadow: var(--czer-shadow); }
.czer-product-card__image { display: block; aspect-ratio: 5 / 4; overflow: hidden; background: #f4f1ec; }
.czer-product-card__image picture { width: 100%; height: 100%; display: block; }
.czer-product-card__image img { width: 100%; height: 100%; padding: 5px 8px 0; object-fit: contain; transition: transform .45s ease; }
.czer-product-card:hover .czer-product-card__image img { transform: scale(1.025); }
.czer-product-card__body { padding: 10px 12px 12px; }
.czer-product-card h3 { margin: 0; font-size: 11px; font-weight: 500; }
.czer-product-card__price { min-height: 18px; margin-top: 4px; font-size: 13px; font-weight: 700; }
.czer-product-card__price ins { text-decoration: none; }
.czer-product-card__price del { margin-right: 5px; color: var(--czer-muted); font-weight: 400; }
.czer-product-card__wish {
  position: absolute; top: 8px; right: 8px; z-index: 3; width: 29px; height: 29px;
  display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.93); cursor: pointer;
}
.czer-product-card__wish.is-active { background: #111; color: #fff; }
.czer-product-card__badge {
  position: absolute; top: 10px; left: 10px; z-index: 3; padding: 5px 7px;
  border-radius: 2px; background: #5a4b3e; color: #fff; font-size: 8px; line-height: 1;
  font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
}
.czer-swatches { display: flex; gap: 7px; margin-top: 9px; }
.czer-swatches i { width: 10px; height: 10px; border: 1px solid rgba(0,0,0,.15); border-radius: 50%; background: #171412; }
.czer-swatches i:nth-child(2) { background: #9a7654; }
.czer-swatches i:nth-child(3) { background: #c6b39f; }
.czer-swatches i:nth-child(4) { background: #6d745d; }
.czer-swatches i:nth-child(5) { background: #d7d4cd; }

.czer-editorial {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}
.czer-editorial__card {
  min-width: 0;
  min-height: 124px;
  display: grid;
  grid-template-columns: 45% 55%;
  overflow: hidden;
  border: 1px solid var(--czer-line);
  border-radius: var(--czer-radius);
  background: #fff;
}
.czer-editorial__card:nth-child(even) figure {
  grid-column: 2;
  grid-row: 1;
}
.czer-editorial__card:nth-child(even) .czer-editorial__content {
  grid-column: 1;
  grid-row: 1;
}
.czer-editorial__card figure {
  min-width: 0;
  height: 100%;
  min-height: 124px;
  margin: 0;
  overflow: hidden;
  background: #eee9e2;
}
.czer-editorial__card picture { width: 100%; height: 100%; display: block; }
.czer-editorial__card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: none;
  transition: transform .35s ease;
}
.czer-editorial__card:nth-child(1) img { object-position: 54% 46%; }
.czer-editorial__card:nth-child(2) img { object-position: 54% 48%; }
.czer-editorial__card:nth-child(3) img { object-position: 50% 42%; }
.czer-editorial__card:nth-child(4) img { object-position: 50% 48%; }
.czer-editorial__card:hover img { transform: scale(1.018); }
.czer-editorial__content {
  min-width: 0;
  min-height: 124px;
  padding: 16px 14px;
  display: grid;
  align-content: center;
  gap: 5px;
  background: #fff;
}
.czer-editorial strong { font-size: 10px; line-height: 1.35; }
.czer-editorial small { color: var(--czer-muted); font-size: 8px; line-height: 1.45; }

.czer-promise {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
  margin-bottom: 36px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--czer-line);
  border-radius: var(--czer-radius);
  background: #fff;
}
.czer-promise > div {
  min-width: 0;
  min-height: 88px;
  padding: 18px 19px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--czer-line);
}
.czer-promise > div:last-child { border-right: 0; }
.czer-promise__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid #ded7cf;
  border-radius: 50%;
  background: #f7f3ee;
}
.czer-promise > div > span:last-child { min-width: 0; display: grid; gap: 3px; }
.czer-promise strong { font-size: 10px; line-height: 1.3; }
.czer-promise small { color: var(--czer-muted); font-size: 9px; line-height: 1.4; }

/* Footer */
.czer-footer { margin-top: 18px; background: #11110f; color: #f3efe8; }
.czer-footer__trust { display: none; }
.czer-footer__main { display: grid; grid-template-columns: 1.35fr .85fr .85fr 1.1fr; gap: 54px; padding-top: 64px; padding-bottom: 54px; }
.czer-footer__brand img { width: 150px; filter: invert(1) grayscale(1) brightness(2.8); }
.czer-footer__brand p { max-width: 350px; color: #bdb7ae; font-size: 13px; }
.czer-footer h2 { margin: 0 0 18px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.czer-footer p, .czer-footer-menu a { color: #c5bfb6; font-size: 13px; }
.czer-footer-menu { display: grid; gap: 9px; }
.czer-footer-menu .sub-menu { display: none; }
.czer-newsletter { display: grid; grid-template-columns: 1fr 44px; margin-top: 16px; border-bottom: 1px solid #5d5851; }
.czer-newsletter input { min-width: 0; padding: 11px 0; border: 0; outline: 0; background: transparent; color: #fff; }
.czer-newsletter button { border: 0; background: transparent; color: #fff; cursor: pointer; }
.czer-footer__bottom { padding: 18px 0; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid #2e2c28; color: #928d85; font-size: 11px; }

/* Pages / WooCommerce */
.czer-page-content, .czer-shop { padding-top: 48px; padding-bottom: 64px; }
.czer-page-content { max-width: 1000px; }
.czer-page-content h1, .czer-page-content h2, .czer-page-content h3 { line-height: 1.15; letter-spacing: -.025em; }
.czer-shop .woocommerce-breadcrumb { margin-bottom: 24px; color: var(--czer-muted); font-size: 12px; }
.woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering { margin-bottom: 28px; }
.woocommerce .woocommerce-ordering select { min-height: 42px; padding: 0 38px 0 12px; border: 1px solid var(--czer-line); background: #fff; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; margin: 0; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product { width: auto !important; margin: 0 !important; padding: 0 0 18px; overflow: hidden; border: 1px solid var(--czer-line); border-radius: var(--czer-radius); background: #fff; }
.woocommerce ul.products li.product a img { margin: 0 0 15px; aspect-ratio: 1/1; object-fit: cover; background: #f2eee8; }
.woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product .price { padding-left: 16px; padding-right: 16px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 14px; font-weight: 500; }
.woocommerce ul.products li.product .price { color: #111; font-size: 14px; font-weight: 700; }
.woocommerce ul.products li.product .button { margin: 10px 16px 0; padding: 12px 16px; border-radius: 3px; background: #111; color: #fff; font-size: 12px; }
.woocommerce span.onsale { min-width: auto; min-height: auto; margin: 10px !important; padding: 6px 9px; border-radius: 2px; background: #54473b; font-size: 10px; line-height: 1; text-transform: uppercase; }
.woocommerce div.product { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(340px,.9fr); gap: 60px; }
.woocommerce div.product div.images, .woocommerce div.product div.summary { width: auto; float: none; }
.woocommerce div.product .product_title { font-size: clamp(32px,4vw,52px); line-height: 1.1; font-weight: 500; letter-spacing: -.04em; }
.woocommerce div.product p.price { color: #111; font-size: 23px; }
.woocommerce div.product form.cart .button { min-height: 50px; padding: 0 28px; border-radius: 3px; background: #111; color: #fff; }
.woocommerce div.product form.cart input.qty { min-height: 50px; border: 1px solid var(--czer-line); }
.woocommerce-tabs { grid-column: 1 / -1; }
.woocommerce table.shop_table { border-color: var(--czer-line); border-radius: var(--czer-radius); background: #fff; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit { border-radius: 3px; background: #111; color: #fff; }
.woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt { background: #111; color: #fff; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .select2-container--default .select2-selection--single { min-height: 46px; padding: 10px 12px; border: 1px solid var(--czer-line); border-radius: 2px; background: #fff; }
.czer-content-card { padding: 32px; border: 1px solid var(--czer-line); border-radius: var(--czer-radius); background: #fff; }
.czer-content-card h1 { margin-top: 0; }

@media (max-width: 1250px) {
  .czer-header__inner { grid-template-columns: 180px 1fr 245px; }
  .czer-menu { gap: 24px; }
  .czer-cart-summary { display: none; }
  .czer-hero__copy { padding-left: 28px; padding-right: 38px; }
  .czer-hero h1 { font-size: 36px; }
  .czer-hero__benefits { right: 28px; width: 235px; }
  .czer-category-grid, .czer-products { grid-template-columns: repeat(3,1fr); }
  .czer-editorial { grid-template-columns: repeat(4,minmax(0,1fr)); }
}

@media (max-width: 1024px) {
  .czer-shell { width: min(calc(100% - 36px), var(--czer-shell)); }
  .czer-topbar__inner { justify-content: space-between; gap: 18px; }
  .czer-topbar__inner span:nth-child(3), .czer-topbar__inner span:nth-child(4) { display: none; }
  .czer-header, .czer-header__inner { height: 70px; }
  .czer-header__inner { grid-template-columns: 48px 1fr auto; }
  .czer-mobile-menu-button { display: inline-flex; }
  .czer-nav--desktop { display: none; }
  .czer-brand { justify-self: center; }
  .czer-brand img { width: 128px; }
  .czer-hero__inner { height: auto; grid-template-columns: 1fr; }
  .czer-hero__visual { order: 1; height: clamp(300px, 47vw, 430px); }
  .czer-hero__copy { order: 2; padding: 34px 28px 36px; }
  .czer-hero h1 { max-width: 720px; font-size: clamp(34px, 5vw, 46px); }
  .czer-hero__lead { max-width: 530px; }
  .czer-hero__benefits { display: none; }
  .czer-mobile-benefits {
    margin-top: 14px; display: grid; grid-template-columns: repeat(3,1fr); overflow: hidden;
    border: 1px solid var(--czer-line); border-radius: var(--czer-radius); background: #fff;
  }
  .czer-mobile-benefits > div { min-height: 100px; padding: 14px 8px; display: grid; justify-items: center; align-content: center; text-align: center; border-right: 1px solid var(--czer-line); }
  .czer-mobile-benefits > div:last-child { border-right: 0; }
  .czer-mobile-benefits strong { margin-top: 7px; font-size: 11px; }
  .czer-mobile-benefits small { color: var(--czer-muted); font-size: 9px; }
  .czer-editorial { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .czer-promise { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .czer-promise > div:nth-child(2) { border-right: 0; }
  .czer-promise > div:nth-child(-n+2) { border-bottom: 1px solid var(--czer-line); }
  .czer-footer__main { grid-template-columns: repeat(2,1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(2,1fr); }
  .woocommerce div.product { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 700px) {
  .czer-shell { width: min(calc(100% - 24px), var(--czer-shell)); }
  .czer-topbar { display: none; }
  .admin-bar .czer-header { top: 46px; }
  .czer-header, .czer-header__inner { height: 64px; }
  .czer-header__inner { grid-template-columns: 42px 1fr auto; gap: 6px; }
  .czer-brand img { width: 108px; }
  .czer-header-actions { position: relative; z-index: 7; gap: 0; }
  .czer-icon-button { width: 38px; height: 38px; }
  .czer-cart-link { flex-basis: 38px; margin-left: 0; }
  .czer-hide-small { display: none; }
  .czer-hero__visual { height: 245px; }
  .czer-hero__picture img { object-position: 46% center; }
  .czer-hero__copy { padding: 28px 18px 30px; }
  .czer-hero h1 { font-size: clamp(32px, 9.5vw, 43px); line-height: 1.08; }
  .czer-hero__lead { margin-top: 17px; font-size: 14px; }
  .czer-hero__actions { margin-top: 22px; gap: 10px; }
  .czer-button { flex: 1 1 100%; min-height: 44px; }
  .czer-section { padding-top: 34px; }
  .czer-section__head { margin-bottom: 12px; }
  .czer-category-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 10px; padding-bottom: 5px; }
  .czer-category-card { min-width: 67vw; scroll-snap-align: start; }
  .czer-products { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
  .czer-product-card__body { padding: 10px; }
  .czer-product-card h3, .czer-product-card__price { font-size: 11px; }
  .czer-product-card__wish { top: 7px; right: 7px; width: 29px; height: 29px; }
  .czer-product-card__badge { top: 8px; left: 8px; }
  .czer-editorial { grid-template-columns: 1fr; gap: 10px; margin-top: 30px; }
  .czer-editorial__card { min-height: 108px; grid-template-columns: 42% 58%; }
  .czer-editorial__card figure,
  .czer-editorial__content { min-height: 108px; }
  .czer-editorial__content { padding: 13px 14px; }
  .czer-editorial strong { font-size: 11px; }
  .czer-editorial small { font-size: 9px; }
  .czer-promise { grid-template-columns: 1fr; margin-top: 10px; margin-bottom: 28px; }
  .czer-promise > div { min-height: 74px; padding: 14px 16px; border-right: 0; border-bottom: 1px solid var(--czer-line) !important; }
  .czer-promise > div:last-child { border-bottom: 0 !important; }
  .czer-footer__main { grid-template-columns: 1fr; gap: 32px; padding-top: 46px; padding-bottom: 38px; }
  .czer-footer__bottom { flex-direction: column; gap: 5px; }
  .woocommerce ul.products { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product .price { padding-left: 10px; padding-right: 10px; }
  .woocommerce ul.products li.product .button { margin-left: 10px; margin-right: 10px; }
}

@media (max-width: 430px) {
  .czer-hero__visual { height: 220px; }
  .czer-mobile-benefits small { display: none; }
}

/* =========================================================
   CZER 1.3.0 — complete storefront presentation layer
   ========================================================= */
.czer-wishlist-link { position: relative; }
.czer-wishlist-count {
  position: absolute; top: 1px; right: -1px; min-width: 17px; height: 17px; padding: 0 4px;
  display: grid; place-items: center; border-radius: 20px; background: #111; color: #fff;
  font-size: 9px; font-weight: 700;
}
.czer-product-card__type,
.czer-loop-card__type {
  display: block; margin-bottom: 3px; color: #81786f; font-size: 8px; line-height: 1.2;
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.czer-section--new-arrivals { padding-top: 34px; }
.czer-eyebrow {
  display: inline-block; margin-bottom: 14px; color: #7a6e63; font-size: 10px; line-height: 1;
  font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
}

/* Branded content pages */
.czer-presentation-page { max-width: var(--czer-shell); padding-top: 42px; padding-bottom: 74px; }
.czer-page-title-block { max-width: 930px; margin: 0 auto 46px; text-align: center; }
.czer-page-title-block h1,
.czer-subpage-hero h1,
.czer-contact-layout h1,
.czer-samples-hero h1 {
  margin: 0; font-size: clamp(40px, 5.4vw, 76px); line-height: .98; font-weight: 400; letter-spacing: -.055em;
}
.czer-page-title-block p,
.czer-subpage-hero__copy > p,
.czer-contact-layout__intro > p,
.czer-samples-hero > div > p {
  max-width: 720px; margin: 22px auto 0; color: var(--czer-muted); font-size: 16px; line-height: 1.7;
}
.czer-subpage-hero {
  display: grid; grid-template-columns: .88fr 1.12fr; min-height: 530px; overflow: hidden;
  border: 1px solid var(--czer-line); border-radius: 10px; background: var(--czer-bg);
}
.czer-subpage-hero__copy { padding: clamp(40px,6vw,88px); display: flex; flex-direction: column; justify-content: center; }
.czer-subpage-hero__copy > p { margin-left: 0; margin-right: 0; }
.czer-subpage-hero__image { min-width: 0; overflow: hidden; }
.czer-subpage-hero__image picture,
.czer-subpage-hero__image img { width: 100%; height: 100%; }
.czer-subpage-hero__image img { object-fit: cover; object-position: 52% center; }
.czer-number-strip {
  display: grid; grid-template-columns: repeat(4,1fr); margin: 20px 0 80px;
  border: 1px solid var(--czer-line); border-radius: 8px; background: #fff; overflow: hidden;
}
.czer-number-strip > div { min-height: 108px; padding: 20px; display: grid; align-content: center; justify-items: center; border-right: 1px solid var(--czer-line); text-align: center; }
.czer-number-strip > div:last-child { border-right: 0; }
.czer-number-strip strong { font-size: 18px; font-weight: 500; }
.czer-number-strip span { margin-top: 4px; color: var(--czer-muted); font-size: 11px; }
.czer-story-grid { display: grid; gap: 28px; }
.czer-story-grid article {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 390px; overflow: hidden;
  border: 1px solid var(--czer-line); border-radius: 10px; background: #fff;
}
.czer-story-grid article > div:not(.czer-story-grid__image) { padding: clamp(36px,5vw,74px); display: flex; flex-direction: column; justify-content: center; }
.czer-story-grid h2,
.czer-choice-guide h2,
.czer-page-cta h2,
.czer-delivery-steps h2,
.czer-sample-form h2 {
  margin: 0; font-size: clamp(28px,3.2vw,48px); line-height: 1.04; font-weight: 400; letter-spacing: -.045em;
}
.czer-story-grid p,
.czer-choice-guide p,
.czer-page-cta p { margin: 18px 0 0; color: var(--czer-muted); line-height: 1.75; }
.czer-story-grid__image { min-width: 0; overflow: hidden; }
.czer-story-grid__image picture,
.czer-story-grid__image img { width: 100%; height: 100%; }
.czer-story-grid__image img { object-fit: cover; }
.czer-page-cta {
  margin-top: 32px; padding: clamp(30px,4vw,56px); display: flex; align-items: center; justify-content: space-between; gap: 30px;
  border-radius: 10px; background: #eee8df;
}
.czer-page-cta > div { max-width: 780px; }
.czer-page-cta .czer-button { flex: 0 0 auto; }

/* Collections */
.czer-collection-showcase { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.czer-collection-showcase__card {
  min-height: 315px; display: grid; grid-template-columns: 52% 48%; overflow: hidden;
  border: 1px solid var(--czer-line); border-radius: 9px; background: #fff; transition: transform .25s ease, box-shadow .25s ease;
}
.czer-collection-showcase__card:hover { transform: translateY(-4px); box-shadow: var(--czer-shadow); }
.czer-collection-showcase__image { background: #f2eee8; overflow: hidden; }
.czer-collection-showcase__image picture,
.czer-collection-showcase__image img { width: 100%; height: 100%; }
.czer-collection-showcase__image img { padding: 18px; object-fit: contain; transition: transform .4s ease; }
.czer-collection-showcase__card:hover img { transform: scale(1.035); }
.czer-collection-showcase__copy { padding: 34px; display: flex; flex-direction: column; justify-content: center; }
.czer-collection-showcase__copy > span { color: #a09990; font-size: 11px; }
.czer-collection-showcase__copy h2 { margin: 10px 0 0; font-size: 28px; font-weight: 400; letter-spacing: -.035em; }
.czer-collection-showcase__copy p { margin: 10px 0 24px; color: var(--czer-muted); font-size: 13px; line-height: 1.6; }
.czer-collection-showcase__copy strong { margin-top: auto; display: inline-flex; align-items: center; gap: 9px; font-size: 10px; text-transform: uppercase; }
.czer-choice-guide { margin-top: 70px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 75px; align-items: start; }
.czer-choice-guide__items { display: grid; gap: 0; border-top: 1px solid var(--czer-line); }
.czer-choice-guide__items article { padding: 25px 0; display: grid; grid-template-columns: 48px 1fr; column-gap: 18px; border-bottom: 1px solid var(--czer-line); }
.czer-choice-guide__items article > strong { grid-row: 1 / span 2; color: #9b9187; font-size: 12px; }
.czer-choice-guide__items h3 { margin: 0; font-size: 17px; }
.czer-choice-guide__items p { margin: 6px 0 0; font-size: 13px; }

/* Contact and forms */
.czer-contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(35px,6vw,90px); align-items: start; }
.czer-contact-layout__intro { padding-top: 26px; }
.czer-contact-layout__intro > p { margin-left: 0; margin-right: 0; }
.czer-contact-cards { margin-top: 42px; display: grid; border-top: 1px solid var(--czer-line); }
.czer-contact-cards article { padding: 21px 0; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid var(--czer-line); }
.czer-contact-cards article > span { display: grid; gap: 3px; }
.czer-contact-cards strong { font-size: 11px; text-transform: uppercase; }
.czer-contact-cards a,
.czer-contact-cards small { color: var(--czer-muted); font-size: 13px; }
.czer-contact-form,
.czer-sample-form {
  padding: clamp(28px,4vw,54px); border: 1px solid var(--czer-line); border-radius: 10px; background: #f8f5f0;
}
.czer-contact-form__head h2 { margin: 0 0 30px; font-size: 34px; font-weight: 400; letter-spacing: -.035em; }
.czer-form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.czer-form-grid label { display: grid; gap: 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.czer-form-grid__wide { grid-column: 1 / -1; }
.czer-form-grid input,
.czer-form-grid textarea {
  width: 100%; padding: 13px 14px; border: 1px solid #dcd4ca; border-radius: 3px; background: #fff; color: #111; outline: 0; text-transform: none;
}
.czer-form-grid input:focus,
.czer-form-grid textarea:focus { border-color: #111; box-shadow: 0 0 0 2px rgba(0,0,0,.05); }
.czer-checkbox { margin: 18px 0 22px; display: flex; align-items: flex-start; gap: 9px; color: var(--czer-muted); font-size: 11px; }
.czer-checkbox input { margin-top: 2px; }
.czer-form-note { margin: 18px 0 0; padding: 12px 14px; border-radius: 3px; background: #e8efe6; color: #344331; font-size: 12px; }

/* Delivery, samples, FAQ, wishlist, legal */
.czer-delivery-visual { display: grid; grid-template-columns: 1.1fr .9fr; overflow: hidden; border: 1px solid var(--czer-line); border-radius: 10px; background: #fff; }
.czer-delivery-visual__image { min-height: 440px; overflow: hidden; }
.czer-delivery-visual__image picture,
.czer-delivery-visual__image img { width: 100%; height: 100%; }
.czer-delivery-visual__image img { object-fit: cover; }
.czer-delivery-steps { padding: clamp(30px,5vw,70px); display: grid; align-content: center; }
.czer-delivery-steps article { padding: 23px 0; display: grid; grid-template-columns: 42px 1fr; gap: 14px; border-bottom: 1px solid var(--czer-line); }
.czer-delivery-steps article:last-child { border-bottom: 0; }
.czer-delivery-steps article > span { color: #9f958b; font-size: 11px; }
.czer-delivery-steps h2 { font-size: 21px; }
.czer-delivery-steps p { margin: 7px 0 0; color: var(--czer-muted); font-size: 13px; line-height: 1.6; }
.czer-info-cards { margin-top: 18px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.czer-info-cards article { min-height: 190px; padding: 30px; border: 1px solid var(--czer-line); border-radius: 8px; background: #fff; }
.czer-info-cards h2 { margin: 24px 0 7px; font-size: 19px; }
.czer-info-cards p { margin: 0; color: var(--czer-muted); font-size: 13px; line-height: 1.6; }
.czer-samples-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 475px; overflow: hidden; border-radius: 10px; background: #eee8df; }
.czer-samples-hero > div:first-child { padding: clamp(38px,6vw,86px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.czer-samples-hero > div > p { margin-left: 0; margin-right: 0; }
.czer-samples-hero .czer-button { margin-top: 26px; }
.czer-samples-hero > div:last-child { overflow: hidden; }
.czer-samples-hero picture,
.czer-samples-hero img { width: 100%; height: 100%; }
.czer-samples-hero img { object-fit: cover; }
.czer-sample-process { margin: 18px 0 70px; display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--czer-line); border-radius: 8px; overflow: hidden; }
.czer-sample-process article { padding: 28px; border-right: 1px solid var(--czer-line); }
.czer-sample-process article:last-child { border-right: 0; }
.czer-sample-process strong { color: #a1988f; font-size: 11px; }
.czer-sample-process h2 { margin: 20px 0 8px; font-size: 20px; }
.czer-sample-process p { margin: 0; color: var(--czer-muted); font-size: 13px; line-height: 1.6; }
.czer-sample-form { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.czer-sample-form > div:first-child p { color: var(--czer-muted); line-height: 1.7; }
.czer-faq-list { max-width: 980px; margin: 0 auto; border-top: 1px solid var(--czer-line); }
.czer-faq-list details { border-bottom: 1px solid var(--czer-line); }
.czer-faq-list summary { padding: 24px 2px; display: flex; justify-content: space-between; align-items: center; gap: 20px; list-style: none; cursor: pointer; font-size: 17px; font-weight: 600; }
.czer-faq-list summary::-webkit-details-marker { display: none; }
.czer-faq-list summary span { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--czer-line); border-radius: 50%; font-size: 19px; font-weight: 300; transition: transform .2s ease; }
.czer-faq-list details[open] summary span { transform: rotate(45deg); }
.czer-faq-list details > div { padding: 0 52px 25px 0; color: var(--czer-muted); line-height: 1.75; }
.czer-wishlist-empty { min-height: 360px; display: grid; place-items: center; align-content: center; text-align: center; border: 1px dashed #cfc6bb; border-radius: 10px; background: #faf8f5; }
.czer-wishlist-empty__icon { width: 68px; height: 68px; display: grid; place-items: center; border-radius: 50%; background: #eee8df; }
.czer-wishlist-empty h2 { margin: 18px 0 0; font-size: 26px; font-weight: 400; }
.czer-wishlist-empty p { margin: 8px 0 24px; color: var(--czer-muted); }
.czer-wishlist-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.czer-wishlist-card { overflow: hidden; border: 1px solid var(--czer-line); border-radius: 7px; background: #fff; }
.czer-wishlist-card__image { display: block; aspect-ratio: 1/1; overflow: hidden; background: #f3efe9; }
.czer-wishlist-card__image img { width: 100%; height: 100%; object-fit: contain; }
.czer-wishlist-card__copy { padding: 16px; display: grid; }
.czer-wishlist-card__copy > span { color: #81786f; font-size: 8px; text-transform: uppercase; }
.czer-wishlist-card h2 { margin: 5px 0; font-size: 15px; }
.czer-wishlist-card strong { font-size: 14px; }
.czer-wishlist-card button { margin-top: 15px; padding: 0; border: 0; background: transparent; color: #756c63; font-size: 10px; text-align: left; text-decoration: underline; cursor: pointer; }
.czer-legal-page { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; align-items: start; }
.czer-legal-page aside { position: sticky; top: 120px; }
.czer-legal-page h1 { margin: 0; font-size: clamp(40px,5vw,68px); line-height: 1; font-weight: 400; letter-spacing: -.05em; }
.czer-legal-page aside p { color: var(--czer-muted); line-height: 1.7; }
.czer-legal-page article { padding: 44px; border: 1px solid var(--czer-line); border-radius: 9px; background: #fff; line-height: 1.75; }
.czer-legal-page article h2 { margin-top: 0; }
.czer-legal-note { margin-top: 26px; padding: 16px; border-left: 3px solid #8d7864; background: #f4f0ea; font-size: 12px; }

/* Shop archive */
.czer-shop-hero { padding: 58px 0 48px; background: #f3eee7; }
.czer-shop-hero h1 { margin: 0; font-size: clamp(42px,6vw,78px); line-height: .95; font-weight: 400; letter-spacing: -.055em; }
.czer-shop-hero__description { max-width: 720px; margin-top: 18px; color: var(--czer-muted); font-size: 15px; line-height: 1.7; }
.czer-shop-categories { margin-top: 18px; padding-bottom: 18px; display: flex; gap: 8px; overflow-x: auto; border-bottom: 1px solid var(--czer-line); }
.czer-shop-categories a { min-height: 38px; padding: 0 16px; display: inline-flex; align-items: center; border: 1px solid var(--czer-line); border-radius: 30px; background: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; white-space: nowrap; }
.czer-shop-categories a.is-active,
.czer-shop-categories a:hover { border-color: #111; background: #111; color: #fff; }
.czer-shop--archive { padding-top: 32px; }
.czer-shop--archive .woocommerce-products-header { display: none; }
.czer-shop--archive .woocommerce-notices-wrapper + .woocommerce-result-count { margin-top: 0; }
.woocommerce .woocommerce-result-count { color: var(--czer-muted); font-size: 11px; }
.woocommerce ul.products li.product { position: relative; transition: transform .25s ease, box-shadow .25s ease; }
.woocommerce ul.products li.product:hover { transform: translateY(-3px); box-shadow: var(--czer-shadow); }
.woocommerce ul.products li.product a img { padding: 10px; object-fit: contain; }
.woocommerce ul.products li.product .czer-loop-card__type { padding: 0 16px; }
.woocommerce ul.products li.product .czer-swatches--loop { padding: 0 16px; }
.woocommerce ul.products li.product .czer-product-card__wish { top: 10px; right: 10px; }

/* Single product */
.czer-shop--single { padding-top: 30px; }
.woocommerce div.product { align-items: start; }
.woocommerce div.product div.images { padding: 18px; border-radius: 8px; background: #f4f1ec; }
.woocommerce div.product div.images .woocommerce-product-gallery__image img { object-fit: contain; }
.woocommerce div.product div.summary {
  position: relative;
  top: auto;
  z-index: auto;
  align-self: start;
  max-height: none;
  overflow: visible;
  padding: 10px 0 0;
}
.czer-product-eyebrow { margin-bottom: 10px; color: #766b61; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.woocommerce div.product .woocommerce-product-details__short-description { color: var(--czer-muted); font-size: 14px; line-height: 1.7; }
.czer-product-choices { margin: 25px 0; padding: 20px 0; display: grid; gap: 22px; border-top: 1px solid var(--czer-line); border-bottom: 1px solid var(--czer-line); }
.czer-product-choice__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.czer-product-choice__head strong { font-size: 12px; }
.czer-product-choice__head button,
.czer-product-choice__head a { padding: 0; border: 0; background: transparent; color: #776d64; font-size: 10px; text-decoration: underline; cursor: pointer; }
.czer-product-choice__swatches { margin: 12px 0 8px; display: flex; gap: 10px; }
.czer-product-choice__swatches button { width: 34px; height: 34px; padding: 0; border: 2px solid #fff; border-radius: 50%; background: var(--swatch); box-shadow: 0 0 0 1px #d2cac0; cursor: pointer; }
.czer-product-choice__swatches--fabric button { border-radius: 5px; }
.czer-product-choice__swatches button.is-selected { box-shadow: 0 0 0 2px #111; }
.czer-product-choice small { color: var(--czer-muted); font-size: 10px; }
.woocommerce div.product form.cart { display: flex; gap: 10px; }
.woocommerce div.product form.cart .quantity { margin: 0; }
.woocommerce div.product form.cart .button { flex: 1; }
.czer-single-promises { margin-top: 22px; display: grid; gap: 0; border-top: 1px solid var(--czer-line); }
.czer-single-promises > div { padding: 15px 0; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--czer-line); }
.czer-single-promises span { display: grid; }
.czer-single-promises strong { font-size: 11px; }
.czer-single-promises small { color: var(--czer-muted); font-size: 9px; }
.czer-product-details-band { grid-column: 1 / -1; margin: 42px 0 10px; padding: clamp(28px,4vw,52px); display: grid; grid-template-columns: .85fr 1.15fr; gap: 55px; border-radius: 9px; background: #efe9e1; }
.czer-product-details-band header h2 { margin: 0; font-size: clamp(30px,4vw,48px); line-height: 1; font-weight: 400; letter-spacing: -.045em; }
.czer-product-details-band header p { color: var(--czer-muted); line-height: 1.7; }
.czer-product-dimensions { display: grid; grid-template-columns: repeat(2,1fr); border: 1px solid #d9d0c5; border-radius: 6px; overflow: hidden; }
.czer-product-dimensions article { min-height: 120px; padding: 22px; display: grid; align-content: center; border-right: 1px solid #d9d0c5; border-bottom: 1px solid #d9d0c5; }
.czer-product-dimensions article:nth-child(even) { border-right: 0; }
.czer-product-dimensions article:nth-last-child(-n+2) { border-bottom: 0; }
.czer-product-dimensions strong { font-size: 25px; font-weight: 500; }
.czer-product-dimensions span { margin-top: 4px; color: var(--czer-muted); font-size: 10px; }
.woocommerce-tabs { margin-top: 34px; }
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0; display: flex; gap: 30px; border-bottom: 1px solid var(--czer-line); }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { margin: 0; padding: 0; border: 0; background: transparent; }
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { padding: 15px 0; font-size: 11px; text-transform: uppercase; }
.woocommerce div.product .woocommerce-tabs .panel { padding: 28px 0; color: var(--czer-muted); line-height: 1.75; }
.related.products > h2 { margin-top: 50px; font-size: 27px; font-weight: 400; }

/* Transaction pages: cart, checkout and account */
.czer-transaction-page { max-width: var(--czer-shell); padding-top: 42px; }
.czer-transaction-page > .czer-page-header { max-width: 760px; margin-bottom: 30px; }
.czer-transaction-page > .czer-page-header h1 { margin: 0; font-size: clamp(38px,5vw,64px); font-weight: 400; letter-spacing: -.05em; }
.czer-cart-progress { margin-bottom: 24px; padding: 20px 22px; border: 1px solid var(--czer-line); border-radius: 7px; background: #f8f5f0; }
.czer-cart-progress > div:first-child { display: flex; align-items: center; gap: 13px; }
.czer-cart-progress span { display: grid; }
.czer-cart-progress strong { font-size: 12px; }
.czer-cart-progress small { color: var(--czer-muted); font-size: 9px; }
.czer-cart-progress__track { height: 5px; margin-top: 15px; overflow: hidden; border-radius: 5px; background: #ddd5cb; }
.czer-cart-progress__track i { display: block; height: 100%; border-radius: inherit; background: #111; }
.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-form-login,
.woocommerce-form-register { border: 1px solid var(--czer-line); border-radius: 7px; background: #fff; }
.woocommerce-cart-form { padding: 8px; }
.cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-billing-fields,
.woocommerce-shipping-fields { padding: 24px; }
.woocommerce .cart-collaterals { margin-top: 26px; }
.woocommerce .cart-collaterals .cart_totals { width: min(100%, 480px); }
.woocommerce table.shop_table { margin: 0; border: 0; }
.woocommerce table.shop_table th { color: #756c63; font-size: 10px; text-transform: uppercase; }
.woocommerce table.shop_table td { padding-top: 16px; padding-bottom: 16px; }
.woocommerce-cart table.cart img { width: 90px; border-radius: 4px; background: #f3efe9; }
.woocommerce-checkout form.checkout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; }
.woocommerce-checkout #customer_details { width: auto; }
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review { width: auto; float: none; }
.woocommerce-checkout #order_review_heading { grid-column: 2; margin: 0; padding: 0 24px 12px; font-size: 20px; }
.woocommerce-checkout #order_review { grid-column: 2; }
.woocommerce-checkout #customer_details { grid-row: 1 / span 2; }
.woocommerce-account .woocommerce { display: grid; grid-template-columns: 260px 1fr; gap: 28px; }
.woocommerce-account .woocommerce-MyAccount-navigation { padding: 14px; }
.woocommerce-account .woocommerce-MyAccount-navigation ul { margin: 0; padding: 0; list-style: none; }
.woocommerce-account .woocommerce-MyAccount-navigation a { display: block; padding: 13px 12px; border-bottom: 1px solid var(--czer-line); font-size: 12px; }
.woocommerce-account .woocommerce-MyAccount-content { padding: 28px; }

/* Footer refinements */
.czer-footer__social { margin-top: 22px; display: flex; gap: 8px; }
.czer-footer__social a { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #403d38; border-radius: 50%; color: #d8d2c8; font-size: 9px; }
.czer-footer__payments { padding: 19px 0; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid #2e2c28; }
.czer-footer__payments > div { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.czer-footer__payments span { margin-right: 6px; color: #8f8980; font-size: 10px; }
.czer-footer__payments strong { padding: 6px 9px; border: 1px solid #3f3c37; border-radius: 3px; color: #d4cec5; font-size: 9px; letter-spacing: .04em; }
.czer-newsletter-note { margin: 10px 0 0 !important; color: #ddd6cc !important; font-size: 10px !important; }

@media (max-width: 1024px) {
  .czer-subpage-hero { grid-template-columns: 1fr; }
  .czer-subpage-hero__image { height: 420px; order: -1; }
  .czer-story-grid article { min-height: 340px; }
  .czer-collection-showcase { grid-template-columns: 1fr; }
  .czer-contact-layout { grid-template-columns: 1fr; }
  .czer-delivery-visual { grid-template-columns: 1fr; }
  .czer-delivery-visual__image { min-height: 380px; }
  .czer-samples-hero { grid-template-columns: 1fr; }
  .czer-samples-hero > div:last-child { height: 370px; order: -1; }
  .czer-sample-form { grid-template-columns: 1fr; gap: 30px; }
  .czer-wishlist-grid { grid-template-columns: repeat(3,1fr); }
  .czer-product-details-band { grid-template-columns: 1fr; }
  .woocommerce div.product div.summary { position: static; }
  .woocommerce-checkout form.checkout { grid-template-columns: 1fr; }
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review { grid-column: 1; grid-row: auto; }
  .woocommerce-account .woocommerce { grid-template-columns: 1fr; }
  .woocommerce-account .woocommerce-MyAccount-navigation ul { display: flex; overflow-x: auto; }
  .woocommerce-account .woocommerce-MyAccount-navigation li { flex: 0 0 auto; }
  .woocommerce-account .woocommerce-MyAccount-navigation a { border-bottom: 0; border-right: 1px solid var(--czer-line); white-space: nowrap; }
}

@media (max-width: 700px) {
  .czer-presentation-page { padding-top: 24px; padding-bottom: 45px; }
  .czer-page-title-block { margin-bottom: 28px; text-align: left; }
  .czer-page-title-block h1,
  .czer-subpage-hero h1,
  .czer-contact-layout h1,
  .czer-samples-hero h1 { font-size: clamp(38px,12vw,54px); }
  .czer-page-title-block p,
  .czer-subpage-hero__copy > p,
  .czer-contact-layout__intro > p,
  .czer-samples-hero > div > p { font-size: 14px; }
  .czer-subpage-hero__copy { padding: 30px 22px 36px; }
  .czer-subpage-hero__image { height: 270px; }
  .czer-number-strip { grid-template-columns: repeat(2,1fr); margin-bottom: 46px; }
  .czer-number-strip > div { border-bottom: 1px solid var(--czer-line); }
  .czer-number-strip > div:nth-child(2) { border-right: 0; }
  .czer-number-strip > div:nth-last-child(-n+2) { border-bottom: 0; }
  .czer-story-grid article { grid-template-columns: 1fr; min-height: 0; }
  .czer-story-grid article:nth-child(2) .czer-story-grid__image { order: -1; }
  .czer-story-grid__image { height: 255px; }
  .czer-story-grid article > div:not(.czer-story-grid__image) { padding: 30px 22px; }
  .czer-page-cta { align-items: flex-start; flex-direction: column; padding: 28px 22px; }
  .czer-page-cta .czer-button { width: 100%; }
  .czer-collection-showcase__card { grid-template-columns: 1fr; min-height: 0; }
  .czer-collection-showcase__image { height: 230px; }
  .czer-collection-showcase__copy { padding: 25px 22px; }
  .czer-choice-guide { grid-template-columns: 1fr; gap: 30px; margin-top: 48px; }
  .czer-form-grid { grid-template-columns: 1fr; }
  .czer-form-grid__wide { grid-column: 1; }
  .czer-contact-form,
  .czer-sample-form { padding: 26px 20px; }
  .czer-delivery-visual__image { min-height: 250px; }
  .czer-delivery-steps { padding: 24px 20px; }
  .czer-info-cards { grid-template-columns: 1fr; }
  .czer-samples-hero > div:first-child { padding: 30px 22px; }
  .czer-samples-hero > div:last-child { height: 260px; }
  .czer-sample-process { grid-template-columns: 1fr; margin-bottom: 38px; }
  .czer-sample-process article { border-right: 0; border-bottom: 1px solid var(--czer-line); }
  .czer-sample-process article:last-child { border-bottom: 0; }
  .czer-faq-list summary { font-size: 15px; }
  .czer-wishlist-grid { grid-template-columns: repeat(2,1fr); gap: 9px; }
  .czer-legal-page { grid-template-columns: 1fr; gap: 28px; }
  .czer-legal-page aside { position: static; }
  .czer-legal-page article { padding: 26px 20px; }
  .czer-shop-hero { padding: 38px 0 32px; }
  .czer-shop-hero h1 { font-size: 48px; }
  .czer-shop-categories { width: calc(100% - 24px); }
  .czer-shop--archive { padding-top: 24px; }
  .czer-product-details-band { margin-top: 26px; padding: 26px 20px; gap: 28px; }
  .czer-product-dimensions article { min-height: 94px; padding: 16px; }
  .woocommerce div.product form.cart { flex-wrap: wrap; }
  .woocommerce div.product form.cart .button { flex-basis: calc(100% - 85px); }
  .woocommerce div.product .woocommerce-tabs ul.tabs { gap: 18px; overflow-x: auto; }
  .czer-transaction-page { padding-top: 25px; }
  .woocommerce-cart-form { overflow-x: auto; }
  .woocommerce .cart-collaterals .cart_totals { width: 100%; }
  .czer-footer__payments { align-items: flex-start; flex-direction: column; }
}

/* WooCommerce layout normalization for the custom transaction grid */
.woocommerce-checkout .col2-set,
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 { width: 100%; float: none; }
.woocommerce-checkout .col2-set .col-2 { margin-top: 22px; }
.woocommerce-checkout-review-order-table { margin-bottom: 18px !important; }
.woocommerce-checkout-payment { border-radius: 6px !important; background: #f6f2ec !important; }
.woocommerce-checkout-payment .payment_box { background: #ebe5dd !important; }
.woocommerce-checkout-payment .payment_box::before { border-bottom-color: #ebe5dd !important; }
.woocommerce-account:not(.logged-in) .woocommerce { display: block; }
.woocommerce-account:not(.logged-in) #customer_login { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.woocommerce-account:not(.logged-in) #customer_login .col-1,
.woocommerce-account:not(.logged-in) #customer_login .col-2 { width: auto; float: none; padding: 26px; border: 1px solid var(--czer-line); border-radius: 7px; background: #fff; }
@media (max-width: 700px) {
  .woocommerce-account:not(.logged-in) #customer_login { grid-template-columns: 1fr; }
}


/* Functional variable-product controls — CZER 1.3.1 */
.woocommerce div.product form.cart.variations_form { display: block; margin-top: 24px; }
.woocommerce div.product form.cart.variations_form table.variations { width: 100%; margin: 0 0 18px; border: 0; }
.woocommerce div.product form.cart.variations_form table.variations tbody,
.woocommerce div.product form.cart.variations_form table.variations tr,
.woocommerce div.product form.cart.variations_form table.variations th,
.woocommerce div.product form.cart.variations_form table.variations td { display: block; width: 100%; }
.woocommerce div.product form.cart.variations_form table.variations th { padding: 0 0 8px; text-align: left; }
.woocommerce div.product form.cart.variations_form table.variations th label { font-size: 12px; font-weight: 700; }
.woocommerce div.product form.cart.variations_form table.variations td { position: relative; padding: 0 0 18px; }
.woocommerce div.product form.cart.variations_form table.variations select { width: 100%; min-height: 50px; padding: 0 44px 0 14px; border: 1px solid var(--czer-line); border-radius: 3px; background: #fff; color: var(--czer-ink); }
.woocommerce div.product form.cart.variations_form .reset_variations { display: inline-block; margin-top: 8px; color: var(--czer-muted); font-size: 11px; text-decoration: underline; }
.woocommerce div.product .single_variation_wrap { margin-top: 4px; }
.woocommerce div.product .woocommerce-variation-price { margin: 0 0 14px; }
.woocommerce div.product .woocommerce-variation-price .price { font-size: 22px; font-weight: 700; }
.woocommerce div.product form.cart .woocommerce-variation-add-to-cart { display: flex; gap: 10px; align-items: stretch; }
.woocommerce div.product form.cart .woocommerce-variation-add-to-cart .quantity { flex: 0 0 auto; }
.woocommerce div.product form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button { flex: 1; }
.woocommerce span.onsale { min-width: 52px; min-height: 24px; padding: 5px 9px; display: inline-flex; align-items: center; justify-content: center; border-radius: 2px; background: #111; color: #fff; font-size: 10px; line-height: 1; text-transform: uppercase; }
@media (max-width: 600px) {
  .woocommerce div.product form.cart .woocommerce-variation-add-to-cart { flex-wrap: wrap; }
  .woocommerce div.product form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button { flex-basis: calc(100% - 84px); }
}


/* 1.3.2 — single-product flow fix: no floating summary over descriptions. */
.single-product .czer-shop--single,
.single-product .czer-shop--single .woocommerce,
.single-product .czer-shop--single div.product {
  overflow: visible;
}
.single-product .woocommerce div.product div.summary {
  position: relative !important;
  inset: auto !important;
  transform: none !important;
}
.single-product .woocommerce div.product form.cart,
.single-product .woocommerce div.product form.cart.variations_form {
  clear: both;
}
.single-product .woocommerce div.product form.cart.variations_form table.variations {
  position: static;
}
@media (max-width: 1024px) {
  .single-product .woocommerce div.product {
    grid-template-columns: minmax(0,1fr);
  }
  .single-product .woocommerce div.product div.summary {
    width: 100%;
    padding-top: 0;
  }
}

/* --------------------------------------------------------------------------
   CZER 1.3.6 — finalna karta produktu według zaakceptowanej wizualizacji
   -------------------------------------------------------------------------- */
.single-product .czer-shop--single {
  width: min(calc(100% - 56px), 1440px);
  padding-top: 22px;
  padding-bottom: 72px;
}
.single-product .woocommerce-breadcrumb {
  margin: 0 0 22px;
  color: #80766c;
  font-size: 11px;
}
.single-product .woocommerce-breadcrumb a { color: #80766c; }
.single-product .woocommerce span.onsale { display: none; }
.single-product .woocommerce div.product {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  column-gap: clamp(42px, 5vw, 78px);
  row-gap: 0;
  align-items: start;
}
.single-product .woocommerce div.product div.images,
.single-product .woocommerce div.product div.summary {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
}
.single-product .woocommerce div.product div.images {
  padding: 0;
  border-radius: 0;
  background: transparent;
}
.single-product .woocommerce-product-gallery .flex-viewport,
.single-product .woocommerce-product-gallery__wrapper {
  overflow: hidden;
  border-radius: 6px;
  background: #f5f1eb;
}
.single-product .woocommerce-product-gallery__image a {
  display: grid;
  place-items: center;
  aspect-ratio: 1.06 / 1;
  background: #f5f1eb;
}
.single-product .woocommerce div.product div.images .woocommerce-product-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-product .woocommerce div.product div.images .woocommerce-product-gallery__trigger {
  width: 42px;
  height: 42px;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20,20,20,.08);
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.single-product .woocommerce div.product div.images .flex-control-thumbs {
  margin: 12px 0 0 !important;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.single-product .woocommerce div.product div.images .flex-control-thumbs li {
  width: auto !important;
  float: none !important;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 4px;
  background: #f5f1eb;
}
.single-product .woocommerce div.product div.images .flex-control-thumbs li:nth-child(n+5) { display: none; }
.single-product .woocommerce div.product div.images .flex-control-thumbs li img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
  opacity: .82;
}
.single-product .woocommerce div.product div.images .flex-control-thumbs li img.flex-active {
  opacity: 1;
  box-shadow: inset 0 0 0 1px #111;
}
.single-product .woocommerce div.product div.summary {
  padding: 12px 0 0;
  position: relative !important;
  inset: auto !important;
  transform: none !important;
}
.single-product .czer-product-eyebrow {
  margin-bottom: 18px;
  color: #8b7766;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.single-product .woocommerce div.product .product_title {
  margin: 0 0 24px;
  font-size: clamp(48px, 5vw, 72px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.065em;
}
.single-product .woocommerce div.product p.price,
.single-product .woocommerce div.product span.price {
  margin: 0 0 28px;
  color: #111;
  font-size: 27px;
  line-height: 1.1;
  font-weight: 700;
}
.single-product .woocommerce div.product p.price del,
.single-product .woocommerce div.product span.price del {
  margin-right: 10px;
  color: #7a736d;
  font-weight: 400;
  opacity: 1;
}
.single-product .woocommerce div.product .woocommerce-product-details__short-description {
  max-width: 540px;
  margin: 0 0 28px;
  color: #655f58;
  font-size: 15px;
  line-height: 1.72;
}
.single-product .woocommerce div.product form.cart,
.single-product .woocommerce div.product form.cart.variations_form {
  clear: both;
}
.single-product .woocommerce div.product form.cart.variations_form {
  margin-top: 0;
  padding-top: 26px;
  border-top: 1px solid var(--czer-line);
}
.single-product .woocommerce div.product form.cart.variations_form table.variations {
  margin: 0;
  position: static;
}
.single-product .woocommerce div.product form.cart.variations_form table.variations tr {
  margin-bottom: 27px;
}
.single-product .woocommerce div.product form.cart.variations_form table.variations th { display: none; }
.single-product .woocommerce div.product form.cart.variations_form table.variations td { padding: 0; }
.czer-v5-variation-head {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.czer-v5-variation-head strong { font-size: 13px; }
.czer-v5-variation-head a {
  color: #776e66;
  font-size: 10px;
  text-decoration: underline;
}
.czer-v5-variation-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.czer-v5-variation-swatch {
  --swatch: #c7b39e;
  width: 43px;
  height: 43px;
  padding: 0;
  position: relative;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 1px #cfc7bd;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.czer-v5-variation-swatch:hover { transform: translateY(-1px); }
.czer-v5-variation-swatch.is-selected { box-shadow: 0 0 0 2px #111; }
.czer-v5-variation-swatch[data-fabric="true"] {
  background-image:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.42) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 65%, rgba(0,0,0,.14) 0 1px, transparent 1.5px);
  background-size: 5px 5px, 6px 6px;
  background-color: var(--swatch);
}
.czer-v5-variation-current {
  margin: 10px 0 0;
  display: block;
  color: #746b63;
  font-size: 10px;
}
.czer-native-variation-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.single-product .woocommerce div.product form.cart.variations_form .reset_variations {
  margin-top: 10px;
  font-size: 10px;
}
.single-product .woocommerce div.product .single_variation_wrap {
  margin-top: 3px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.single-product .woocommerce div.product .woocommerce-variation-price,
.single-product .woocommerce div.product .woocommerce-variation-availability,
.single-product .czer-v5-stock { display: none; }
.single-product .woocommerce div.product form.cart .woocommerce-variation-add-to-cart,
.single-product .woocommerce div.product form.cart:not(.variations_form) {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 54px;
  gap: 12px;
  align-items: stretch;
}
.single-product .woocommerce div.product form.cart .quantity {
  width: 88px;
  height: 54px;
  position: relative;
  display: grid;
  grid-template-columns: 27px 34px 27px;
  align-items: stretch;
  border: 1px solid var(--czer-line);
  background: #fff;
}
.single-product .woocommerce div.product form.cart .quantity input.qty {
  width: 34px;
  height: 52px;
  padding: 0;
  order: 2;
  border: 0;
  background: transparent;
  text-align: center;
  -moz-appearance: textfield;
}
.single-product .woocommerce div.product form.cart .quantity input.qty::-webkit-outer-spin-button,
.single-product .woocommerce div.product form.cart .quantity input.qty::-webkit-inner-spin-button { margin: 0; -webkit-appearance: none; }
.czer-qty-button {
  width: 27px;
  height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #4e4944;
  font-size: 18px;
  cursor: pointer;
}
.czer-qty-minus { order: 1; }
.czer-qty-plus { order: 3; }
.single-product .woocommerce div.product form.cart .single_add_to_cart_button {
  min-height: 54px;
  border-radius: 1px;
  background: #111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.czer-v5-wishlist {
  width: 54px;
  min-width: 54px;
  height: 54px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--czer-line);
  border-radius: 1px;
  background: #fff;
  cursor: pointer;
}
.czer-v5-wishlist.is-active { background: #111; color: #fff; }

.czer-v5-benefits {
  grid-column: 1 / -1;
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--czer-line);
  border-bottom: 1px solid var(--czer-line);
}
.czer-v5-benefits article {
  min-height: 82px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--czer-line);
}
.czer-v5-benefits article:last-child { border-right: 0; }
.czer-v5-benefits article span { display: grid; }
.czer-v5-benefits strong { font-size: 11px; }
.czer-v5-benefits small { margin-top: 2px; color: var(--czer-muted); font-size: 9px; }

.czer-v6-product-details {
  grid-column: 1 / -1;
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.02fr 1.05fr .98fr;
  border: 1px solid var(--czer-line);
  border-radius: 4px;
  background: #fff;
}
.czer-v6-product-details > article {
  min-height: 290px;
  padding: 28px 30px;
  border-right: 1px solid var(--czer-line);
}
.czer-v6-product-details > article:last-child { border-right: 0; }
.czer-v6-product-details h2 {
  margin: 0 0 20px;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -.025em;
}
.czer-v6-description p {
  margin: 0 0 15px;
  color: #5f5953;
  font-size: 11px;
  line-height: 1.75;
}
.czer-v6-description p:last-child { margin-bottom: 0; }
.czer-v6-dimensions svg {
  width: 100%;
  height: 215px;
  overflow: visible;
}
.czer-v6-dimensions svg path {
  fill: none;
  stroke: #706861;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.czer-v6-dimensions svg .measure { stroke: #9d958d; stroke-width: 1; }
.czer-v6-dimensions svg text { fill: #655e58; font-size: 11px; }
.czer-v6-delivery-materials { display: grid; align-content: start; }
.czer-v6-delivery-block {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--czer-line);
}
.czer-v6-delivery-block ul,
.czer-v6-materials-block ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}
.czer-v6-delivery-block li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5f5953;
  font-size: 10px;
}
.czer-v6-delivery-block a {
  margin-top: 16px;
  display: inline-block;
  color: #6d645c;
  font-size: 10px;
  text-decoration: underline;
}
.czer-v6-materials-block { padding-top: 20px; }
.czer-v6-materials-block h2 { margin-bottom: 14px; }
.czer-v6-materials-block li {
  position: relative;
  padding-left: 18px;
  color: #5f5953;
  font-size: 10px;
  line-height: 1.5;
}
.czer-v6-materials-block li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #35312d;
}

.czer-v6-related-heading {
  grid-column: 1 / -1;
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.czer-v6-related-heading h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -.03em;
}
.czer-v6-related-heading a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #71685f;
  font-size: 10px;
  text-decoration: underline;
}
.single-product .related.products {
  grid-column: 1 / -1;
  margin-top: 16px;
}
.single-product .related.products > h2 { display: none; }
.single-product .related.products ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.single-product .related.products ul.products::before,
.single-product .related.products ul.products::after { display: none; }
.single-product .related.products ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
}

@media (max-width: 1100px) {
  .single-product .woocommerce div.product {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .86fr);
    column-gap: 34px;
  }
  .czer-v6-product-details { grid-template-columns: 1fr 1fr; }
  .czer-v6-product-details > article:nth-child(2) { border-right: 0; }
  .czer-v6-product-details > article:last-child {
    grid-column: 1 / -1;
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    border-top: 1px solid var(--czer-line);
  }
  .czer-v6-delivery-block { padding: 0 30px 0 0; border: 0; border-right: 1px solid var(--czer-line); }
  .czer-v6-materials-block { padding: 0; }
}

@media (max-width: 850px) {
  .single-product .czer-shop--single { width: min(calc(100% - 32px), 760px); }
  .single-product .woocommerce div.product { grid-template-columns: 1fr; row-gap: 30px; }
  .single-product .woocommerce div.product div.summary { padding-top: 0; }
  .single-product .woocommerce div.product .product_title { font-size: clamp(42px, 10vw, 62px); }
  .czer-v5-benefits { grid-template-columns: repeat(2, 1fr); }
  .czer-v5-benefits article:nth-child(2) { border-right: 0; }
  .czer-v5-benefits article:nth-child(-n+2) { border-bottom: 1px solid var(--czer-line); }
  .czer-v6-product-details { grid-template-columns: 1fr; }
  .czer-v6-product-details > article,
  .czer-v6-product-details > article:nth-child(2),
  .czer-v6-product-details > article:last-child {
    grid-column: auto;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--czer-line);
  }
  .czer-v6-product-details > article:last-child { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; border-bottom: 0; }
  .czer-v6-delivery-block { padding: 0 28px 0 0; border: 0; border-right: 1px solid var(--czer-line); }
  .single-product .related.products ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .single-product .czer-shop--single { width: calc(100% - 24px); padding-top: 12px; }
  .single-product .woocommerce-breadcrumb { margin-bottom: 14px; font-size: 9px; }
  .single-product .woocommerce-product-gallery__image a { aspect-ratio: 1 / 1; }
  .single-product .woocommerce div.product div.images .flex-control-thumbs { gap: 7px; }
  .single-product .woocommerce div.product .product_title { font-size: 43px; }
  .single-product .woocommerce div.product p.price,
  .single-product .woocommerce div.product span.price { font-size: 23px; }
  .czer-v5-variation-swatch { width: 38px; height: 38px; }
  .single-product .woocommerce div.product form.cart .woocommerce-variation-add-to-cart,
  .single-product .woocommerce div.product form.cart:not(.variations_form) {
    grid-template-columns: 82px minmax(0,1fr) 50px;
    gap: 8px;
  }
  .single-product .woocommerce div.product form.cart .quantity { width: 82px; grid-template-columns: 25px 32px 25px; }
  .single-product .woocommerce div.product form.cart .quantity input.qty { width: 32px; }
  .single-product .woocommerce div.product form.cart .single_add_to_cart_button { padding-inline: 12px; font-size: 9px; }
  .czer-v5-wishlist { width: 50px; min-width: 50px; }
  .czer-v5-benefits { margin-top: 24px; }
  .czer-v5-benefits article { min-height: 78px; padding: 13px; }
  .czer-v6-product-details > article { padding: 23px 19px; }
  .czer-v6-product-details > article:last-child { grid-template-columns: 1fr; }
  .czer-v6-delivery-block { padding: 0 0 20px; border-right: 0; border-bottom: 1px solid var(--czer-line); }
  .czer-v6-materials-block { padding-top: 20px; }
  .czer-v6-dimensions svg { height: 190px; }
  .czer-v6-related-heading h2 { font-size: 22px; }
  .single-product .related.products ul.products { gap: 10px; }
}
