@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
}

:root {
  --noc-ink: #111111;
  --noc-muted: #6b6b6b;
  --noc-paper: #ffffff;
  --noc-soft: #f7f7f5;
  --noc-night: #0d0d0d;
  --noc-line: #dededb;
  --noc-danger: #b42318;
  --noc-font: "Satoshi", Arial, sans-serif;
  --noc-wide: 1880px;
  --noc-content: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--noc-paper);
  color: var(--noc-ink);
  font-family: var(--noc-font);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.012em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--noc-font);
}

button,
input,
select,
textarea {
  letter-spacing: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  border-radius: 0;
}

:focus-visible {
  outline: 2px solid var(--noc-ink);
  outline-offset: 3px;
}

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

.screen-reader-text:focus {
  top: 8px;
  left: 8px;
  z-index: 100000;
  width: auto !important;
  height: auto !important;
  padding: 12px 16px !important;
  clip: auto !important;
  background: #fff;
  color: #111;
}

.noc-site-shell {
  min-height: 100vh;
}

.noc-header {
  position: relative;
  z-index: 100;
  background: var(--noc-paper);
  border-top: 1px solid var(--noc-line);
  border-bottom: 1px solid var(--noc-line);
}

.noc-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100%, var(--noc-wide));
  min-height: 112px;
  margin: 0 auto;
  padding: 16px 24px;
}

.noc-header__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.noc-header__socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
}

.noc-header__socials svg,
.noc-footer__contact svg,
.noc-cart-icon,
.noc-cart-drawer svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.noc-header__logo {
  grid-column: 2;
  justify-self: center;
}

.noc-header__logo img,
.noc-header__logo .custom-logo {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.noc-header__actions {
  grid-column: 3;
  justify-self: end;
}

.noc-cart-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--noc-ink);
  font-size: 16px;
  cursor: pointer;
}

.noc-primary-nav {
  border-top: 1px solid var(--noc-line);
}

.noc-primary-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  width: min(100% - 48px, var(--noc-content));
  min-height: 54px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.noc-primary-nav li {
  position: relative;
  margin: 0;
}

.noc-primary-nav a {
  display: block;
  padding: 16px 0;
  font-size: 14px;
}

.noc-primary-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 190px;
  margin: 0;
  padding: 8px 20px;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  border: 1px solid var(--noc-line);
  list-style: none;
  transition: opacity 0.15s ease;
}

.noc-primary-nav li:hover > .sub-menu,
.noc-primary-nav li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
}

.noc-main {
  width: min(100% - 48px, var(--noc-wide));
  margin-inline: auto;
}

.noc-catalog {
  padding: 96px 0 110px;
}

.noc-catalog__header {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 134px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--noc-line);
}

.noc-catalog__header h1 {
  margin: 0;
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.noc-catalog__groups {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.noc-catalog__groups a {
  display: grid;
  place-items: center;
  min-width: 104px;
  min-height: 58px;
  padding: 12px 24px;
  border: 1px solid var(--noc-line);
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
}

.noc-catalog__groups a:hover,
.noc-catalog__groups a.is-active {
  background: var(--noc-ink);
  border-color: var(--noc-ink);
  color: #fff;
}

.noc-product-feed {
  padding-top: 52px;
}

.woocommerce ul.products,
.wc-block-grid__products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--noc-line);
  border-left: 1px solid var(--noc-line);
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.wc-block-grid__product {
  position: relative;
  width: auto !important;
  margin: 0 !important;
  padding: 28px 28px 24px;
  border-right: 1px solid var(--noc-line);
  border-bottom: 1px solid var(--noc-line);
  text-align: left;
}

.woocommerce ul.products li.product a img,
.wc-block-grid__product-image img {
  display: block;
  width: 100%;
  margin: 0 0 18px !important;
  aspect-ratio: 7 / 8;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.015);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.wc-block-grid__product-title {
  margin: 0 0 10px;
  padding: 0 !important;
  color: var(--noc-ink);
  font-size: 18px !important;
  font-weight: 400;
  line-height: 1.3;
}

.woocommerce ul.products li.product .price,
.wc-block-grid__product-price {
  margin: 0;
  color: var(--noc-ink) !important;
  font-size: 16px !important;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .added_to_cart,
.wc-block-grid__product-add-to-cart {
  margin-top: 14px;
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-element-button,
.wc-block-components-button {
  min-height: 48px;
  padding: 13px 22px !important;
  background: var(--noc-ink) !important;
  border: 1px solid var(--noc-ink) !important;
  border-radius: 0 !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-transform: none !important;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.wc-block-components-button:hover {
  background: #2b2926 !important;
}

.noc-main--shop {
  padding: 62px 0 110px;
}

.woocommerce .woocommerce-breadcrumb {
  margin: 0 0 42px;
  color: var(--noc-muted);
  font-size: 13px;
}

.woocommerce-products-header__title,
.noc-page-header h1 {
  margin: 0 0 44px;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 30px;
}

.woocommerce .woocommerce-ordering select {
  min-height: 44px;
  padding: 8px 38px 8px 12px;
  background: #fff;
  border: 1px solid var(--noc-line);
}

/* Product group archives mirror the approved static catalogue layout. */
.noc-category-archive {
  padding: 68px 0 96px;
}

.noc-category-archive__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(20px, 2.4vw, 38px);
  min-height: 116px;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--noc-line);
}

.noc-category-archive__header h1 {
  margin: 0 0 22px;
  color: var(--noc-ink);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.92;
}

.noc-category-archive__groups {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.noc-category-archive__groups a {
  display: inline-flex;
  min-width: 78px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 5px 24px;
  border: 2px solid #e9e9e9;
  background: transparent;
  color: var(--noc-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.noc-category-archive__groups a:hover,
.noc-category-archive__groups a:focus-visible {
  border-color: var(--noc-ink);
  color: var(--noc-ink);
}

.noc-category-archive__groups a:focus-visible {
  outline: 1px solid var(--noc-ink);
  outline-offset: 3px;
}

.noc-category-archive__groups a.is-active {
  border-color: var(--noc-ink);
  background: var(--noc-ink);
  color: #fff;
}

.noc-category-archive__description {
  margin-top: 64px;
  padding-top: 38px;
  border-top: 1px solid var(--noc-line);
  color: var(--noc-muted);
  font-size: 18px;
  line-height: 1.65;
}

.noc-category-archive__description > :first-child {
  margin-top: 0;
}

.noc-category-archive__description > :last-child {
  margin-bottom: 0;
}

.noc-category-archive__description.is-empty {
  display: none;
}

@media (max-width: 767px) {
  .noc-category-archive {
    padding: 46px 0 72px;
  }

  .noc-category-archive__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    min-height: 0;
    padding-bottom: 28px;
  }

  .noc-category-archive__header h1,
  .noc-category-archive__groups {
    margin-bottom: 0;
  }

  .noc-category-archive__groups a {
    min-width: 72px;
    min-height: 44px;
    padding-inline: 20px;
  }

  .noc-category-archive__description {
    margin-top: 46px;
    padding-top: 28px;
    font-size: 16px;
  }
}

.single-product div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  gap: clamp(50px, 7vw, 120px);
  align-items: start;
}

.single-product div.product .woocommerce-product-gallery,
.single-product div.product .summary {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

.single-product div.product .summary {
  position: sticky;
  top: 24px;
  padding-top: 6vw;
}

.single-product .product_title {
  margin: 0 0 30px;
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.single-product .woocommerce-product-details__short-description {
  margin-bottom: 34px;
  color: var(--noc-muted);
  font-size: 17px;
}

.single-product div.product p.price {
  margin: 30px 0;
  color: var(--noc-ink);
  font-size: 34px;
  font-weight: 700;
}

.single-product table.variations {
  margin-bottom: 26px;
  border: 0;
}

.single-product table.variations th,
.single-product table.variations td {
  padding: 8px 0;
  border: 0;
  text-align: left;
}

.single-product table.variations th {
  width: 120px;
  font-size: 16px;
  text-transform: none;
}

.single-product table.variations select {
  width: 100%;
  min-height: 48px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--noc-line);
}

.woocommerce .quantity {
  display: inline-grid;
  grid-template-columns: 38px 46px 38px;
  height: 48px;
  vertical-align: top;
}

.woocommerce .quantity .qty {
  width: 46px;
  min-height: 48px;
  padding: 0;
  border: 1px solid var(--noc-line);
  text-align: center;
  appearance: textfield;
}

.single-product .single_add_to_cart_button {
  min-width: min(100%, 420px);
  margin-left: 10px;
}

.single-product .product_meta {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--noc-line);
  color: var(--noc-muted);
  font-size: 13px;
}

.single-product .woocommerce-tabs,
.single-product .related,
.single-product .up-sells {
  grid-column: 1 / -1;
  width: 100%;
}

.single-product .woocommerce-tabs {
  margin-top: 72px;
}

.single-product .woocommerce-tabs ul.tabs {
  display: none;
}

.single-product .woocommerce-tabs .panel {
  margin: 0 0 78px !important;
}

.single-product .woocommerce-tabs .panel h2,
.single-product .related > h2,
.single-product .up-sells > h2 {
  margin: 0 0 32px;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 400;
  line-height: 1;
}

.single-product .woocommerce-tabs .panel p {
  max-width: none;
  color: var(--noc-muted);
  font-size: 18px;
  line-height: 1.7;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  margin: 0 0 28px !important;
  padding: 18px 22px 18px 52px !important;
  background: var(--noc-soft);
  border: 1px solid var(--noc-line);
  border-top: 1px solid var(--noc-line) !important;
  color: var(--noc-ink);
}

.woocommerce-error {
  border-color: rgba(180, 35, 24, 0.38);
}

.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout-review-order {
  border: 1px solid var(--noc-ink);
}

.woocommerce-cart-form {
  width: calc(66.666% - 28px);
  float: left;
  padding: 28px;
}

.cart-collaterals {
  width: 33.333%;
  float: right;
}

.woocommerce .cart-collaterals .cart_totals {
  width: 100%;
  padding: 32px;
}

.woocommerce table.shop_table {
  margin: 0;
  border: 0;
  border-collapse: collapse;
  border-radius: 0;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 18px 12px;
  border-bottom: 1px solid var(--noc-line);
}

.woocommerce table.shop_table img {
  width: 86px;
}

.woocommerce a.remove {
  color: var(--noc-ink) !important;
  font-weight: 400;
}

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

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  width: 100%;
  margin: 22px 0 0;
}

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

.woocommerce form .form-row label {
  margin-bottom: 8px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single,
.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
  min-height: 56px;
  padding: 13px 15px;
  background: #fff;
  border: 1px solid var(--noc-line);
  border-radius: 0;
  box-shadow: none;
}

.woocommerce form .form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.woocommerce form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.9fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

.woocommerce form.checkout #customer_details,
.woocommerce form.checkout #order_review_heading,
.woocommerce form.checkout #order_review {
  width: 100%;
  float: none;
}

.woocommerce form.checkout #customer_details {
  grid-row: 1 / span 2;
}

.woocommerce form.checkout #order_review_heading {
  grid-column: 2;
  margin: 0;
  padding: 32px 32px 0;
  border: 1px solid var(--noc-ink);
  border-bottom: 0;
  font-size: 36px;
  font-weight: 400;
}

.woocommerce form.checkout #order_review {
  grid-column: 2;
  padding: 24px 32px 32px;
  border-top: 0;
}

.woocommerce-billing-fields > h3,
.woocommerce-additional-fields > h3 {
  margin: 0 0 32px;
  font-size: 36px;
  font-weight: 400;
}

.woocommerce-additional-fields {
  margin-top: 60px;
}

.woocommerce-checkout #payment {
  background: transparent;
  border-radius: 0;
}

.woocommerce-checkout #payment ul.payment_methods {
  padding: 24px 0;
  border-bottom: 1px solid var(--noc-line);
}

.woocommerce-checkout #payment div.payment_box {
  background: var(--noc-soft);
  color: var(--noc-muted);
}

.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: var(--noc-soft);
}

.woocommerce-checkout #payment div.form-row {
  padding: 24px 0 0;
}

.woocommerce-checkout #place_order {
  width: 100%;
}

.wc-block-cart,
.wc-block-checkout {
  width: min(100%, var(--noc-content));
  margin: 62px auto 110px;
}

.wc-block-components-sidebar-layout .wc-block-components-main {
  padding-right: clamp(32px, 5vw, 76px);
}

.wc-block-components-sidebar {
  padding: 30px !important;
  border: 1px solid var(--noc-ink);
}

.noc-page,
.noc-content-list {
  max-width: var(--noc-content);
  padding: 76px 0 110px;
}

.noc-page__content {
  color: #303030;
  font-size: 17px;
}

.noc-page__content > * {
  max-width: 900px;
}

.noc-page__content > .alignwide {
  max-width: var(--noc-content);
}

.noc-page__content h2,
.noc-page__content h3,
.noc-page__content h4 {
  margin: 2.2em 0 0.75em;
  color: var(--noc-ink);
  line-height: 1.2;
}

/* Legal documents mirror the approved static pages. */
.noc-legal {
  display: grid;
  align-content: center;
  width: min(100%, 1540px);
  min-height: clamp(420px, 62vh, 720px);
  margin: 0 auto;
  padding: 90px 30px;
  background: var(--noc-paper);
}

.noc-legal--document {
  align-content: start;
  width: min(100%, 1240px);
  min-height: 0;
  padding-block: 96px 120px;
}

.noc-legal__article {
  display: grid;
  gap: 64px;
}

.noc-legal__header {
  padding-bottom: 50px;
  border-bottom: 1px solid var(--noc-line);
}

.noc-legal__eyebrow {
  margin: 0 0 22px;
  color: var(--noc-muted);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.noc-legal h1 {
  max-width: 980px;
  margin: 0;
  color: var(--noc-ink);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.noc-policy {
  max-width: 940px;
  color: #353535;
  font-size: 16px;
  line-height: 1.72;
}

.noc-policy > div {
  margin-bottom: 52px;
}

.noc-policy > div:last-child,
.noc-policy > p:last-child,
.noc-policy > ol > li:last-child {
  margin-bottom: 0;
}

.noc-policy > p {
  margin: 0 0 24px;
}

.noc-policy > ol {
  margin: 0;
  padding-left: 24px;
}

.noc-policy > ol > li {
  margin-bottom: 18px;
  padding-left: 8px;
}

.noc-policy h4,
.noc-policy h5 {
  margin: 0 0 20px;
  color: var(--noc-ink);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.noc-policy h5 + div,
.noc-policy h5 + div + div,
.noc-policy h5 + div > div,
.noc-policy h5 + div + div > div {
  margin-top: 10px;
}

.noc-policy strong {
  color: var(--noc-ink);
  font-weight: 600;
}

.noc-policy a {
  color: var(--noc-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.noc-policy__details {
  display: grid;
  gap: 8px;
  padding: 26px 28px;
  border: 1px solid var(--noc-line);
  background: #fafafa;
}

.noc-entry-card {
  padding: 30px 0;
  border-top: 1px solid var(--noc-line);
}

.noc-entry-card h2 {
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 400;
}

.noc-error-page,
.noc-empty {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 80px 24px;
  text-align: center;
}

.noc-error-page h1,
.noc-empty h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 400;
}

.noc-eyebrow {
  margin: 0;
  color: var(--noc-muted);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: none;
}

.noc-footer {
  background: var(--noc-night);
  color: #fff;
}

.noc-footer__inner {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.34fr);
  gap: 90px;
  width: min(100%, var(--noc-wide));
  margin: 0 auto;
  padding: 94px 24px 80px;
}

.noc-footer__brand {
  display: flex;
  align-items: center;
  gap: 66px;
}

.noc-footer__brand img,
.noc-footer__brand .custom-logo {
  display: block;
  width: 164px;
  height: 164px;
  object-fit: contain;
}

.noc-footer__title {
  margin: 0 0 14px;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.08;
}

.noc-footer__text {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.noc-footer__contact {
  display: grid;
  align-content: center;
  gap: 16px;
}

.noc-footer__label {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: none;
}

.noc-footer__contact a {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  font-size: 22px;
}

.noc-footer__instagram-icon {
  position: relative;
  display: inline-flex;
}

.noc-footer__instagram-icon sup {
  position: absolute;
  top: -10px;
  right: -8px;
}

.noc-footer__widgets {
  width: min(100% - 48px, var(--noc-wide));
  margin: 0 auto;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.noc-footer__bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 22px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.noc-footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.noc-footer__legal a {
  text-decoration: none;
}

.noc-footer a {
  text-decoration: none !important;
}

.noc-footer__copyright {
  white-space: nowrap;
}

.noc-footer__copyright a {
  color: inherit;
}

.noc-footer__disclaimer {
  grid-column: 1 / -1;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.noc-cart-overlay {
  position: fixed;
  z-index: 9998;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.noc-cart-overlay.is-open {
  opacity: 1;
}

.noc-cart-drawer {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(100%, 470px);
  height: 100dvh;
  overflow: auto;
  background: #fff;
  color: var(--noc-ink);
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.noc-cart-drawer.is-open {
  transform: translateX(0);
}

.noc-cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--noc-line);
}

.noc-cart-drawer__header h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 400;
}

.noc-cart-drawer__header button {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.noc-cart-drawer .widget_shopping_cart_content {
  padding: 22px;
}

.noc-cart-drawer .woocommerce-mini-cart {
  margin: 0;
  padding: 0;
  list-style: none;
}

.noc-cart-drawer .woocommerce-mini-cart-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--noc-line);
}

.noc-cart-drawer .woocommerce-mini-cart-item img {
  float: none;
  width: 76px;
  margin: 0;
}

.noc-cart-drawer .woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  margin: 26px 0 16px;
  padding-top: 20px;
  border-top: 1px solid var(--noc-line);
  font-size: 22px;
}

.noc-cart-drawer .woocommerce-mini-cart__buttons {
  display: grid;
  gap: 10px;
}

.noc-cart-is-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .woocommerce ul.products,
  .wc-block-grid__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .single-product div.product {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }

  .woocommerce form.checkout {
    grid-template-columns: 1fr;
  }

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

  .woocommerce-cart-form,
  .cart-collaterals {
    width: 100%;
    float: none;
  }

  .cart-collaterals {
    margin-top: 32px;
  }

  .noc-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .noc-header__inner {
    min-height: 70px;
    padding: 8px 16px;
  }

  .noc-header__socials {
    gap: 0;
  }

  .noc-header__socials a {
    width: 34px;
  }

  .noc-header__logo img,
  .noc-header__logo .custom-logo {
    width: 52px;
    height: 52px;
  }

  .noc-cart-trigger {
    gap: 4px;
    font-size: 13px;
  }

  .noc-primary-nav {
    overflow-x: auto;
  }

  .noc-primary-nav__list {
    justify-content: flex-start;
    width: max-content;
    min-width: 100%;
    padding: 0 16px;
  }

  .noc-main {
    width: calc(100% - 32px);
  }

  .noc-catalog,
  .noc-main--shop,
  .noc-page,
  .noc-content-list {
    padding-top: 48px;
  }

  .noc-legal--document {
    padding: 64px 22px 82px;
  }

  .noc-legal__article {
    gap: 42px;
  }

  .noc-legal__header {
    padding-bottom: 34px;
  }

  .noc-policy {
    font-size: 14px;
    line-height: 1.68;
  }

  .noc-policy > div {
    margin-bottom: 40px;
  }

  .noc-policy__details {
    padding: 20px;
  }

  .noc-catalog__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .noc-catalog__header h1 {
    font-size: 54px;
  }

  .noc-catalog__groups {
    gap: 8px;
  }

  .noc-catalog__groups a {
    min-width: 76px;
    min-height: 44px;
    padding: 8px 16px;
    font-size: 12px;
  }

  .noc-product-feed {
    padding-top: 28px;
  }

  .woocommerce ul.products li.product,
  .wc-block-grid__product {
    padding: 14px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px !important;
  }

  .single-product div.product {
    grid-template-columns: 1fr;
  }

  .single-product div.product .summary {
    position: static;
    padding-top: 10px;
  }

  .single-product .single_add_to_cart_button {
    width: calc(100% - 132px);
    min-width: 0;
  }

  .woocommerce-cart-form,
  .woocommerce .cart-collaterals .cart_totals,
  .woocommerce form.checkout #order_review_heading,
  .woocommerce form.checkout #order_review {
    padding-inline: 18px;
  }

  .woocommerce table.shop_table_responsive tr td::before {
    font-weight: 500;
  }

  .wc-block-components-sidebar-layout {
    display: block !important;
  }

  .wc-block-components-sidebar-layout .wc-block-components-main,
  .wc-block-components-sidebar {
    width: 100% !important;
    padding-right: 0;
  }

  .noc-footer__inner {
    gap: 50px;
    padding: 60px 22px 48px;
  }

  .noc-footer__brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .noc-footer__brand img,
  .noc-footer__brand .custom-logo {
    width: 112px;
    height: 112px;
  }

  .noc-footer__bottom {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .noc-footer__copyright {
    white-space: normal;
  }

  .noc-footer__legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .noc-footer__disclaimer {
    text-align: left;
  }
}

body.single-product .noc-main--shop {
  width: calc(100% - 40px);
  max-width: none;
  padding-top: 40px;
}

.single-product div.product {
  display: block;
}

.single-product .noc-product-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.single-product .noc-product-stage > .summary {
  align-self: start;
  top: 56px;
  padding-top: 100px;
}

.single-product .product_title {
  margin-bottom: 30px;
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.single-product .woocommerce-product-details__short-description {
  margin-bottom: 30px;
  color: #767676;
  font-size: 18px;
  line-height: 1.6;
}

.single-product div.product p.price {
  margin: 30px 0;
  font-size: 28px;
  font-weight: 600;
}

.single-product table.variations {
  margin-bottom: 10px;
}

.single-product table.variations tr {
  display: flex;
  align-items: center;
  min-height: 45px;
  margin-bottom: 15px;
}

.single-product table.variations th {
  width: 92px;
  padding: 0;
}

.single-product table.variations th label {
  font-size: 20px;
  font-weight: 600;
}

.single-product table.variations th label::after {
  content: " :";
}

.single-product table.variations td {
  display: flex;
  align-items: center;
  padding: 0;
}

.single-product .noc-variation-select,
.single-product .reset_variations {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.noc-variation-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.noc-variation-choice {
  display: inline-flex;
  min-width: 45px;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid #e9e9e9;
  background: transparent;
  color: #242424;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.noc-variation-choice.is-selected {
  border-color: #242424;
  box-shadow: inset 0 0 0 1px #242424;
}

.noc-variation-choices--color {
  align-items: center;
  gap: 14px;
}

.noc-variation-choice--color {
  position: relative;
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  padding: 0;
  border: 1px solid rgba(36, 36, 36, 0.2);
  border-radius: 50%;
  background: var(--noc-swatch-color, #777777);
  box-shadow: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.noc-variation-choice--color:hover {
  transform: scale(1.08);
}

.noc-variation-choice--color.is-selected {
  border-color: #fff;
  box-shadow: 0 0 0 2px #242424;
}

.noc-variation-choice--color:focus-visible {
  outline: 2px solid #242424;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .noc-variation-choice--color {
    transition: none;
  }
}

.single-product .woocommerce-variation-price {
  display: none;
}

.single-product form.cart .quantity {
  display: inline-grid;
  grid-template-columns: 38px 46px 38px;
  width: 122px;
  margin: 0 10px 0 0 !important;
}

.single-product form.cart .quantity button,
.single-product form.cart .quantity .qty {
  width: 100%;
  height: 48px;
  min-height: 48px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--noc-line);
  color: var(--noc-muted);
  text-align: center;
}

.single-product form.cart .quantity .qty {
  border-right: 0;
  border-left: 0;
}

.single-product .single_add_to_cart_button {
  width: calc(100% - 132px);
  max-width: none;
  margin-left: 0;
}

.noc-product-characteristics {
  display: grid;
  margin-top: 26px;
}

.noc-product-characteristics > div {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 0;
  border-bottom: 1px solid var(--noc-line);
  font-size: 18px;
}

.noc-product-characteristics > div span:last-child {
  color: var(--noc-muted);
  text-align: right;
}

/* Single-frame product gallery with restrained hover controls. */
.single-product div.product .woocommerce-product-gallery {
  position: relative;
  overflow: hidden;
}

.single-product .woocommerce-product-gallery__wrapper {
  display: block !important;
  width: 100% !important;
  transform: none !important;
}

.single-product .woocommerce-product-gallery__image {
  display: none !important;
  position: relative;
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  overflow: hidden;
}

.single-product .woocommerce-product-gallery__image.is-noc-active,
.single-product .woocommerce-product-gallery__image:only-child {
  display: block !important;
}

.single-product .woocommerce-product-gallery__image a,
.single-product .woocommerce-product-gallery__image img:not(.zoomImg) {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 450ms cubic-bezier(.22, .61, .36, 1);
  transform: scale(1);
}

.single-product .woocommerce-product-gallery__image .zoomImg {
  display: none !important;
}

@media (hover: hover) {
  .single-product .woocommerce-product-gallery__image.is-noc-active:hover img:not(.zoomImg),
  .single-product .woocommerce-product-gallery__image:only-child:hover img:not(.zoomImg) {
    transform: scale(1.055);
  }
}

.noc-single-gallery__controls {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.noc-single-gallery__arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 56px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .88);
  color: #242424;
  opacity: 0;
  pointer-events: auto;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 180ms ease, background-color 180ms ease;
}

.noc-single-gallery__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.noc-single-gallery__arrow--prev {
  left: 16px;
}

.noc-single-gallery__arrow--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.noc-single-gallery__arrow--next {
  right: 16px;
}

.noc-single-gallery__arrow--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.single-product .woocommerce-product-gallery:hover .noc-single-gallery__arrow,
.single-product .woocommerce-product-gallery:focus-within .noc-single-gallery__arrow {
  opacity: 1;
}

.noc-single-gallery__arrow:hover,
.noc-single-gallery__arrow:focus-visible {
  background: #fff;
  outline: 1px solid #242424;
  outline-offset: -1px;
}

.single-product .flex-control-thumbs {
  display: none !important;
}

.single-product .woocommerce-product-gallery__trigger {
	display: none !important;
}

.single-product .woocommerce-tabs {
  margin-top: 80px;
}

.single-product .woocommerce-tabs .panel {
  margin-bottom: 20px !important;
}

.single-product .woocommerce-tabs .panel h2 {
  margin-bottom: 28px;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.single-product .woocommerce-tabs .panel p {
  color: #767676;
  font-size: 20px;
  line-height: 1.6;
}

.single-product .related {
  margin-top: 0;
}

.single-product .noc-related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.single-product .noc-related-header > h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.noc-related-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.noc-related-arrow {
  position: relative;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--noc-line);
  border-radius: 50%;
  background: #fff;
  color: var(--noc-ink);
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.noc-related-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
}

.noc-related-arrow--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.noc-related-arrow--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.noc-related-arrow:hover:not(:disabled),
.noc-related-arrow:focus-visible {
  border-color: var(--noc-ink);
}

.noc-related-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.single-product .related ul.products {
  display: flex !important;
  width: 100%;
  grid-template-columns: none !important;
  gap: 0 !important;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.single-product .related ul.products::-webkit-scrollbar {
  display: none;
}

.single-product .related ul.products > li.product {
  width: 25% !important;
  min-width: 25%;
  flex: 0 0 25%;
  scroll-snap-align: start;
}

.single-product .related > h2,
.single-product .up-sells > h2 {
  margin-bottom: 28px;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

@media (max-width: 720px) {
  body.single-product .noc-main--shop {
    width: calc(100% - 30px);
  }

  .single-product div.product {
    display: block;
  }

  .single-product .noc-product-stage {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .single-product .noc-product-stage > .summary {
    top: auto;
    padding-top: 0;
  }

  .single-product .product_title {
    font-size: 28px;
  }

  .noc-single-gallery__arrow {
    width: 42px;
    height: 50px;
    opacity: 1;
  }

  .noc-single-gallery__arrow--prev {
    left: 10px;
  }

  .noc-single-gallery__arrow--next {
    right: 10px;
  }

  .single-product .woocommerce-tabs {
    margin-top: 36px;
  }

  .single-product .woocommerce-tabs .panel h2,
  .single-product .related > h2,
  .single-product .up-sells > h2 {
    font-size: 38px;
  }

  .single-product .noc-related-header > h2 {
    font-size: 38px;
  }

  .noc-related-arrow {
    width: 44px;
    height: 44px;
  }

  .single-product .related ul.products > li.product {
    width: 50% !important;
    min-width: 50%;
    flex-basis: 50%;
  }

  .single-product .woocommerce-tabs .panel p {
    font-size: 16px;
  }

  .single-product .single_add_to_cart_button {
    width: calc(100% - 132px);
  }
}

@media (max-width: 480px) {
  .single-product .noc-related-header {
    gap: 12px;
  }

  .noc-related-controls {
    gap: 8px;
  }

  .noc-related-arrow {
    width: 40px;
    height: 40px;
  }

  .single-product .related ul.products > li.product {
    width: 100% !important;
    min-width: 100%;
    flex-basis: 100%;
  }
}

/* Cart drawer and commerce flow parity with the approved static pages. */
.noc-cart-drawer {
  grid-template-rows: auto minmax(0, 1fr);
  width: min(440px, 100vw);
  overflow: hidden;
}

.noc-cart-drawer__header {
  min-height: 76px;
  padding: 14px 20px;
}

.noc-cart-drawer__header h2 {
  font-size: 26px;
}

.noc-cart-drawer__header button {
  font-size: 17px;
  font-weight: 600;
}

.noc-cart-drawer__header button svg {
  width: 23px;
  height: 23px;
}

.noc-cart-drawer .widget_shopping_cart_content {
  min-height: 0;
  height: 100%;
  padding: 0;
}

.noc-mini-cart {
  display: flex;
  min-height: 0;
  height: 100%;
  flex-direction: column;
}

.noc-mini-cart__body {
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  padding: 12px 20px 22px;
}

.noc-cart-drawer .noc-mini-cart ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.noc-cart-drawer .noc-mini-cart li {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 20px;
  gap: 14px;
  padding: 13px 0 18px;
  border-bottom: 1px solid var(--noc-line);
}

.noc-mini-cart__image img {
  display: block;
  width: 76px !important;
  height: 80px;
  margin: 0 !important;
  background: #fafafa;
  object-fit: contain;
}

.noc-mini-cart__image {
  grid-column: 1;
  grid-row: 1;
  width: 76px !important;
  min-width: 0;
  max-width: 76px;
  align-self: center;
  overflow: hidden;
}

.noc-mini-cart__item-copy {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  min-width: 0;
  align-content: center;
  gap: 4px;
  overflow-wrap: anywhere;
}

.noc-mini-cart__item-copy strong,
.noc-mini-cart__item-copy strong a {
  color: var(--noc-ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.noc-mini-cart__item-copy .variation {
  margin: 0;
  color: var(--noc-muted);
  font-size: 12px;
}

.noc-mini-cart__item-copy .variation dt,
.noc-mini-cart__item-copy .variation dd {
  display: inline;
  float: none;
  margin: 0 4px 0 0;
  padding: 0;
}

.noc-mini-cart__item-copy .variation dd + dt::before {
  content: " · ";
}

.noc-mini-cart__item-copy > span {
  color: var(--noc-muted);
  font-size: 12px;
}

.noc-cart-drawer .noc-mini-cart__remove {
  grid-column: 3;
  grid-row: 1;
  position: static;
  align-self: start;
  width: 20px;
  height: 20px;
  color: var(--noc-muted) !important;
  font-size: 18px;
  font-weight: 300;
  line-height: 18px;
}

.noc-mini-cart__footer {
  display: grid;
  gap: 11px;
  padding: 19px 20px;
  border-top: 1px solid var(--noc-line);
  background: #fff;
}

.noc-cart-drawer .noc-mini-cart__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 4px;
  padding: 0;
  border: 0;
  font-size: 22px;
}

.noc-mini-cart__button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.noc-mini-cart__button--light {
  background: #f5f5f5;
  color: var(--noc-ink);
}

.noc-mini-cart__button--dark {
  background: #292724;
  color: #fff;
}

.noc-mini-cart--empty {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 20px;
  padding: 40px 24px;
  text-align: center;
}

.noc-commerce {
  box-sizing: border-box;
  width: calc(100% - 30px);
  max-width: none;
  min-height: 650px;
  margin: 0 auto;
  padding: 28px 0 110px;
}

.noc-commerce-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 64px;
  color: var(--noc-muted);
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.25;
}

.noc-commerce-steps a,
.noc-commerce-steps span {
  color: inherit;
  text-decoration: none;
}

.noc-commerce-steps .is-active {
  color: var(--noc-ink);
  text-decoration: underline;
  text-underline-offset: 8px;
}

.noc-cart-page {
  padding-top: 20px;
  padding-bottom: 88px;
}

.noc-cart-page .noc-commerce-steps {
  gap: 12px;
  margin-bottom: 44px;
  font-size: clamp(22px, 2.1vw, 32px);
}

.noc-cart-page .woocommerce-cart-form {
  width: calc(66.666% - 44px);
  padding: 0;
  border: 0;
}

.noc-cart-page .cart-collaterals {
  width: 30%;
}

.noc-cart-page .woocommerce .cart-collaterals .cart_totals {
  width: 100%;
  padding: 28px;
  border: 2px solid #292724;
}

.noc-cart-page .cart_totals h2 {
  margin: 0 0 22px;
  font-size: 30px;
  font-weight: 400;
}

.noc-cart-page .woocommerce table.shop_table th,
.noc-cart-page .woocommerce table.shop_table td {
  padding: 16px 10px;
}

.noc-cart-page .woocommerce-cart-form table.cart thead th {
  color: var(--noc-ink);
  font-size: 17px;
  font-weight: 500;
}

.noc-cart-page table.cart .product-remove {
  width: 34px;
}

.noc-cart-page table.cart .product-thumbnail {
  width: 84px;
}

.noc-cart-page table.cart .product-thumbnail img {
  width: 76px;
  height: 80px;
  background: #fafafa;
  object-fit: contain;
}

.noc-cart-page table.cart .product-name a {
  color: var(--noc-ink);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.noc-cart-page table.cart .product-name .variation {
  margin-top: 6px;
  color: var(--noc-muted);
  font-size: 13px;
}

.noc-cart-page table.cart .product-price {
  width: 130px;
  color: var(--noc-muted);
}

.noc-cart-page table.cart .product-quantity {
  width: 150px;
}

.noc-cart-page table.cart .product-subtotal {
  width: 140px;
  font-weight: 600;
}

.noc-cart-page .quantity,
.noc-checkout-page .quantity {
  display: grid;
  grid-template-columns: 36px 46px 36px;
  width: 118px;
}

.noc-cart-page .quantity {
  grid-template-columns: 30px 38px 30px;
  width: 98px;
}

.noc-cart-page .quantity button,
.noc-checkout-page .quantity button,
.noc-cart-page .quantity .qty,
.noc-checkout-page .quantity .qty {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 0;
  border: 1px solid var(--noc-line);
  border-right: 0;
  background: #fff;
  color: var(--noc-muted);
  text-align: center;
}

.noc-cart-page .quantity button:last-child,
.noc-checkout-page .quantity button:last-child {
  border-right: 1px solid var(--noc-line);
}

.noc-cart-page .quantity button,
.noc-cart-page .quantity .qty {
  min-height: 42px;
}

.noc-cart-page table.cart td.actions {
  padding: 24px 0 0;
  border: 0;
}

.noc-cart-page table.cart td.actions .coupon {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(260px, 1fr);
  gap: 10px;
  width: 100%;
}

.noc-cart-page table.cart td.actions .coupon .input-text {
  width: 100%;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--noc-line);
}

.noc-cart-page table.cart td.actions .coupon button {
  min-height: 44px;
}

.noc-cart-page table.cart td.actions > button[name="update_cart"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.noc-cart-page .cart_totals table th,
.noc-cart-page .cart_totals table td {
  padding: 16px 0 !important;
  font-size: 16px;
}

.noc-cart-page .cart_totals table td {
  text-align: right;
}

.noc-cart-page .order-total th,
.noc-cart-page .order-total td {
  font-size: 20px !important;
}

.noc-cart-page .wc-proceed-to-checkout a.checkout-button {
  min-height: 52px;
  padding: 16px 18px !important;
}

.noc-checkout-notices {
  display: grid;
  gap: 14px;
  margin-bottom: 48px;
}

.noc-checkout-notices p {
  margin: 0;
  font-weight: 600;
}

.noc-checkout-notices a {
  color: var(--noc-ink);
  text-underline-offset: 3px;
}

.noc-checkout-page .woocommerce-form-login-toggle,
.noc-checkout-page .woocommerce-form-coupon-toggle {
  display: none;
}

.noc-checkout-page .woocommerce form.checkout {
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.95fr);
  column-gap: clamp(48px, 5vw, 80px);
  row-gap: 0;
}

.noc-checkout-page {
  padding-top: 20px;
  padding-bottom: 88px;
}

.noc-checkout-page .noc-commerce-steps {
  gap: 12px;
  margin-bottom: 44px;
  font-size: clamp(22px, 2.1vw, 32px);
}

.noc-checkout-page .woocommerce form.checkout #order_review_heading {
  align-self: end;
  padding: 28px 28px 0;
  border-width: 2px;
  font-size: 28px;
}

.noc-checkout-page .woocommerce form.checkout #order_review {
  align-self: start;
  padding: 20px 28px 28px;
  border-width: 2px;
}

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

.noc-checkout-page .woocommerce-billing-fields > h3,
.noc-checkout-page .woocommerce-additional-fields > h3 {
  font-size: 34px;
}

.noc-checkout-page .woocommerce-billing-fields > h3,
.noc-checkout-page .woocommerce-additional-fields > h3 {
  font-size: 0;
}

.noc-checkout-page .woocommerce-billing-fields > h3::before {
  content: "Данные покупателя";
  font-size: 28px;
}

.noc-checkout-page .woocommerce-additional-fields > h3::before {
  content: "Дополнительная информация";
  font-size: 28px;
}

.noc-checkout-page .noc-hidden-checkout-field {
  display: none !important;
}

.noc-checkout-page #customer_details::after,
.noc-checkout-page .woocommerce-billing-fields__field-wrapper::after {
  display: table;
  clear: both;
  content: "";
}

.noc-checkout-page .woocommerce form .form-row input.input-text,
.noc-checkout-page .woocommerce form .form-row textarea,
.noc-checkout-page .woocommerce form .form-row select {
  min-height: 44px;
}

.noc-checkout-page #order_comments {
  min-height: 180px;
  padding: 14px 16px;
  line-height: 1.5;
  resize: vertical;
}

.noc-checkout-page .woocommerce-checkout-review-order-table thead th {
  font-size: 16px;
  font-weight: 500;
}

.noc-checkout-page .woocommerce-checkout-review-order-table .product-total {
  width: 155px;
  text-align: right;
  white-space: nowrap;
}

.noc-checkout-product {
  display: grid;
  grid-template-columns: 16px 64px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.noc-checkout-product__remove {
  align-self: start;
  margin-top: 4px;
}

.noc-checkout-product__image img {
  display: block;
  width: 64px !important;
  height: 66px;
  background: #fafafa;
  object-fit: contain;
}

.noc-checkout-product__copy {
  display: grid;
  gap: 4px;
}

.noc-checkout-product__copy strong {
  font-size: 14px;
}

.noc-checkout-product__copy .variation {
  margin: 0;
  color: var(--noc-muted);
  font-size: 11px;
}

.noc-checkout-product__copy .quantity {
  grid-template-columns: 30px 38px 30px;
  width: 98px;
  margin-top: 5px;
}

.noc-checkout-product__copy .quantity button,
.noc-checkout-product__copy .quantity .qty {
  min-height: 42px;
}

.noc-checkout-page .woocommerce-checkout-review-order-table tfoot th,
.noc-checkout-page .woocommerce-checkout-review-order-table tfoot td {
  padding: 16px 0;
  font-size: 16px;
}

.noc-checkout-page .woocommerce-checkout-review-order-table tfoot td {
  text-align: right;
  white-space: nowrap;
}

.noc-checkout-page .woocommerce-checkout-review-order-table .order-total th,
.noc-checkout-page .woocommerce-checkout-review-order-table .order-total td {
  font-size: 20px;
}

.noc-checkout-page #payment .payment_methods {
  border-top: 1px solid var(--noc-line);
}

.noc-checkout-page #place_order {
  min-height: 52px;
}

@media (max-width: 1100px) {
  .noc-cart-page .woocommerce-cart-form,
  .noc-cart-page .cart-collaterals {
    width: 100%;
    float: none;
  }

  .noc-cart-page .cart-collaterals {
    margin-top: 44px;
  }

  .noc-checkout-page .woocommerce form.checkout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .noc-cart-drawer {
    width: calc(100vw - 20px);
  }

  .noc-cart-drawer__header {
    min-height: 76px;
    padding-inline: 18px;
  }

  .noc-cart-drawer__header h2 {
    font-size: 27px;
  }

  .noc-mini-cart__body,
  .noc-mini-cart__footer {
    padding-inline: 18px;
  }

  .noc-commerce {
    width: calc(100% - 30px);
    padding-top: 22px;
  }

  .noc-commerce-steps {
    gap: 8px;
    margin-bottom: 44px;
    font-size: 20px;
  }

  .noc-cart-page .woocommerce-cart-form table.cart .product-price,
  .noc-cart-page .woocommerce-cart-form table.cart .product-subtotal {
    display: none;
  }

  .noc-cart-page table.cart td.actions .coupon {
    grid-template-columns: 1fr;
  }

  .noc-checkout-page .woocommerce form.checkout #order_review_heading,
  .noc-checkout-page .woocommerce form.checkout #order_review,
  .noc-cart-page .woocommerce .cart-collaterals .cart_totals {
    padding-inline: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Storefront parity with the approved static build. */
:root {
  --noc-font: "Satoshi", Arial, sans-serif;
  --noc-line: rgba(17, 17, 17, 0.14);
}

.noc-header__inner {
  min-height: 90px;
  padding: 8px 15px;
}

.noc-header__socials {
  gap: 2px;
}

.noc-header__socials a {
  width: 42px;
  height: 42px;
}

.noc-header__logo img,
.noc-header__logo .custom-logo {
  width: 58px;
  height: 58px;
}

.noc-main {
  width: min(calc(100% - 60px), 1600px);
}

.noc-catalog {
  padding: 68px 0 96px;
}

.noc-catalog__header {
  gap: clamp(20px, 2.4vw, 38px);
  min-height: 116px;
  padding-bottom: 22px;
}

.noc-catalog__header h1 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.92;
}

.noc-catalog__groups {
  gap: 10px;
}

.noc-catalog__groups a {
  min-width: 78px;
  min-height: 48px;
  padding: 5px 24px;
  border: 2px solid #e9e9e9;
  font-size: 14px;
  font-weight: 600;
}

.noc-catalog__groups a:hover,
.noc-catalog__groups a:focus-visible,
.noc-catalog__groups a.is-active {
  border-color: var(--noc-ink);
  background: transparent;
  color: var(--noc-ink);
}

.noc-product-feed {
  padding-top: 42px;
}

.noc-product-feed ul.products,
.noc-category-archive__products ul.products,
.noc-main--shop ul.products,
.single-product ul.products,
.wc-block-grid__products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--noc-line);
  border-left: 1px solid var(--noc-line);
}

.noc-product-feed ul.products::before,
.noc-product-feed ul.products::after,
.noc-category-archive__products ul.products::before,
.noc-category-archive__products ul.products::after,
.noc-main--shop ul.products::before,
.noc-main--shop ul.products::after {
  display: none;
}

.noc-product-feed ul.products li.product,
.noc-category-archive__products ul.products li.product,
.noc-main--shop ul.products li.product,
.single-product ul.products li.product,
.wc-block-grid__product {
	position: relative;
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0;
  border-right: 1px solid var(--noc-line);
  border-bottom: 1px solid var(--noc-line);
  background: var(--noc-paper);
  text-align: left;
}

.noc-product-card__link {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 430 / 491;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.noc-product-card__media {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  overflow: hidden;
  background: #fff;
}

.noc-product-feed ul.products li.product .noc-product-card__media img,
.noc-category-archive__products ul.products li.product .noc-product-card__media img,
.noc-main--shop ul.products li.product .noc-product-card__media img,
.single-product ul.products li.product .noc-product-card__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  margin: 0 !important;
  object-fit: fill;
  opacity: 0;
  transform: none !important;
  transition: opacity 0.25s ease, transform 0.45s ease;
}

.noc-product-feed ul.products li.product .noc-product-card__media img.is-active,
.noc-category-archive__products ul.products li.product .noc-product-card__media img.is-active,
.noc-main--shop ul.products li.product .noc-product-card__media img.is-active,
.single-product ul.products li.product .noc-product-card__media img.is-active {
  z-index: 2;
  opacity: 1;
}

@media (hover: hover) {
  .noc-product-card:hover .noc-product-card__media img.is-active {
    transform: scale(1.018) !important;
  }
}

.noc-product-card__content {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  pointer-events: none;
}

.noc-product-feed ul.products li.product .woocommerce-loop-product__title,
.noc-category-archive__products ul.products li.product .woocommerce-loop-product__title,
.noc-main--shop ul.products li.product .woocommerce-loop-product__title,
.single-product ul.products li.product .woocommerce-loop-product__title {
  position: static;
  margin: 0;
  padding: 0 !important;
  color: var(--noc-ink);
  font-size: 15px !important;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.noc-product-feed ul.products li.product .price,
.noc-category-archive__products ul.products li.product .price,
.noc-main--shop ul.products li.product .price,
.single-product ul.products li.product .price {
  position: static;
  display: block;
  margin: 0;
  color: var(--noc-ink) !important;
  font-size: 14px !important;
  font-weight: 400;
  line-height: 16px;
}

.noc-product-card__nav {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.noc-product-card__arrow {
  position: relative;
  width: 30px;
  height: 30px;
  padding: 0;
  pointer-events: auto;
  visibility: hidden;
  border: 0;
  background: transparent;
  color: #343434;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.noc-product-card__arrow::before {
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  width: 10px;
	  height: 10px;
	  border-top: 1.5px solid currentColor;
	  border-right: 1.5px solid currentColor;
	  content: "";
}

.noc-product-card__arrow--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.noc-product-card__arrow--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.noc-product-card__arrow--prev {
  transform: translateX(-25px);
}

.noc-product-card__arrow--next {
  transform: translateX(25px);
}

.noc-product-card:hover .noc-product-card__arrow,
.noc-product-card:focus-within .noc-product-card__arrow {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.noc-product-card__arrow:hover {
	  color: #000;
}

.noc-footer__inner {
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.75fr);
  gap: 64px;
  width: min(100%, 1540px);
  padding: 76px 30px 62px;
}

.noc-footer__brand {
  align-items: flex-start;
  gap: clamp(26px, 4vw, 58px);
}

.noc-footer__brand img,
.noc-footer__brand .custom-logo {
  width: 132px;
  height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.noc-footer__title {
  margin-bottom: 14px;
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 400;
}

.noc-footer__text {
  font-size: clamp(15px, 1.3vw, 19px);
}

.noc-footer__bottom {
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: 20px 30px 24px;
}

@media (max-width: 1024px) {
  .noc-product-feed ul.products,
  .noc-category-archive__products ul.products,
  .noc-main--shop ul.products,
  .single-product ul.products,
  .wc-block-grid__products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .noc-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .noc-header__inner {
    min-height: 64px;
    padding: 7px 16px;
  }

  .noc-header__logo img,
  .noc-header__logo .custom-logo {
    width: 46px;
    height: 46px;
  }

  .noc-main {
    width: calc(100% - 32px);
  }

  .noc-catalog {
    padding: 38px 0 56px;
  }

  .noc-catalog__header {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    min-height: 92px;
    padding-bottom: 17px;
  }

  .noc-catalog__header h1 {
    font-size: 38px;
  }

  .noc-catalog__groups {
    flex-wrap: nowrap;
  }

  .noc-catalog__groups a {
    min-width: 68px;
    min-height: 42px;
    padding-inline: 18px;
    font-size: 13px;
  }

  .noc-product-feed ul.products,
  .noc-category-archive__products ul.products,
  .noc-main--shop ul.products,
  .single-product ul.products,
  .wc-block-grid__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .noc-product-card__link {
	    min-height: 0;
	    padding: 0;
  }

	.noc-product-card__nav {
	  display: flex;
	}

	.noc-product-card__content {
	  padding: 22px;
	}

	.noc-product-card__arrow {
	  width: 40px;
	  height: 50px;
	  visibility: visible;
	  opacity: 1;
	  transform: none;
	}

  .noc-product-feed ul.products li.product .woocommerce-loop-product__title,
  .noc-category-archive__products ul.products li.product .woocommerce-loop-product__title,
  .noc-main--shop ul.products li.product .woocommerce-loop-product__title,
  .single-product ul.products li.product .woocommerce-loop-product__title,
  .noc-product-feed ul.products li.product .price,
  .noc-category-archive__products ul.products li.product .price,
  .noc-main--shop ul.products li.product .price,
  .single-product ul.products li.product .price {
    font-size: 12px !important;
  }
}
