/*
Theme Name: Casezone
Theme URI: https://casezone.pl
Author: Casezone
Description: Custom WooCommerce theme for Casezone.
Version: 0.1.50
Requires at least: 6.5
Tested up to: 6.5
Requires PHP: 8.1
Text Domain: casezone
*/

:root {
  --cz-page-width: 1500px;
  --cz-color-ink: #050505;
  --cz-color-muted: #6b7280;
  --cz-color-border: #e5e7eb;
  --cz-color-accent: #08b1dc;
  --cz-color-surface: #ffffff;
  --cz-color-dark: #07090b;
  --color-border-rgb: 5 5 5;
  --color-background-rgb: 255 255 255;
  --color-foreground-rgb: 5 5 5;
  --font-body--family: Arial, "Segoe UI", sans-serif;
  --font-heading--family: Arial, "Segoe UI", sans-serif;
  --page-width: 1240px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--cz-color-surface);
  color: var(--cz-color-ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cz-container {
  width: min(calc(100% - 40px), var(--cz-page-width));
  margin-inline: auto;
}

.cz-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--cz-color-border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.cz-site-header__inner {
  display: grid;
  grid-template-columns: auto auto minmax(260px, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 78px;
}

.cz-site-header__brand {
  display: inline-flex;
  align-items: center;
  width: clamp(160px, 14vw, 205px);
}

.cz-site-header__brand img {
  display: block;
  width: 100%;
  filter: invert(1) contrast(1.08);
  mix-blend-mode: multiply;
}

.cz-site-header__nav {
  min-width: 0;
  justify-self: start;
}

.cz-header-dropdown {
  position: relative;
}

.cz-header-dropdown > summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--cz-color-ink);
  cursor: pointer;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 900;
  line-height: 1;
  list-style: none;
  user-select: none;
}

.cz-header-dropdown > summary::-webkit-details-marker,
.cz-menu__details > summary::-webkit-details-marker,
.cz-menu__model-details > summary::-webkit-details-marker {
  display: none;
}

.cz-header-dropdown summary svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}

.cz-header-dropdown[open] > summary svg,
.cz-menu__details[open] > summary svg,
.cz-menu__model-details[open] > summary svg {
  transform: rotate(180deg);
}

.cz-header-dropdown__panel {
  position: absolute;
  z-index: 70;
  top: calc(100% + 12px);
  left: 0;
  width: min(420px, calc(100vw - 40px));
  max-height: min(72vh, 640px);
  overflow: auto;
  border: 1px solid rgb(5 5 5 / 0.12);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 24px 60px rgb(5 5 5 / 0.16);
}

.cz-header-dropdown__panel .cz-menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.cz-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cz-menu a,
.cz-site-header__actions a {
  color: var(--cz-color-ink);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.cz-menu a:hover,
.cz-site-header__actions a:hover {
  color: var(--cz-color-accent);
}

.cz-menu__item {
  min-width: 0;
}

.cz-menu__parent,
.cz-menu__details > summary,
.cz-menu__model-details > summary,
.cz-menu__children a,
.cz-menu__models a {
  display: flex;
  min-width: 0;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 7px;
  padding: 10px 12px;
  cursor: pointer;
  line-height: 1.2;
  list-style: none;
  text-decoration: none;
}

.cz-menu__parent,
.cz-menu__details > summary {
  background: rgb(5 5 5 / 0.04);
  font-weight: 900;
}

.cz-menu__details > summary:hover,
.cz-menu__model-details > summary:hover,
.cz-menu__parent:hover,
.cz-menu__children a:hover,
.cz-menu__models a:hover {
  background: rgb(8 177 220 / 0.1);
}

.cz-menu__children,
.cz-menu__models {
  display: grid;
  gap: 4px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.cz-menu__children {
  padding-left: 10px;
}

.cz-menu__models {
  border-left: 2px solid rgb(8 177 220 / 0.18);
  margin-left: 10px;
  padding-left: 8px;
}

.cz-menu__model-details > summary,
.cz-menu__children a,
.cz-menu__models a {
  min-height: 36px;
  color: rgb(5 5 5 / 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.cz-site-header__search {
  display: flex;
  min-width: 0;
}

.cz-site-header__search input[type="search"] {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--cz-color-border);
  border-right: 0;
  border-radius: 7px 0 0 7px;
  padding: 0 12px;
  font: inherit;
}

.cz-site-header__search input[type="search"]:focus,
.cz-site-header__search button:focus {
  outline: 0;
  box-shadow: none;
}

.cz-site-header__search button {
  min-height: 40px;
  border: 0;
  border-radius: 0 7px 7px 0;
  background: var(--cz-color-accent);
  color: #fff;
  padding: 0 14px;
  font-weight: 800;
  cursor: pointer;
}

.cz-site-header__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  white-space: nowrap;
}

.cz-site-header__cart {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid #050505;
  border-radius: 999px;
  background: #fff;
  color: #050505 !important;
  padding: 0 12px;
  transform-origin: center;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.cz-site-header__cart:hover {
  border-color: #050505;
  box-shadow: 0 8px 22px rgb(5 5 5 / 0.12);
  color: #050505 !important;
}

.cz-site-header__cart svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cz-site-header__cart-label {
  color: inherit;
  font-weight: 900;
}

.cz-site-header__cart-count,
[data-cz-wishlist-count] {
  display: inline-flex;
  min-width: 20px;
  min-height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  padding-inline: 5px;
}

.cz-site-header__cart.is-cart-bumping {
  animation: cz-cart-bump 720ms ease-in-out both;
  z-index: 20;
}

@keyframes cz-cart-bump {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
  }
  100% {
    transform: scale(1);
  }
}

.cz-main {
  padding-block: 0 64px;
}

.cz-social-login {
  display: grid;
  gap: 14px;
  margin: 0 0 26px;
  padding: 0;
  border: 0;
  background: transparent;
}

.cz-social-login__title {
  margin: 0;
  color: #111827;
  font-size: 1rem;
  font-weight: 800;
}

.cz-social-login__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cz-social-login__buttons .nsl-container,
.cz-social-login__buttons .nsl-container-buttons {
  width: auto;
}

.cz-social-login__buttons .nsl-button {
  border-radius: 7px;
}

.cz-social-login__preview {
  display: inline-flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgb(5 5 5 / 0.14);
  border-radius: 7px;
  background: #fff;
  color: #111827;
  cursor: default;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.1;
  padding: 0 16px;
  text-align: center;
  box-shadow: 0 1px 2px rgb(5 5 5 / 0.05);
}

.cz-social-login__preview--facebook {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}

.cz-social-login__icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  font-weight: 900;
}

.cz-social-login__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.cz-social-login__preview--facebook .cz-social-login__icon {
  background: rgb(255 255 255 / 0.2);
}

.cz-social-login__note {
  margin: 0;
  color: var(--cz-color-muted);
  font-size: 0.82rem;
}

.woocommerce-account .entry-title,
.woocommerce-account .cz-page__title,
.woocommerce-account .cz-main > h1 {
  margin: 0;
  font-family: "Arial Black", "Aptos Display", "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.woocommerce-account .cz-page__title--account-logo {
  font-size: 0;
  line-height: 0;
  text-align: left !important;
}

.woocommerce-account .cz-page__title--account-logo img {
  width: min(100%, 430px) !important;
  margin-inline: 0 !important;
}

.woocommerce-account .cz-page__title--account-logo::after {
  margin-inline: 0;
  text-align: left;
}

/* Casezone checkout polish */
.woocommerce-checkout .cz-main.cz-container {
  width: min(calc(100% - 40px), 1180px);
  padding: 34px 0 76px;
}

.woocommerce-checkout .cz-page {
  max-width: none;
  padding: 0;
}

.woocommerce-checkout .cz-page__header {
  margin-bottom: 24px;
}

.woocommerce-checkout .cz-page__title {
  margin: 0;
  color: var(--cz-color-ink);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

.woocommerce-checkout .wp-block-woocommerce-checkout,
.woocommerce-checkout .wc-block-checkout {
  width: 100%;
  max-width: none;
  margin: 0;
}

.woocommerce-checkout .wc-block-components-sidebar-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  gap: 28px;
  align-items: start;
}

.woocommerce-checkout .wc-block-components-main,
.woocommerce-checkout .wc-block-checkout__main,
.woocommerce-checkout .wc-block-components-sidebar,
.woocommerce-checkout .wc-block-checkout__sidebar {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce-checkout .wc-block-checkout__form,
.woocommerce-checkout .wc-block-checkout__sidebar,
.woocommerce-checkout form.checkout #customer_details,
.woocommerce-checkout form.checkout #order_review {
  border: 1px solid rgb(var(--color-border-rgb) / 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgb(5 5 5 / 0.05);
}

.woocommerce-checkout .wc-block-checkout__form,
.woocommerce-checkout form.checkout #customer_details {
  padding: 28px 30px;
}

.woocommerce-checkout .wc-block-checkout__sidebar,
.woocommerce-checkout form.checkout #order_review {
  position: sticky;
  top: 96px;
  padding: 24px 24px 26px !important;
}

.woocommerce-checkout .wc-block-components-checkout-step {
  margin: 0;
  padding: 0 0 28px;
  border: 0;
}

.woocommerce-checkout .wc-block-components-checkout-step + .wc-block-components-checkout-step {
  padding-top: 4px;
}

.woocommerce-checkout .wc-block-components-checkout-step:last-child {
  padding-bottom: 0;
}

.woocommerce-checkout .wc-block-components-checkout-step__heading,
.woocommerce-checkout .wc-block-components-title,
.woocommerce-checkout h2,
.woocommerce-checkout h3 {
  margin: 0 0 14px;
  color: var(--cz-color-ink);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
}

.woocommerce-checkout .wc-block-components-checkout-step__description,
.woocommerce-checkout .wc-block-components-checkout-step__heading-content,
.woocommerce-checkout .wc-block-components-checkbox__label,
.woocommerce-checkout .wc-block-components-radio-control__description,
.woocommerce-checkout .wc-block-components-address-card,
.woocommerce-checkout .wc-block-components-validation-error,
.woocommerce-checkout .wc-block-components-totals-item__description {
  color: rgb(var(--color-foreground-rgb) / 0.68);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}

.woocommerce-checkout .wc-block-components-text-input,
.woocommerce-checkout .wc-block-components-combobox,
.woocommerce-checkout .wc-block-components-country-input,
.woocommerce-checkout .form-row {
  margin-bottom: 10px;
}

.woocommerce-checkout .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-components-combobox input,
.woocommerce-checkout .wc-block-components-combobox-control input,
.woocommerce-checkout .wc-block-components-country-input select,
.woocommerce-checkout .select2-selection,
.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select {
  min-height: 48px !important;
  border: 1px solid rgb(var(--color-border-rgb) / 0.18) !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: var(--cz-color-ink) !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  box-shadow: none !important;
}

.woocommerce-checkout .wc-block-components-text-input input:focus,
.woocommerce-checkout .wc-block-components-combobox input:focus,
.woocommerce-checkout .wc-block-components-combobox-control input:focus,
.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus {
  border-color: var(--cz-color-accent) !important;
  box-shadow: 0 0 0 3px rgb(8 177 220 / 0.16) !important;
  outline: none !important;
}

.woocommerce-checkout .wc-block-components-text-input label,
.woocommerce-checkout .wc-block-components-combobox label,
.woocommerce-checkout label {
  color: rgb(var(--color-foreground-rgb) / 0.7);
  font-size: 0.82rem;
  font-weight: 900;
}

.woocommerce-checkout .wc-block-components-address-form {
  display: grid;
  gap: 0 10px;
}

.woocommerce-checkout .wc-block-components-radio-control,
.woocommerce-checkout .wc-block-checkout__shipping-method,
.woocommerce-checkout .wc-block-checkout__payment-method,
.woocommerce-checkout #payment {
  border: 1px solid rgb(var(--color-border-rgb) / 0.14);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.woocommerce-checkout .wc-block-components-radio-control__option,
.woocommerce-checkout #payment ul.payment_methods li,
.woocommerce-checkout .woocommerce-shipping-methods li {
  min-height: 58px;
  margin: 0 !important;
  padding: 16px 16px !important;
  border-bottom: 1px solid rgb(var(--color-border-rgb) / 0.1);
  color: var(--cz-color-ink);
  font-weight: 900;
}

.woocommerce-checkout .wc-block-components-radio-control__option:last-child,
.woocommerce-checkout #payment ul.payment_methods li:last-child,
.woocommerce-checkout .woocommerce-shipping-methods li:last-child {
  border-bottom: 0;
}

.woocommerce-checkout .wc-block-components-radio-control__option-checked,
.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method input:checked + label {
  background: rgb(8 177 220 / 0.06);
}

.woocommerce-checkout .wc-block-components-radio-control__input,
.woocommerce-checkout input[type="radio"],
.woocommerce-checkout input[type="checkbox"] {
  accent-color: var(--cz-color-accent);
}

.woocommerce-checkout .wc-block-components-radio-control__label,
.woocommerce-checkout .wc-block-components-radio-control__secondary-label,
.woocommerce-checkout #payment label,
.woocommerce-checkout .woocommerce-shipping-methods label {
  color: var(--cz-color-ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.woocommerce-checkout .wc-block-components-radio-control__secondary-label,
.woocommerce-checkout .woocommerce-shipping-methods .amount {
  margin-left: auto;
  color: var(--cz-color-ink);
  font-weight: 900;
  text-transform: uppercase;
}

.woocommerce-checkout .wc-block-components-order-summary,
.woocommerce-checkout .wc-block-components-totals-wrapper,
.woocommerce-checkout .shop_table {
  border-color: rgb(var(--color-border-rgb) / 0.1) !important;
}

.woocommerce-checkout .wc-block-components-order-summary__button-text,
.woocommerce-checkout .wc-block-components-order-summary__title-text,
.woocommerce-checkout .wc-block-components-totals-item__label,
.woocommerce-checkout .wc-block-components-totals-item__value,
.woocommerce-checkout .order-total,
.woocommerce-checkout .cart-subtotal,
.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
  color: var(--cz-color-ink);
  font-weight: 900;
}

.woocommerce-checkout .wc-block-components-order-summary-item {
  align-items: flex-start;
  padding: 14px 0 !important;
}

.woocommerce-checkout .wc-block-components-order-summary-item__image > img,
.woocommerce-checkout .product-name img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border: 1px solid rgb(var(--color-border-rgb) / 0.1);
  border-radius: 8px;
  background: #fff;
}

.woocommerce-checkout .wc-block-components-order-summary-item__quantity {
  background: var(--cz-color-ink) !important;
  color: #fff !important;
  font-weight: 900;
}

.woocommerce-checkout .wc-block-components-order-summary-item__description,
.woocommerce-checkout .wc-block-components-order-summary-item__individual-prices {
  color: var(--cz-color-ink);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.28;
}

.woocommerce-checkout .wc-block-components-order-summary-item__total-price,
.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.woocommerce-checkout .order-total .amount {
  color: var(--cz-color-ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.woocommerce-checkout .wc-block-components-totals-coupon-link,
.woocommerce-checkout .wc-block-components-panel__button {
  color: var(--cz-color-ink) !important;
  font-weight: 900;
  text-decoration: none !important;
}

.woocommerce-checkout .wc-block-components-checkout-place-order-button,
.woocommerce-checkout #place_order,
.woocommerce-checkout button[type="submit"] {
  width: 100%;
  min-height: 56px;
  border: 0 !important;
  border-radius: 8px !important;
  background: var(--cz-color-accent) !important;
  color: #fff !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
  letter-spacing: 0;
  box-shadow: 0 14px 30px rgb(8 177 220 / 0.22);
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover,
.woocommerce-checkout #place_order:hover,
.woocommerce-checkout button[type="submit"]:hover {
  background: #079ac0 !important;
  box-shadow: 0 18px 34px rgb(8 177 220 / 0.28);
  transform: translateY(-1px);
}

.woocommerce-checkout .wc-block-components-checkbox,
.woocommerce-checkout .wc-block-checkout__terms,
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
  margin-top: 18px;
}

.woocommerce-checkout .wc-block-components-notice-banner,
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message {
  border: 1px solid rgb(var(--color-border-rgb) / 0.12);
  border-left: 4px solid var(--cz-color-accent);
  border-radius: 8px;
  background: #fff;
  color: var(--cz-color-ink);
  font-weight: 800;
  box-shadow: 0 10px 28px rgb(5 5 5 / 0.05);
}

/* Classic WooCommerce checkout skin used for Autopay compatibility. */
.woocommerce-checkout form.checkout.woocommerce-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 410px);
  grid-template-rows: auto 1fr;
  gap: 28px;
  align-items: start;
}

.woocommerce-checkout form.checkout.woocommerce-checkout > .woocommerce-NoticeGroup,
.woocommerce-checkout form.checkout.woocommerce-checkout > .woocommerce-NoticeGroup-checkout,
.woocommerce-checkout form.checkout.woocommerce-checkout > .woocommerce-form-login-toggle,
.woocommerce-checkout form.checkout.woocommerce-checkout > .woocommerce-form-coupon-toggle,
.woocommerce-checkout form.checkout.woocommerce-checkout > form.login,
.woocommerce-checkout form.checkout.woocommerce-checkout > form.checkout_coupon {
  grid-column: 1 / -1;
}

.woocommerce-checkout form.checkout #customer_details {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 28px 34px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgb(5 5 5 / 0.055);
}

.woocommerce-checkout form.checkout #customer_details::before,
.woocommerce-checkout form.checkout #customer_details::after,
.woocommerce-checkout form.checkout #order_review::before,
.woocommerce-checkout form.checkout #order_review::after {
  display: none;
}

.woocommerce-checkout form.checkout #customer_details .col-1,
.woocommerce-checkout form.checkout #customer_details .col-2 {
  float: none;
  width: 100%;
}

.woocommerce-checkout form.checkout h3 {
  margin: 0 0 18px;
  color: var(--cz-color-ink);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.2;
}

.woocommerce-checkout form.checkout #order_review_heading {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 -10px;
}

.woocommerce-checkout form.checkout #order_review {
  grid-column: 2;
  grid-row: 2;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgb(5 5 5 / 0.055);
}

.woocommerce-checkout form.checkout .form-row {
  margin: 0 0 13px;
  padding: 0;
}

.woocommerce-checkout form.checkout .form-row-first,
.woocommerce-checkout form.checkout .form-row-last {
  width: calc(50% - 7px);
}

.woocommerce-checkout form.checkout .form-row-first {
  float: left;
}

.woocommerce-checkout form.checkout .form-row-last {
  float: right;
}

.woocommerce-checkout form.checkout .form-row-wide {
  clear: both;
}

.woocommerce-checkout form.checkout label {
  display: block;
  margin-bottom: 6px;
  color: rgb(var(--color-foreground-rgb) / 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.woocommerce-checkout form.checkout .required {
  color: #e11d48;
}

.woocommerce-checkout form.checkout .select2-container--default .select2-selection--single {
  display: flex;
  align-items: center;
  height: 48px !important;
  padding: 0 12px;
}

.woocommerce-checkout form.checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0;
  color: var(--cz-color-ink);
  font-weight: 800;
  line-height: 48px;
}

.woocommerce-checkout form.checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 48px;
}

.woocommerce-checkout form.checkout textarea.input-text {
  min-height: 118px !important;
  padding-top: 13px !important;
  resize: vertical;
}

.woocommerce-checkout form.checkout .woocommerce-additional-fields__field-wrapper .form-row {
  margin-bottom: 0;
}

.woocommerce-checkout form.checkout .woocommerce-checkout-review-order-table {
  display: block;
  margin: 0 0 18px !important;
  border: 0 !important;
  border-collapse: separate !important;
  background: transparent;
}

.woocommerce-checkout form.checkout .woocommerce-checkout-review-order-table thead {
  display: none;
}

.woocommerce-checkout form.checkout .woocommerce-checkout-review-order-table tbody,
.woocommerce-checkout form.checkout .woocommerce-checkout-review-order-table tfoot {
  display: block;
}

.woocommerce-checkout form.checkout .woocommerce-checkout-review-order-table tr {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin: 0 0 10px;
  padding: 13px 14px;
  border: 1px solid rgb(var(--color-border-rgb) / 0.1);
  border-radius: 8px;
  background: #f8fafc;
}

.woocommerce-checkout form.checkout .woocommerce-checkout-review-order-table tr.shipping {
  display: block;
}

.woocommerce-checkout form.checkout .woocommerce-checkout-review-order-table tr.order-total {
  background: rgb(8 177 220 / 0.075);
  border-color: rgb(8 177 220 / 0.22);
}

.woocommerce-checkout form.checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout form.checkout .woocommerce-checkout-review-order-table td {
  display: block;
  width: auto;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--cz-color-ink);
  line-height: 1.3;
}

.woocommerce-checkout form.checkout .woocommerce-checkout-review-order-table td {
  text-align: right;
}

.woocommerce-checkout form.checkout .woocommerce-checkout-review-order-table .product-name,
.woocommerce-checkout form.checkout .woocommerce-checkout-review-order-table th {
  text-align: left;
  font-size: 0.9rem;
  font-weight: 800;
}

.woocommerce-checkout form.checkout .woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout form.checkout .woocommerce-checkout-review-order-table .amount {
  font-size: 0.94rem;
  font-weight: 900;
  white-space: nowrap;
}

.woocommerce-checkout form.checkout .woocommerce-shipping-methods {
  display: grid;
  gap: 10px;
  margin: 10px 0 0 !important;
  padding: 0 !important;
}

.woocommerce-checkout form.checkout .woocommerce-shipping-methods li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 14px !important;
  border: 1px solid rgb(var(--color-border-rgb) / 0.12) !important;
  border-radius: 8px;
  background: #fff;
}

.woocommerce-checkout form.checkout .woocommerce-shipping-methods input[type="radio"] {
  margin: 0 !important;
}

.woocommerce-checkout form.checkout .woocommerce-shipping-methods label {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  margin: 0;
  color: var(--cz-color-ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.woocommerce-checkout form.checkout .cz-shipping-carrier {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.woocommerce-checkout form.checkout .cz-shipping-carrier__logo {
  max-width: 74px;
  max-height: 30px;
  object-fit: contain;
}

.woocommerce-checkout form.checkout #payment {
  border: 0;
  border-radius: 8px;
  background: transparent;
  overflow: visible;
}

.woocommerce-checkout form.checkout #payment ul.payment_methods {
  display: grid;
  gap: 10px;
  margin: 0 !important;
  padding: 0 0 18px !important;
  border: 0 !important;
}

.woocommerce-checkout form.checkout #payment ul.payment_methods li.wc_payment_method {
  min-height: 0;
  padding: 14px !important;
  border: 1px solid rgb(var(--color-border-rgb) / 0.12) !important;
  border-radius: 8px;
  background: #fff;
}

.woocommerce-checkout form.checkout #payment ul.payment_methods li.wc_payment_method > input[type="radio"] {
  margin: 4px 12px 0 0 !important;
  vertical-align: top;
}

.woocommerce-checkout form.checkout #payment ul.payment_methods li.wc_payment_method > label {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  max-width: calc(100% - 34px);
  margin: 0;
  color: var(--cz-color-ink);
  font-size: 0.92rem;
  font-weight: 900;
  vertical-align: top;
}

.woocommerce-checkout form.checkout #payment ul.payment_methods li.wc_payment_method > label img {
  max-height: 30px;
  width: auto;
  margin: 0;
}

.woocommerce-checkout form.checkout #payment div.payment_box {
  margin: 12px 0 0 32px;
  padding: 12px 14px;
  border: 0;
  border-radius: 8px;
  background: rgb(8 177 220 / 0.08);
  color: rgb(var(--color-foreground-rgb) / 0.72);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.45;
}

.woocommerce-checkout form.checkout #payment div.payment_box::before {
  display: none;
}

.woocommerce-checkout form.checkout #payment .place-order {
  margin: 0;
  padding: 0 !important;
}

.woocommerce-checkout form.checkout #payment .woocommerce-privacy-policy-text {
  margin: 0 0 14px;
  color: rgb(var(--color-foreground-rgb) / 0.72);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.5;
}

.woocommerce-checkout form.checkout #payment .woocommerce-privacy-policy-text a,
.woocommerce-checkout form.checkout #payment .woocommerce-terms-and-conditions-checkbox-text a {
  color: var(--cz-color-accent);
  font-weight: 900;
}

.woocommerce-checkout form.checkout .woocommerce-terms-and-conditions-wrapper {
  margin: 0 0 14px;
}

.woocommerce-checkout form.checkout .woocommerce-form__label-for-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  color: rgb(var(--color-foreground-rgb) / 0.72);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.woocommerce-checkout form.checkout .woocommerce-form__label-for-checkbox input[type="checkbox"] {
  flex: 0 0 auto;
  margin-top: 2px;
}

.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info,
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  position: relative;
  margin-bottom: 18px;
  padding: 16px 18px 16px 48px;
}

.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info::before,
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info::before {
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .woocommerce-checkout form.checkout.woocommerce-checkout,
  .woocommerce-checkout form.checkout #customer_details {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout form.checkout #customer_details,
  .woocommerce-checkout form.checkout #order_review_heading,
  .woocommerce-checkout form.checkout #order_review {
    grid-column: 1;
    grid-row: auto;
  }

  .woocommerce-checkout .wc-block-components-sidebar-layout {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout .wc-block-checkout__sidebar,
  .woocommerce-checkout form.checkout #order_review {
    position: static;
  }
}

@media (max-width: 640px) {
  .woocommerce-checkout .cz-main.cz-container {
    width: min(calc(100% - 24px), 1180px);
    padding: 24px 0 56px;
  }

  .woocommerce-checkout .wc-block-checkout__form,
  .woocommerce-checkout form.checkout #customer_details,
  .woocommerce-checkout .wc-block-checkout__sidebar,
  .woocommerce-checkout form.checkout #order_review {
    padding: 18px !important;
  }

  .woocommerce-checkout form.checkout.woocommerce-checkout {
    gap: 18px;
  }

  .woocommerce-checkout form.checkout .form-row-first,
  .woocommerce-checkout form.checkout .form-row-last {
    float: none;
    width: 100%;
  }

  .woocommerce-checkout form.checkout .woocommerce-checkout-review-order-table tr {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .woocommerce-checkout form.checkout .woocommerce-checkout-review-order-table td {
    text-align: left;
  }

  .woocommerce-checkout .wc-block-components-checkout-step {
    padding-bottom: 24px;
  }

  .woocommerce-checkout .wc-block-components-radio-control__option,
  .woocommerce-checkout #payment ul.payment_methods li,
  .woocommerce-checkout .woocommerce-shipping-methods li {
    padding: 14px 12px !important;
  }
}

.woocommerce-account .cz-page {
  width: min(calc(100% - 40px), var(--cz-page-width, 1240px));
  max-width: none;
  margin-inline: auto;
  padding: 34px 0 70px;
}

.woocommerce-account .cz-main.cz-container {
  width: min(calc(100% - 40px), var(--cz-page-width, 1240px));
  padding: 34px 0 70px;
}

.woocommerce-account .cz-page__header {
  margin-bottom: 34px;
}

.woocommerce-account .cz-page:has(.cz-page__title--account-logo) .cz-page__header {
  text-align: left;
}

.woocommerce-account .cz-page__header--account {
  text-align: left !important;
}

.woocommerce-account .cz-page__header::after,
.woocommerce-account .cz-main > h1::after {
  content: "Zaloguj się albo utwórz konto klienta CaseZone.";
  display: block;
  max-width: 430px;
  margin: 10px 0 0;
  font-family: Arial, "Segoe UI", sans-serif;
  color: rgb(var(--color-foreground-rgb) / 0.62);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
  text-transform: none;
}

.woocommerce-account .cz-page:has(.cz-page__title--account-logo) .cz-page__header::after {
  margin-inline: 0;
  text-align: left;
}

.woocommerce-account .cz-page__header--account::after {
  margin-inline: 0 !important;
  text-align: left !important;
}

.woocommerce-account .cz-main > h1 + .woocommerce {
  margin-top: 34px;
}

.woocommerce-account .woocommerce-notices-wrapper {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
}

.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-error {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  align-items: center;
  min-height: 58px;
  border: 1px solid rgb(5 5 5 / 0.1);
  border-left: 4px solid var(--cz-color-accent);
  border-radius: 8px;
  background: #fff;
  color: #20242a;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  padding: 14px 18px;
  box-shadow: none;
}

.woocommerce-account .woocommerce-error {
  border-left-color: #d93025;
}

.woocommerce-account .woocommerce-message::before,
.woocommerce-account .woocommerce-info::before,
.woocommerce-account .woocommerce-error::before {
  flex: 0 0 24px;
  position: static;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: rgb(8 177 220 / 0.12);
  color: var(--cz-color-accent);
  content: "✓";
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
}

.woocommerce-account .woocommerce-error::before {
  background: rgb(217 48 37 / 0.1);
  color: #d93025;
  content: "!";
}

.woocommerce-account .woocommerce-message::after,
.woocommerce-account .woocommerce-info::after,
.woocommerce-account .woocommerce-error::after {
  content: none;
}

.woocommerce-account .woocommerce-error li {
  margin: 0;
}

.woocommerce-account .woocommerce-message .button,
.woocommerce-account .woocommerce-info .button {
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 0;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  order: 3;
  border: 0;
  border-radius: 8px;
  margin: 0 0 0 auto;
  background: var(--cz-color-accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.1;
  padding: 0 18px;
  text-align: center;
  text-decoration: none;
  white-space: normal;
}

.woocommerce-account #customer_login {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.woocommerce-account #customer_login::before,
.woocommerce-account #customer_login::after {
  content: none;
  display: none;
}

.woocommerce-account #customer_login .u-column1,
.woocommerce-account #customer_login .u-column2 {
  width: auto;
  float: none;
  margin: 0;
}

.woocommerce-account #customer_login .u-column1 {
  grid-column: 1;
  grid-row: 1;
}

.woocommerce-account #customer_login .u-column2 {
  grid-column: 2;
  grid-row: 1;
}

.woocommerce-account #customer_login h2 {
  margin: 0 0 14px;
  color: #050505;
  font-size: clamp(1.25rem, 1.6vw, 1.65rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
  text-transform: uppercase;
}

.woocommerce-account form.login,
.woocommerce-account form.register {
  display: grid;
  gap: 8px;
  min-height: 100%;
  border: 1px solid rgb(5 5 5 / 0.1);
  border-radius: 8px;
  background: #fff;
  padding: clamp(16px, 1.4vw, 22px);
  box-shadow: none;
}

.woocommerce-account form.register .cz-social-login {
  gap: 8px;
  margin-bottom: 8px;
}

.woocommerce-account form.register .cz-social-login__note {
  display: none;
}

.woocommerce-account form.register .cz-social-login__preview {
  min-height: 42px;
}

.woocommerce-account form.register > .cz-social-login {
  order: 0;
}

.woocommerce-account form.register > p:has(#reg_email) {
  order: 1;
}

.woocommerce-account form.register > p:has(#reg_password),
.woocommerce-account form.register > p:has(#password) {
  order: 2;
}

.woocommerce-account form.register > p:has(#reg_password_confirm) {
  order: 3;
}

.woocommerce-account form.register > .cz-register-shipping {
  order: 4;
}

.woocommerce-account form.register > .woocommerce-privacy-policy-text {
  order: 5;
}

.woocommerce-account form.register > p.form-row:not(:has(input.input-text)) {
  order: 6;
}

.woocommerce-account .woocommerce-form-row,
.woocommerce-account .form-row {
  margin: 0;
}

.woocommerce-account form.login label,
.woocommerce-account form.register label {
  display: inline-block;
  margin-bottom: 4px;
  color: #111827;
  font-size: 0.86rem;
  font-weight: 800;
}

.woocommerce-account form.login input.input-text,
.woocommerce-account form.register input.input-text {
  width: 100%;
  min-height: 38px;
  border: 1px solid rgb(5 5 5 / 0.18);
  border-radius: 7px;
  background: #fff;
  color: #050505;
  font: inherit;
  padding: 0 12px;
}

.woocommerce-account form.login input.input-text:focus,
.woocommerce-account form.register input.input-text:focus {
  border-color: var(--cz-color-accent);
  box-shadow: 0 0 0 3px rgb(8 177 220 / 0.16);
  outline: none;
}

.woocommerce-account .cz-register-shipping {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  margin-top: 0;
}

.woocommerce-account .cz-register-field {
  width: auto !important;
  float: none !important;
}

.woocommerce-account .cz-register-shipping h3,
.woocommerce-account .cz-register-field--address-1,
.woocommerce-account .cz-register-field--phone {
  grid-column: 1 / -1;
}

.woocommerce-account .cz-register-field--first-name {
  order: 1;
}

.woocommerce-account .cz-register-field--last-name {
  order: 2;
}

.woocommerce-account .cz-register-field--phone {
  order: 7;
}

.woocommerce-account .cz-register-field--address-1 {
  order: 3;
}

.woocommerce-account .cz-register-field--address-2 {
  order: 4;
}

.woocommerce-account .cz-register-field--postcode {
  order: 5;
}

.woocommerce-account .cz-register-field--city {
  order: 6;
}

.woocommerce-account .cz-register-shipping h3 {
  margin: 4px 0 0;
  color: #050505;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: uppercase;
}

.woocommerce-account form.register .woocommerce-privacy-policy-text {
  color: #374151;
  font-size: 0.84rem;
  line-height: 1.35;
}

.woocommerce-account form.register .woocommerce-privacy-policy-text p {
  margin: 2px 0 0;
}

.woocommerce-account .woocommerce-button.button {
  min-height: 46px;
  border: 0;
  border-radius: 7px;
  background: var(--cz-color-accent);
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 900;
  padding: 0 20px;
}

.woocommerce-account .woocommerce-LostPassword {
  margin: 0;
}

.woocommerce-account .woocommerce-LostPassword a,
.woocommerce-account .woocommerce-privacy-policy-text a {
  color: #050505;
  font-weight: 800;
  text-decoration-color: rgb(8 177 220 / 0.55);
  text-underline-offset: 3px;
}

.woocommerce-account .woocommerce-button.button:hover {
  background: #079ac0;
}

.logged-in.woocommerce-account .cz-page__header::after {
  content: none;
  display: none;
}

.woocommerce-account .cz-page:has(.cz-account-shell) {
  padding-top: 24px;
}

.woocommerce-account .cz-page__content:has(.cz-account-shell) {
  color: var(--cz-color-ink);
}

.cz-account-shell {
  display: grid;
  gap: 20px;
}

.cz-account-bar {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgb(5 5 5 / 0.1);
  border-radius: 8px;
  background: #fff;
  padding: 14px 16px;
}

.cz-account-bar__identity,
.cz-account-bar__actions {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.cz-account-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 999px;
  background: rgb(8 177 220 / 0.12);
  color: var(--cz-color-accent);
  font-size: 1rem;
  font-weight: 900;
}

.cz-account-bar__eyebrow,
.cz-account-bar small {
  display: block;
  color: var(--cz-color-muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.cz-account-bar strong {
  display: block;
  overflow-wrap: anywhere;
  color: #050505;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.25;
}

.cz-account-bar__link,
.cz-account-logout,
.cz-account-link {
  display: inline-grid;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
}

.cz-account-bar__link {
  border: 1px solid rgb(5 5 5 / 0.12);
  background: #fff;
  color: #050505;
  padding: 0 14px;
}

.cz-account-bar__link:hover {
  border-color: rgb(8 177 220 / 0.38);
  color: var(--cz-color-accent);
}

.cz-account-logout {
  border: 1px solid rgb(5 5 5 / 0.12);
  background: #050505;
  color: #fff;
  padding: 0 16px;
}

.cz-account-logout:hover {
  background: #20242a;
}

.cz-account-link {
  width: fit-content;
  min-width: 124px;
  background: var(--cz-color-accent);
  padding: 0 14px;
}

.woocommerce-account .cz-page__content .cz-account-link,
.woocommerce-account .cz-page__content .cz-account-logout,
.woocommerce-account .cz-page__content .cz-account-content .button,
.woocommerce-account .cz-page__content .cz-account-content button.button {
  color: #fff;
}

.cz-account-link:hover {
  background: #079ac0;
}

.cz-account-layout {
  display: grid;
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.woocommerce-account .woocommerce-MyAccount-navigation.cz-account-nav,
.woocommerce-account .woocommerce-MyAccount-content.cz-account-content {
  float: none;
  width: auto;
}

.cz-account-nav {
  position: sticky;
  top: 98px;
  min-width: 0;
  border: 1px solid rgb(5 5 5 / 0.1);
  border-radius: 8px;
  background: #fff;
  padding: 8px;
}

.cz-account-nav__toggle,
.cz-account-nav__button {
  display: none;
}

.cz-account-nav ul {
  display: grid;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cz-account-nav a {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 42px;
  border-radius: 7px;
  color: #111827;
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
  padding: 0 12px;
}

.cz-account-nav a:hover,
.cz-account-nav .is-active a {
  background: rgb(8 177 220 / 0.1);
  color: #050505;
}

.cz-account-nav__mark {
  display: block;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.44;
}

.cz-account-nav .is-active .cz-account-nav__mark {
  background: var(--cz-color-accent);
  border-color: var(--cz-color-accent);
  opacity: 1;
}

.cz-account-content {
  min-width: 0;
  border: 1px solid rgb(5 5 5 / 0.1);
  border-radius: 8px;
  background: #fff;
  padding: clamp(16px, 2vw, 28px);
}

.cz-account-content::before,
.cz-account-content::after {
  content: none;
  display: none;
}

.cz-account-content h2,
.cz-account-content h3 {
  letter-spacing: 0;
}

.cz-account-content h2 {
  margin: 0 0 12px;
  color: #050505;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.cz-account-content h3 {
  margin: 0 0 8px;
  color: #050505;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.2;
}

.cz-account-content p {
  margin: 0 0 14px;
}

.cz-account-section__header {
  margin-bottom: 18px;
}

.cz-account-section__header p {
  max-width: 720px;
  color: var(--cz-color-muted);
  font-weight: 600;
}

.cz-account-dashboard {
  display: grid;
  gap: 18px;
}

.cz-account-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cz-account-metric {
  display: grid;
  min-height: 96px;
  align-content: space-between;
  border: 1px solid rgb(5 5 5 / 0.1);
  border-radius: 8px;
  background: #f7fafc;
  color: inherit;
  padding: 14px;
  text-decoration: none;
}

.cz-account-metric span {
  color: var(--cz-color-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cz-account-metric strong {
  overflow-wrap: anywhere;
  font-size: 1.15rem;
  line-height: 1.1;
}

.cz-account-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cz-account-card,
.cz-account-empty,
.cz-account-review {
  border: 1px solid rgb(5 5 5 / 0.1);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.cz-account-card {
  display: grid;
  gap: 8px;
  align-content: start;
}

.cz-account-card p,
.cz-account-empty p,
.cz-account-review p {
  color: var(--cz-color-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.cz-account-preferences {
  display: grid;
  max-width: 620px;
  gap: 10px;
}

.cz-account-toggle {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 46px;
  border: 1px solid rgb(5 5 5 / 0.1);
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 800;
}

.cz-account-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--cz-color-accent);
}

.cz-account-review-list {
  display: grid;
  gap: 10px;
}

.cz-account-security-grid {
  margin-top: 18px;
}

.cz-account-review a {
  color: inherit;
  text-decoration-color: rgb(8 177 220 / 0.55);
  text-underline-offset: 3px;
}

.woocommerce-account .woocommerce-MyAccount-content table,
.woocommerce-account .woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgb(5 5 5 / 0.1);
  border-radius: 8px;
  font-size: 0.92rem;
}

.woocommerce-account .woocommerce-MyAccount-content th,
.woocommerce-account .woocommerce-MyAccount-content td {
  border-bottom: 1px solid rgb(5 5 5 / 0.1);
  padding: 12px;
  text-align: left;
  vertical-align: middle;
}

.woocommerce-account .woocommerce-MyAccount-content th {
  background: #f7fafc;
  color: #111827;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.woocommerce-account .woocommerce-MyAccount-content tr:last-child td {
  border-bottom: 0;
}

.cz-account-order-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.cz-account-order-item__thumbnail {
  flex: 0 0 64px;
  width: 64px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgb(5 5 5 / 0.1);
  border-radius: 7px;
  background: #f7fafc;
}

.cz-account-order-item__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cz-account-order-item__name {
  min-width: 0;
  overflow-wrap: break-word;
}

@media (max-width: 640px) {
  .cz-account-order-item {
    gap: 9px;
  }

  .cz-account-order-item__thumbnail {
    flex-basis: 52px;
    width: 52px;
  }
}

.woocommerce-account .woocommerce-MyAccount-content .button,
.woocommerce-account .woocommerce-MyAccount-content button.button {
  display: inline-grid;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  background: var(--cz-color-accent);
  color: #fff;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.1;
  padding: 0 14px;
  text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-content .button:hover,
.woocommerce-account .woocommerce-MyAccount-content button.button:hover {
  background: #079ac0;
}

.woocommerce-account .woocommerce-MyAccount-content form {
  display: grid;
  gap: 12px;
}

.woocommerce-account .woocommerce-MyAccount-content fieldset {
  display: grid;
  gap: 12px;
  border: 1px solid rgb(5 5 5 / 0.1);
  border-radius: 8px;
  margin: 8px 0 0;
  padding: 16px;
}

.woocommerce-account .woocommerce-MyAccount-content legend {
  padding: 0 8px;
  font-weight: 900;
}

.woocommerce-account .woocommerce-MyAccount-content label {
  display: inline-block;
  margin-bottom: 5px;
  color: #111827;
  font-size: 0.86rem;
  font-weight: 800;
}

.woocommerce-account .woocommerce-MyAccount-content input.input-text,
.woocommerce-account .woocommerce-MyAccount-content input[type="email"],
.woocommerce-account .woocommerce-MyAccount-content input[type="password"],
.woocommerce-account .woocommerce-MyAccount-content input[type="tel"],
.woocommerce-account .woocommerce-MyAccount-content input[type="text"],
.woocommerce-account .woocommerce-MyAccount-content select,
.woocommerce-account .woocommerce-MyAccount-content textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgb(5 5 5 / 0.18);
  border-radius: 7px;
  background: #fff;
  color: #050505;
  font: inherit;
  padding: 0 12px;
}

.woocommerce-account .woocommerce-MyAccount-content textarea {
  min-height: 110px;
  padding-block: 10px;
}

.woocommerce-account .woocommerce-MyAccount-content input:focus,
.woocommerce-account .woocommerce-MyAccount-content select:focus,
.woocommerce-account .woocommerce-MyAccount-content textarea:focus {
  border-color: var(--cz-color-accent);
  box-shadow: 0 0 0 3px rgb(8 177 220 / 0.16);
  outline: none;
}

.woocommerce-account .woocommerce-address-fields__field-wrapper,
.woocommerce-account .woocommerce-EditAccountForm {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.woocommerce-account .woocommerce-address-fields__field-wrapper .form-row,
.woocommerce-account .woocommerce-EditAccountForm .form-row {
  width: auto;
  float: none;
}

.woocommerce-account .woocommerce-address-fields__field-wrapper .form-row-wide,
.woocommerce-account .woocommerce-EditAccountForm .form-row-wide,
.woocommerce-account .woocommerce-EditAccountForm fieldset,
.woocommerce-account .woocommerce-EditAccountForm > p:last-child {
  grid-column: 1 / -1;
}

@media (max-width: 960px) {
  .woocommerce-account #customer_login {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .woocommerce-account #customer_login .u-column1,
  .woocommerce-account #customer_login .u-column2 {
    grid-column: 1;
  }

  .woocommerce-account #customer_login .u-column2 {
    grid-row: 2;
  }

  .cz-social-login__buttons {
    grid-template-columns: 1fr;
  }

  .woocommerce-account .cz-register-shipping {
    grid-template-columns: 1fr;
  }

  .cz-account-layout,
  .cz-account-metrics,
  .cz-account-card-grid,
  .woocommerce-account .woocommerce-address-fields__field-wrapper,
  .woocommerce-account .woocommerce-EditAccountForm {
    grid-template-columns: 1fr;
  }

  .cz-account-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .cz-account-bar__actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cz-account-bar__link,
  .cz-account-logout {
    width: 100%;
  }

  .cz-account-nav {
    position: static;
    padding: 6px;
  }

  .cz-account-nav__toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .cz-account-nav__button {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px 10px;
    align-items: center;
    min-height: 48px;
    border-radius: 7px;
    color: #050505;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1.12;
    padding: 8px 12px;
  }

  .cz-account-nav__button strong {
    grid-column: 2;
    overflow: hidden;
    color: var(--cz-color-muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .cz-account-nav__hamburger,
  .cz-account-nav__hamburger::before,
  .cz-account-nav__hamburger::after {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
  }

  .cz-account-nav__hamburger {
    position: relative;
    grid-row: 1 / span 2;
  }

  .cz-account-nav__hamburger::before,
  .cz-account-nav__hamburger::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .cz-account-nav__hamburger::before {
    top: -6px;
  }

  .cz-account-nav__hamburger::after {
    top: 6px;
  }

  .cz-account-nav ul {
    display: none;
    min-width: 0;
    padding-top: 6px;
  }

  .cz-account-nav__toggle:checked ~ ul {
    display: grid;
  }

  .cz-account-nav a {
    grid-template-columns: 18px minmax(0, 1fr);
    min-height: 40px;
    padding-inline: 10px;
  }

  .woocommerce-account .woocommerce-MyAccount-content table,
  .woocommerce-account .woocommerce-MyAccount-content thead,
  .woocommerce-account .woocommerce-MyAccount-content tbody,
  .woocommerce-account .woocommerce-MyAccount-content th,
  .woocommerce-account .woocommerce-MyAccount-content td,
  .woocommerce-account .woocommerce-MyAccount-content tr {
    display: block;
    width: 100%;
  }

  .woocommerce-account .woocommerce-MyAccount-content thead {
    display: none;
  }

  .woocommerce-account .woocommerce-MyAccount-content tr {
    border-bottom: 1px solid rgb(5 5 5 / 0.12);
    padding: 10px 0;
  }

  .woocommerce-account .woocommerce-MyAccount-content td {
    display: grid;
    grid-template-columns: minmax(108px, 0.45fr) minmax(0, 1fr);
    gap: 10px;
    border: 0;
    padding: 7px 0;
  }

  .woocommerce-account .woocommerce-MyAccount-content td::before {
    content: attr(data-title);
    color: var(--cz-color-muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
  }
}

.woocommerce-cart .cz-main.cz-container {
  width: min(calc(100% - 40px), var(--cz-page-width, 1500px));
  padding: 34px 0 72px;
}

.woocommerce-cart .cz-page {
  max-width: none;
  padding: 0;
}

.woocommerce-cart .cz-page__header,
.woocommerce-cart .cz-page__header--cart {
  margin-bottom: 34px;
  text-align: left;
}

.woocommerce-cart .cz-page__title--cart-logo {
  font-size: 0;
  line-height: 0;
  text-align: left !important;
}

.woocommerce-cart .cz-page__title--cart-logo img {
  display: block;
  width: min(100%, 400px) !important;
  height: auto;
  margin-inline: 0 !important;
}

.woocommerce-cart .cz-page__content {
  color: var(--cz-color-ink);
}

.woocommerce-cart .wp-block-woocommerce-cart,
.woocommerce-cart .woocommerce {
  width: 100%;
  max-width: none;
}

.woocommerce-cart .wp-block-woocommerce-cart.alignwide {
  margin-inline: 0;
}

.woocommerce-cart .wp-block-woocommerce-cart:not(.is-loading),
.woocommerce-cart .wc-block-components-sidebar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 28px;
  align-items: start;
}

.woocommerce-cart .wp-block-woocommerce-filled-cart-block {
  display: contents;
}

.woocommerce-cart .wp-block-woocommerce-cart:has(.wp-block-woocommerce-empty-cart-block) {
  display: block;
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}

.woocommerce-cart .wc-block-components-main,
.woocommerce-cart .wc-block-components-sidebar {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce-cart .wp-block-woocommerce-cart-items-block,
.woocommerce-cart .wp-block-woocommerce-cart-totals-block,
.woocommerce-cart .wc-block-cart__main,
.woocommerce-cart .wc-block-cart__sidebar,
.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart .cart-collaterals .cart_totals {
  border: 1px solid rgb(var(--color-border-rgb) / 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgb(5 5 5 / 0.05);
}

.woocommerce-cart .wp-block-woocommerce-cart-items-block,
.woocommerce-cart .wc-block-cart__main,
.woocommerce-cart .woocommerce-cart-form {
  overflow: hidden;
}

.woocommerce-cart .wp-block-woocommerce-cart-totals-block,
.woocommerce-cart .wc-block-cart__sidebar,
.woocommerce-cart .cart-collaterals .cart_totals {
  padding: 28px 30px;
  text-align: center;
}

.woocommerce-cart .wc-block-components-sidebar.wc-block-cart__sidebar {
  padding: 28px 30px !important;
}

.woocommerce-cart .wc-block-cart-items,
.woocommerce-cart table.shop_table {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.woocommerce-cart .wc-block-cart-items thead th,
.woocommerce-cart table.shop_table thead th {
  border: 0;
  border-bottom: 1px solid rgb(var(--color-border-rgb) / 0.1);
  padding: 16px 18px;
  color: rgb(var(--color-foreground-rgb) / 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
}

.woocommerce-cart .wc-block-cart-items__row,
.woocommerce-cart table.shop_table.cart tbody tr.cart_item {
  border-bottom: 1px solid rgb(var(--color-border-rgb) / 0.08);
}

.woocommerce-cart .wc-block-cart-items__row:last-child,
.woocommerce-cart table.shop_table.cart tbody tr.cart_item:last-child {
  border-bottom: 0;
}

.woocommerce-cart .wc-block-cart-items__row td,
.woocommerce-cart table.shop_table td {
  border: 0;
  padding: 18px;
  vertical-align: middle;
}

.woocommerce-cart .wc-block-cart-item__image img,
.woocommerce-cart .product-thumbnail img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border: 1px solid rgb(var(--color-border-rgb) / 0.08);
  border-radius: 8px;
  background: #fff;
}

.woocommerce-cart .wc-block-cart-item__product,
.woocommerce-cart .product-name {
  color: var(--cz-color-ink);
  font-weight: 800;
  line-height: 1.25;
}

.woocommerce-cart .wc-block-cart-item__product a,
.woocommerce-cart .product-name a {
  color: inherit;
  text-decoration: none;
}

.woocommerce-cart .wc-block-cart-item__product a:hover,
.woocommerce-cart .product-name a:hover {
  color: var(--cz-color-accent);
}

.woocommerce-cart .wc-block-components-product-metadata,
.woocommerce-cart .wc-block-components-product-details,
.woocommerce-cart .variation {
  margin-top: 8px;
  color: var(--cz-color-muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.woocommerce-cart .wc-block-cart-item__prices,
.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal,
.woocommerce-cart .wc-block-components-totals-item__value,
.woocommerce-cart .order-total .amount {
  color: var(--cz-color-ink);
  font-weight: 900;
}

.woocommerce-cart .wc-block-components-quantity-selector,
.woocommerce-cart .quantity {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgb(var(--color-border-rgb) / 0.16);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.woocommerce-cart .wc-block-components-quantity-selector__button,
.woocommerce-cart .quantity .minus,
.woocommerce-cart .quantity .plus {
  display: inline-grid;
  width: 38px;
  height: 42px;
  place-items: center;
  border: 0;
  background: #fff;
  color: var(--cz-color-ink);
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
}

.woocommerce-cart .wc-block-components-quantity-selector__input,
.woocommerce-cart .quantity .qty {
  width: 54px;
  height: 42px;
  border: 0;
  border-inline: 1px solid rgb(var(--color-border-rgb) / 0.1);
  color: var(--cz-color-ink);
  font-weight: 900;
  text-align: center;
}

.woocommerce-cart .wc-block-cart-item__remove-link,
.woocommerce-cart a.remove {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border: 1px solid rgb(var(--color-border-rgb) / 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--cz-color-ink) !important;
  font-size: 0 !important;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.woocommerce-cart .wc-block-cart-item__remove-link svg {
  display: block;
  width: 19px;
  height: 19px;
  fill: currentColor;
  pointer-events: none;
  transform-origin: center;
  transition: transform 160ms ease;
}

.woocommerce-cart a.remove::before {
  content: "\00d7";
  font-size: 1.25rem;
  line-height: 1;
}

.woocommerce-cart .wc-block-cart-item__remove-link:hover,
.woocommerce-cart .wc-block-cart-item__remove-link:focus-visible {
  border-color: var(--cz-color-ink);
  background: #fff;
  color: var(--cz-color-ink) !important;
  box-shadow: 0 8px 20px rgb(5 5 5 / 0.16);
  transform: scale(1.12);
}

.woocommerce-cart .wc-block-cart-item__remove-link:hover svg,
.woocommerce-cart .wc-block-cart-item__remove-link:focus-visible svg {
  transform: scale(1.08);
}

.woocommerce-cart a.remove:hover {
  background: var(--cz-color-ink);
  color: #fff !important;
}

.woocommerce-cart .wc-block-components-totals-wrapper,
.woocommerce-cart .cart_totals table tr {
  border-top: 1px solid rgb(var(--color-border-rgb) / 0.1);
}

.woocommerce-cart .wc-block-components-totals-wrapper:first-child {
  border-top: 0;
}

.woocommerce-cart .wc-block-cart__totals-title,
.woocommerce-cart .cart_totals h2 {
  margin: 0 0 22px;
  color: var(--cz-color-ink);
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.woocommerce-cart .wc-block-components-totals-item,
.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
  padding: 16px 14px;
  color: var(--cz-color-ink);
  font-size: 0.94rem;
}

.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-item {
  gap: 18px;
  min-height: 58px;
}

.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-coupon {
  justify-content: center;
  text-align: center;
}

.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-panel__button {
  justify-content: center;
  min-height: 52px;
  padding-inline: 18px;
  text-align: center;
}

.woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-coupon__button {
  justify-content: center;
  width: 100%;
}

.woocommerce-cart .wc-block-components-totals-item__label,
.woocommerce-cart .cart_totals table th {
  color: rgb(var(--color-foreground-rgb) / 0.7);
  font-weight: 800;
}

.woocommerce-cart .wc-block-components-totals-footer-item,
.woocommerce-cart .order-total {
  font-size: 1.1rem;
  font-weight: 900;
}

.woocommerce-cart .wc-block-components-totals-coupon__button,
.woocommerce-cart .wc-block-components-button,
.woocommerce-cart .button,
.woocommerce-cart button.button,
.woocommerce-cart .checkout-button {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--cz-color-ink);
  color: #fff !important;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.woocommerce-cart .wc-block-components-button:hover,
.woocommerce-cart .button:hover,
.woocommerce-cart button.button:hover,
.woocommerce-cart .checkout-button:hover {
  background: #111827;
  box-shadow: 0 12px 26px rgb(5 5 5 / 0.14);
  transform: translateY(-1px);
}

.woocommerce-cart .wc-block-cart__submit-button,
.woocommerce-cart .checkout-button {
  width: 100%;
  min-height: 54px;
  background: var(--cz-color-accent);
  font-size: 1rem;
}

.woocommerce-cart .wc-block-cart__submit-container,
.woocommerce-cart .wc-block-cart__submit-button,
.woocommerce-cart .wc-block-cart__submit-button .wc-block-components-button__text {
  width: 100%;
}

.woocommerce-cart .wc-block-cart__submit-button:hover,
.woocommerce-cart .checkout-button:hover {
  background: #079ac0;
}

.woocommerce-cart .wc-block-components-text-input input,
.woocommerce-cart .coupon .input-text {
  min-height: 46px;
  border: 1px solid rgb(var(--color-border-rgb) / 0.16);
  border-radius: 8px;
  color: var(--cz-color-ink);
  font-weight: 700;
}

.woocommerce-cart .actions {
  padding: 18px !important;
}

.cz-cart-tools {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 14px;
}

.cz-clear-cart,
.cz-clear-cart:visited {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(var(--color-border-rgb) / 0.16);
  border-radius: 8px;
  background: #fff;
  padding: 0 16px;
  color: var(--cz-color-ink);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 18px rgb(5 5 5 / 0.05);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.cz-clear-cart:hover,
.cz-clear-cart:focus-visible {
  border-color: rgb(5 5 5 / 0.28);
  color: var(--cz-color-ink);
  box-shadow: 0 12px 24px rgb(5 5 5 / 0.1);
  transform: translateY(-1px);
}

.woocommerce-cart .coupon {
  display: flex;
  gap: 10px;
  align-items: center;
}

.woocommerce-cart .coupon .input-text {
  width: min(100%, 260px);
  padding: 0 14px;
}

.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-error,
.woocommerce-cart .wc-block-components-notice-banner {
  margin: 0 0 18px;
  border: 1px solid rgb(var(--color-border-rgb) / 0.1);
  border-left: 4px solid var(--cz-color-accent);
  border-radius: 8px;
  background: #fff;
  color: var(--cz-color-ink);
  font-weight: 700;
  box-shadow: 0 10px 28px rgb(5 5 5 / 0.05);
}

.woocommerce-cart .wc-block-components-shipping-rates-control,
.woocommerce-cart .woocommerce-shipping-methods,
.woocommerce-cart .woocommerce-shipping-destination {
  color: var(--cz-color-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.woocommerce-cart .woocommerce-shipping-methods,
.woocommerce-checkout .woocommerce-shipping-methods,
.woocommerce-cart .wc-block-components-shipping-rates-control,
.woocommerce-checkout .wc-block-components-shipping-rates-control {
  display: grid;
  gap: 10px;
}

.woocommerce-cart .woocommerce-shipping-methods li,
.woocommerce-checkout .woocommerce-shipping-methods li {
  margin: 0;
}

.woocommerce-cart .woocommerce-shipping-methods label,
.woocommerce-checkout .woocommerce-shipping-methods label,
.woocommerce-cart .wc-block-components-shipping-rates-control label,
.woocommerce-checkout .wc-block-components-shipping-rates-control label,
.woocommerce-cart .wc-block-components-radio-control__label.cz-shipping-carrier,
.woocommerce-checkout .wc-block-components-radio-control__label.cz-shipping-carrier {
  min-height: 52px;
  align-items: center;
  gap: 12px;
  color: var(--cz-color-ink);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.25;
}

.woocommerce-cart .woocommerce-shipping-methods label,
.woocommerce-checkout .woocommerce-shipping-methods label {
  display: flex;
  width: 100%;
}

.woocommerce-cart .woocommerce-shipping-methods label.cz-shipping-carrier,
.woocommerce-checkout .woocommerce-shipping-methods label.cz-shipping-carrier {
  display: grid !important;
  grid-template-columns: 118px minmax(0, 1fr) auto;
  column-gap: 14px;
  row-gap: 0;
  align-items: center;
}

.cz-shipping-carrier {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  vertical-align: middle;
}

.cz-shipping-carrier__logo {
  display: block;
  flex: 0 0 118px;
  width: 118px;
  height: 42px;
  object-fit: contain;
}

.woocommerce-cart .woocommerce-shipping-methods label.cz-shipping-carrier .cz-shipping-carrier__logo,
.woocommerce-checkout .woocommerce-shipping-methods label.cz-shipping-carrier .cz-shipping-carrier__logo {
  grid-column: 1;
}

.cz-shipping-carrier__badge {
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 72px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgb(var(--color-border-rgb) / 0.12);
  border-radius: 6px;
  background: #fff;
  padding: 0 12px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.cz-shipping-carrier__text {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--cz-color-ink);
  font-weight: 900;
}

.cz-shipping-carrier__text .amount {
  margin-left: auto;
}

@media (max-width: 640px) {
  .cz-shipping-carrier {
    gap: 10px;
  }

  .cz-shipping-carrier__logo {
    flex-basis: 88px;
    width: 88px;
    height: 34px;
  }

  .woocommerce-cart .woocommerce-shipping-methods label.cz-shipping-carrier,
  .woocommerce-checkout .woocommerce-shipping-methods label.cz-shipping-carrier {
    grid-template-columns: 88px minmax(0, 1fr) auto;
    column-gap: 10px;
  }
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block {
  display: grid;
  gap: 34px;
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  justify-items: center;
}

.woocommerce-cart .wc-block-cart__empty-cart__title,
.woocommerce-cart .cart-empty {
  width: min(100%, 860px);
  margin: 0 auto;
  border: 1px solid rgb(var(--color-border-rgb) / 0.1);
  border-radius: 8px;
  background: #fff;
  padding: 56px 32px 46px;
  color: var(--cz-color-ink);
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 16px 42px rgb(5 5 5 / 0.05);
}

.woocommerce-cart .wc-block-cart__empty-cart__title.with-empty-cart-icon::before {
  display: block;
  width: 118px;
  height: 118px;
  margin: 0 auto 30px;
  background: url("data:image/svg+xml,%3Csvg width='118' height='118' viewBox='0 0 118 118' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='59' cy='59' r='57.5' fill='white' stroke='%23050505' stroke-width='3'/%3E%3Cpath d='M36 42H46.5L51.5 75.5C52 79 55 81.5 58.5 81.5H81' stroke='%23050505' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M50 50H88L83.5 70H54' stroke='%23050505' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='60' cy='90' r='4' fill='%23050505'/%3E%3Ccircle cx='80' cy='90' r='4' fill='%23050505'/%3E%3Cpath d='M73 31L77 23L81 31L89 35L81 39L77 47L73 39L65 35L73 31Z' fill='%2308B1DC'/%3E%3Cpath d='M31 76C37 87 48 94 60 94' stroke='%23050505' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  content: "";
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-separator {
  display: none;
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block > .wp-block-heading:not(.wc-block-cart__empty-cart__title) {
  width: 100%;
  margin: 4px 0 0;
  color: var(--cz-color-ink);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-new {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}

.woocommerce-cart .wc-block-grid__products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  margin: 0 auto !important;
  padding: 0 !important;
  justify-content: center;
}

.woocommerce-cart .wc-block-grid__product {
  width: auto !important;
  max-width: none !important;
  border: 2px solid rgb(var(--color-border-rgb) / 0.14);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.woocommerce-cart .wc-block-grid__product:hover {
  border-color: rgb(var(--color-border-rgb) / 0.26);
  box-shadow: 0 14px 32px rgb(5 5 5 / 0.08);
  transform: translateY(-2px);
}

.woocommerce-cart .wc-block-grid__product-image {
  display: grid;
  min-height: 250px;
  place-items: center;
  border-bottom: 1px solid rgb(var(--color-border-rgb) / 0.08);
  background: #fff;
}

.woocommerce-cart .wc-block-grid__product-image img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
}

.woocommerce-cart .wc-block-grid__product-link {
  color: inherit;
  text-decoration: none;
}

.woocommerce-cart .wc-block-grid__product-title {
  min-height: 3.5em;
  padding-inline: 14px;
  color: var(--cz-color-ink);
  font-weight: 900;
  line-height: 1.16;
  text-decoration: none;
}

.woocommerce-cart .wc-block-grid__product-price {
  display: block;
  padding-inline: 14px;
  color: var(--cz-color-ink);
  font-weight: 900;
}

.woocommerce-cart .return-to-shop .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 22px;
}

@media (max-width: 900px) {
  .woocommerce-cart .wp-block-woocommerce-cart:not(.is-loading),
  .woocommerce-cart .wc-block-components-sidebar-layout {
    grid-template-columns: 1fr;
  }

  .woocommerce-cart .wp-block-woocommerce-cart-totals-block,
  .woocommerce-cart .wc-block-cart__sidebar,
  .woocommerce-cart .cart-collaterals .cart_totals {
    padding: 24px 18px;
  }

  .woocommerce-cart .wc-block-components-sidebar.wc-block-cart__sidebar {
    padding: 24px 18px !important;
  }
}

@media (max-width: 640px) {
  .woocommerce-cart .cz-main.cz-container {
    width: min(calc(100% - 24px), var(--cz-page-width, 1500px));
    padding-block: 24px 54px;
  }

  .woocommerce-cart .cz-page__header,
  .woocommerce-cart .cz-page__header--cart {
    margin-bottom: 24px;
  }

  .woocommerce-cart .cz-page__title--cart-logo img {
    width: min(100%, 280px) !important;
  }

  .woocommerce-cart .wc-block-cart-items thead,
  .woocommerce-cart table.shop_table thead {
    display: none;
  }

  .woocommerce-cart .wc-block-cart-items__row,
  .woocommerce-cart table.shop_table.cart tbody tr.cart_item {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .woocommerce-cart .wc-block-cart-items__row td,
  .woocommerce-cart table.shop_table td {
    display: block;
    padding: 0;
  }

  .woocommerce-cart .wc-block-cart-item__image,
  .woocommerce-cart .product-thumbnail {
    grid-row: span 4;
  }

  .woocommerce-cart .wc-block-cart-item__image img,
  .woocommerce-cart .product-thumbnail img {
    width: 86px;
    height: 86px;
  }

  .woocommerce-cart .product-remove {
    position: absolute;
    right: 14px;
  }

  .woocommerce-cart .product-price,
  .woocommerce-cart .product-quantity,
  .woocommerce-cart .product-subtotal {
    margin-top: 10px;
  }

  .woocommerce-cart table.shop_table_responsive tr td::before {
    color: var(--cz-color-muted);
    font-weight: 900;
  }

  .woocommerce-cart .actions,
  .woocommerce-cart .coupon {
    display: grid !important;
    gap: 10px;
  }

  .woocommerce-cart .coupon .input-text,
  .woocommerce-cart .coupon .button,
  .woocommerce-cart button[name="update_cart"] {
    width: 100%;
  }

  .woocommerce-cart .wc-block-grid.has-4-columns .wc-block-grid__product,
  .woocommerce-cart .wc-block-grid__product {
    flex-basis: auto;
    max-width: none;
  }

  .woocommerce-cart .wc-block-grid__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .woocommerce-cart .wc-block-cart__empty-cart__title,
  .woocommerce-cart .cart-empty {
    padding: 38px 18px 34px;
  }

  .woocommerce-cart .wc-block-cart__empty-cart__title.with-empty-cart-icon::before {
    width: 92px;
    height: 92px;
    margin-bottom: 22px;
  }

  .woocommerce-cart .wc-block-grid__product-image {
    min-height: 160px;
  }

  .woocommerce-cart .wc-block-grid__product-image img {
    max-height: 160px;
  }
}

.cz-page {
  max-width: 860px;
  padding-block: 54px 24px;
}

.cz-page__header {
  margin-bottom: 28px;
}

.cz-page__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
}

.cz-page__content {
  color: #20242a;
  font-size: 1rem;
}

.cz-page__content h2,
.cz-page__content h3 {
  color: var(--cz-color-ink);
  line-height: 1.18;
}

.cz-page__content h2 {
  margin: 34px 0 12px;
  font-size: 1.45rem;
}

.cz-page__content h3 {
  margin: 26px 0 10px;
  font-size: 1.12rem;
}

.cz-page__content p,
.cz-page__content ul,
.cz-page__content ol,
.cz-page__content table {
  margin: 0 0 16px;
}

.cz-page__content a {
  color: var(--cz-color-accent);
  font-weight: 700;
}

.cz-page__content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.cz-page__content th,
.cz-page__content td {
  border: 1px solid var(--cz-color-border);
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.cz-page__content th {
  background: #f5f7f9;
}

.cz-home {
  width: 100%;
  padding-block: 0 54px;
  font-family: var(--font-body--family);
}

.cz-home-slider {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-radius: 0;
  background: #000;
}

.cz-home-slide {
  position: relative;
  display: block;
  height: clamp(520px, 42vw, 760px);
  aspect-ratio: auto;
  min-height: 0;
  max-height: none;
  color: #fff;
  text-decoration: none;
}

.cz-home-slide[hidden] {
  display: none;
}

.cz-home-slide img,
.cz-home-slide__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cz-home-slide__placeholder {
  background: linear-gradient(135deg, #111, #30343b);
}

.cz-home-slider__dots {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 5vw, 64px);
  bottom: 24px;
  display: flex;
  gap: 8px;
}

.cz-home-slider__dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 99px;
  background: rgb(255 255 255 / 0.42);
  padding: 0;
  cursor: pointer;
}

.cz-home-slider__dots button.is-active {
  background: #fff;
}

.cz-home-collections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 22px;
  width: min(calc(100% - 40px), 1120px);
  margin-inline: auto;
  margin-top: 38px;
}

.cz-home-tile {
  position: relative;
  display: block;
  aspect-ratio: 408 / 617;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: #fff;
  color: inherit;
  box-shadow: 0 12px 34px rgb(5 5 5 / 0.06);
  text-decoration: none;
  transform: translateZ(0);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.cz-home-tile:hover {
  box-shadow: 0 18px 44px rgb(5 5 5 / 0.1);
  transform: translateY(-2px);
}

.cz-home-tile__media {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: inherit;
  background: #fff;
}

.cz-home-tile__media img,
.cz-home-tile__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cz-home-tile__placeholder {
  background: transparent;
}

.cz-home-carousel {
  width: min(calc(100% - 40px), 1140px);
  margin-inline: auto;
  margin-top: 46px;
}

.cz-home-carousel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.cz-home-carousel__header h2 {
  margin: 0;
  font-family: var(--font-heading--family);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.cz-home-carousel__controls {
  display: flex;
  gap: 8px;
}

.cz-home-carousel__controls button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgb(var(--color-border-rgb) / 0.18);
  border-radius: 50%;
  background: rgb(var(--color-background-rgb));
  color: inherit;
  cursor: pointer;
}

.cz-home-carousel__controls svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cz-home-carousel__grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.cz-home-carousel__grid::-webkit-scrollbar {
  display: none;
}

.cz-home-product {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  height: 100%;
  padding: 0;
  color: inherit;
  border-radius: 8px;
  background: rgb(var(--color-background-rgb));
  overflow: hidden;
  flex: 0 0 calc((100% - 24px) / 3);
  scroll-snap-align: start;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.cz-home-product:hover {
  box-shadow: 0 14px 34px rgb(5 5 5 / 0.08);
  transform: translateY(-2px);
}

.cz-home-product__image {
  position: relative;
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  background: rgb(var(--color-foreground-rgb) / 0.035);
}

.cz-home-product__image img,
.cz-home-product__image svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cz-home-product__body {
  display: grid;
  grid-template-rows: minmax(4.8em, auto) auto auto;
  gap: 9px;
  height: 100%;
  padding: 12px;
}

.cz-home-product__title {
  color: inherit;
  text-decoration: none;
  font-family: var(--font-body--family);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 500;
  line-height: 1.22;
  min-height: 4.8em;
}

.cz-home-product__title:hover {
  text-decoration: underline;
}

.cz-home-product b {
  font-family: var(--font-heading--family);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.1;
}

.cz-home-product__purchase {
  display: grid;
  grid-template-columns: 92px 36px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  margin-top: auto;
}

.cz-home-product__qty {
  display: grid;
  grid-template-columns: 28px 36px 28px;
  height: 36px;
  border: 1px solid rgb(var(--color-border-rgb) / 0.18);
  border-radius: 7px;
  overflow: hidden;
}

.cz-home-product__qty button,
.cz-home-product__qty input {
  border: 0;
  background: transparent;
  text-align: center;
  font: inherit;
}

.cz-home-product__qty input::-webkit-outer-spin-button,
.cz-home-product__qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cz-home-product__qty input {
  appearance: textfield;
  -moz-appearance: textfield;
}

.cz-home-product__wishlist {
  display: grid;
  width: 36px;
  min-height: 36px;
  place-items: center;
  border: 1px solid rgb(var(--color-border-rgb) / 0.18);
  border-radius: 7px;
  background: rgb(var(--color-background-rgb));
  color: rgb(var(--color-foreground-rgb) / 0.72);
  cursor: pointer;
  padding: 0;
}

.cz-home-product__wishlist svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cz-home-product__wishlist.is-active {
  border-color: #08b1dc;
  color: #08b1dc;
  background: rgb(8 177 220 / 0.08);
}

.cz-home-product__wishlist.is-active svg {
  fill: currentColor;
}

.cz-home-product__button {
  min-height: 36px;
  border: 0;
  border-radius: 7px;
  background: rgb(8 177 220 / 0.82);
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  padding: 0 12px;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: background 0.16s ease;
}

.cz-home-product__button--sold-out,
.cz-collection-card__button--sold-out {
  background: #eef0f3;
  color: #6b7280;
  cursor: default;
  font-size: 0.74rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
}

.cz-home-product__button:hover:not(:disabled) {
  background: rgb(8 177 220 / 0.94);
}

.cz-home-product__button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cz-home-product__button:disabled {
  opacity: 0.56;
  cursor: default;
}

.cz-home-product.is-out-of-stock .cz-home-product__image img,
.cz-home-product.is-out-of-stock .cz-home-product__image svg,
.cz-collection-card.is-out-of-stock .cz-collection-card__image img,
.cz-collection-card.is-out-of-stock .cz-collection-card__image svg {
  opacity: 0.58;
}

.cz-home-product.is-out-of-stock .cz-home-product__qty,
.cz-collection-card.is-out-of-stock .cz-collection-card__qty {
  opacity: 0.5;
  pointer-events: none;
}

.cz-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 20px);
  min-height: 26px;
  padding: 0 10px;
  border-radius: 6px;
  background: #111827;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.cz-product-badge--sold-out {
  background: #111827;
}

.cz-education {
  width: min(calc(100% - 40px), 1440px);
  margin: 72px auto 0;
  display: grid;
  overflow: visible;
}

.cz-education__item {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  min-height: 430px;
  background: #fff;
  overflow: visible;
}

.cz-education__item--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.cz-education__copy {
  padding: clamp(32px, 5vw, 70px);
  min-width: 0;
}

.cz-education__eyebrow {
  margin: 0 0 14px;
  color: rgb(8 177 220);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cz-education__copy h2 {
  max-width: 620px;
  margin: 0;
  color: #111;
  font-family: var(--font-heading--family);
  font-size: clamp(1.85rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cz-education__copy p:not(.cz-education__eyebrow) {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgb(17 17 17 / 0.72);
  font-size: 1rem;
  line-height: 1.45;
}

.cz-education__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 24px;
  padding: 0 20px;
  border-radius: 7px;
  background: rgb(8 177 220);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.cz-education__button--ghost {
  border: 1px solid currentColor;
  background: transparent;
  color: #fff;
}

.cz-education__button--ghost:hover {
  background: rgb(255 255 255 / 0.1);
}

.cz-education__image {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}

.cz-education-download {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  margin-top: 34px;
  padding: clamp(24px, 3.6vw, 52px);
  border-radius: 8px;
  background: #0b0d10;
  color: #fff;
  overflow: hidden;
  scroll-margin-top: 110px;
}

.cz-education-download__media {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: rgb(255 255 255 / 0.06);
}

.cz-education-download__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cz-education-download__copy {
  max-width: 700px;
  min-width: 0;
}

.cz-education-download h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: var(--font-heading--family);
  font-size: clamp(1.55rem, 2.45vw, 2.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cz-education-download p:not(.cz-education__eyebrow) {
  max-width: 700px;
  margin: 12px 0 0;
  color: rgb(255 255 255 / 0.72);
  font-size: 1rem;
  line-height: 1.45;
}

.cz-collection {
  width: min(calc(100% - 48px), var(--cz-page-width, 1500px));
  margin-inline: auto;
  padding: 26px 0 70px;
}

.cz-collection__breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
  color: rgb(var(--color-foreground-rgb) / 0.58);
  font-size: 0.86rem;
}

.cz-collection__breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.cz-collection__header {
  margin-bottom: 34px;
}

.cz-collection__header h1 {
  margin: 0;
  font-family: Arial, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.cz-collection__header h1.cz-collection__title--image {
  max-width: 100%;
  line-height: 0;
  text-align: left;
}

.cz-collection__title--image img {
  display: block;
  width: min(100%, 430px);
  max-width: 100%;
  height: auto;
  max-height: 86px;
  object-fit: contain;
  object-position: left center;
}

.cz-collection__title--image-small img {
  width: min(100%, 322px);
  max-height: 65px;
}

.cz-collection__description {
  max-width: 760px;
  margin-top: 14px;
}

.cz-collection__layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.cz-filters {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 16px;
  width: 260px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgb(var(--color-border-rgb) / 0.14);
  border-radius: 8px;
  background: #fff;
}

.cz-filters__title {
  margin: 0;
  color: var(--cz-color-ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.cz-filters__mobile-head {
  display: none;
}

.cz-filters__clear {
  display: inline-flex;
  width: max-content;
  color: rgb(var(--color-foreground-rgb) / 0.62);
  font-size: 0.82rem;
  text-decoration: none;
}

.cz-filter-group {
  border-bottom: 1px solid rgb(var(--color-border-rgb) / 0.18);
  padding-bottom: 16px;
}

.cz-filter-group summary {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.cz-filter-group summary::-webkit-details-marker {
  display: none;
}

.cz-filter-group summary svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.cz-filter-group[open] summary svg {
  transform: rotate(180deg);
}

.cz-filter-group__list {
  display: grid;
  gap: 9px;
  margin-top: 12px;
  max-height: 260px;
  overflow: auto;
}

.cz-filter-link {
  display: flex;
  gap: 9px;
  align-items: center;
  color: rgb(var(--color-foreground-rgb) / 0.76);
  font-size: 0.9rem;
  text-decoration: none;
}

.cz-filter-link::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid rgb(var(--color-border-rgb) / 0.32);
  border-radius: 3px;
}

.cz-filter-link.is-active {
  color: #08b1dc;
  font-weight: 800;
}

.cz-filter-link.is-active::before {
  border-color: #08b1dc;
  background: linear-gradient(#08b1dc, #08b1dc) center / 8px 8px no-repeat;
}

.cz-collection__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.cz-collection__toolbar p {
  margin: 0;
  font-size: 0.95rem;
}

.cz-collection__count {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: rgb(var(--color-foreground-rgb) / 0.76);
  font-size: 1.02rem !important;
  font-weight: 700;
  line-height: 1;
}

.cz-collection__count strong {
  color: var(--cz-color-ink);
  font-size: clamp(1.22rem, 1.5vw, 1.5rem);
  font-weight: 950;
  letter-spacing: 0;
}

.cz-collection__toolbar .woocommerce-ordering {
  margin: 0;
}

.cz-collection__toolbar select {
  min-height: 38px;
  border: 1px solid rgb(var(--color-border-rgb) / 0.18);
  border-radius: 7px;
  background: #fff;
  padding: 0 10px;
}

.cz-education-download .cz-education__download-button {
  min-width: 230px;
}

.cz-education-download__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.cz-education-download__actions .cz-education__button {
  margin-top: 0;
}

.cz-guide-page {
  width: min(calc(100% - 48px), 1320px);
  margin: 44px auto 80px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.cz-guide-hero {
  max-width: 860px;
  margin-bottom: 34px;
}

.cz-guide-hero__eyebrow,
.cz-guide-article__meta,
.cz-guide-outline > p {
  margin: 0 0 12px;
  color: var(--cz-color-accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cz-guide-hero h1 {
  margin: 0;
  color: #111;
  font-family: var(--font-heading--family);
  font-size: clamp(2rem, 4vw, 4.1rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cz-guide-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgb(17 17 17 / 0.68);
  font-size: 1.04rem;
  line-height: 1.55;
}

.cz-guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 34px;
  align-items: start;
}

.cz-guide-main,
.cz-guide-article,
.cz-guide-outline {
  min-width: 0;
}

.cz-guide-article {
  padding: clamp(22px, 3vw, 42px);
  border: 1px solid rgb(17 17 17 / 0.1);
  border-radius: 8px;
  background: #fff;
}

.cz-guide-article h2 {
  max-width: 820px;
  margin: 0;
  color: #111;
  font-family: var(--font-heading--family);
  font-size: clamp(1.65rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cz-guide-lead {
  max-width: 840px;
  margin: 18px 0 0;
  color: rgb(17 17 17 / 0.72);
  font-size: 1.08rem;
  line-height: 1.62;
}

.cz-guide-article img {
  display: block;
  width: 100%;
  max-height: 460px;
  margin: 28px 0 32px;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.cz-guide-pdf-pages {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.cz-guide-pdf-page {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #0b0d10;
  box-shadow: 0 18px 44px rgb(17 17 17 / 0.12);
}

.cz-guide-pdf-page img {
  width: 100%;
  height: auto;
  max-height: none;
  margin: 0;
  border-radius: 0;
  object-fit: contain;
  aspect-ratio: auto;
}

.cz-guide-article h3 {
  margin: 30px 0 12px;
  color: #111;
  font-family: var(--font-heading--family);
  font-size: clamp(1.2rem, 2vw, 1.62rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0;
}

.cz-guide-article ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cz-guide-article li {
  position: relative;
  padding-left: 22px;
  color: rgb(17 17 17 / 0.76);
  font-size: 1rem;
  line-height: 1.55;
}

.cz-guide-article li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cz-color-accent);
}

.cz-guide-callout {
  display: grid;
  gap: 6px;
  margin-top: 30px;
  padding: 18px 20px;
  border-left: 4px solid var(--cz-color-accent);
  border-radius: 6px;
  background: rgb(8 177 220 / 0.08);
  color: #111;
}

.cz-guide-callout strong {
  font-size: 0.95rem;
  text-transform: uppercase;
}

.cz-guide-callout span {
  color: rgb(17 17 17 / 0.72);
  line-height: 1.5;
}

.cz-guide-next {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgb(17 17 17 / 0.1);
}

.cz-guide-next a,
.cz-guide-outline__download a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 7px;
  background: var(--cz-color-accent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.cz-guide-outline {
  position: sticky;
  top: 102px;
  padding: 18px;
  border: 1px solid rgb(17 17 17 / 0.1);
  border-radius: 8px;
  background: #fff;
}

.cz-guide-outline ol {
  display: grid;
  gap: 6px;
  max-height: calc(100vh - 300px);
  margin: 0;
  padding: 0;
  overflow: auto;
  list-style: none;
}

.cz-guide-outline a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px;
  border-radius: 7px;
  color: #111;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.cz-guide-outline a:hover,
.cz-guide-outline a.is-active {
  background: rgb(8 177 220 / 0.1);
  color: var(--cz-color-accent);
}

.cz-guide-outline a span {
  color: inherit;
  font-size: 0.74rem;
  font-weight: 900;
}

.cz-guide-outline__download {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgb(17 17 17 / 0.1);
}

.cz-guide-outline__download strong {
  color: #111;
  font-size: 0.95rem;
}

.cz-guide-outline__download span {
  color: rgb(17 17 17 / 0.66);
  font-size: 0.88rem;
  line-height: 1.4;
}

.cz-guide-outline__download a {
  grid-template-columns: 1fr;
  margin-top: 4px;
}

.cz-active-results {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
  border: 1px solid rgb(var(--color-border-rgb) / 0.16);
  border-radius: 8px;
  margin: -4px 0 18px;
  background: #fff;
  padding: 12px 14px;
}

.cz-active-results__label {
  color: rgb(var(--color-foreground-rgb) / 0.62);
  font-size: 0.88rem;
  font-weight: 900;
}

.cz-active-results__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.cz-active-results__chip {
  display: inline-flex;
  min-height: 32px;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  border: 1px solid rgb(8 177 220 / 0.28);
  border-radius: 999px;
  background: rgb(8 177 220 / 0.09);
  color: var(--cz-color-ink);
  font-size: 0.86rem;
  font-weight: 900;
  padding: 0 11px;
  text-decoration: none;
}

.cz-active-results__chip:hover {
  border-color: rgb(8 177 220 / 0.55);
  color: var(--cz-color-accent);
}

.cz-active-results__chip span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cz-active-results__chip b {
  font-size: 1rem;
  line-height: 1;
}

.cz-collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.cz-collection-card {
  display: grid;
  grid-template-rows: auto 1fr;
  position: relative;
  min-width: 0;
  min-height: 100%;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.cz-collection-card:hover {
  box-shadow: 0 14px 34px rgb(5 5 5 / 0.08);
  transform: translateY(-2px);
}

.cz-collection-card__image {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgb(var(--color-border-rgb) / 0.1);
  background: #fff;
}

.cz-collection-card__image img,
.cz-collection-card__image svg {
  width: 86%;
  height: 86%;
  max-width: 86%;
  max-height: 86%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: auto;
  padding: 0;
}

.cz-collection-card__body {
  display: grid;
  grid-template-rows: minmax(3.1em, auto) auto auto;
  gap: 12px;
  align-content: end;
  min-width: 0;
  padding: 16px;
}

.cz-collection-card__title,
.cz-collection-card__title:visited {
  display: block;
  min-height: 3.1em;
  max-width: 100%;
  color: inherit;
  font-size: clamp(0.98rem, 1vw, 1.12rem);
  font-weight: 400;
  line-height: 1.22;
  overflow-wrap: anywhere;
  text-decoration: none;
  word-break: normal;
}

.cz-collection-card__title:hover {
  text-decoration: underline;
}

.cz-collection-card b {
  display: block;
  color: var(--cz-color-ink);
  font-size: clamp(1rem, 1.15vw, 1.25rem);
  font-weight: 900;
  line-height: 1.2;
}

.cz-collection-card__swatches {
  display: none;
}

.cz-collection-card__purchase {
  display: grid;
  grid-template-columns: minmax(104px, 124px) 42px minmax(92px, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  margin-top: auto;
}

.cz-collection-card__qty {
  display: grid;
  grid-template-columns: 32px minmax(32px, 1fr) 32px;
  height: 42px;
  border: 1px solid rgb(var(--color-border-rgb) / 0.18);
  border-radius: 7px;
  overflow: hidden;
  background: #fff;
}

.cz-collection-card__qty button,
.cz-collection-card__qty input {
  border: 0;
  background: transparent;
  text-align: center;
  font: inherit;
  font-weight: 800;
  min-width: 0;
}

.cz-collection-card__qty input {
  appearance: textfield;
  -moz-appearance: textfield;
}

.cz-collection-card__qty input::-webkit-outer-spin-button,
.cz-collection-card__qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cz-collection-card__wishlist {
  display: grid;
  width: 42px;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgb(var(--color-border-rgb) / 0.18);
  border-radius: 7px;
  background: rgb(var(--color-background-rgb));
  color: rgb(var(--color-foreground-rgb) / 0.72);
  cursor: pointer;
  padding: 0;
}

.cz-collection-card__wishlist svg,
.cz-collection-card__button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cz-collection-card__button {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 42px;
  place-items: center;
  border-radius: 7px;
  background: rgb(8 177 220 / 0.82);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.cz-collection-card__button--sold-out {
  background: #eef0f3;
  color: #6b7280;
  cursor: default;
  font-size: 0.74rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
}

.cz-collection-card__button--sold-out:hover,
.cz-home-product__button--sold-out:hover {
  background: #eef0f3;
  color: #6b7280;
}

.cz-pagination {
  margin-top: 32px;
}

.cz-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cz-pagination .page-numbers a,
.cz-pagination .page-numbers span {
  display: inline-flex;
  min-width: 36px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(var(--color-border-rgb) / 0.16);
  border-radius: 7px;
  color: inherit;
  padding-inline: 10px;
  text-decoration: none;
}

.cz-pagination .page-numbers .current,
.cz-pagination .page-numbers a:hover {
  background: rgb(8 177 220 / 0.12);
  color: #08b1dc;
}

.cz-collection__empty {
  border: 1px solid rgb(var(--color-border-rgb) / 0.16);
  border-radius: 8px;
  padding: 42px;
  text-align: center;
}

.cz-wishlist__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.cz-wishlist__clear {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(5 5 5 / 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--cz-color-ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  padding: 0 16px;
}

.cz-wishlist__clear:hover {
  border-color: rgb(8 177 220 / 0.55);
  color: var(--cz-color-accent);
}

.cz-wishlist__empty,
.cz-wishlist__loading {
  border: 1px solid rgb(5 5 5 / 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--cz-color-muted);
  font-weight: 800;
  margin: 0;
  padding: 22px;
}

.cz-wishlist__grid {
  width: 100%;
  max-width: calc(var(--cz-page-width, 1240px) - 284px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  margin-inline: auto;
}

.cz-wishlist__remove {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgb(5 5 5 / 0.14);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.96);
  box-shadow: 0 8px 18px rgb(5 5 5 / 0.12);
  color: var(--cz-color-ink);
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.cz-wishlist__remove:hover {
  border-color: rgb(8 177 220 / 0.5);
  color: var(--cz-color-accent);
}

.cz-product[data-cz-product] {
  width: min(calc(100% - 40px), var(--cz-page-width, 1240px));
  margin-inline: auto;
  padding: 18px 0 70px;
}

.cz-product__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.85fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.cz-gallery {
  display: grid;
  width: 80%;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-width: 0;
}

.cz-gallery--single {
  grid-template-columns: minmax(0, 1fr);
}

.cz-gallery__thumbs {
  display: grid;
  gap: 10px;
  max-height: 620px;
  overflow: auto;
  scrollbar-width: none;
}

.cz-gallery__thumbs::-webkit-scrollbar {
  display: none;
}

.cz-gallery__thumb {
  display: grid;
  width: 78px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgb(var(--color-border-rgb) / 0.16);
  border-radius: 8px;
  background: rgb(var(--color-foreground-rgb) / 0.025);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
}

.cz-gallery__thumb.is-active {
  border-color: #08b1dc;
  box-shadow: 0 0 0 1px #08b1dc;
}

.cz-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cz-gallery__stage {
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgb(var(--color-border-rgb) / 0.12);
  border-radius: 8px;
  background: rgb(var(--color-foreground-rgb) / 0.035);
  overflow: hidden;
}

.cz-gallery__stage img,
.cz-gallery__stage svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cz-summary {
  position: sticky;
  top: 98px;
  min-width: 0;
  padding-top: 2px;
}

.cz-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-bottom: 16px;
  color: rgb(var(--color-foreground-rgb) / 0.58);
  font-size: 0.84rem;
}

.cz-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.cz-breadcrumb a:hover {
  color: #08b1dc;
}

.cz-summary__eyebrow {
  display: inline-flex;
  margin: 0 0 7px;
  color: #08b1dc;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.cz-summary__title {
  margin: 0;
  font-family: var(--font-heading--family);
  max-width: 680px;
  font-size: clamp(1.18rem, 1.72vw, 1.78rem);
  font-weight: 740;
  line-height: 1.14;
  letter-spacing: 0;
}

.cz-rating {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 8px;
  color: inherit;
  font-size: 0.86rem;
  text-decoration: none;
}

.cz-rating__stars {
  display: inline-flex;
  gap: 1px;
  letter-spacing: 1px;
}

.cz-rating__star {
  color: transparent;
  -webkit-text-stroke: 1.25px #08b1dc;
  font-size: 1rem;
  line-height: 1;
}

.cz-rating__star.is-filled {
  color: #08b1dc;
  -webkit-text-stroke-color: #08b1dc;
}

.cz-rating__meta {
  color: rgb(var(--color-foreground-rgb) / 0.78);
}

.cz-ean {
  margin: 12px 0 0;
  color: rgb(var(--color-foreground-rgb) / 0.62);
  font-size: 0.88rem;
  line-height: 1.35;
}

.cz-ean span {
  color: rgb(var(--color-foreground-rgb) / 0.82);
  font-weight: 700;
}

.cz-price {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgb(var(--color-border-rgb) / 0.14);
  font-size: 1.62rem;
  line-height: 1;
  font-weight: 800;
}

.cz-price p,
.cz-price ins,
.cz-price del {
  margin: 0;
}

.cz-free-shipping {
  display: grid;
  gap: 7px;
  margin-top: 13px;
}

.cz-free-shipping__bar {
  height: 7px;
  border-radius: 999px;
  background: rgb(var(--color-foreground-rgb) / 0.08);
  overflow: hidden;
}

.cz-free-shipping__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #08b1dc;
}

.cz-free-shipping p {
  margin: 0;
  color: rgb(var(--color-foreground-rgb) / 0.68);
  font-size: 0.84rem;
}

.cz-form {
  margin-top: 12px;
}

.cz-purchase {
  display: grid;
  grid-template-columns: 114px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.cz-qty {
  display: grid;
  grid-template-columns: 32px 50px 32px;
  min-height: 38px;
  border: 1px solid rgb(var(--color-border-rgb) / 0.18);
  border-radius: 7px;
  background: rgb(var(--color-background-rgb));
  overflow: hidden;
}

.cz-qty button,
.cz-qty input {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: center;
}

.cz-qty button {
  cursor: pointer;
}

.cz-qty input {
  appearance: textfield;
  -moz-appearance: textfield;
}

.cz-qty input::-webkit-outer-spin-button,
.cz-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cz-atc {
  display: inline-flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 0;
  border-radius: 7px;
  background: #08b1dc;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0 18px;
  text-decoration: none;
  transition: background 0.16s ease, opacity 0.16s ease;
}

.cz-product .cz-atc,
.cz-product button.cz-atc,
.cz-product .single_add_to_cart_button.cz-atc,
.woocommerce .cz-product button.cz-atc {
  border: 0 !important;
  background: #08b1dc !important;
  color: #fff !important;
  box-shadow: none !important;
}

.cz-atc:hover:not(:disabled) {
  background: rgb(8 177 220 / 0.9);
}

.cz-product .cz-atc:hover:not(:disabled),
.cz-product button.cz-atc:hover:not(:disabled),
.woocommerce .cz-product button.cz-atc:hover:not(:disabled) {
  background: rgb(8 177 220 / 0.9) !important;
  color: #fff !important;
}

.cz-atc:disabled {
  opacity: 0.56;
  cursor: default;
}

.cz-buy-now {
  display: grid;
  grid-column: 1 / -1;
  width: 100%;
  min-height: 38px;
  place-items: center;
  border: 1.5px solid rgb(var(--color-foreground-rgb) / 0.22);
  border-radius: 7px;
  background: rgb(var(--color-background-rgb));
  color: rgb(var(--color-foreground-rgb));
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgb(var(--color-border-rgb) / 0.08);
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.cz-buy-now:hover {
  border-color: rgb(var(--color-foreground-rgb) / 0.42);
  box-shadow: inset 0 0 0 1px rgb(var(--color-foreground-rgb) / 0.08);
}

.cz-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
  color: rgb(var(--color-foreground-rgb) / 0.78);
}

.cz-trust div {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 0.93rem;
  white-space: normal;
}

.cz-trust svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cz-tabs {
  margin-top: 18px;
}

.cz-tabs__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.cz-product .cz-tabs__nav {
  align-items: stretch;
}

.cz-tabs__nav button {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgb(var(--color-border-rgb) / 0.18);
  border-radius: 8px;
  background: rgb(var(--color-background-rgb));
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0 13px;
  text-align: left;
  box-shadow: 0 1px 0 rgb(0 0 0 / 0.025);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}

.cz-product .cz-tabs__nav button {
  appearance: none;
  min-width: 0;
  border: 1px solid rgb(var(--color-border-rgb) / 0.18) !important;
  border-radius: 8px;
  background: #fff !important;
  color: var(--cz-color-ink) !important;
  box-shadow: none !important;
}

.cz-tabs__nav button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.16s ease;
}

.cz-tabs__nav button:hover {
  border-color: rgb(var(--color-foreground-rgb) / 0.28);
}

.cz-product .cz-tabs__nav button:hover {
  border-color: rgb(var(--color-foreground-rgb) / 0.28) !important;
  color: var(--cz-color-ink) !important;
}

.cz-tabs__nav button.is-active {
  border-color: #08b1dc;
  color: #08b1dc;
  box-shadow: 0 0 0 1px #08b1dc;
}

.cz-product .cz-tabs__nav button.is-active,
.cz-product .cz-tabs__nav button[aria-selected="true"] {
  border-color: #08b1dc !important;
  background: rgb(8 177 220 / 0.08) !important;
  color: #08b1dc !important;
  box-shadow: 0 0 0 1px #08b1dc !important;
}

.cz-tabs__nav button.is-active svg {
  transform: rotate(180deg);
}

.cz-product .cz-tabs__nav button:not(.is-active) svg {
  transform: rotate(0);
}

.cz-tabs__content {
  display: grid;
  width: 100%;
  min-height: 96px;
  border: 1px solid rgb(var(--color-border-rgb) / 0.12);
  border-radius: 8px;
  margin-top: 10px;
  padding: 18px;
  background: #fff;
  color: var(--cz-color-ink);
  font-size: 0.94rem;
  line-height: 1.38;
}

.cz-tabs.is-collapsed .cz-tabs__content {
  display: none;
}

.cz-tabs__content > [hidden] {
  display: none !important;
}

.cz-tabs,
.cz-tabs *,
.cz-tabs a,
.cz-tabs a:visited {
  border-color: rgb(var(--color-border-rgb) / 0.18);
  color: inherit;
}

.cz-tabs a:hover {
  color: #08b1dc;
}

.cz-tabs__nav button,
.cz-tabs__nav button:visited,
.cz-tabs__nav button:focus {
  border-color: rgb(var(--color-border-rgb) / 0.18);
  background: #fff;
  color: var(--cz-color-ink);
  outline-color: #08b1dc;
}

.cz-tabs__nav button.is-active,
.cz-tabs__nav button[aria-selected="true"] {
  border-color: #08b1dc;
  background: rgb(8 177 220 / 0.06);
  color: #08b1dc;
  box-shadow: 0 0 0 1px #08b1dc;
}

.cz-tabs__content button,
.cz-tabs__content input[type="submit"],
.cz-tabs__content .submit {
  border-color: #08b1dc;
  background: #08b1dc;
  color: #fff;
}

.cz-feature-list {
  columns: 1;
  margin: 0;
  padding-left: 18px;
}

.cz-feature-list li::marker {
  color: #08b1dc;
}

.cz-faq {
  display: grid;
  gap: 8px;
}

.cz-faq[hidden] {
  display: none;
}

.cz-faq details {
  border: 1px solid rgb(var(--color-border-rgb) / 0.16);
  border-radius: 8px;
  background: rgb(var(--color-background-rgb));
}

.cz-faq summary {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  padding: 0 14px;
}

.cz-faq summary::-webkit-details-marker {
  display: none;
}

.cz-faq summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}

.cz-faq details[open] summary::after {
  content: "-";
}

.cz-faq p {
  margin: 0;
  padding: 0 14px 14px;
  color: rgb(var(--color-foreground-rgb) / 0.75);
}

.cz-same-model {
  margin-top: 34px;
}

.cz-same-model__header {
  margin-bottom: 12px;
}

.cz-same-model__header h2 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.cz-product-carousel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cz-product-carousel__grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.cz-product-carousel__grid::-webkit-scrollbar {
  display: none;
}

.cz-product-carousel__grid .cz-collection-card {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
}

.cz-collection__filter-toggle {
  display: none;
}

.cz-site-footer {
  margin-top: 48px;
  background: var(--cz-color-ink);
  color: #fff;
}

.cz-site-footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(auto-fit, minmax(138px, 1fr));
  gap: 28px;
  align-items: start;
  padding: 42px 0 34px;
}

.cz-site-footer__brand img {
  display: block;
  width: min(190px, 100%);
  margin-bottom: 16px;
}

.cz-site-footer__brand p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.cz-site-footer__column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 9px;
}

.cz-site-footer__column h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 0.95rem;
}

.cz-site-footer__column a,
.cz-site-footer__column span {
  max-width: 100%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.34;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.cz-site-footer__column a:hover {
  color: var(--cz-color-accent);
}

.cz-site-footer .cz-site-footer__guides {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 9px;
}

.cz-site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0 22px;
}

.cz-site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.cz-site-footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
}

.cz-site-footer__trust span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  white-space: nowrap;
}

.cz-site-footer__trust span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cz-color-accent);
  margin-right: 8px;
  vertical-align: 1px;
}

@media (max-width: 1120px) {
  .cz-collection__layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 18px;
  }

  .cz-collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 989px) {
  .cz-product__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cz-summary {
    position: static;
    padding-top: 0;
  }

  .cz-tabs__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .cz-site-header__inner {
    grid-template-columns: auto auto minmax(220px, 1fr);
  }

  .cz-site-header__actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 12px;
  }

  .cz-home-collections {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cz-education-download {
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
    gap: 28px;
  }

  .cz-guide-layout {
    grid-template-columns: 1fr;
  }

  .cz-guide-outline {
    position: static;
    order: -1;
  }

  .cz-guide-outline ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
    overflow: visible;
  }

  .cz-home-product {
    flex-basis: calc((100% - 16px) / 2);
  }

  .cz-education__item,
  .cz-education__item--reverse {
    grid-template-columns: 1fr;
  }

  .cz-education__item--reverse .cz-education__copy {
    order: 1;
  }

  .cz-education__item--reverse .cz-education__image {
    order: 2;
  }
}

@media (max-width: 760px) {
  .cz-product[data-cz-product] {
    width: 100%;
    max-width: 100vw;
    margin-inline: 0;
    overflow-x: clip;
    padding: 10px 12px 46px;
  }

  .cz-product__grid {
    gap: 22px;
  }

  .cz-gallery {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    gap: 10px;
  }

  .cz-gallery__stage {
    max-height: min(76vw, 315px);
  }

  .cz-gallery__thumbs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 62px;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  .cz-gallery__thumb {
    width: 62px;
  }

  .cz-breadcrumb {
    display: none;
  }

  .cz-summary {
    overflow: hidden;
  }

  .cz-summary__eyebrow {
    margin-top: 2px;
    font-size: 0.68rem;
    letter-spacing: 0.09em;
  }

  .cz-summary__title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: clamp(1rem, 4.65vw, 1.22rem);
    line-height: 1.16;
  }

  .cz-rating {
    gap: 7px;
    margin-top: 7px;
    font-size: 0.82rem;
  }

  .cz-ean {
    margin-top: 9px;
    font-size: 0.88rem;
    overflow-wrap: anywhere;
  }

  .cz-price {
    margin-top: 9px;
    padding-top: 9px;
    font-size: 1.26rem;
  }

  .cz-purchase {
    position: sticky;
    bottom: 0;
    z-index: 10;
    grid-template-columns: 86px minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    background: rgb(var(--color-background-rgb));
    padding-block: 8px;
  }

  .cz-qty {
    grid-template-columns: 26px 34px 26px;
    min-height: 38px;
  }

  .cz-atc {
    min-width: 0;
    min-height: 38px;
    padding-inline: 10px;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .cz-atc__price {
    display: none;
  }

  .cz-buy-now {
    grid-column: 1 / -1;
    min-height: 34px;
    font-size: 0.9rem;
  }

  .cz-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .cz-trust div {
    min-width: 0;
    gap: 7px;
    font-size: 0.82rem;
    white-space: normal;
  }

  .cz-trust svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
  }

  .cz-tabs__nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cz-feature-list {
    columns: 1;
  }

  .cz-product-carousel__grid .cz-collection-card {
    flex-basis: calc((100% - 10px) / 2);
  }

  .cz-collection {
    width: min(calc(100% - 28px), var(--cz-page-width, 1240px));
    padding: 24px 0 46px;
  }

  .cz-collection__breadcrumb {
    font-size: 0.78rem;
  }

  .cz-collection__header {
    margin-bottom: 22px;
  }

  .cz-collection__title--image img {
    max-height: 86px;
  }

  .cz-collection__title--image-small img {
    width: min(100%, 242px);
    max-height: 49px;
  }

  .cz-collection__filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid rgb(var(--color-border-rgb) / 0.22);
    border-radius: 8px;
    background: #fff;
    padding: 0 18px;
    color: inherit;
    font-weight: 800;
    text-transform: uppercase;
  }

  .cz-collection__layout {
    display: block;
  }

  .cz-filters {
    position: fixed;
    z-index: 80;
    inset: 0 auto 0 0;
    width: min(86vw, 340px);
    overflow-y: auto;
    background: #fff;
    box-shadow: 24px 0 60px rgb(0 0 0 / 0.18);
    padding: 20px;
    transform: translateX(-110%);
    transition: transform 180ms ease;
  }

  .cz-collection.is-filter-open::after {
    content: "";
    position: fixed;
    z-index: 70;
    inset: 0;
    background: rgb(0 0 0 / 0.38);
  }

  .cz-collection.is-filter-open .cz-filters {
    transform: translateX(0);
  }

  .cz-filters__mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
  }

  .cz-filters__mobile-head button {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgb(var(--color-border-rgb) / 0.16);
    border-radius: 999px;
    background: #fff;
    color: inherit;
    font-size: 1.5rem;
    line-height: 1;
  }

  .cz-collection__products {
    margin-top: 18px;
  }

  .cz-collection__toolbar {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 18px;
  }

  .cz-collection__toolbar select {
    width: 100%;
  }

  .cz-collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .cz-collection-card__body {
    grid-template-rows: minmax(3.8em, auto) auto auto;
    gap: 10px;
    padding: 10px;
  }

  .cz-collection-card__title,
  .cz-collection-card__title:visited {
    min-height: 3.8em;
    font-size: 0.82rem;
  }

  .cz-collection-card__purchase {
    grid-template-columns: minmax(70px, 1fr) 34px 42px;
    gap: 7px;
  }

  .cz-collection-card__qty {
    grid-template-columns: 26px minmax(26px, 1fr) 26px;
    height: 34px;
  }

  .cz-collection-card__button,
  .cz-collection-card__wishlist {
    width: 100%;
    min-height: 34px;
  }
  .cz-container {
    width: min(calc(100% - 28px), var(--cz-page-width));
  }

  .cz-site-header__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 14px;
  }

  .cz-site-header__brand {
    width: 150px;
  }

  .cz-site-header__nav {
    grid-column: auto;
    order: 0;
    padding-bottom: 0;
  }

  .cz-site-header__actions {
    justify-content: flex-start;
  }

  .cz-header-dropdown {
    width: 100%;
  }

  .cz-header-dropdown > summary {
    width: 100%;
  }

  .cz-header-dropdown__panel {
    position: static;
    width: 100%;
    max-height: 70vh;
    margin-top: 8px;
    box-shadow: 0 18px 45px rgb(5 5 5 / 0.12);
  }

  .cz-header-dropdown__panel .cz-menu {
    grid-template-columns: 1fr;
  }

  .woocommerce-account .woocommerce-message .button,
  .woocommerce-account .woocommerce-info .button {
    width: calc(100% - 38px);
    margin-left: 38px;
  }

  .cz-site-footer__inner {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 24px;
    padding: 34px 0 28px;
  }

  .cz-site-footer__brand {
    grid-column: 1 / -1;
  }

  .cz-site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cz-site-footer__trust {
    justify-content: flex-start;
  }

  .cz-home {
    width: 100%;
    max-width: 100vw;
    padding-block-start: 0;
    overflow-x: clip;
    overscroll-behavior-x: none;
    contain: paint;
  }

  .cz-home-slider {
    width: 100%;
    max-width: 100vw;
    margin-left: 0;
    overscroll-behavior-x: none;
  }

  .cz-home-slide {
    height: clamp(230px, 56vw, 360px);
    aspect-ratio: auto;
    min-height: 0;
    max-height: 360px;
  }

  .cz-home-slider__dots {
    left: 26px;
    bottom: 18px;
  }

  .cz-home-collections {
    width: min(calc(100% - 28px), 620px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .cz-home-carousel {
    width: min(calc(100% - 28px), var(--cz-page-width, 1240px));
    max-width: calc(100vw - 28px);
    overflow-x: clip;
  }

  .cz-home-carousel__grid {
    max-width: 100%;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  .cz-education {
    width: min(calc(100% - 28px), 620px);
    margin-top: 48px;
    row-gap: 28px;
    overflow: visible;
  }

  .cz-education__item,
  .cz-education__item--reverse {
    min-height: 0;
    overflow: visible;
  }

  .cz-education__copy {
    padding: 28px 18px 30px;
  }

  .cz-education__copy h2 {
    max-width: 100%;
    font-size: clamp(1.38rem, 7vw, 1.72rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .cz-education__copy p:not(.cz-education__eyebrow) {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .cz-education__image {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .cz-education-download {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: stretch;
    margin-top: 0;
    padding: 24px 18px;
    border-radius: 0;
    overflow: hidden;
    scroll-margin-top: 82px;
  }

  .cz-education-download__media {
    max-width: none;
    justify-self: stretch;
    aspect-ratio: 16 / 9;
  }

  .cz-education-download__copy {
    max-width: 100%;
  }

  .cz-education-download h2 {
    max-width: 100%;
    font-size: clamp(1.28rem, 6.4vw, 1.58rem);
    line-height: 1.14;
    overflow-wrap: anywhere;
  }

  .cz-education-download p:not(.cz-education__eyebrow) {
    max-width: 100%;
    font-size: 0.94rem;
  }

  .cz-education-download .cz-education__download-button {
    width: 100%;
    min-width: 0;
  }

  .cz-education-download__actions {
    display: grid;
    gap: 10px;
  }

  .cz-guide-page {
    width: min(calc(100% - 28px), 1320px);
    margin: 28px auto 56px;
  }

  .cz-guide-hero {
    margin-bottom: 22px;
  }

  .cz-guide-hero h1 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
    line-height: 1.04;
  }

  .cz-guide-hero p {
    font-size: 0.98rem;
  }

  .cz-guide-article {
    padding: 22px 18px;
  }

  .cz-guide-article h2 {
    font-size: clamp(1.42rem, 7vw, 1.88rem);
  }

  .cz-guide-lead {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .cz-guide-article img {
    margin: 22px 0 24px;
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .cz-guide-pdf-pages {
    gap: 16px;
    margin-top: 22px;
  }

  .cz-guide-pdf-page img {
    margin: 0;
    aspect-ratio: auto;
  }

  .cz-guide-outline {
    padding: 14px;
  }

  .cz-guide-outline ol {
    grid-template-columns: 1fr;
  }

  .cz-guide-next {
    display: grid;
  }

  .cz-guide-next a {
    width: 100%;
  }

  .cz-home-tile {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .cz-home-product {
    flex-basis: calc((100% - 12px) / 2);
  }
}


/* Header and footer dark shell */
.cz-site-header {
  border-bottom-color: rgb(255 255 255 / 0.14);
  background: #000;
  color: #fff;
}

.cz-site-header__brand img,
.cz-site-footer__brand img {
  filter: none;
  mix-blend-mode: normal;
}

.cz-header-dropdown > summary,
.cz-site-header__actions a {
  color: #fff;
}

.cz-site-header__cart {
  border-color: rgb(255 255 255 / 0.36);
  background: #000;
  color: #fff !important;
}

.cz-site-header__cart:hover {
  border-color: rgb(255 255 255 / 0.72);
  color: #fff !important;
}

.cz-site-header__cart svg,
.cz-site-header__cart-label {
  color: #fff !important;
  stroke: currentColor;
}

.cz-site-header__cart-count,
[data-cz-wishlist-count],
.cz-site-header__search button {
  background: #08b1dc;
  color: #fff !important;
}

.cz-header-dropdown__panel {
  border-color: rgb(255 255 255 / 0.16);
  background: #101114;
  color: #fff;
}

.cz-header-dropdown__panel .cz-menu,
.cz-header-dropdown__panel .cz-menu a,
.cz-menu__parent,
.cz-menu__details > summary,
.cz-menu__model-details > summary,
.cz-menu__children a,
.cz-menu__models a {
  color: #fff;
}

.cz-menu__parent,
.cz-menu__details > summary,
.cz-menu__model-details > summary {
  background: #050505;
}

.cz-menu__details > summary:hover,
.cz-menu__model-details > summary:hover,
.cz-menu__parent:hover,
.cz-menu__children a:hover,
.cz-menu__models a:hover {
  background: rgb(8 177 220 / 0.14);
  color: #08b1dc;
}

.cz-site-footer {
  border-top: 1px solid rgb(255 255 255 / 0.14);
  background: #000;
  color: #fff;
}

.cz-site-footer__column h2,
.cz-site-footer__column a,
.cz-site-footer__column span,
.cz-site-footer__brand p,
.cz-site-footer__bottom p,
.cz-site-footer__trust span {
  color: #fff;
}

.cz-site-footer__column a:hover {
  color: #08b1dc;
}

/* Casezone checkout fallback for order page */
body:has(.wp-block-woocommerce-checkout),
body:has(.wc-block-checkout) {
  background: #f6f8fa;
}

.cz-main:has(.wp-block-woocommerce-checkout),
.cz-main:has(.wc-block-checkout) {
  width: min(calc(100% - 40px), 1220px);
  padding: 34px 0 76px;
}

.cz-page:has(.wp-block-woocommerce-checkout),
.cz-page:has(.wc-block-checkout) {
  max-width: none;
  padding: 0;
}

.cz-page:has(.wp-block-woocommerce-checkout) .cz-page__header,
.cz-page:has(.wc-block-checkout) .cz-page__header {
  margin-bottom: 24px;
}

.cz-page:has(.wp-block-woocommerce-checkout) .cz-page__title,
.cz-page:has(.wc-block-checkout) .cz-page__title {
  margin: 0;
  color: var(--cz-color-ink);
  font-size: clamp(2rem, 3.1vw, 3rem);
  font-weight: 900;
  line-height: 1.03;
}

.cz-page__content .wp-block-woocommerce-checkout,
.cz-page__content .wc-block-checkout {
  width: 100%;
  max-width: none;
  margin: 0;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout,
.cz-page__content .wc-block-checkout .wc-block-components-sidebar-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px) !important;
  gap: 30px !important;
  align-items: start;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-main,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-checkout__main,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-sidebar,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-checkout__sidebar,
.cz-page__content .wc-block-checkout .wc-block-components-main,
.cz-page__content .wc-block-checkout .wc-block-checkout__main,
.cz-page__content .wc-block-checkout .wc-block-components-sidebar,
.cz-page__content .wc-block-checkout .wc-block-checkout__sidebar {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-checkout__form,
.cz-page__content .wc-block-checkout .wc-block-checkout__form {
  padding: 30px !important;
  border: 1px solid rgb(var(--color-border-rgb) / 0.12) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 18px 46px rgb(5 5 5 / 0.06) !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-checkout__sidebar,
.cz-page__content .wc-block-checkout .wc-block-checkout__sidebar {
  position: sticky !important;
  top: 96px !important;
  padding: 0 !important;
  border: 1px solid rgb(var(--color-border-rgb) / 0.14) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 18px 46px rgb(5 5 5 / 0.08) !important;
  overflow: hidden;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-checkout-step,
.cz-page__content .wc-block-checkout .wc-block-components-checkout-step {
  margin: 0 !important;
  padding: 0 0 28px !important;
  border: 0 !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-checkout-step__heading,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-title,
.cz-page__content .wc-block-checkout .wc-block-components-checkout-step__heading,
.cz-page__content .wc-block-checkout .wc-block-components-title {
  margin: 0 0 14px !important;
  color: var(--cz-color-ink) !important;
  font-size: 1.18rem !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  line-height: 1.18 !important;
}

.cz-page__content .wp-block-woocommerce-checkout input,
.cz-page__content .wp-block-woocommerce-checkout textarea,
.cz-page__content .wp-block-woocommerce-checkout select,
.cz-page__content .wc-block-checkout input,
.cz-page__content .wc-block-checkout textarea,
.cz-page__content .wc-block-checkout select {
  min-height: 50px !important;
  border: 1px solid rgb(var(--color-border-rgb) / 0.18) !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: var(--cz-color-ink) !important;
  font-size: 0.96rem !important;
  font-weight: 800 !important;
  box-shadow: none !important;
}

.cz-page__content .wp-block-woocommerce-checkout input:focus,
.cz-page__content .wp-block-woocommerce-checkout textarea:focus,
.cz-page__content .wp-block-woocommerce-checkout select:focus,
.cz-page__content .wc-block-checkout input:focus,
.cz-page__content .wc-block-checkout textarea:focus,
.cz-page__content .wc-block-checkout select:focus {
  border-color: var(--cz-color-accent) !important;
  box-shadow: 0 0 0 3px rgb(8 177 220 / 0.16) !important;
  outline: 0 !important;
}

.cz-page__content .wp-block-woocommerce-checkout label,
.cz-page__content .wc-block-checkout label {
  color: rgb(var(--color-foreground-rgb) / 0.72) !important;
  font-size: 0.84rem !important;
  font-weight: 900 !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-checkout__shipping-method,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-checkout__payment-method,
.cz-page__content .wc-block-checkout .wc-block-components-radio-control,
.cz-page__content .wc-block-checkout .wc-block-checkout__shipping-method,
.cz-page__content .wc-block-checkout .wc-block-checkout__payment-method {
  border: 1px solid rgb(var(--color-border-rgb) / 0.14) !important;
  border-radius: 8px !important;
  background: #fff !important;
  overflow: hidden;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__option,
.cz-page__content .wc-block-checkout .wc-block-components-radio-control__option {
  min-height: 60px !important;
  margin: 0 !important;
  padding: 17px 18px !important;
  border-bottom: 1px solid rgb(var(--color-border-rgb) / 0.1) !important;
  color: var(--cz-color-ink) !important;
  font-weight: 900 !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__option:last-child,
.cz-page__content .wc-block-checkout .wc-block-components-radio-control__option:last-child {
  border-bottom: 0 !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__option-checked,
.cz-page__content .wc-block-checkout .wc-block-components-radio-control__option-checked {
  background: linear-gradient(90deg, rgb(8 177 220 / 0.1), #fff 72%) !important;
  box-shadow: inset 4px 0 0 var(--cz-color-accent);
}

.cz-page__content .wp-block-woocommerce-checkout input[type="radio"],
.cz-page__content .wp-block-woocommerce-checkout input[type="checkbox"],
.cz-page__content .wc-block-checkout input[type="radio"],
.cz-page__content .wc-block-checkout input[type="checkbox"] {
  min-height: auto !important;
  accent-color: var(--cz-color-accent);
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-wrapper,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-wrapper,
.cz-page__content .wc-block-checkout .wc-block-components-sidebar .wc-block-components-totals-wrapper,
.cz-page__content .wc-block-checkout .wc-block-checkout__sidebar .wc-block-components-totals-wrapper {
  padding-inline: 22px !important;
  border-color: rgb(var(--color-border-rgb) / 0.1) !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-order-summary,
.cz-page__content .wc-block-checkout .wc-block-components-order-summary {
  padding: 22px !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-order-summary__title,
.cz-page__content .wc-block-checkout .wc-block-components-order-summary__title {
  margin: -22px -22px 14px !important;
  padding: 18px 22px !important;
  background: var(--cz-color-ink) !important;
  color: #fff !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-order-summary__title-text,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-order-summary__button-text,
.cz-page__content .wc-block-checkout .wc-block-components-order-summary__title-text,
.cz-page__content .wc-block-checkout .wc-block-components-order-summary__button-text {
  color: inherit !important;
  font-size: 1.08rem !important;
  font-weight: 900 !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-order-summary-item__image > img,
.cz-page__content .wc-block-checkout .wc-block-components-order-summary-item__image > img {
  width: 68px !important;
  height: 68px !important;
  object-fit: contain !important;
  border: 1px solid rgb(var(--color-border-rgb) / 0.1) !important;
  border-radius: 8px !important;
  background: #fff !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-order-summary-item__quantity,
.cz-page__content .wc-block-checkout .wc-block-components-order-summary-item__quantity {
  background: var(--cz-color-accent) !important;
  color: #fff !important;
  font-weight: 900 !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-order-summary-item__description,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-order-summary-item__individual-prices,
.cz-page__content .wc-block-checkout .wc-block-components-order-summary-item__description,
.cz-page__content .wc-block-checkout .wc-block-components-order-summary-item__individual-prices {
  color: var(--cz-color-ink) !important;
  font-size: 0.86rem !important;
  font-weight: 800 !important;
  line-height: 1.26 !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-totals-item__label,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-totals-item__value,
.cz-page__content .wc-block-checkout .wc-block-components-totals-item__label,
.cz-page__content .wc-block-checkout .wc-block-components-totals-item__value {
  color: var(--cz-color-ink) !important;
  font-weight: 900 !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-totals-footer-item,
.cz-page__content .wc-block-checkout .wc-block-components-totals-footer-item {
  padding-top: 18px !important;
  font-size: 1.18rem !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-checkout-place-order-button,
.cz-page__content .wc-block-checkout .wc-block-components-checkout-place-order-button {
  width: 100% !important;
  min-height: 58px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: var(--cz-color-accent) !important;
  color: #fff !important;
  font-size: 1.02rem !important;
  font-weight: 900 !important;
  box-shadow: 0 16px 34px rgb(8 177 220 / 0.28) !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-checkout-place-order-button:hover,
.cz-page__content .wc-block-checkout .wc-block-components-checkout-place-order-button:hover {
  background: #079ac0 !important;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .cz-page__content .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout,
  .cz-page__content .wc-block-checkout .wc-block-components-sidebar-layout {
    grid-template-columns: 1fr !important;
  }

  .cz-page__content .wp-block-woocommerce-checkout .wc-block-checkout__sidebar,
  .cz-page__content .wc-block-checkout .wc-block-checkout__sidebar {
    position: static !important;
  }
}

@media (max-width: 640px) {
  .cz-main:has(.wp-block-woocommerce-checkout),
  .cz-main:has(.wc-block-checkout) {
    width: min(calc(100% - 24px), 1220px);
    padding: 24px 0 56px;
  }

  .cz-page__content .wp-block-woocommerce-checkout .wc-block-checkout__form,
  .cz-page__content .wc-block-checkout .wc-block-checkout__form {
    padding: 18px !important;
  }
}
/* Casezone checkout final corrections */
body:has(.wp-block-woocommerce-checkout) .cz-site-header__inner,
body:has(.wc-block-checkout) .cz-site-header__inner,
.woocommerce-checkout .cz-site-header__inner {
  grid-template-columns: minmax(130px, 180px) auto minmax(260px, 1fr) auto;
  gap: 14px;
  min-height: 68px;
}

body:has(.wp-block-woocommerce-checkout) .cz-site-header__brand,
body:has(.wc-block-checkout) .cz-site-header__brand,
.woocommerce-checkout .cz-site-header__brand {
  width: clamp(132px, 13vw, 178px);
}

body:has(.wp-block-woocommerce-checkout) .cz-site-header__search,
body:has(.wc-block-checkout) .cz-site-header__search,
.woocommerce-checkout .cz-site-header__search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 0;
  min-width: 0;
}

body:has(.wp-block-woocommerce-checkout) .cz-site-header__search input[type="search"],
body:has(.wc-block-checkout) .cz-site-header__search input[type="search"],
.woocommerce-checkout .cz-site-header__search input[type="search"] {
  width: 100% !important;
  min-height: 44px !important;
  height: 44px !important;
  border: 1px solid rgb(255 255 255 / 0.28) !important;
  border-right: 0 !important;
  border-radius: 8px 0 0 8px !important;
  background: #fff !important;
  color: var(--cz-color-ink) !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  padding: 0 14px !important;
  box-shadow: none !important;
}

body:has(.wp-block-woocommerce-checkout) .cz-site-header__search button,
body:has(.wc-block-checkout) .cz-site-header__search button,
.woocommerce-checkout .cz-site-header__search button {
  width: 150px !important;
  min-height: 44px !important;
  height: 44px !important;
  border: 0 !important;
  border-radius: 0 8px 8px 0 !important;
  background: var(--cz-color-accent) !important;
  color: #fff !important;
  font-size: 0.95rem !important;
  font-weight: 900 !important;
  box-shadow: none !important;
  transform: none !important;
}

body:has(.wp-block-woocommerce-checkout) .cz-site-header__actions,
body:has(.wc-block-checkout) .cz-site-header__actions,
.woocommerce-checkout .cz-site-header__actions {
  gap: 10px;
  white-space: nowrap;
}

body:has(.wp-block-woocommerce-checkout) .cz-site-header__actions a,
body:has(.wc-block-checkout) .cz-site-header__actions a,
.woocommerce-checkout .cz-site-header__actions a {
  font-size: 0.86rem;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-text-input input,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-combobox input,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-combobox-control input,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-country-input select,
.cz-page__content .wp-block-woocommerce-checkout textarea,
.cz-page__content .wp-block-woocommerce-checkout select,
.cz-page__content .wc-block-checkout .wc-block-components-text-input input,
.cz-page__content .wc-block-checkout .wc-block-components-combobox input,
.cz-page__content .wc-block-checkout .wc-block-components-combobox-control input,
.cz-page__content .wc-block-checkout .wc-block-components-country-input select,
.cz-page__content .wc-block-checkout textarea,
.cz-page__content .wc-block-checkout select {
  min-height: 50px !important;
  border: 1px solid rgb(var(--color-border-rgb) / 0.18) !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: var(--cz-color-ink) !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  box-shadow: none !important;
}

.cz-page__content .wp-block-woocommerce-checkout input[type="radio"],
.cz-page__content .wp-block-woocommerce-checkout input[type="checkbox"],
.cz-page__content .wc-block-checkout input[type="radio"],
.cz-page__content .wc-block-checkout input[type="checkbox"] {
  flex: 0 0 auto !important;
  width: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 0 10px 0 0 !important;
  border-radius: 999px !important;
  accent-color: var(--cz-color-accent);
}

.cz-page__content .wp-block-woocommerce-checkout input[type="checkbox"],
.cz-page__content .wc-block-checkout input[type="checkbox"] {
  border-radius: 4px !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__option,
.cz-page__content .wc-block-checkout .wc-block-components-radio-control__option {
  display: flex !important;
  gap: 8px;
  align-items: center !important;
  min-width: 0;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__label,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__secondary-label,
.cz-page__content .wc-block-checkout .wc-block-components-radio-control__label,
.cz-page__content .wc-block-checkout .wc-block-components-radio-control__secondary-label {
  min-width: 0;
  color: var(--cz-color-ink) !important;
  font-size: 0.92rem !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  overflow-wrap: anywhere;
  word-break: normal;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__description,
.cz-page__content .wc-block-checkout .wc-block-components-radio-control__description {
  margin-left: 36px !important;
  color: rgb(var(--color-foreground-rgb) / 0.68) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  overflow-wrap: anywhere;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-order-summary-item__description,
.cz-page__content .wc-block-checkout .wc-block-components-order-summary-item__description {
  min-width: 0;
  color: var(--cz-color-ink) !important;
  font-size: 0.86rem !important;
  font-weight: 900 !important;
  line-height: 1.22 !important;
  overflow-wrap: anywhere;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-order-summary-item__description p,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-product-metadata,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-product-details,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-order-summary-item__individual-prices,
.cz-page__content .wc-block-checkout .wc-block-components-order-summary-item__description p,
.cz-page__content .wc-block-checkout .wc-block-components-product-metadata,
.cz-page__content .wc-block-checkout .wc-block-components-product-details,
.cz-page__content .wc-block-checkout .wc-block-components-order-summary-item__individual-prices {
  display: none !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-order-summary-item__description a,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-order-summary-item__description span,
.cz-page__content .wc-block-checkout .wc-block-components-order-summary-item__description a,
.cz-page__content .wc-block-checkout .wc-block-components-order-summary-item__description span {
  color: var(--cz-color-ink) !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  overflow-wrap: anywhere;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-order-summary-item,
.cz-page__content .wc-block-checkout .wc-block-components-order-summary-item {
  display: grid !important;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  gap: 12px !important;
  align-items: start !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-order-summary-item__total-price,
.cz-page__content .wc-block-checkout .wc-block-components-order-summary-item__total-price {
  white-space: nowrap;
}

@media (max-width: 1100px) {
  body:has(.wp-block-woocommerce-checkout) .cz-site-header__inner,
  body:has(.wc-block-checkout) .cz-site-header__inner,
  .woocommerce-checkout .cz-site-header__inner {
    grid-template-columns: minmax(120px, 155px) auto minmax(210px, 1fr) auto;
    gap: 10px;
  }

  body:has(.wp-block-woocommerce-checkout) .cz-site-header__search,
  body:has(.wc-block-checkout) .cz-site-header__search,
  .woocommerce-checkout .cz-site-header__search {
    grid-template-columns: minmax(0, 1fr) 112px;
  }

  body:has(.wp-block-woocommerce-checkout) .cz-site-header__search button,
  body:has(.wc-block-checkout) .cz-site-header__search button,
  .woocommerce-checkout .cz-site-header__search button {
    width: 112px !important;
  }
}
/* Casezone checkout weight and radio spacing fix */
.cz-page__content .wp-block-woocommerce-checkout,
.cz-page__content .wc-block-checkout {
  font-weight: 500;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-checkout-step__heading,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-title,
.cz-page__content .wc-block-checkout .wc-block-components-checkout-step__heading,
.cz-page__content .wc-block-checkout .wc-block-components-title {
  font-weight: 800 !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__option,
.cz-page__content .wc-block-checkout .wc-block-components-radio-control__option {
  position: relative;
  display: grid !important;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 12px !important;
  align-items: center !important;
  padding: 17px 18px !important;
}

.cz-page__content .wp-block-woocommerce-checkout input[type="radio"],
.cz-page__content .wc-block-checkout input[type="radio"] {
  grid-column: 1;
  justify-self: center;
  margin: 0 !important;
}

.cz-page__content .wp-block-woocommerce-checkout input[type="checkbox"],
.cz-page__content .wc-block-checkout input[type="checkbox"] {
  margin-right: 12px !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__label,
.cz-page__content .wc-block-checkout .wc-block-components-radio-control__label {
  grid-column: 2;
  font-size: 0.94rem !important;
  font-weight: 700 !important;
  line-height: 1.28 !important;
  overflow-wrap: anywhere;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__secondary-label,
.cz-page__content .wc-block-checkout .wc-block-components-radio-control__secondary-label {
  grid-column: 3;
  justify-self: end;
  font-size: 0.9rem !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  white-space: nowrap;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__description,
.cz-page__content .wc-block-checkout .wc-block-components-radio-control__description {
  grid-column: 2 / -1;
  margin: -4px 0 0 !important;
  font-size: 0.84rem !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-checkbox__label,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-checkout-step__description,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-validation-error,
.cz-page__content .wc-block-checkout .wc-block-components-checkbox__label,
.cz-page__content .wc-block-checkout .wc-block-components-checkout-step__description,
.cz-page__content .wc-block-checkout .wc-block-components-validation-error {
  font-weight: 500 !important;
}

.cz-page__content .wp-block-woocommerce-checkout label,
.cz-page__content .wc-block-checkout label {
  font-weight: 700 !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-order-summary-item__description,
.cz-page__content .wc-block-checkout .wc-block-components-order-summary-item__description {
  font-weight: 700 !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-totals-item__label,
.cz-page__content .wc-block-checkout .wc-block-components-totals-item__label {
  font-weight: 600 !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-totals-item__value,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-totals-footer-item,
.cz-page__content .wc-block-checkout .wc-block-components-totals-item__value,
.cz-page__content .wc-block-checkout .wc-block-components-totals-footer-item {
  font-weight: 800 !important;
}

@media (max-width: 640px) {
  .cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__option,
  .cz-page__content .wc-block-checkout .wc-block-components-radio-control__option {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__secondary-label,
  .cz-page__content .wc-block-checkout .wc-block-components-radio-control__secondary-label {
    grid-column: 2;
    justify-self: start;
  }
}
/* Casezone checkout radio layout reset */
.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__option,
.cz-page__content .wc-block-checkout .wc-block-components-radio-control__option {
  position: relative !important;
  display: block !important;
  min-height: 62px !important;
  padding: 16px 18px 16px 52px !important;
  text-align: left !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__input,
.cz-page__content .wc-block-checkout .wc-block-components-radio-control__input,
.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__option input[type="radio"],
.cz-page__content .wc-block-checkout .wc-block-components-radio-control__option input[type="radio"] {
  position: absolute !important;
  top: 20px !important;
  left: 18px !important;
  display: block !important;
  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 0 !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__option-layout,
.cz-page__content .wc-block-checkout .wc-block-components-radio-control__option-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 8px 16px !important;
  align-items: start !important;
  width: 100% !important;
  min-width: 0 !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__label,
.cz-page__content .wc-block-checkout .wc-block-components-radio-control__label {
  display: block !important;
  min-width: 0 !important;
  max-width: 100% !important;
  color: var(--cz-color-ink) !important;
  font-size: 0.94rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  text-align: left !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__secondary-label,
.cz-page__content .wc-block-checkout .wc-block-components-radio-control__secondary-label {
  display: block !important;
  justify-self: end !important;
  color: var(--cz-color-ink) !important;
  font-size: 0.9rem !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  text-align: right !important;
  white-space: nowrap !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__description,
.cz-page__content .wc-block-checkout .wc-block-components-radio-control__description {
  grid-column: 1 / -1 !important;
  display: block !important;
  min-width: 0 !important;
  margin: 4px 0 0 !important;
  color: rgb(var(--color-foreground-rgb) / 0.68) !important;
  font-size: 0.84rem !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  text-align: left !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
}

.cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__label img,
.cz-page__content .wc-block-checkout .wc-block-components-radio-control__label img {
  display: inline-block !important;
  max-height: 24px !important;
  width: auto !important;
  margin-left: 6px !important;
  vertical-align: middle !important;
}

@media (max-width: 640px) {
  .cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__option-layout,
  .cz-page__content .wc-block-checkout .wc-block-components-radio-control__option-layout {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .cz-page__content .wp-block-woocommerce-checkout .wc-block-components-radio-control__secondary-label,
  .cz-page__content .wc-block-checkout .wc-block-components-radio-control__secondary-label {
    justify-self: start !important;
    text-align: left !important;
  }
}
