﻿/*
Theme Name: Central AE WooCommerce
Theme URI: https://central-ae.com/
Author: Central AE
Author URI: https://central-ae.com/
Description: Lightweight mobile-first WooCommerce theme rebuilt from the Central AE Shopify homepage flow.
Version: 1.3.91
Requires at least: 6.2
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: central-ae
*/

:root {
  --central-bg: #ffffff;
  --central-ink: #111111;
  --central-muted: #444444;
  --central-line: #ebebeb;
  --central-soft: #f5f5f5;
  --central-accent: #111111;
  --central-radius: 10px;
  --central-container: 1440px;
  --central-header: 64px;
  --central-product-columns: 2;
  --central-product-gap-row: 28px;
  --central-product-gap-column: 16px;
  font-family: Inter, "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--central-bg);
  color: var(--central-ink);
  font-family: Inter, "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.714;
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }

.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;
}

.central-container {
  width: min(100% - 30px, var(--central-container));
  margin-inline: auto;
}

.central-announcement {
  position: relative;
  background: var(--central-announcement-bg, #000);
  color: var(--central-announcement-color, #fff);
  text-align: center;
  font-size: var(--central-announcement-font-size, 12px);
  line-height: 1.35;
  font-weight: 700;
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 8px 15px;
}
.central-announcement::after {
  content: none;
}

.central-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--central-line);
}

.central-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  min-height: var(--central-header);
  gap: 10px;
}

.central-logo {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.central-logo img { max-width: 112px; max-height: 30px; width: auto; }
.central-logo__text { font-size: 20px; font-weight: 700; }

.central-menu-toggle,
.central-icon-link,
.central-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--central-ink);
  cursor: pointer;
}

.central-menu-toggle span,
.central-menu-toggle::before,
.central-menu-toggle::after {
  content: "";
  width: 20px;
  height: 2px;
  background: currentColor;
  display: block;
  position: absolute;
  transition: transform .18s ease, opacity .18s ease;
}
.central-menu-toggle { position: relative; }
.central-menu-toggle::before { transform: translateY(-7px); }
.central-menu-toggle::after { transform: translateY(7px); }
.central-menu-toggle[aria-expanded="true"] span { opacity: 0; }
.central-menu-toggle[aria-expanded="true"]::before { transform: rotate(45deg); }
.central-menu-toggle[aria-expanded="true"]::after { transform: rotate(-45deg); }

.central-actions { display: flex; align-items: center; justify-content: end; gap: 0; min-width: 0; }
.central-actions .desktop-only { display: none; }

.central-count {
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  margin-left: -8px;
  margin-top: -18px;
}

.central-nav {
  display: none;
}

.central-nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.central-nav a { display: block; padding: 11px 0; font-weight: 600; }

.central-mobile-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 80;
  width: min(320px, 86vw);
  background: #fff;
  border-right: 1px solid var(--central-line);
  box-shadow: 20px 0 50px rgba(0, 0, 0, .12);
  transform: translateX(-100%);
  transition: transform .22s ease;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px 20px 28px;
}

.central-mobile-drawer.is-open {
  transform: translateX(0);
}

.central-mobile-drawer__top {
  min-height: 44px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--central-line);
  padding-bottom: 14px;
  font-weight: 800;
}

.central-mobile-drawer__close {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--central-ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.central-mobile-drawer__nav {
  display: grid;
  gap: 0;
}

.central-mobile-drawer__nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid var(--central-line);
  font-size: 16px;
  font-weight: 700;
}

.central-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(17, 17, 17, .36);
}

body.central-menu-open {
  overflow: hidden;
}

.central-search-panel {
  display: none;
  border-top: 1px solid var(--central-line);
  padding: 18px 0 22px;
}
.central-search-panel.is-open { display: block; }
.central-search-panel h3 { margin: 0 0 12px; font-size: 18px; }

.central-search-form {
  display: flex;
  gap: 8px;
  border: 1px solid var(--central-line);
  border-radius: var(--central-radius);
  padding: 6px;
  background: #fff;
}
.central-search-form input[type="search"] {
  flex: 1;
  border: 0;
  min-width: 0;
  padding: 12px;
  outline: none;
}
.central-search-form button,
.central-button,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border: 1px solid #111;
  background: #111;
  color: #fff;
  border-radius: var(--central-radius);
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  min-height: 44px;
}

.central-trending {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.central-trending a {
  border: 1px solid var(--central-line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--central-muted);
  font-weight: 600;
}

.central-home { border-top: 1px solid var(--central-line); }

.central-category-section {
  padding: 30px 0 0;
}
.central-category-section--secondary {
  padding-top: 10px;
}
.central-category-head {
  margin-bottom: 18px;
}
.central-category-head span {
  display: block;
  margin-bottom: 8px;
  color: var(--central-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.central-category-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
  font-weight: 850;
}
.central-category-grid {
  display: grid;
  gap: 10px;
}
.central-category-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--central-radius);
  border: 0;
  background: #f4f4f4;
  aspect-ratio: 3 / 1;
  min-height: 0;
  isolation: isolate;
}
.central-category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.central-category-card:hover img { transform: scale(1.05); }
.central-category-card.no-image {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(236, 236, 236, .92)),
    #f4f4f4;
  border-color: var(--central-line);
}
.central-category-card__backdrop {
  position: absolute;
  inset: auto 18px 18px auto;
  color: rgba(0, 0, 0, .055);
  font-size: clamp(92px, 12vw, 178px);
  line-height: .8;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
}
.central-category-card__backdrop--image {
  inset: 12px 12px 12px auto;
  width: min(42%, 180px);
  color: transparent;
  opacity: .16;
}
.central-category-card__backdrop--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  border-radius: inherit;
}
.central-category-card__meta {
  display: grid;
  gap: 5px;
  min-height: 100%;
  padding: 18px;
  color: transparent;
}
.central-category-card.has-image .central-category-card__meta {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.central-category-card.no-image .central-category-card__meta {
  align-content: end;
  color: var(--central-ink);
}
.central-category-card__name {
  font-size: clamp(19px, 2.1vw, 28px);
  line-height: 1.05;
  font-weight: 850;
}
.central-category-card__count {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 700;
}
.central-category-card.no-image .central-category-card__count {
  color: var(--central-muted);
}

.central-section {
  padding: 0;
}
.central-brand-section {
  padding-top: 0;
  padding-bottom: 60px;
}
.central-section__title {
  margin: 0 0 33px;
  text-align: center;
  font-size: clamp(30px, 3vw, 36px);
  line-height: 1.21;
  font-weight: 600;
  letter-spacing: -0.034em;
}

.central-orders-served {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0 0 16px;
  color: #050505;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}

.central-orders-served__star {
  color: #ffc928;
  font-size: 31px;
  line-height: 1;
  text-shadow:
    1px 0 0 #050505,
    -1px 0 0 #050505,
    0 1px 0 #050505,
    0 -1px 0 #050505;
}

@media (max-width: 640px) {
  .central-orders-served {
    gap: 7px;
    font-size: 26px;
  }

  .central-orders-served__star {
    font-size: 26px;
  }
}

.central-brand-carousel {
  --central-brand-size: 96px;
  --central-brand-gap: 26px;
  --central-brand-arrow-size: 38px;
  --central-brand-arrow-gap: 16px;
  --central-brand-label-space: 30px;
  position: relative;
  display: grid;
  grid-template-columns: var(--central-brand-arrow-size) minmax(0, 1fr) var(--central-brand-arrow-size);
  column-gap: var(--central-brand-arrow-gap);
  align-items: start;
  width: 100%;
  max-width: calc((var(--central-brand-size) * 5) + (var(--central-brand-gap) * 4) + (var(--central-brand-arrow-size) * 2) + (var(--central-brand-arrow-gap) * 2));
  margin-inline: auto;
  background: transparent;
}

.central-brand-carousel__viewport {
  grid-column: 2;
  min-width: 0;
  overflow: hidden;
  background: transparent;
  padding: 8px 8px 0;
  box-sizing: border-box;
}

.central-brand-carousel::before,
.central-brand-carousel::after,
.central-brand-carousel__viewport::before,
.central-brand-carousel__viewport::after {
  content: none;
  display: none;
}

.central-brand-scroll {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: flex-start;
  gap: var(--central-brand-gap);
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 10px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding: 0 10px 10px;
  margin: 0;
  cursor: grab;
  scrollbar-width: none;
  box-sizing: border-box;
}

.central-brand-carousel:not(.is-scrollable) .central-brand-scroll {
  justify-content: center;
}

.central-brand-scroll.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.central-brand-scroll::-webkit-scrollbar { display: none; }

.central-brand-carousel__arrow {
  position: relative;
  align-self: start;
  z-index: 2;
  width: var(--central-brand-arrow-size);
  height: var(--central-brand-arrow-size);
  border: 1px solid var(--central-line);
  border-radius: 50%;
  background: #fff;
  color: var(--central-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: calc(((var(--central-brand-size) + var(--central-brand-label-space)) - var(--central-brand-arrow-size)) / 2);
  box-shadow: 0 8px 22px rgba(17, 17, 17, .07);
  transition: opacity .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.central-brand-carousel__arrow--prev {
  grid-column: 1;
}

.central-brand-carousel__arrow--next {
  grid-column: 3;
}

.central-brand-carousel__arrow span {
  display: block;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-1px);
}

.central-brand-carousel__arrow:hover {
  border-color: #111;
  background: #f7f7f7;
  box-shadow: 0 10px 26px rgba(17, 17, 17, .1);
  transform: translateY(-1px);
}

.central-brand-carousel__arrow:disabled {
  opacity: .28;
  cursor: default;
  box-shadow: none;
  transform: none;
}

.central-brand-carousel__dots {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 16px;
  margin-top: 18px;
}

.central-brand-carousel__dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: #d7d7d7;
  cursor: pointer;
  transition: width .18s ease, background .18s ease;
}

.central-brand-carousel__dot.is-active {
  width: 22px;
  background: #111;
}
.central-brand {
  flex: 0 0 var(--central-brand-size) !important;
  width: var(--central-brand-size);
  min-width: var(--central-brand-size);
  max-width: var(--central-brand-size);
  scroll-snap-align: start;
  text-align: center;
  user-select: none;
  overflow: visible;
}
.central-brand__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  background: #efefef;
  width: var(--central-brand-size);
  height: var(--central-brand-size);
  margin-inline: auto;
}
.central-brand__image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  box-sizing: border-box;
  mix-blend-mode: multiply;
}
.central-brand__initial {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: calc(var(--central-brand-size) * .32);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}
.central-brand__name {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .central-brand-carousel__viewport {
    padding-top: 0;
    padding-bottom: 0;
  }

  .central-brand-scroll {
    padding-top: 36px;
    padding-bottom: 24px;
  }

  .central-brand {
    padding-top: 4px;
    padding-bottom: 4px;
    box-sizing: content-box;
  }
}

.central-product-section {
  padding: 70px 0 0;
}
.central-product-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.central-product-head h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.08;
  font-weight: 800;
}
.central-product-head a {
  color: var(--central-muted);
  font-weight: 800;
  font-size: 14px;
}

.central-delivery-collection {
  padding: 42px 0 0;
}
.central-delivery-collection + .central-delivery-collection {
  padding-top: 34px;
}
.central-delivery-collection__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--central-line);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #f7f7f7 100%);
}
.central-delivery-collection__eyebrow {
  display: inline-flex;
  margin-bottom: 7px;
  color: var(--central-muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.central-delivery-collection__head h2 {
  margin: 0;
  color: var(--central-ink);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  line-height: 1.05;
}
.central-delivery-collection__head p {
  margin: 8px 0 0;
  color: var(--central-muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}
.central-delivery-collection--ready .central-delivery-collection__head {
  border-color: #cdebd6;
  background: linear-gradient(135deg, #ffffff 0%, #f1fbf4 100%);
}
.central-delivery-collection--import .central-delivery-collection__head {
  border-color: #cfe0f5;
  background: linear-gradient(135deg, #ffffff 0%, #f0f6ff 100%);
}
.central-delivery-collection__empty {
  margin: 0;
  padding: 18px;
  border: 1px dashed var(--central-line);
  border-radius: 8px;
  color: var(--central-muted);
  font-weight: 700;
  text-align: center;
}

.central-product-grid,
.woocommerce .products ul,
.woocommerce-page .products ul,
.products ul,
ul.products,
.woocommerce ul.products,
.woocommerce-page ul.products,
.woocommerce ul.products[class*="columns-"] {
  list-style: none;
  padding: 0;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(var(--central-product-columns), minmax(0, 1fr)) !important;
  gap: var(--central-product-gap-row) var(--central-product-gap-column) !important;
  grid-auto-flow: row;
  align-items: start;
  justify-content: normal;
  width: 100%;
  max-width: 100%;
  float: none !important;
  clear: none !important;
}

.woocommerce .products ul::before,
.woocommerce .products ul::after,
.woocommerce-page .products ul::before,
.woocommerce-page .products ul::after,
.products ul::before,
.products ul::after,
ul.products::before,
ul.products::after,
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after,
.woocommerce ul.products[class*="columns-"]::before,
.woocommerce ul.products[class*="columns-"]::after {
  content: none !important;
  display: none !important;
}

ul.products li.product,
.woocommerce ul.products li.product,
.woocommerce ul.products li.product.first,
.woocommerce ul.products li.product.last,
ul.products[class*="columns-"] li.product,
.woocommerce ul.products[class*="columns-"] li.product,
.woocommerce-page ul.products li.product,
.woocommerce-page ul.products[class*="columns-"] li.product,
.central-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0 !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  flex: none !important;
  float: none !important;
  clear: none !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center;
  overflow: visible;
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link,
.central-product-card__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  margin: 0 0 10px;
  background: #fff;
  border: 1px solid transparent;
  overflow: hidden;
}

.woocommerce ul.products li.product a img,
.central-product-card__image img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: cover;
  background: transparent;
  margin: 0 auto !important;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none !important;
}

.central-product-stock-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 29px;
  padding: 7px 15px;
  border-radius: 999px;
  background: #6b6b6b;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

.woocommerce-loop-product__title,
.central-product-card__title {
  font-size: 15px !important;
  line-height: normal;
  margin: 0 auto 8px !important;
  padding: 0 !important;
  font-weight: 700;
  color: var(--central-ink);
  text-align: center;
  max-width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.woocommerce-loop-product__title a,
.central-product-card__title a {
  color: inherit;
}

.price,
.central-product-card__price {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  color: #1570d6 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: normal;
  text-align: center;
  margin: 0 !important;
}
.price del,
.central-product-card__price del {
  order: 2;
  color: #9a9a9a !important;
  opacity: 1;
  font-weight: 700;
  text-decoration: line-through;
}
.price del .amount,
.price del bdi,
.central-product-card__price del .amount,
.central-product-card__price del bdi {
  color: #9a9a9a !important;
}
.price ins,
.central-product-card__price ins {
  order: 1;
  color: #1570d6 !important;
  text-decoration: none;
}
.price ins .amount,
.price ins bdi,
.central-product-card__price ins .amount,
.central-product-card__price ins bdi {
  color: #1570d6 !important;
}

.central-product-fulfillment {
  --central-product-pill-bg: #f6f7f8;
  --central-product-pill-color: #222;
  --central-product-pill-border: rgba(17, 17, 17, .12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: calc(100% - 14px);
  margin: 0 auto 7px;
  padding: 4px 9px;
  border: 1px solid var(--central-product-pill-border);
  border-radius: 999px;
  background: var(--central-product-pill-bg);
  color: var(--central-product-pill-color);
  font-size: clamp(9px, 2.25vw, 10.5px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: .035em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.central-product-fulfillment--ready {
  --central-product-pill-bg: #f3fbf5;
  --central-product-pill-color: #17633a;
  --central-product-pill-border: #cfe8d7;
}
.central-product-fulfillment--import {
  --central-product-pill-bg: #f3f7ff;
  --central-product-pill-color: #1f4f8f;
  --central-product-pill-border: #cfdcf4;
}

.woocommerce ul.products li.product .button,
.central-product-card .button,
.woocommerce ul.products li.product .added_to_cart,
.central-product-card .added_to_cart,
.woocommerce ul.products li.product .onsale,
.central-product-card .onsale {
  display: none !important;
}

.central-wishlist-button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  color: #111;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
  cursor: pointer;
  z-index: 2;
  opacity: 1;
  transform: none;
  transition: opacity .2s ease, transform .2s ease, background .2s ease, color .2s ease;
}
.woocommerce ul.products li.product:hover .central-wishlist-button,
.woocommerce ul.products li.product:focus-within .central-wishlist-button,
.central-product-card:hover .central-wishlist-button,
.central-product-card:focus-within .central-wishlist-button {
  opacity: 1;
  transform: none;
}
.central-wishlist-button.is-active { background: #111; color: #fff; }

.central-trust {
  padding: 0;
  text-align: center;
}
.central-trust h2 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.21;
  font-weight: 600;
  letter-spacing: -0.034em;
}
.central-loox-space {
  min-height: 1px;
  max-width: 1080px;
  margin: 0 auto;
}
.central-trust__rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 26px;
  color: #111;
  font-weight: 800;
}
.central-trust__stars {
  display: inline-flex;
  gap: 2px;
  color: #111;
  font-size: 16px;
  line-height: 1;
}
.central-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 14px;
  background: var(--central-line);
  border: 1px solid var(--central-line);
}
.central-trust-badges span {
  background: #fff;
  padding: 14px 8px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.central-ugc {
  padding: 56px 0 0;
}
.central-ugc__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.central-ugc__head h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.08;
  font-weight: 800;
}
.central-ugc__head a {
  color: var(--central-muted);
  font-size: 14px;
  font-weight: 800;
}
.central-ugc-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 72%;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 15px 8px;
  margin-inline: -15px;
  scrollbar-width: none;
}
.central-ugc-grid::-webkit-scrollbar { display: none; }
.central-ugc-card {
  position: relative;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 4px;
  background: var(--central-soft);
  aspect-ratio: 4 / 5;
}
.central-ugc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.central-ugc-card span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 11px;
  background: rgba(255, 255, 255, .92);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
}

.central-faq {
  padding: 69px 0 0;
  max-width: 1100px;
}
.central-faq details {
  border-bottom: 1px solid var(--central-line);
}
.central-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.central-faq summary::-webkit-details-marker { display: none; }
.central-faq summary::after {
  content: "+";
  font-size: 22px;
  line-height: 1;
  flex: 0 0 auto;
  transition: transform .32s ease-out;
  transform-origin: center;
}
.central-faq details[open] summary::after,
.central-faq details.is-opening summary::after {
  transform: rotate(45deg);
}
.central-faq details.is-closing summary::after {
  transform: rotate(0deg);
}
.central-faq details.is-accordion-ready > .central-faq__content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height .32s ease-out, opacity .24s ease-out;
  will-change: height, opacity;
}
.central-faq details.is-accordion-ready[open] > .central-faq__content {
  opacity: 1;
}
.central-faq p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--central-muted);
}

.central-newsletter {
  margin-top: 0;
  background: var(--central-bg);
  border-top: 1px solid var(--central-line);
  border-bottom: 1px solid var(--central-line);
  color: var(--central-ink);
}
.central-newsletter__inner {
  display: grid;
  gap: 24px;
  padding: clamp(30px, 4vw, 48px) 0;
}
.central-newsletter__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--central-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.central-newsletter h2 {
  margin: 0;
  max-width: 620px;
  color: var(--central-ink);
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}
.central-newsletter p {
  margin: 12px 0 0;
  max-width: 540px;
  color: var(--central-muted);
  font-size: 15px;
  line-height: 1.65;
}
.central-newsletter__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.central-newsletter__form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--central-line);
  border-radius: 0;
  background: #fff;
  padding: 0 15px;
  color: var(--central-ink);
  outline: 0;
  transition: border-color .18s ease, background .18s ease;
}
.central-newsletter__form input::placeholder {
  color: #9a9a9a;
}
.central-newsletter__form input:focus {
  background: #fff;
  border-color: var(--central-ink);
}
.central-newsletter__form button {
  min-height: 48px;
  border: 1px solid var(--central-ink);
  border-radius: 0;
  background: var(--central-ink);
  color: #fff;
  padding: 0 24px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.central-newsletter__form button:hover,
.central-newsletter__form button:focus {
  background: transparent;
  color: var(--central-ink);
}

.central-footer {
  margin-top: 34px;
  background: var(--central-bg);
  border-top: 1px solid var(--central-line);
  color: var(--central-muted);
  font-size: 14px;
}
.central-newsletter + .central-footer {
  margin-top: 0;
  border-top: 0;
}
.central-footer-newsletter {
  border-bottom: 1px solid var(--central-line);
  background: #fff;
}
.central-footer-newsletter__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: center;
  padding: 34px 0;
}
.central-footer-newsletter h2 {
  margin: 0 0 8px;
  color: var(--central-ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}
.central-footer-newsletter p {
  margin: 0;
  color: var(--central-muted);
}
.central-footer-newsletter__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.central-footer-newsletter__form input,
.central-footer-newsletter__form button {
  min-height: 46px;
  border-radius: 0;
}
.central-footer-newsletter__form input {
  width: 100%;
  border: 1px solid var(--central-line);
  padding: 0 14px;
}
.central-footer-newsletter__form button {
  border: 1px solid var(--central-ink);
  background: var(--central-ink);
  color: #fff;
  padding: 0 18px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.central-footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(4, minmax(120px, 180px));
  gap: 32px;
  padding: 60px 0 45px;
}
.central-footer__brand {
  max-width: 390px;
}
.central-footer__identity {
  display: flex;
  align-items: center;
}
.central-footer__identity .custom-logo-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.central-footer__identity .custom-logo {
  width: auto;
  max-width: 180px;
  max-height: 54px;
}
.central-footer__identity strong {
  display: block;
  color: var(--central-ink);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: 0;
}
.central-footer__brand p {
  margin: 0;
  max-width: 350px;
  color: var(--central-muted);
  font-size: 14px;
  line-height: 1.7;
}
.central-footer__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 22px;
}
.central-footer__column h2 {
  margin: 0 0 14px;
  color: var(--central-ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.central-footer__column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.central-footer__column a {
  color: var(--central-muted);
  font-size: 14px;
  transition: color .18s ease, opacity .18s ease;
}
.central-footer__column a:hover,
.central-footer__column a:focus {
  color: var(--central-ink);
}
.central-footer__menu h3 {
  margin: 0 0 14px;
  color: var(--central-ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.central-footer__menu ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.central-footer__menu a {
  color: var(--central-muted);
  font-size: 14px;
}
.central-footer__menu a:hover,
.central-footer__menu a:focus {
  color: var(--central-ink);
}
.central-footer__bottom {
  padding: 30px 0;
  border-top: 1px solid var(--central-line);
}
.central-footer__bottom p {
  margin: 0;
  color: var(--central-muted);
  font-size: 12px;
  line-height: 1.6;
}
.central-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}
.central-footer__social a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--central-line);
  border-radius: 50%;
  color: var(--central-ink);
  transition: border-color .18s ease, color .18s ease, opacity .18s ease;
}
.central-footer__social a:hover,
.central-footer__social a:focus {
  border-color: var(--central-ink);
  opacity: .72;
}
.central-footer__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.central-footer__help-social {
  max-width: 320px;
  text-align: left;
}
.central-footer__help-social p {
  margin: 0;
  color: #111;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  white-space: nowrap;
}
.central-footer__help-icons {
  gap: 12px;
  justify-content: flex-start;
  margin-top: 18px;
}
.central-footer__help-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid #d7d7d7;
  background: transparent;
  color: #111;
  transition: none;
}
.central-footer__help-icons a:hover,
.central-footer__help-icons a:focus {
  border-color: #bdbdbd;
  color: #111;
  opacity: 1;
}
.central-footer__help-icons svg {
  width: 15px;
  height: 15px;
}

.central-whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}
.central-whatsapp-float svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}
.central-sticky-header-enabled .central-header {
  position: sticky;
  top: 0;
  z-index: 70;
}
.admin-bar.central-sticky-header-enabled .central-header {
  top: 32px;
}

.central-page {
  padding: 36px 0 58px;
}
.central-page h1,
.woocommerce-products-header__title {
  margin: 0 0 24px;
  font-size: clamp(28px, 7vw, 44px);
  line-height: 1.1;
}

.woocommerce .woocommerce-breadcrumb {
  width: min(100% - 30px, var(--central-container));
  margin: 22px auto;
  color: var(--central-muted);
  font-size: 13px;
}
.woocommerce .woocommerce-ordering select,
.woocommerce .quantity .qty,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 1px solid var(--central-line);
  border-radius: var(--central-radius);
  padding: 12px;
  min-height: 44px;
  background: #fff;
}
.woocommerce form .form-row.form-row-hidden { display: none !important; }

.woocommerce div.product {
  width: min(100% - 30px, var(--central-container));
  margin: 34px auto 60px;
}
.woocommerce div.product div.images img { border-radius: 4px; background: var(--central-soft); }
.woocommerce div.product .product_title { font-size: clamp(28px, 7vw, 44px); line-height: 1.08; }
.woocommerce div.product p.price { font-size: 22px !important; }
.woocommerce div.product form.cart .button { min-height: 48px; padding-inline: 28px; }
.central-product-note {
  border: 1px solid var(--central-line);
  border-radius: var(--central-radius);
  padding: 14px;
  margin: 18px 0;
  background: var(--central-soft);
  color: #333;
}

body.single-product {
  background: #fff;
}

.central-pdp__breadcrumb {
  width: calc(100% - 30px);
  max-width: 1100px;
  margin: 28px auto 24px;
  color: #777;
  font-size: 14px;
  line-height: 1.4;
}

.central-pdp__breadcrumb a {
  color: #777;
}

.central-pdp__breadcrumb span:last-child {
  color: #111;
  font-weight: 600;
}

.woocommerce div.product.central-pdp,
.central-pdp {
  width: calc(100% - 30px);
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
}

.central-pdp__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  padding: 0 0 48px;
}

.central-pdp__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
}

.central-pdp__stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 100%;
  min-height: 0;
  background: #fff;
  border-radius: 0;
  touch-action: pan-y;
}

.central-pdp__track {
  height: 100%;
  display: flex;
  transition: transform .28s ease;
  will-change: transform;
}

.central-pdp__slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  margin: 0;
  display: block;
  background: #fff;
}

.central-pdp__slide .central-pdp__image,
.central-pdp__image,
.woocommerce div.product.central-pdp .central-pdp__image {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.central-pdp__zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--central-line);
  border-radius: 50%;
  background: #fff;
  color: #111;
}

.central-pdp__zoom svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.central-pdp__thumbs {
  order: 2;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 64px;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.central-pdp__thumbs::-webkit-scrollbar {
  display: none;
}

.central-pdp__thumb {
  width: 64px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.central-pdp__thumb.is-active {
  border-color: #111;
}

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

.central-pdp__info {
  min-width: 0;
  padding: 0;
  background: #fff;
  color: #111;
}

.central-pdp__summary {
  width: 100%;
  max-width: none;
  margin: 0;
}

.central-pdp__title,
.woocommerce div.product .central-pdp__title {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.21;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.central-pdp__price,
.woocommerce div.product .central-pdp__price {
  margin: 0 0 22px;
  font-size: clamp(24px, 3vw, 26px);
  line-height: normal;
  font-weight: 700;
  color: #111;
}

.central-pdp__price del,
.woocommerce div.product .central-pdp__price del {
  margin-right: 8px;
  color: #8c8c8c;
  font-weight: 500;
  opacity: 1;
}

.central-pdp__price ins,
.woocommerce div.product .central-pdp__price ins {
  color: #111;
  font-weight: 700;
  text-decoration: none;
}

.central-pdp__purchase {
  margin-bottom: 18px;
}

.central-delivery-timeline {
  margin: 0 0 24px;
  padding: 20px;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  background: #fff;
  color: #111;
}

.central-delivery-timeline__message {
  margin: 0 0 18px;
  padding: 13px 16px;
  border: 1px solid #ececec;
  border-radius: 14px;
  background: #fafafa;
  color: #151515;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.central-delivery-timeline__countdown {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  white-space: nowrap;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

@media (min-width: 901px) {
  body.single-product .central-delivery-timeline__message {
    white-space: nowrap;
    font-size: 13px;
  }
}

.central-delivery-timeline__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  position: relative;
}

.central-delivery-timeline__steps::before {
  content: "";
  position: absolute;
  top: 23px;
  left: calc(16.666% + 23px);
  right: calc(16.666% + 23px);
  height: 2px;
  border-radius: 999px;
  background: #d9d9d9;
}

.central-delivery-timeline__step {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 7px;
  text-align: center;
}

.central-delivery-timeline__icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #000;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .14);
}

.central-delivery-timeline__icon svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.central-delivery-timeline--outline .central-delivery-timeline__icon {
  border: 1px solid #111;
  background: #fff;
  color: #111;
  box-shadow: none;
}

.central-delivery-timeline--minimal .central-delivery-timeline__icon {
  width: 34px;
  height: 34px;
  background: #fff;
  color: #111;
  box-shadow: none;
}

.central-delivery-timeline--minimal .central-delivery-timeline__steps::before {
  top: 17px;
}

.central-delivery-timeline--no-icons .central-delivery-timeline__steps::before {
  display: none;
}

.central-delivery-timeline__step strong {
  display: block;
  max-width: 100%;
  color: #111;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
}

.central-delivery-timeline__step time {
  display: block;
  max-width: 100%;
  color: #5f5f5f;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 0;
}

.central-pdp__purchase form.cart {
  margin: 0;
}

.central-pdp__purchase .variations {
  width: 100%;
  margin: 0 0 30px;
  border: 0;
}

.central-pdp__purchase .variations tbody,
.central-pdp__purchase .variations tr,
.central-pdp__purchase .variations th,
.central-pdp__purchase .variations td {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  text-align: left;
}

.central-pdp__purchase .variations th {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: normal;
  font-weight: 400;
  color: #111;
  text-transform: none;
}

.central-pdp__purchase .variations td {
  margin: 0 0 22px;
}

.central-pdp__purchase .variations select,
.central-pdp__purchase .value select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
}

.central-option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.central-option-button {
  position: relative;
  min-width: 56px;
  min-height: 42px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-transform: none;
  cursor: pointer;
}

.central-option-button--size {
  text-transform: uppercase;
}

.central-option-button.is-selected {
  border-color: #111;
  background: #111;
  color: #fff;
  box-shadow: none;
}

.central-option-button:disabled,
.central-option-button.is-disabled {
  color: #9a9a9a;
  border-color: #ececec;
  background: #fafafa;
  cursor: not-allowed;
  opacity: .48;
  pointer-events: none;
}

.central-option-button:disabled::before,
.central-option-button.is-disabled::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 1px;
  background: currentColor;
  transform: rotate(-24deg);
  transform-origin: center;
  pointer-events: none;
}

.central-option-button--color {
  width: 66px;
  height: 84px;
  min-width: 66px;
  padding: 0;
}

.central-option-button--swatch {
  background-color: #f7f7f7;
  background-position: center;
  background-size: cover;
  color: transparent;
  overflow: hidden;
}

.central-option-button--swatch::after {
  content: "";
  position: absolute;
  inset: 0;
}

.central-option-button--swatch span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.central-pdp__purchase .reset_variations {
  display: none !important;
  margin-top: 0;
  color: var(--central-muted);
  font-size: 12px;
  text-decoration: underline;
}

.central-pdp__purchase .quantity {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 130px;
  min-height: 52px;
  margin: 0 !important;
  border: 1px solid var(--central-line);
  border-radius: 999px;
  background: #f5f5f5;
  overflow: hidden;
}

.central-pdp__purchase .quantity .qty {
  width: 48px;
  min-height: 50px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
}

.central-pdp__purchase .central-quantity-button {
  width: 38px;
  height: 50px;
}

.central-pdp__purchase .woocommerce-variation-add-to-cart,
.central-pdp__purchase .woocommerce-variation-add-to-cart-enabled,
.central-pdp__purchase .woocommerce-variation-add-to-cart-disabled,
.central-pdp__purchase form.cart:not(.variations_form) {
  display: grid !important;
  grid-template-columns: 132px minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 12px;
  align-items: center;
  width: 100%;
  clear: both;
  opacity: 1 !important;
  visibility: visible !important;
}

.central-pdp__purchase .single_variation_wrap {
  display: block;
}

.central-pdp__purchase .single_variation {
  min-height: 0;
}

.central-pdp__purchase .woocommerce-variation-availability,
.central-pdp__purchase .woocommerce-variation-availability .stock,
.central-pdp__purchase .stock,
.woocommerce div.product.central-pdp .stock.out-of-stock {
  display: none !important;
}

.central-pdp__purchase .woocommerce-variation-availability .stock.out-of-stock,
.central-pdp__purchase .stock.out-of-stock,
.woocommerce div.product.central-pdp .stock.out-of-stock {
  display: none !important;
}

.central-pdp__purchase .single_add_to_cart_button,
.woocommerce div.product.central-pdp form.cart .button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin: 0 !important;
  border-radius: 999px;
  border-color: #000 !important;
  background: #000 !important;
  color: #fff !important;
  text-transform: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  opacity: 1;
  visibility: visible !important;
  float: none !important;
  clear: none !important;
}

.central-pdp__purchase .central-pdp__buy-now,
.woocommerce div.product.central-pdp form.cart .central-pdp__buy-now {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  grid-column: 1 / -1;
  width: 100%;
  min-height: 52px;
  border-color: #3485e6 !important;
  background: #3485e6 !important;
  color: #fff !important;
  text-align: center !important;
}

.central-pdp__purchase .single_add_to_cart_button.disabled,
.central-pdp__purchase .single_add_to_cart_button:disabled,
.woocommerce div.product.central-pdp form.cart .button.disabled,
.woocommerce div.product.central-pdp form.cart .button:disabled,
.central-pdp__purchase .single_add_to_cart_button.wc-variation-selection-needed {
  border-color: #000 !important;
  background: #000 !important;
  color: #fff !important;
  opacity: 1 !important;
  cursor: not-allowed;
}

.central-pdp__purchase .single_add_to_cart_button.central-out-of-stock,
.central-pdp__purchase .single_add_to_cart_button.central-out-of-stock:disabled,
.central-pdp__purchase .single_add_to_cart_button.central-out-of-stock:hover,
.central-pdp__purchase .single_add_to_cart_button.central-out-of-stock:focus,
.woocommerce div.product.central-pdp form.cart .single_add_to_cart_button.central-out-of-stock,
.woocommerce div.product.central-pdp form.cart .single_add_to_cart_button.central-out-of-stock:disabled,
.woocommerce div.product.central-pdp form.cart .single_add_to_cart_button.central-out-of-stock:hover,
.woocommerce div.product.central-pdp form.cart .single_add_to_cart_button.central-out-of-stock:focus {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 52px;
  border-color: #d8d8d8 !important;
  background: #d8d8d8 !important;
  color: #777 !important;
  opacity: 1 !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  transform: none !important;
}

.central-pdp__purchase .single_add_to_cart_button.central-add-to-cart-loading,
.central-pdp__purchase .single_add_to_cart_button.loading,
.woocommerce div.product.central-pdp form.cart .single_add_to_cart_button.central-add-to-cart-loading,
.woocommerce div.product.central-pdp form.cart .single_add_to_cart_button.loading {
  min-height: 52px;
  border-color: #000 !important;
  background: #000 !important;
  color: #fff !important;
  opacity: 1 !important;
  cursor: wait;
  box-shadow: none !important;
  transform: none !important;
}

.central-pdp__purchase .single_add_to_cart_button.central-add-to-cart-loading::after,
.central-pdp__purchase .single_add_to_cart_button.loading::after,
.woocommerce div.product.central-pdp form.cart .single_add_to_cart_button.central-add-to-cart-loading::after,
.woocommerce div.product.central-pdp form.cart .single_add_to_cart_button.loading::after {
  display: none !important;
  content: none !important;
}

.central-pdp__accordions {
  width: 100%;
  max-width: none;
  margin: 0;
  border-top: 1px solid var(--central-line);
}

.central-pdp__accordion {
  border-bottom: 1px solid var(--central-line);
}

.central-pdp__accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  list-style: none;
  cursor: pointer;
  font-size: 15px;
  line-height: normal;
  font-weight: 700;
  letter-spacing: 0;
}

.central-pdp__accordion summary::-webkit-details-marker {
  display: none;
}

.central-pdp__accordion summary::after {
  content: "+";
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
  flex: 0 0 auto;
  transition: transform .32s ease-out;
  transform-origin: center;
}

.central-pdp__accordion[open] summary::after,
.central-pdp__accordion.is-opening summary::after {
  transform: rotate(45deg);
}

.central-pdp__accordion.is-closing summary::after {
  transform: rotate(0deg);
}

.central-pdp__accordion-content {
  padding: 0 0 12px;
  color: #4b4b4b;
  font-size: 14px;
  line-height: 1.5;
  direction: ltr;
  text-align: left;
}

.central-pdp__accordion.is-accordion-ready > .central-pdp__accordion-content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height .32s ease-out, opacity .24s ease-out;
  will-change: height, opacity;
}

.central-pdp__accordion.is-accordion-ready[open] > .central-pdp__accordion-content {
  opacity: 1;
}

.central-pdp__accordion-content p {
  margin: 0 0 10px;
  text-align: left;
}

.central-pdp__recommendation-title {
  display: none;
}

.central-pdp__people {
  width: min(100% - 30px, var(--central-container));
  max-width: var(--central-container);
  margin: 0 auto 18px;
  overflow: visible;
}

.central-pdp__people > h2 {
  margin: 0 0 22px;
  text-align: center;
  font-size: 28px;
  line-height: 1.21;
  font-weight: 700;
  letter-spacing: 0;
}

.central-pdp__people .related > h2 {
  display: none;
}

.central-pdp__people .related {
  margin: 0;
  padding: 0;
  overflow: visible;
}

.central-pdp__people .related ul.products li.product a img,
.central-pdp__people .central-product-card__image img {
  object-fit: contain !important;
}

.central-pdp__people .woocommerce-loop-product__title {
  margin-bottom: 5px !important;
  font-size: 14px !important;
}

.central-pdp__people .price {
  font-size: 14px !important;
}

body.single-product .central-footer {
  margin-top: 18px;
}

.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-account .entry-content {
  width: min(100% - 30px, 1240px);
  margin: 0 auto;
}

.woocommerce-cart .central-page,
.woocommerce-checkout .central-page {
  padding-top: 34px;
}

.woocommerce-cart .central-page > h1,
.woocommerce-checkout .central-page > h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  color: var(--central-ink);
}

.woocommerce-cart .woocommerce {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 28px;
  align-items: start;
}

.woocommerce-cart .woocommerce-notices-wrapper,
.woocommerce-cart .central-cart-trust,
.woocommerce-cart form.woocommerce-cart-form {
  grid-column: 1;
}

.woocommerce-cart .cart-collaterals {
  grid-column: 2;
  grid-row: 2 / span 3;
}

.central-cart-trust,
.central-checkout-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.central-cart-trust span,
.central-checkout-progress span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--central-line);
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
  color: var(--central-muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.central-cart-trust span::before,
.central-checkout-progress span::before,
.central-order-promises span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: #111;
  flex: 0 0 auto;
}

.central-checkout-progress {
  margin-bottom: 22px;
}

.central-checkout-progress span {
  color: var(--central-ink);
}

.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table {
  width: 100%;
  border: 0 !important;
  border-collapse: separate;
  border-spacing: 0 10px;
  margin: 0;
}

.woocommerce-cart table.shop_table th,
.woocommerce-checkout table.shop_table th {
  border: 0 !important;
  padding: 0 16px 10px;
  color: var(--central-muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.woocommerce-cart table.shop_table td,
.woocommerce-checkout table.shop_table td {
  border: 0 !important;
  padding: 16px;
  vertical-align: middle;
  background: #fff;
}

.woocommerce-cart table.cart tr.cart_item td {
  border-top: 1px solid var(--central-line) !important;
  border-bottom: 1px solid var(--central-line) !important;
}

.woocommerce-cart table.cart tr.cart_item td:first-child {
  border-left: 1px solid var(--central-line) !important;
  border-radius: 8px 0 0 8px;
}

.woocommerce-cart table.cart tr.cart_item td:last-child {
  border-right: 1px solid var(--central-line) !important;
  border-radius: 0 8px 8px 0;
}

.woocommerce-cart table.cart .product-remove {
  width: 42px;
  text-align: center;
}

.woocommerce-cart table.cart .product-remove a.remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--central-line);
  border-radius: 50%;
  color: #111 !important;
  background: #fff;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.woocommerce-cart table.cart .product-remove a.remove:hover,
.woocommerce-cart table.cart .product-remove a.remove:focus {
  border-color: #111;
  background: #111;
  color: #fff !important;
}

.woocommerce-cart table.cart .product-thumbnail {
  width: 132px;
}

.woocommerce-cart table.cart .product-thumbnail img {
  width: 112px;
  height: 124px;
  max-width: none;
  border-radius: 6px;
  background: var(--central-soft);
  object-fit: cover;
}

.woocommerce-cart table.cart .product-name a {
  color: var(--central-ink);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
}

.woocommerce-cart table.cart .product-name a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.woocommerce-cart table.cart .product-price,
.woocommerce-cart table.cart .product-subtotal {
  font-weight: 800;
}

.woocommerce .quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--central-line);
  border-radius: 999px;
  background: #fff;
  min-height: 42px;
  padding: 0 4px;
}

.woocommerce .quantity .qty {
  width: 64px;
  min-height: 40px;
  border: 0 !important;
  background: transparent;
  padding: 0 8px;
  text-align: center;
  font-weight: 800;
  appearance: textfield;
}

.central-quantity-button {
  width: 34px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #777;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.central-quantity-button:hover,
.central-quantity-button:focus {
  color: #111;
}

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

.woocommerce-cart table.cart td.actions {
  padding: 16px 0 0;
  background: transparent;
}

.woocommerce-cart table.cart td.actions .coupon {
  display: flex;
  gap: 10px;
  width: min(100%, 460px);
}

.woocommerce-cart table.cart td.actions .coupon label {
  display: none;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
  flex: 1;
  min-width: 0;
  height: 48px;
  border: 1px solid var(--central-line);
  border-radius: 999px;
  padding: 0 18px;
  background: #fff;
  font-weight: 700;
}

.woocommerce-cart table.cart td.actions .coupon .input-text:focus,
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.woocommerce .select2-container--focus .select2-selection--single {
  border-color: #111 !important;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, .08) !important;
}

.woocommerce-checkout form.checkout_coupon {
  display: flex;
  align-items: end;
  gap: 10px;
  border: 1px solid var(--central-line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.woocommerce-checkout form.checkout_coupon p {
  margin: 0;
}

.woocommerce-checkout form.checkout_coupon .form-row-first {
  flex: 1;
  float: none;
  width: auto;
}

.woocommerce-checkout form.checkout_coupon .form-row-last {
  float: none;
  width: auto;
}

.woocommerce-cart table.cart td.actions > .button,
.woocommerce-cart table.cart td.actions .coupon .button,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce-checkout #place_order {
  border: 1px solid #111 !important;
  background: #111 !important;
  color: #fff !important;
  border-radius: 999px !important;
  min-height: 50px;
  padding: 14px 22px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.woocommerce-cart table.cart td.actions .coupon .button:hover,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-checkout #place_order:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(17, 17, 17, .12);
}

.woocommerce-cart table.cart td.actions > .button {
  float: right;
  background: #fff !important;
  color: #111 !important;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  position: sticky;
  top: calc(var(--central-header) + 18px);
  float: none;
  width: 100%;
  border: 1px solid var(--central-line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(17, 17, 17, .06);
}

.woocommerce-cart .cart_totals h2 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
}

.woocommerce-cart .cart_totals table.shop_table {
  border-spacing: 0;
}

.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--central-line) !important;
  background: transparent;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
}

.woocommerce-cart .cart_totals table.shop_table td {
  text-align: right;
  font-weight: 800;
}

.woocommerce-cart .wc-proceed-to-checkout {
  padding: 20px 0 0;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  font-size: 16px !important;
}

.central-order-promises {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  border-top: 1px solid var(--central-line);
  padding-top: 16px;
}

.central-order-promises span {
  display: flex;
  align-items: center;
  color: var(--central-muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 750;
}

.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 450px);
  gap: 28px;
  align-items: start;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
  border: 1px solid var(--central-line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.woocommerce-checkout #order_review {
  position: sticky;
  top: calc(var(--central-header) + 18px);
  box-shadow: 0 18px 40px rgba(17, 17, 17, .06);
}

.woocommerce-checkout #customer_details {
  display: grid;
  gap: 18px;
}

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

.woocommerce-checkout #customer_details .col-2 {
  border-top: 1px solid var(--central-line);
  padding-top: 18px;
}

.woocommerce-checkout h3,
.woocommerce-checkout #order_review_heading {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
}

.woocommerce-checkout #order_review_heading {
  grid-column: 2;
  margin-bottom: -12px;
}

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

.woocommerce form .form-row label {
  margin: 0 0 7px;
  color: var(--central-ink);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.woocommerce form .form-row .required {
  color: #111;
  text-decoration: none;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .select2-container .select2-selection--single {
  min-height: 48px;
  border: 1px solid var(--central-line) !important;
  border-radius: 8px !important;
  background: #fff;
  color: var(--central-ink);
  padding: 12px 14px;
  font-weight: 650;
  box-shadow: none !important;
}

.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select,
.woocommerce form .form-row.woocommerce-invalid .select2-selection {
  border-color: #b42318 !important;
}

.woocommerce-checkout #billing_phone_field .central-checkout-field-error {
  display: block;
  margin: 7px 0 0;
  padding: 0;
  color: #b42318;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.woocommerce-checkout #billing_phone_field .central-checkout-field-error[hidden] {
  display: none;
}

.woocommerce form .form-row.woocommerce-validated input.input-text,
.woocommerce form .form-row.woocommerce-validated select,
.woocommerce form .form-row.woocommerce-validated .select2-selection {
  border-color: #111 !important;
}

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

.woocommerce .select2-container .select2-selection--single {
  display: flex;
  align-items: center;
  padding: 0 14px;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0;
  color: var(--central-ink);
  line-height: 48px;
}

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

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

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

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

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

.woocommerce-checkout-review-order-table {
  border-spacing: 0 !important;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 14px 0 !important;
  border-bottom: 1px solid var(--central-line) !important;
  background: transparent !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 14px !important;
}

.woocommerce-checkout-review-order-table .product-name {
  font-weight: 800;
}

.woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout-review-order-table tfoot td {
  text-align: right;
  font-weight: 800;
}

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

.woocommerce-checkout #payment ul.payment_methods {
  display: grid;
  gap: 10px;
  border: 0;
  padding: 16px 0;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method {
  border: 1px solid var(--central-line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method:has(input:checked) {
  border-color: #111;
  box-shadow: 0 0 0 1px #111 inset;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method > label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
}

.woocommerce-checkout #payment div.payment_box {
  margin: 12px 0 0;
  border-radius: 8px;
  background: var(--central-soft);
  color: var(--central-muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.woocommerce-checkout #payment .place-order {
  padding: 14px 0 0;
  margin: 0;
}

.woocommerce-checkout #place_order {
  width: 100%;
  min-height: 56px;
  font-size: 16px !important;
}

.central-checkout-promises {
  margin-top: 12px;
  color: var(--central-muted);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
  font-weight: 750;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 0;
  margin: 0 0 18px;
  padding: 14px 16px 14px 50px;
  border: 1px solid rgba(17, 17, 17, .08);
  border-top: 1px solid rgba(17, 17, 17, .08);
  border-radius: 14px;
  background: #fff;
  color: var(--central-ink);
  box-shadow: 0 12px 34px rgba(17, 17, 17, .08);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  animation: central-notice-enter .32s ease both;
}

.woocommerce-info::before,
.woocommerce-message::before,
.woocommerce-error::before {
  position: absolute;
  top: 50%;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  transform: translateY(-50%);
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  speak: never;
}

.woocommerce-message::before {
  content: "âœ“";
  background: #111;
  color: #fff;
}

.woocommerce-info::before {
  content: "i";
  background: #f3f3f3;
  color: #111;
}

.woocommerce-error::before {
  content: "!";
  background: #fff1f1;
  color: #b42318;
}

.woocommerce-message .button,
.woocommerce-message a.button,
.woocommerce-message .wc-forward {
  order: 2;
  flex: 0 0 auto;
  float: none !important;
  margin: 0 0 0 auto !important;
  padding: 10px 18px !important;
  min-height: 38px;
  border: 1px solid #111 !important;
  border-radius: 999px !important;
  background: #111 !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: none;
}

.woocommerce-message .button:hover,
.woocommerce-message a.button:hover,
.woocommerce-message .wc-forward:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(17, 17, 17, .14);
}

@keyframes central-notice-enter {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .woocommerce-info,
  .woocommerce-message,
  .woocommerce-error {
    animation: none;
  }
}

.central-wishlist-list {
  display: grid;
  gap: 10px;
  max-width: 720px;
}
.central-wishlist-list a,
.central-empty-state {
  border: 1px solid var(--central-line);
  border-radius: var(--central-radius);
  padding: 14px 16px;
  background: #fff;
  font-weight: 700;
}
.central-empty-state {
  color: var(--central-muted);
  font-weight: 500;
}

@media (min-width: 768px) {
  .central-container {
    width: min(95%, var(--central-container));
  }
  .central-header__inner {
    grid-template-columns: 1fr auto 1fr;
  }
  .central-logo {
    position: static;
    transform: none;
    min-width: 106px;
  }
  .central-logo img {
    max-width: 112px;
    max-height: 30px;
  }
  .central-menu-toggle { display: none; }
  .central-nav {
    display: block;
    border-top: 0;
    padding: 0;
  }
  .central-mobile-drawer,
  .central-menu-backdrop {
    display: none !important;
  }
  .central-nav ul { display: flex; align-items: center; gap: 28px; }
  .central-nav a { padding: 0; min-height: 50px; display: inline-flex; align-items: center; }
  .central-logo { grid-column: 2; }
  .central-actions .desktop-only { display: inline-flex; }
  .central-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .central-brand-carousel {
    --central-brand-size: 154px;
    --central-brand-gap: 42px;
    --central-brand-arrow-size: 44px;
    --central-brand-arrow-gap: 28px;
    --central-brand-label-space: 34px;
  }
  .central-product-grid,
  .woocommerce .products ul,
  .woocommerce-page .products ul,
  .products ul,
  ul.products,
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .woocommerce ul.products[class*="columns-"] {
    --central-product-columns: 3;
    --central-product-gap-row: 30px;
    --central-product-gap-column: 18px;
  }
  .central-ugc-grid {
    grid-auto-flow: initial;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
    padding: 0;
    margin: 0;
    gap: 10px;
  }
  .central-newsletter__inner {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 470px);
    align-items: center;
  }
  .central-newsletter__form {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .central-footer__inner {
    grid-template-columns: minmax(250px, 1.2fr) repeat(4, minmax(120px, 180px));
    align-items: start;
    gap: 32px;
  }
  .central-footer {
    margin-top: 34px;
  }
  .central-footer__columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .central-footer__bottom {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

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

  .woocommerce-cart .woocommerce-notices-wrapper,
  .woocommerce-cart .central-cart-trust,
  .woocommerce-cart form.woocommerce-cart-form,
  .woocommerce-cart .cart-collaterals,
  .woocommerce-checkout #order_review_heading {
    grid-column: auto;
    grid-row: auto;
  }

  .woocommerce-cart .cart-collaterals .cart_totals,
  .woocommerce-checkout #order_review {
    position: static;
  }
}

@media (max-width: 767px) {
  :root {
    --central-header: 56px;
  }

  .central-container {
    width: min(100% - 12px, var(--central-container));
  }

  .woocommerce-info,
  .woocommerce-message,
  .woocommerce-error {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    gap: 8px 12px;
    margin-bottom: 14px;
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.4;
  }

  .woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
    display: block;
    padding: 13px 14px 13px 46px;
  }

  .woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info::before {
    position: absolute;
    top: 13px;
    left: 14px;
    transform: none;
  }

  .woocommerce-info::before,
  .woocommerce-message::before,
  .woocommerce-error::before {
    position: static;
    grid-column: 1;
    grid-row: 1;
    transform: none;
  }

  .woocommerce-message .button,
  .woocommerce-message a.button,
  .woocommerce-message .wc-forward {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    margin: 4px 0 0 !important;
    text-align: center;
  }

  .central-header__inner {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 4px;
  }

  .central-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .central-logo img {
    max-width: 82px;
    max-height: 28px;
  }

  .central-menu-toggle,
  .central-icon-link,
  .central-search-toggle {
    width: 34px;
    height: 40px;
    padding: 0;
  }

  .central-menu-toggle span,
  .central-menu-toggle::before,
  .central-menu-toggle::after {
    width: 19px;
  }

  .central-actions svg {
    width: 20px;
    height: 20px;
  }

  .central-count {
    min-width: 15px;
    height: 15px;
    font-size: 9px;
    line-height: 15px;
    margin-left: -10px;
    margin-top: -17px;
  }

  .central-nav {
    display: none !important;
  }

  .central-category-section {
    padding-top: 20px;
  }
  .central-category-section--secondary {
    padding-top: 10px;
  }

  .central-category-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .central-category-card__meta {
    padding: 13px;
  }

  .central-category-card__name {
    font-size: 18px;
  }

  .central-category-card__count {
    font-size: 12px;
  }

  .central-delivery-collection {
    padding-top: 26px;
  }

  .central-delivery-collection + .central-delivery-collection {
    padding-top: 24px;
  }

  .central-delivery-collection__head {
    margin-bottom: 14px;
    padding: 14px;
  }

  .central-delivery-collection__head h2 {
    font-size: 24px;
  }

  .central-delivery-collection__head p {
    font-size: 13px;
  }

  .central-section {
    padding-top: 0;
  }

  .central-pdp__breadcrumb {
    margin: 26px auto 22px;
    font-size: 14px;
  }

  .central-pdp__inner {
    gap: 24px;
    padding-bottom: 42px;
  }

  .central-pdp__title,
  .woocommerce div.product .central-pdp__title {
    font-size: 25px;
    line-height: 1.22;
  }

  .central-pdp__price,
  .woocommerce div.product .central-pdp__price {
    margin-bottom: 22px;
    font-size: 25px;
  }

  .central-pdp__people {
    width: min(100% - 30px, var(--central-container));
    margin-bottom: 28px;
  }

  .central-pdp__people > h2 {
    margin-bottom: 18px;
    font-size: 26px;
  }

  .central-pdp__breadcrumb,
  .woocommerce div.product.central-pdp,
  .central-pdp {
    width: calc(100% - 24px);
  }

  .central-pdp__inner {
    gap: 22px;
  }

  .central-pdp__stage {
    aspect-ratio: 1 / 1.04;
    max-height: 62vh;
  }

  .central-pdp__thumbs {
    grid-auto-columns: 58px;
    gap: 8px;
    margin-inline: 0;
    padding-bottom: 0;
  }

  .central-pdp__thumb {
    width: 58px;
  }

  .central-pdp__purchase .woocommerce-variation-add-to-cart,
  .central-pdp__purchase .woocommerce-variation-add-to-cart-enabled,
  .central-pdp__purchase .woocommerce-variation-add-to-cart-disabled,
  .central-pdp__purchase form.cart:not(.variations_form) {
    grid-template-columns: 126px minmax(0, 1fr);
    column-gap: 10px;
    row-gap: 12px;
    align-items: center;
  }

  .central-pdp__purchase .quantity {
    width: 126px;
    max-width: none;
  }

  .central-pdp__purchase .central-pdp__buy-now,
  .woocommerce div.product.central-pdp form.cart .central-pdp__buy-now {
    grid-column: 1 / -1;
    width: 100%;
  }

  .central-pdp__zoom {
    display: none;
  }

  .woocommerce-cart .central-page,
  .woocommerce-checkout .central-page {
    padding-top: 24px;
  }

  .woocommerce-cart .central-page > h1,
  .woocommerce-checkout .central-page > h1 {
    margin-bottom: 20px;
    font-size: 31px;
  }

  .woocommerce-cart .woocommerce {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .woocommerce-cart .woocommerce-notices-wrapper,
  .woocommerce-cart .central-cart-trust,
  .woocommerce-cart form.woocommerce-cart-form,
  .woocommerce-cart .cart-collaterals {
    grid-column: auto;
    grid-row: auto;
  }

  .central-cart-trust,
  .central-checkout-progress {
    gap: 7px;
    margin-bottom: 14px;
  }

  .central-cart-trust span,
  .central-checkout-progress span {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .woocommerce-cart table.cart {
    display: block;
    border-spacing: 0;
  }

  .woocommerce-cart table.cart thead {
    display: none;
  }

  .woocommerce-cart table.cart tbody,
  .woocommerce-cart table.cart tr.cart_item {
    display: grid;
    gap: 0;
  }

  .woocommerce-cart table.cart tr.cart_item {
    grid-template-columns: 92px minmax(0, 1fr);
    position: relative;
    margin-bottom: 14px;
    border: 1px solid var(--central-line);
    border-radius: 8px;
    padding: 14px;
    background: #fff;
  }

  .woocommerce-cart table.cart tr.cart_item td,
  .woocommerce-cart table.cart tr.cart_item td:first-child,
  .woocommerce-cart table.cart tr.cart_item td:last-child {
    display: block;
    border: 0 !important;
    border-radius: 0;
    padding: 0;
    background: transparent;
  }

  .woocommerce-cart table.cart .product-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: auto;
    z-index: 2;
  }

  .woocommerce-cart table.cart .product-thumbnail {
    grid-row: 1 / span 4;
    width: 82px;
  }

  .woocommerce-cart table.cart .product-thumbnail::before,
  .woocommerce-cart table.cart .product-name::before,
  .woocommerce-cart table.cart .product-price::before,
  .woocommerce-cart table.cart .product-quantity::before,
  .woocommerce-cart table.cart .product-subtotal::before {
    display: none;
  }

  .woocommerce-cart table.cart .product-thumbnail img {
    width: 82px;
    height: 96px;
  }

  .woocommerce-cart table.cart .product-name {
    padding-right: 38px;
  }

  .woocommerce-cart table.cart .product-name a {
    font-size: 15px;
  }

  .woocommerce-cart table.cart .product-price {
    margin-top: 7px;
    color: var(--central-muted);
    font-size: 13px;
  }

  .woocommerce-cart table.cart .product-quantity {
    margin-top: 10px;
  }

  .woocommerce-cart table.cart .product-subtotal {
    margin-top: 10px;
    font-size: 15px;
  }

  .woocommerce-cart table.cart td.actions {
    display: grid;
    gap: 12px;
    padding-top: 8px;
  }

  .woocommerce-cart table.cart td.actions .coupon {
    display: grid;
    width: 100%;
  }

  .woocommerce-checkout form.checkout_coupon {
    display: grid;
    align-items: stretch;
  }

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

  .woocommerce-cart table.cart td.actions > .button {
    float: none;
    width: 100%;
  }

  .woocommerce-cart .cart-collaterals {
    display: block;
    margin-top: 20px;
  }

  .woocommerce-cart .cart-collaterals .cart_totals {
    position: static;
    width: 100%;
    padding: 18px;
    box-shadow: none;
  }

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

  .woocommerce-checkout #order_review_heading {
    grid-column: auto;
    margin: 4px 0 -6px;
  }

  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review {
    position: static;
    padding: 18px;
    box-shadow: none;
  }

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

  .central-brand-section {
    padding-bottom: 48px;
  }

  .central-section__title {
    margin-bottom: 20px;
    font-size: 27px;
  }

  .central-brand-carousel {
    --central-brand-size: clamp(118px, 34vw, 132px);
    --central-brand-gap: 16px;
    --central-brand-arrow-size: 0px;
    --central-brand-arrow-gap: 0px;
    --central-brand-label-space: 28px;
    grid-template-columns: minmax(0, 1fr);
    max-width: 100%;
  }

  .central-brand-carousel__arrow {
    display: none;
  }

  .central-brand-carousel__viewport {
    grid-column: 1;
    padding: 8px 6px 0;
  }

  .central-brand-scroll {
    gap: var(--central-brand-gap);
    scroll-padding-inline: 8px;
    padding-inline: 8px;
  }

  .central-brand__name {
    margin-top: 9px;
    font-size: 12px;
  }

  .central-product-section {
    padding-top: 48px;
  }

  .central-product-head {
    margin-bottom: 18px;
  }

  .central-product-head h2,
  .central-ugc__head h2 {
    font-size: 27px;
  }

  .central-product-grid,
  .woocommerce .products ul,
  .woocommerce-page .products ul,
  .products ul,
  ul.products,
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .woocommerce ul.products[class*="columns-"] {
    --central-product-gap-row: 28px;
    --central-product-gap-column: 16px;
  }

  .central-wishlist-button {
    width: 38px;
    height: 38px;
    opacity: 1;
    transform: none;
  }

  .central-trust {
    padding-top: 0;
  }

  .central-trust h2 {
    font-size: 30px;
  }

  .central-trust-badges span {
    padding: 12px 6px;
    font-size: 10px;
  }

  .central-ugc {
    padding-top: 48px;
  }

  .central-ugc-grid {
    grid-auto-columns: 74%;
    padding-inline: 10px;
    margin-inline: -10px;
  }

  .central-faq {
    padding: 52px 0 0;
  }

  .central-newsletter {
    margin-top: 0;
  }

  .central-newsletter__form button {
    width: 100%;
  }

  .central-footer-newsletter__inner,
  .central-footer-newsletter__form {
    grid-template-columns: 1fr;
  }

  .central-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }

  .central-footer__columns {
    gap: 28px 16px;
  }

  .central-footer__bottom {
    padding-bottom: 24px;
    text-align: left;
  }

  .central-footer__social {
    justify-content: flex-start;
  }

  body.single-product .central-header {
    border-bottom: 0;
  }

  body.single-product .central-header__inner {
    min-height: 58px;
  }

  body.single-product .central-logo img {
    max-height: 36px;
  }

  .central-option-buttons {
    gap: 10px;
  }

  .central-option-button {
    min-width: 47px;
    min-height: 40px;
    padding: 10px 18px;
  }

  .central-delivery-timeline {
    margin-bottom: 20px;
    padding-top: 10px;
  }

  .central-delivery-timeline__message {
    padding: 12px 10px;
    font-size: 14px;
  }

  .central-delivery-timeline__steps {
    gap: 8px;
  }

  .central-delivery-timeline__steps::before {
    top: 22px;
    left: calc(16.666% + 20px);
    right: calc(16.666% + 20px);
  }

  .central-delivery-timeline__icon {
    width: 44px;
    height: 44px;
  }

  .central-delivery-timeline__icon svg {
    width: 20px;
    height: 20px;
  }

  .central-delivery-timeline--minimal .central-delivery-timeline__steps::before {
    top: 17px;
  }

  .central-delivery-timeline__step strong {
    font-size: 13px;
  }

  .central-delivery-timeline__step time {
    font-size: 12px;
  }
}

/* Mobile homepage hero: match the clean Represent campaign layout. */
@media (max-width: 767px) {
  .home .central-announcement,
  .blog .central-announcement {
    min-height: 28px !important;
    padding: 6px 34px !important;
    background: #050505 !important;
    color: #fff !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
  }

  .home .central-header--home-overlay,
  .blog .central-header--home-overlay {
    height: 62px !important;
    margin: 0 0 -62px !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .04)) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .home .central-header--home-overlay .central-header__inner,
  .blog .central-header--home-overlay .central-header__inner {
    min-height: 62px !important;
    padding: 0 20px !important;
  }

  .home .central-header--home-overlay .central-logo img,
  .blog .central-header--home-overlay .central-logo img {
    width: min(var(--central-logo-mobile-width, 150px), calc(100vw - 168px)) !important;
    max-width: min(var(--central-logo-mobile-width, 150px), calc(100vw - 168px)) !important;
    max-height: none !important;
    filter: brightness(0) invert(1) !important;
  }

  .home .central-header--home-overlay .central-logo__text,
  .blog .central-header--home-overlay .central-logo__text {
    color: #fff !important;
    font-size: 18px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: -.03em !important;
  }

  .home .central-header--home-overlay .central-menu-toggle span,
  .home .central-header--home-overlay .central-menu-toggle::before,
  .home .central-header--home-overlay .central-menu-toggle::after,
  .blog .central-header--home-overlay .central-menu-toggle span,
  .blog .central-header--home-overlay .central-menu-toggle::before,
  .blog .central-header--home-overlay .central-menu-toggle::after {
    width: 20px !important;
    height: 1px !important;
  }

  .home .central-header--home-overlay .central-search-toggle svg,
  .home .central-header--home-overlay .central-icon-link svg,
  .blog .central-header--home-overlay .central-search-toggle svg,
  .blog .central-header--home-overlay .central-icon-link svg {
    width: 19px !important;
    height: 19px !important;
    stroke-width: 1.45 !important;
  }

  .home .central-hero-slider,
  .blog .central-hero-slider {
    height: calc(100svh - 28px) !important;
    min-height: 720px !important;
    max-height: 900px !important;
  }

  .home .central-hero-slide img,
  .blog .central-hero-slide img {
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
  }

  .home .central-hero-slide__content,
  .blog .central-hero-slide__content {
    left: 24px !important;
    right: 22px !important;
    bottom: 80px !important;
    max-width: 340px !important;
    text-shadow: 0 1px 14px rgba(0, 0, 0, .24) !important;
  }

  .home .central-hero-slide__content p,
  .blog .central-hero-slide__content p {
    margin: 0 0 8px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: -.02em !important;
  }

  .home .central-hero-slide__content h2,
  .blog .central-hero-slide__content h2 {
    margin: 0 0 20px !important;
    font-size: 25px !important;
    line-height: 1.04 !important;
    font-weight: 500 !important;
    letter-spacing: -.055em !important;
  }

  .home .central-hero-slide__button,
  .blog .central-hero-slide__button {
    min-width: 114px !important;
    min-height: 40px !important;
    padding: 0 18px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: rgba(119, 111, 105, .86) !important;
    color: #fff !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
  }

  .home .central-hero-slider__dots,
  .home .central-hero-slider__arrow,
  .blog .central-hero-slider__dots,
  .blog .central-hero-slider__arrow {
    display: none !important;
  }
}

/* Last-word mobile shop archive layout. */
@media (max-width: 767px) {
  body.post-type-archive-product .central-page,
  body.tax-product_cat .central-page,
  body.tax-product_tag .central-page {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  body.post-type-archive-product .woocommerce-products-header,
  body.post-type-archive-product .woocommerce-ordering,
  body.post-type-archive-product .woocommerce-result-count,
  body.tax-product_cat .woocommerce-products-header,
  body.tax-product_cat .woocommerce-ordering,
  body.tax-product_cat .woocommerce-result-count,
  body.tax-product_tag .woocommerce-products-header,
  body.tax-product_tag .woocommerce-ordering,
  body.tax-product_tag .woocommerce-result-count {
    display: none !important;
  }

  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 10px 34px !important;
    border-right: 1px solid #fff !important;
    text-align: left !important;
  }

  body.post-type-archive-product ul.products li.product:nth-child(2n),
  body.tax-product_cat ul.products li.product:nth-child(2n),
  body.tax-product_tag ul.products li.product:nth-child(2n) {
    border-right: 0 !important;
  }

  body.post-type-archive-product .central-product-card__image,
  body.tax-product_cat .central-product-card__image,
  body.tax-product_tag .central-product-card__image {
    width: calc(100% + 20px) !important;
    height: 260px !important;
    margin: 0 -10px 14px !important;
    padding: 20px 10px !important;
    display: grid !important;
    place-items: center !important;
    background: #fff !important;
    border: 0 !important;
    aspect-ratio: auto !important;
  }

  body.post-type-archive-product .central-product-card__image img,
  body.tax-product_cat .central-product-card__image img,
  body.tax-product_tag .central-product-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center bottom !important;
  }

  body.post-type-archive-product .central-product-card__quick,
  body.tax-product_cat .central-product-card__quick,
  body.tax-product_tag .central-product-card__quick {
    position: absolute !important;
    right: 10px !important;
    top: 226px !important;
    display: grid !important;
    width: 24px !important;
    height: 24px !important;
    place-items: center !important;
    color: #111 !important;
    font-size: 24px !important;
    font-weight: 200 !important;
    line-height: 1 !important;
  }

  body.post-type-archive-product .central-wishlist-button,
  body.post-type-archive-product .central-product-fulfillment,
  body.post-type-archive-product .central-product-stock-badge,
  body.tax-product_cat .central-wishlist-button,
  body.tax-product_cat .central-product-fulfillment,
  body.tax-product_cat .central-product-stock-badge,
  body.tax-product_tag .central-wishlist-button,
  body.tax-product_tag .central-product-fulfillment,
  body.tax-product_tag .central-product-stock-badge {
    display: none !important;
  }

  body.post-type-archive-product .woocommerce-loop-product__title,
  body.tax-product_cat .woocommerce-loop-product__title,
  body.tax-product_tag .woocommerce-loop-product__title {
    display: block !important;
    margin: 0 0 4px !important;
    padding: 0 !important;
    text-align: left !important;
    color: #050505 !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    letter-spacing: -.03em !important;
  }

  body.post-type-archive-product ul.products li.product .price,
  body.tax-product_cat ul.products li.product .price,
  body.tax-product_tag ul.products li.product .price {
    display: inline-flex !important;
    align-items: baseline !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 4px !important;
    margin: 0 !important;
    color: #050505 !important;
    text-align: left !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
  }

  body.post-type-archive-product ul.products li.product .price *,
  body.tax-product_cat ul.products li.product .price *,
  body.tax-product_tag ul.products li.product .price * {
    display: inline !important;
    margin: 0 !important;
    color: #050505 !important;
    text-align: left !important;
    white-space: nowrap !important;
  }
}

/* Final mobile shop/category archive override: Represent-style product wall. */
@media (max-width: 767px) {
  body.post-type-archive-product .central-page,
  body.tax-product_cat .central-page,
  body.tax-product_tag .central-page {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
  }

  body.post-type-archive-product .woocommerce-products-header,
  body.tax-product_cat .woocommerce-products-header,
  body.tax-product_tag .woocommerce-products-header,
  body.post-type-archive-product .woocommerce-result-count,
  body.tax-product_cat .woocommerce-result-count,
  body.tax-product_tag .woocommerce-result-count,
  body.post-type-archive-product .woocommerce-ordering,
  body.tax-product_cat .woocommerce-ordering,
  body.tax-product_tag .woocommerce-ordering {
    display: none !important;
  }

  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products,
  body.post-type-archive-product .woocommerce ul.products,
  body.tax-product_cat .woocommerce ul.products,
  body.tax-product_tag .woocommerce ul.products {
    --central-product-columns: 2;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
  }

  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product,
  body.post-type-archive-product .central-product-card,
  body.tax-product_cat .central-product-card,
  body.tax-product_tag .central-product-card {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 10px 34px !important;
    border-right: 1px solid #fff !important;
    text-align: left !important;
    background: #fff !important;
  }

  body.post-type-archive-product ul.products li.product:nth-child(2n),
  body.tax-product_cat ul.products li.product:nth-child(2n),
  body.tax-product_tag ul.products li.product:nth-child(2n) {
    border-right: 0 !important;
  }

  body.post-type-archive-product .central-product-card__image,
  body.tax-product_cat .central-product-card__image,
  body.tax-product_tag .central-product-card__image,
  body.post-type-archive-product ul.products li.product .woocommerce-LoopProduct-link,
  body.tax-product_cat ul.products li.product .woocommerce-LoopProduct-link,
  body.tax-product_tag ul.products li.product .woocommerce-LoopProduct-link {
    display: grid !important;
    place-items: center !important;
    width: calc(100% + 20px) !important;
    height: 260px !important;
    aspect-ratio: auto !important;
    margin: 0 -10px 14px !important;
    padding: 20px 10px !important;
    border: 0 !important;
    background: #fff !important;
    overflow: hidden !important;
  }

  body.post-type-archive-product ul.products li.product a img,
  body.tax-product_cat ul.products li.product a img,
  body.tax-product_tag ul.products li.product a img,
  body.post-type-archive-product .central-product-card__image img,
  body.tax-product_cat .central-product-card__image img,
  body.tax-product_tag .central-product-card__image img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    background: transparent !important;
  }

  body.post-type-archive-product .central-product-card__quick,
  body.tax-product_cat .central-product-card__quick,
  body.tax-product_tag .central-product-card__quick {
    position: absolute !important;
    right: 10px !important;
    top: 226px !important;
    z-index: 5 !important;
    display: grid !important;
    place-items: center !important;
    width: 24px !important;
    height: 24px !important;
    color: #111 !important;
    font-size: 24px !important;
    line-height: 1 !important;
    font-weight: 200 !important;
    text-decoration: none !important;
  }

  body.post-type-archive-product .central-product-fulfillment,
  body.tax-product_cat .central-product-fulfillment,
  body.tax-product_tag .central-product-fulfillment,
  body.post-type-archive-product .central-product-stock-badge,
  body.tax-product_cat .central-product-stock-badge,
  body.tax-product_tag .central-product-stock-badge,
  body.post-type-archive-product .central-wishlist-button,
  body.tax-product_cat .central-wishlist-button,
  body.tax-product_tag .central-wishlist-button {
    display: none !important;
  }

  body.post-type-archive-product .woocommerce-loop-product__title,
  body.tax-product_cat .woocommerce-loop-product__title,
  body.tax-product_tag .woocommerce-loop-product__title,
  body.post-type-archive-product .central-product-card__title,
  body.tax-product_cat .central-product-card__title,
  body.tax-product_tag .central-product-card__title {
    display: block !important;
    margin: 0 0 4px !important;
    padding: 0 !important;
    color: #050505 !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    letter-spacing: -.03em !important;
    text-align: left !important;
    max-width: none !important;
    -webkit-line-clamp: 2;
  }

  body.post-type-archive-product ul.products li.product .price,
  body.tax-product_cat ul.products li.product .price,
  body.tax-product_tag ul.products li.product .price,
  body.post-type-archive-product .central-product-card__price,
  body.tax-product_cat .central-product-card__price,
  body.tax-product_tag .central-product-card__price {
    display: block !important;
    margin: 0 !important;
    color: #050505 !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    font-weight: 500 !important;
    text-align: left !important;
  }

  body.post-type-archive-product ul.products li.product .price *,
  body.tax-product_cat ul.products li.product .price *,
  body.tax-product_tag ul.products li.product .price *,
  body.post-type-archive-product .central-product-card__price *,
  body.tax-product_cat .central-product-card__price *,
  body.tax-product_tag .central-product-card__price * {
    color: #050505 !important;
  }
}

/* Final logo sizing override: honor Central Theme header logo width controls. */
.central-header .central-logo img {
  width: var(--central-logo-desktop-width, 220px) !important;
  max-width: min(var(--central-logo-desktop-width, 220px), calc(100vw - 180px)) !important;
  max-height: none !important;
}

@media (max-width: 767px) {
  .central-header .central-logo img,
  .home .central-header--home-overlay .central-logo img,
  .blog .central-header--home-overlay .central-logo img {
    width: var(--central-logo-mobile-width, 150px) !important;
    max-width: min(var(--central-logo-mobile-width, 150px), calc(100vw - 168px)) !important;
    max-height: none !important;
  }
}

/* Mobile shop/category archive: Represent-style two-column product wall. */
@media (max-width: 767px) {
  body.post-type-archive-product .central-page,
  body.tax-product_cat .central-page,
  body.tax-product_tag .central-page {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
  }

  body.post-type-archive-product .woocommerce-products-header,
  body.tax-product_cat .woocommerce-products-header,
  body.tax-product_tag .woocommerce-products-header,
  body.post-type-archive-product .woocommerce-result-count,
  body.tax-product_cat .woocommerce-result-count,
  body.tax-product_tag .woocommerce-result-count,
  body.post-type-archive-product .woocommerce-ordering,
  body.tax-product_cat .woocommerce-ordering,
  body.tax-product_tag .woocommerce-ordering {
    display: none !important;
  }

  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products,
  body.post-type-archive-product .woocommerce ul.products,
  body.tax-product_cat .woocommerce ul.products,
  body.tax-product_tag .woocommerce ul.products {
    --central-product-columns: 2;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
  }

  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product,
  body.post-type-archive-product .central-product-card,
  body.tax-product_cat .central-product-card,
  body.tax-product_tag .central-product-card {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 10px 34px !important;
    border-right: 1px solid #fff !important;
    text-align: left !important;
    background: #fff !important;
  }

  body.post-type-archive-product ul.products li.product:nth-child(2n),
  body.tax-product_cat ul.products li.product:nth-child(2n),
  body.tax-product_tag ul.products li.product:nth-child(2n) {
    border-right: 0 !important;
  }

  body.post-type-archive-product .central-product-card__image,
  body.tax-product_cat .central-product-card__image,
  body.tax-product_tag .central-product-card__image,
  body.post-type-archive-product ul.products li.product .woocommerce-LoopProduct-link,
  body.tax-product_cat ul.products li.product .woocommerce-LoopProduct-link,
  body.tax-product_tag ul.products li.product .woocommerce-LoopProduct-link {
    display: grid !important;
    place-items: center !important;
    width: calc(100% + 20px) !important;
    height: 260px !important;
    aspect-ratio: auto !important;
    margin: 0 -10px 14px !important;
    padding: 20px 10px !important;
    border: 0 !important;
    background: #fff !important;
    overflow: hidden !important;
  }

  body.post-type-archive-product ul.products li.product a img,
  body.tax-product_cat ul.products li.product a img,
  body.tax-product_tag ul.products li.product a img,
  body.post-type-archive-product .central-product-card__image img,
  body.tax-product_cat .central-product-card__image img,
  body.tax-product_tag .central-product-card__image img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    background: transparent !important;
  }

  body.post-type-archive-product .central-product-card__quick,
  body.tax-product_cat .central-product-card__quick,
  body.tax-product_tag .central-product-card__quick {
    position: absolute !important;
    right: 10px !important;
    top: 226px !important;
    z-index: 5 !important;
    display: grid !important;
    place-items: center !important;
    width: 24px !important;
    height: 24px !important;
    color: #111 !important;
    font-size: 24px !important;
    line-height: 1 !important;
    font-weight: 200 !important;
    text-decoration: none !important;
  }

  body.post-type-archive-product .central-product-fulfillment,
  body.tax-product_cat .central-product-fulfillment,
  body.tax-product_tag .central-product-fulfillment,
  body.post-type-archive-product .central-product-stock-badge,
  body.tax-product_cat .central-product-stock-badge,
  body.tax-product_tag .central-product-stock-badge,
  body.post-type-archive-product .central-wishlist-button,
  body.tax-product_cat .central-wishlist-button,
  body.tax-product_tag .central-wishlist-button {
    display: none !important;
  }

  body.post-type-archive-product .woocommerce-loop-product__title,
  body.tax-product_cat .woocommerce-loop-product__title,
  body.tax-product_tag .woocommerce-loop-product__title,
  body.post-type-archive-product .central-product-card__title,
  body.tax-product_cat .central-product-card__title,
  body.tax-product_tag .central-product-card__title {
    display: block !important;
    margin: 0 0 4px !important;
    padding: 0 !important;
    color: #050505 !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    letter-spacing: -.03em !important;
    text-align: left !important;
    max-width: none !important;
    -webkit-line-clamp: 2;
  }

  body.post-type-archive-product ul.products li.product .price,
  body.tax-product_cat ul.products li.product .price,
  body.tax-product_tag ul.products li.product .price,
  body.post-type-archive-product .central-product-card__price,
  body.tax-product_cat .central-product-card__price,
  body.tax-product_tag .central-product-card__price {
    display: block !important;
    margin: 0 !important;
    color: #050505 !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    font-weight: 500 !important;
    text-align: left !important;
  }

  body.post-type-archive-product ul.products li.product .price *,
  body.tax-product_cat ul.products li.product .price *,
  body.tax-product_tag ul.products li.product .price *,
  body.post-type-archive-product .central-product-card__price *,
  body.tax-product_cat .central-product-card__price *,
  body.tax-product_tag .central-product-card__price * {
    color: #050505 !important;
  }
}

/* Keep storefront typography clean and compact without depending on third-party font assets. */
html,
body,
button,
input,
select,
textarea,
.woocommerce,
.woocommerce-page,
.woocommerce button,
.woocommerce input,
.woocommerce select,
.woocommerce textarea {
  font-family: Inter, "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

@media (max-width: 390px) {
  .central-pdp__purchase .woocommerce-variation-add-to-cart,
  .central-pdp__purchase .woocommerce-variation-add-to-cart-enabled,
  .central-pdp__purchase .woocommerce-variation-add-to-cart-disabled,
  .central-pdp__purchase form.cart:not(.variations_form) {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
  }

  .central-pdp__purchase .quantity {
    width: 100%;
  }

  .central-pdp__purchase .quantity .qty {
    width: 42px;
  }

  .central-pdp__purchase .central-quantity-button {
    width: 36px;
  }
}

@media (max-width: 520px) {
  .central-footer__columns {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 960px) {
  body.single-product .central-header {
    border-bottom: 0;
  }

  .central-pdp__inner {
    grid-template-columns: minmax(0, 540px) minmax(0, 500px);
    gap: 60px;
    align-items: start;
    justify-content: center;
  }

  .central-pdp__gallery {
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: start;
    position: sticky;
    top: 30px;
    width: 100%;
    min-width: 0;
  }

  .central-pdp__stage {
    grid-column: 2;
    grid-row: 1;
  }

  .central-pdp__info {
    position: sticky;
    top: 30px;
    width: 100%;
    min-width: 0;
  }

  .central-pdp__thumbs {
    grid-column: 1;
    grid-row: 1;
    order: 0;
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-auto-rows: 50px;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: calc(100vh - 60px);
  }

  .central-pdp__thumb {
    width: 50px;
  }

  .central-pdp__slide .central-pdp__image,
  .central-pdp__image,
  .woocommerce div.product.central-pdp .central-pdp__image {
    width: 100%;
    height: 100%;
    max-height: none;
  }

  .central-pdp__zoom {
    top: 15px;
    right: 15px;
  }
}

@media (min-width: 1100px) {
  .central-brand-carousel {
    --central-brand-size: 185px;
    --central-brand-gap: 52px;
    --central-brand-arrow-size: 48px;
    --central-brand-arrow-gap: 34px;
    --central-brand-label-space: 42px;
  }

  .central-brand__name {
    margin-top: 13px;
    font-size: 16px;
  }

  .central-product-grid,
  .woocommerce .products ul,
  .woocommerce-page .products ul,
  .products ul,
  ul.products,
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .woocommerce ul.products[class*="columns-"] {
    --central-product-columns: 4;
    --central-product-gap-row: 32px;
    --central-product-gap-column: 20px;
  }
}

/* SkrrrtKicks reference header, hero, and delivery bar */
.central-announcement {
  min-height: 36px;
  display: grid;
  place-items: center;
  background: var(--central-announcement-bg, #000);
  color: var(--central-announcement-color, #fff);
  font-size: var(--central-announcement-font-size, 12px);
  line-height: 1.35;
  font-weight: 700;
  padding: 8px 15px;
}

.central-announcement::after {
  content: none;
}

.central-header {
  height: 64px;
  background: #fff;
  border-bottom: 1px solid #dcdcdc;
}

.central-header__inner {
  width: 100%;
  min-height: 64px;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 92px;
  gap: 0;
}

.central-menu-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  justify-self: start;
  border-radius: 0;
}

.central-logo {
  grid-column: 2;
  justify-self: center;
  position: static;
  transform: none;
  min-width: 0;
}

.central-logo img {
  width: auto;
  max-width: var(--central-logo-mobile-width, 150px);
  max-height: 42px;
  object-fit: contain;
}

.central-nav {
  display: none;
}

.central-actions {
  grid-column: 3;
  justify-self: end;
  gap: 10px;
}

.central-search-toggle,
.central-cart-link {
  position: relative;
  display: inline-flex;
  width: 22px;
  height: 22px;
  padding: 0;
  border-radius: 0;
}

.central-search-toggle svg,
.central-cart-link svg {
  width: 22px;
  height: 22px;
}

.central-account-link,
.central-wishlist-link {
  display: none;
}

.central-count {
  position: absolute;
  right: -7px;
  top: -9px;
  min-width: 16px;
  height: 16px;
  margin: 0;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
}

.central-home {
  border-top: 0;
}

.central-hero-slider {
  position: relative;
  width: 100%;
  max-width: none;
  height: var(--central-hero-mobile-height, 720px);
  margin: 0;
  overflow: hidden;
  background: #f4f4f4;
  color: #fff;
  isolation: isolate;
  touch-action: pan-y;
}

.central-hero-slider__viewport,
.central-hero-slider__track,
.central-hero-slide,
.central-hero-slide picture,
.central-hero-slide img {
  width: 100%;
  height: 100%;
}

.central-hero-slider__viewport {
  overflow: hidden;
}

.central-hero-slider__track {
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: transform .58s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.central-hero-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  overflow: hidden;
  background: #e8e8e8;
}

.central-hero-slide picture {
  display: block;
}

.central-hero-slide img {
  display: block;
  object-fit: cover;
  object-position: var(--central-hero-object-position, center);
  transform: scale(var(--central-hero-image-scale, 1));
  transform-origin: center center;
}

.central-hero-slider--overlay .central-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, var(--central-hero-overlay-opacity, .2));
  pointer-events: none;
}

.central-hero-slide__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.central-hero-slide__content {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  bottom: clamp(58px, 9vw, 96px);
  z-index: 3;
  max-width: min(420px, calc(100% - 36px));
  color: #fff;
  text-shadow: 0 1px 20px rgba(0, 0, 0, .34);
}

.central-hero-slide__content h2 {
  margin: 0 0 10px;
  font-size: clamp(32px, 5vw, 68px);
  line-height: .92;
  letter-spacing: -.06em;
  font-weight: 900;
}

.central-hero-slide__content p {
  margin: 0 0 18px;
  max-width: 32em;
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.45;
}

.central-hero-slide__button {
  position: relative;
  z-index: 4;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.central-hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(-50%);
}

.central-hero-slider__dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .12);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, width .2s ease;
}

.central-hero-slider__dots button.is-active {
  width: 18px;
  background: #fff;
}

.central-hero-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .78);
  color: #111;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, transform .2s ease;
}

.central-hero-slider__arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
}

.central-hero-slider__arrow--prev {
  left: 18px;
}

.central-hero-slider__arrow--next {
  right: 18px;
}

.central-hero-slider-warning {
  margin: 0;
  padding: 14px 18px;
  background: #fff7ed;
  color: #9a3412;
  border-bottom: 1px solid #fed7aa;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.central-represent-products {
  padding-top: clamp(30px, 6vw, 64px);
  padding-bottom: clamp(30px, 6vw, 64px);
  background: #fff;
  color: #050505;
}

.central-represent-products__title {
  margin: 0 0 clamp(18px, 4vw, 34px);
  font-size: clamp(22px, 4.2vw, 44px);
  line-height: .96;
  font-weight: 950;
  letter-spacing: -.055em;
  text-align: center;
  text-transform: none;
}

.central-represent-products__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1px;
  row-gap: clamp(22px, 5vw, 44px);
  background: #fff;
}

.central-represent-product {
  position: relative;
  display: grid;
  grid-template-rows: auto 40px 18px 22px;
  align-content: start;
  min-width: 0;
  padding-bottom: 2px;
  background: #fff;
}

.central-represent-product__image {
  display: grid;
  place-items: center;
  min-height: clamp(210px, 54vw, 430px);
  padding: clamp(14px, 4vw, 34px);
  background: #fff;
}

.central-represent-product__image img {
  width: 100%;
  height: 100%;
  max-height: clamp(190px, 47vw, 390px);
  object-fit: contain;
  mix-blend-mode: normal;
  transition: transform .36s cubic-bezier(.22, 1, .36, 1);
}

.central-represent-product__image:hover img,
.central-represent-product__image:focus-visible img {
  transform: scale(1.025);
}

.central-represent-product__title {
  margin: 12px 10px 4px;
  max-width: 21em;
  min-height: 32px;
  max-height: 36px;
  overflow: hidden;
  font-size: clamp(12px, 2.8vw, 14px);
  line-height: 1.28;
  font-weight: 850;
  letter-spacing: -.02em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.central-represent-product__title a {
  color: inherit;
}

.central-represent-product__price {
  margin: 0 10px;
  color: #111;
  font-size: clamp(12px, 2.8vw, 14px);
  line-height: 1.45;
  font-weight: 500;
}

.central-represent-product__stock {
  min-height: 16px;
  margin: 0 10px 2px;
  color: #777;
  font-size: clamp(11px, 2.5vw, 12px);
  font-weight: 700;
  line-height: 1.25;
}

.central-represent-product__price del {
  color: #777;
}

.central-represent-product__price ins {
  color: inherit;
  text-decoration: none;
}

.central-represent-products__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 6vw, 52px);
}

.central-represent-products__cta {
  display: inline-flex;
  min-width: min(100%, 226px);
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 4px;
  background: #050505;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.02em;
  text-align: center;
  transition: transform .18s ease, background .18s ease;
}

.central-represent-products__cta:hover,
.central-represent-products__cta:focus-visible {
  background: #1a1a1a;
  transform: translateY(-1px);
}

.central-home-promos {
  display: grid;
  width: 100%;
  max-width: none;
  gap: 0;
  padding: 0;
  margin: 0;
}

.central-hero-slider + .central-home-promos {
  margin-top: 18px;
}

.central-home-promo {
  position: relative;
  display: block;
  width: 100%;
  min-height: clamp(440px, 108vw, 680px);
  overflow: hidden;
  border-radius: 0;
  background: #111;
  color: #fff;
  isolation: isolate;
}

.central-home-promo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1);
}

.central-home-promo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .2) 48%, rgba(0, 0, 0, .66) 100%);
  pointer-events: none;
}

.central-home-promo__content {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 7px;
  width: min(520px, calc(100% - 36px));
  max-width: calc(100% - 36px);
  text-align: center;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .35);
  transform: translate(-50%, -50%);
}

.central-home-promo__label {
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.central-home-promo__title {
  font-size: clamp(26px, 6vw, 54px);
  line-height: .95;
  font-weight: 950;
  letter-spacing: -.055em;
}

.central-home-promo__subtitle {
  max-width: 34em;
  font-size: clamp(13px, 2.6vw, 16px);
  line-height: 1.35;
  font-weight: 650;
}

.central-home-promo__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(190px, 100%);
  min-height: 44px;
  margin-top: 13px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 4px;
  background: #fff;
  color: #050505;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: -.02em;
  text-transform: none;
  text-shadow: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.central-home-promo__button--collection {
  position: absolute;
  left: 50%;
  bottom: clamp(42px, 8vw, 78px);
  z-index: 2;
  margin-top: 0;
  transform: translateX(-50%);
}

a.central-home-promo:hover img,
a.central-home-promo:focus-visible img {
  transform: scale(1.035);
}

a.central-home-promo__button:hover,
a.central-home-promo__button:focus-visible {
  background: #f2f2f2;
  border-color: rgba(255, 255, 255, .95);
  transform: translateY(-1px);
}

a.central-home-promo__button--collection:hover,
a.central-home-promo__button--collection:focus-visible {
  transform: translate(-50%, -1px);
}

a.central-home-promo:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .central-represent-products__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .central-home-promo {
    min-height: clamp(520px, 54vw, 660px);
  }

  .central-home-promo__content {
    top: 48%;
  }
}

@media (max-width: 767px) {
  .central-home-promo {
    min-height: clamp(470px, 126vw, 560px);
  }

  .central-home-promo__content {
    top: 47%;
    gap: 8px;
    width: min(330px, calc(100% - 30px));
    max-width: calc(100% - 30px);
  }

  .central-home-promo__button {
    min-width: min(172px, 100%);
    min-height: 42px;
    margin-top: 12px;
    padding: 0 18px;
    font-size: 12px;
  }

  .central-home-promo__button--collection {
    bottom: clamp(34px, 10vw, 54px);
    margin-top: 0;
  }
}

.home-picture-hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 470px;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.home-picture-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
}

.home-picture-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .78));
  pointer-events: none;
}

.home-picture-copy {
  position: relative;
  z-index: 1;
  min-height: 470px;
  width: 100%;
  padding: 42px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.home-picture-copy span {
  display: inline-flex;
  width: max-content;
  margin-bottom: 14px;
  color: #f5c15d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-picture-copy h2 {
  max-width: 330px;
  margin: 0 0 18px;
  font-size: 38px;
  line-height: .9;
  letter-spacing: -.07em;
  font-weight: 900;
}

.home-picture-copy p {
  max-width: 310px;
  margin: 0 0 22px;
  color: #e5e5e5;
  font-size: 14px;
  line-height: 1.65;
}

.home-picture-copy a {
  width: max-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #111;
  padding: 0 22px;
  font-weight: 900;
}

.marquee {
  overflow: hidden;
  margin-top: 0;
  background: #111;
  color: #fff;
  border: 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  min-width: 200%;
  white-space: nowrap;
  animation: central-marquee var(--central-marquee-duration, 120s) linear infinite;
  font-size: 12px;
  font-weight: 900;
}

.marquee__group {
  display: flex;
  gap: 48px;
  min-width: 50%;
  padding: 10px 24px;
}

.marquee span {
  position: relative;
  min-width: max-content;
}

.marquee span:not(:first-child)::before {
  content: "â€¢";
  position: absolute;
  left: -27px;
  color: #777;
}

@keyframes central-marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 901px) {
  .central-announcement {
    display: grid;
  }

  .central-header {
    height: 68px;
  }

  .central-header__inner {
    min-height: 68px;
    padding: 0 58px;
    grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  }

  .central-menu-toggle {
    display: none;
  }

  .central-nav {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    justify-self: start;
    align-items: center;
  }

  .central-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .central-nav a {
    min-height: 0;
    padding: 0;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .02em;
  }

  .central-logo {
    grid-column: 2;
    grid-row: 1;
  }

  .central-logo img {
    max-width: var(--central-logo-desktop-width, 220px);
    max-height: 44px;
  }

  .central-actions {
    grid-column: 3;
    grid-row: 1;
    gap: 18px;
  }

  .home-picture-hero {
    min-height: 620px;
  }

  .central-hero-slider {
    --central-hero-image-scale: 1.72;
    --central-hero-object-position: center;
    height: min(var(--central-hero-desktop-height, 560px), 560px, 42vw);
    min-height: 420px;
  }

  .home-picture-hero > img {
    object-position: center;
  }

  .home-picture-hero::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .34) 42%, rgba(0, 0, 0, 0) 72%);
  }

  .home-picture-copy {
    width: min(560px, 52%);
    min-height: 620px;
    margin-left: max(46px, calc((100vw - 1280px) / 2));
    padding: 44px 54px;
    justify-content: center;
  }

  .home-picture-copy h2 {
    max-width: 7em;
    font-size: clamp(42px, 5vw, 68px);
  }

  .home-picture-copy p {
    max-width: 430px;
    font-size: 16px;
  }

  .marquee__track {
    gap: 62px;
    font-size: 14px;
  }

  .marquee__group {
    gap: 62px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .marquee span:not(:first-child)::before {
    left: -34px;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .central-hero-slider {
    --central-hero-image-scale: 1.08;
    --central-hero-object-position: center;
    height: min(var(--central-hero-desktop-height, 560px), 560px, 70vw);
    min-height: 480px;
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CART DRAWER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.central-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 999999;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s .3s;
}
.admin-bar .central-cart-drawer {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .central-cart-drawer {
    top: 46px;
  }
}
@media (max-width: 600px) {
  .admin-bar .central-cart-drawer {
    top: 0;
  }
}
.central-cart-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}
.central-cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .48);
  opacity: 0;
  transition: opacity .3s cubic-bezier(.22, 1, .36, 1);
  cursor: pointer;
}
.central-cart-drawer.is-open .central-cart-drawer__backdrop {
  opacity: 1;
}
.central-cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  bottom: 0;
  width: min(400px, calc(100vw - 24px));
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(104%);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
  box-shadow: -16px 0 50px rgba(0, 0, 0, .16);
  will-change: transform;
}
.central-cart-drawer.is-open .central-cart-drawer__panel {
  transform: translateX(0);
}
.central-cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 61px;
  padding: 16px 28px 16px 30px;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  flex-shrink: 0;
}
.central-cart-drawer__header h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
  color: #070707;
}
.central-cart-drawer__close {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #555;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: background-color .18s ease, color .18s ease;
}
.central-cart-drawer__close:hover {
  background: #f4f4f4;
  color: #050505;
}
.central-cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: opacity .2s ease;
}
.central-cart-drawer.is-loading .central-cart-drawer__body {
  opacity: .62;
  pointer-events: none;
}

.central-cart-drawer__notice {
  margin: 14px 18px 4px;
  padding: 12px 14px;
  border: 1px solid #f0d8a8;
  border-radius: 8px;
  background: #fff8ea;
  color: #3f2b08;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  animation: central-cart-drawer-notice-in .26s cubic-bezier(.22, 1, .36, 1) both;
}
.central-cart-drawer__notice--warning {
  border-color: #e8c56f;
  background: #fff7df;
  color: #3a2a08;
}
.central-cart-drawer__notice--error {
  border-color: #efb4ad;
  background: #fff1ef;
  color: #53130d;
}

/* Empty state */
.central-cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  flex: 1;
  padding: 31px 34px 48px;
  text-align: center;
  color: #1f2937;
}
.central-cart-drawer__empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  color: #6f7378;
}
.central-cart-drawer__empty-icon svg {
  display: block;
  width: 56px;
  height: 56px;
}
.central-cart-drawer__empty strong {
  margin: 0 0 22px;
  color: #050505;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
}
.central-cart-drawer__empty p {
  max-width: 330px;
  margin: 0 auto 22px;
  color: #242933;
  font-size: 16px;
  line-height: 1.65;
}
.central-cart-drawer__empty .button {
  min-width: 244px;
  min-height: 52px;
  border-radius: 999px !important;
  background: #070707 !important;
  border: 1px solid #070707 !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

/* Cart items */
.central-cart-drawer__items {
  list-style: none;
  margin: 0;
  padding: 4px 0 0;
}
.central-cart-drawer__item {
  display: grid;
  grid-template-columns: 80px 1fr 28px;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--central-line);
  align-items: start;
}
.central-cart-drawer.is-open .central-cart-drawer__item {
  animation: central-cart-drawer-item-in .32s cubic-bezier(.22, 1, .36, 1) both;
}
.central-cart-drawer.is-open .central-cart-drawer__item:nth-child(2) {
  animation-delay: .04s;
}
.central-cart-drawer.is-open .central-cart-drawer__item:nth-child(3) {
  animation-delay: .08s;
}
.central-cart-drawer.is-open .central-cart-drawer__item:nth-child(n + 4) {
  animation-delay: .1s;
}
.central-cart-drawer.is-open .central-cart-drawer__item.is-highlighted {
  animation: central-cart-drawer-highlight 1.35s cubic-bezier(.22, 1, .36, 1) both;
  background: #fff8ea;
}
.central-cart-drawer__thumb {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--central-soft);
}
.central-cart-drawer__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.central-cart-drawer__details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.central-cart-drawer__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--central-ink);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.central-cart-drawer__variation {
  font-size: 12px;
  color: var(--central-muted);
}
.central-cart-drawer__price {
  font-size: 14px;
  font-weight: 700;
  color: #1570d6;
}
.central-cart-drawer__qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--central-line);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 6px;
  width: fit-content;
}
.central-cart-drawer__qty-btn {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--central-ink);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.central-cart-drawer__qty-btn:hover {
  background: var(--central-soft);
}
.central-cart-drawer__qty-val {
  min-width: 28px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.central-cart-drawer__remove {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #999;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .15s, color .15s;
}
.central-cart-drawer__remove:hover {
  background: #fee;
  color: #c00;
}

@keyframes central-cart-drawer-item-in {
  from {
    opacity: 0;
    transform: translate3d(-10px, 6px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes central-cart-drawer-notice-in {
  from {
    opacity: 0;
    transform: translate3d(0, -6px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes central-cart-drawer-highlight {
  0% {
    box-shadow: inset 4px 0 0 #111, 0 0 0 rgba(0, 0, 0, 0);
  }

  40% {
    box-shadow: inset 4px 0 0 #111, 0 10px 24px rgba(0, 0, 0, .08);
  }

  100% {
    box-shadow: inset 4px 0 0 transparent, 0 0 0 rgba(0, 0, 0, 0);
  }
}

/* Drawer footer */
.central-cart-drawer__footer {
  margin-top: auto;
  padding: 18px 24px 24px;
  border-top: 1px solid var(--central-line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  background: #fff;
}
.central-cart-drawer__totals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}
.central-cart-drawer__totals strong {
  font-size: 18px;
  color: var(--central-ink);
}
.central-cart-drawer__view-cart {
  background: #fff !important;
  color: #111 !important;
  border: 1px solid #111 !important;
  text-align: center;
  display: none !important;
}
.central-cart-drawer__checkout {
  text-align: center;
  display: block;
}

body.central-drawer-open {
  overflow: hidden;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FREE SHIPPING PROGRESS BAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.central-shipping-bar {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 10px;
  row-gap: 10px;
  align-items: center;
  padding: 20px 30px 18px;
  background:
    radial-gradient(circle at 42px 28px, rgba(38, 128, 255, .1), transparent 28px),
    #f7f7f7;
  border-bottom: 1px solid #ededed;
}
.central-shipping-bar__icon {
  width: 31px;
  height: 31px;
  border: 1.5px solid #2680ff;
  border-radius: 50%;
  color: #2680ff;
  background: #fff;
  box-shadow: 0 8px 18px rgba(38, 128, 255, .14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: 1;
  animation: central-shipping-icon-bob 2.4s ease-in-out infinite;
}
.central-shipping-bar__msg {
  grid-column: 1 / -1;
  margin: 1px 0 0;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
  color: #1f2937;
  animation: central-shipping-message-in .42s ease both;
}
.central-shipping-bar__msg--success {
  color: #16a34a;
}
.central-shipping-bar__msg strong {
  color: #066cff;
  font-weight: 800;
  white-space: nowrap;
}
.central-shipping-bar__track {
  height: 6px;
  background: #dedede;
  border-radius: 999px;
  overflow: hidden;
  grid-column: 2;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .08);
}
.central-shipping-bar__fill {
  position: relative;
  height: 100%;
  background: linear-gradient(90deg, #050505, #1d1d1d);
  border-radius: 999px;
  overflow: hidden;
  transition: width .55s cubic-bezier(.22, 1, .36, 1);
}
.central-shipping-bar__fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .35) 42%, transparent 72%);
  transform: translateX(-110%);
  animation: central-shipping-shine 2.2s ease-in-out infinite;
}
.central-shipping-bar__msg--success + .central-shipping-bar__track .central-shipping-bar__fill,
.central-shipping-bar:has(.central-shipping-bar__msg--success) .central-shipping-bar__fill {
  background: linear-gradient(90deg, #16a34a, #22c55e);
}

@keyframes central-shipping-icon-bob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@keyframes central-shipping-shine {
  0%,
  35% {
    transform: translateX(-110%);
  }

  75%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes central-shipping-message-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .central-shipping-bar__icon,
  .central-shipping-bar__fill::after,
  .central-shipping-bar__msg {
    animation: none;
  }
}

/* On cart page */
.woocommerce-cart .central-shipping-bar {
  padding: 16px 0;
  background: transparent;
  border-bottom: 0;
  margin-bottom: 16px;
}

@media (max-width: 540px) {
  .central-cart-drawer__panel {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: min(88dvh, 720px);
    border-radius: 18px 18px 0 0;
    transform: translate3d(0, 104%, 0);
    box-shadow: 0 -18px 48px rgba(0, 0, 0, .18);
  }

  .central-cart-drawer.is-open .central-cart-drawer__panel {
    transform: translate3d(0, 0, 0);
  }

  .central-cart-drawer__header {
    min-height: 58px;
    padding: 15px 18px 15px 20px;
  }

  .central-cart-drawer__header h2 {
    font-size: 18px;
  }

  .central-shipping-bar {
    padding: 18px 20px 16px;
  }

  .central-cart-drawer__empty {
    padding: 30px 24px 44px;
  }

  .central-cart-drawer__empty p {
    font-size: 15px;
  }

  .central-cart-drawer__empty .button {
    width: min(100%, 244px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .central-cart-drawer,
  .central-cart-drawer__backdrop,
  .central-cart-drawer__panel,
  .central-cart-drawer__body {
    transition: none;
  }

  .central-cart-drawer__notice,
  .central-cart-drawer.is-open .central-cart-drawer__item,
  .central-cart-drawer__item.is-highlighted {
    animation: none;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CHECKOUT PROGRESS BAR (enhanced)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.central-checkout-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  justify-content: center;
  gap: 0;
  width: min(100%, 360px);
  max-width: 360px;
  margin: 0 auto 22px;
  padding: 10px 0 0;
  counter-reset: checkout-step;
}
.central-checkout-progress::before {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(16.666% + 10px);
  right: calc(16.666% + 10px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #111 0%, #111 50%, #d9d9d9 50%, #d9d9d9 100%);
}
.central-checkout-progress span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  text-align: center;
  color: #8b8b8b;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}
.central-checkout-progress span::before {
  content: counter(checkout-step);
  counter-increment: checkout-step;
  position: static;
  transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #d9d9d9;
  background: #f2f2f2;
  color: #8b8b8b;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
}
.central-checkout-progress span.is-complete,
.central-checkout-progress span.is-current {
  color: #111;
}
.central-checkout-progress span.is-complete::before,
.central-checkout-progress span.is-current::before {
  background: #111;
  border-color: #111;
  color: #fff;
}
.central-checkout-progress span.is-upcoming::before {
  background: #f4f4f4;
  border-color: #dcdcdc;
}
.central-checkout-progress span::after {
  content: none;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CART TRUST BAR (enhanced)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.central-cart-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 14px 0;
  margin-bottom: 16px;
  border: 1px solid var(--central-line);
  border-radius: var(--central-radius);
  background: var(--central-soft);
}
.central-cart-trust span {
  font-size: 12px;
  font-weight: 700;
  color: var(--central-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.central-cart-trust span::before {
  content: "âœ“";
  color: #16a34a;
  font-weight: 900;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ORDER PROMISES (enhanced)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.central-order-promises {
  display: grid;
  gap: 8px;
  padding: 14px;
  margin-top: 14px;
  border: 1px solid var(--central-line);
  border-radius: var(--central-radius);
  background: var(--central-soft);
}
.central-order-promises span {
  font-size: 13px;
  font-weight: 600;
  color: var(--central-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.central-order-promises span::before {
  content: "ðŸ”’";
  font-size: 14px;
}
.central-order-promises span:nth-child(2)::before { content: "âœ…"; }
.central-order-promises span:nth-child(3)::before { content: "ðŸ’¬"; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CHECKOUT PROMISES (below place order)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.central-checkout-promises {
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--central-soft);
  border: 1px solid var(--central-line);
  border-radius: var(--central-radius);
  font-size: 12px;
  font-weight: 600;
  color: var(--central-muted);
  text-align: center;
  line-height: 1.5;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STICKY MOBILE CHECKOUT BUTTON
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.central-sticky-checkout {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--central-line);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .08);
  transform: translateY(100%);
  transition: transform .25s ease;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
}
.central-sticky-checkout.is-visible {
  transform: translateY(0);
}
.central-sticky-checkout__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: var(--central-container);
  margin: 0 auto;
}
.central-sticky-checkout__total {
  font-size: 18px;
  font-weight: 800;
  color: var(--central-ink);
}
.central-sticky-checkout__btn {
  min-width: 160px;
  text-align: center;
  padding: 14px 24px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

/* Hide sticky on desktop */
@media (min-width: 769px) {
  .central-sticky-checkout {
    display: none;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   COLLAPSIBLE ORDER SUMMARY (mobile checkout)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.central-order-summary-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--central-line);
  border-radius: var(--central-radius);
  background: var(--central-soft);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--central-ink);
  margin-bottom: 16px;
}
.central-order-summary-toggle svg {
  transition: transform .2s ease;
}
.central-order-summary-toggle.is-open svg {
  transform: rotate(180deg);
}
.central-order-summary-collapsible {
  margin-bottom: 16px;
}

@media (min-width: 769px) {
  .central-order-summary-toggle {
    display: none;
  }
  .central-order-summary-collapsible {
    display: table !important;
  }
  .central-order-summary-collapsible[hidden] {
    display: table !important;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CHECKOUT FORM ENHANCEMENTS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.woocommerce-checkout .woocommerce-billing-fields h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
}
.woocommerce-checkout .form-row {
  margin-bottom: 14px;
}

/* Central AE live product page visual copy */
body.single-product {
  background: #fff;
}

body.single-product .central-header {
  height: 72px;
  border-bottom: 1px solid #e8e8e8;
  background: #fff;
}

body.single-product .central-header__inner {
  width: 100%;
  max-width: none;
  min-height: 72px;
}

body.single-product .central-logo img {
  width: auto;
  max-width: 220px;
  max-height: 44px;
}

body.single-product .site-content {
  padding-top: 0;
}

body.single-product .central-pdp__breadcrumb {
  width: calc(100% - 30px);
  max-width: 1116px;
  margin: 27px auto 28px;
  color: #8c8c8c;
  font-size: 14px;
  line-height: 1.4;
}

body.single-product .central-pdp__breadcrumb a {
  color: #8c8c8c;
}

body.single-product .central-pdp__breadcrumb span {
  margin: 0 5px;
}

body.single-product .central-pdp__breadcrumb span:last-child {
  margin-right: 0;
  color: #111;
  font-weight: 500;
}

body.single-product .woocommerce div.product.central-pdp,
body.single-product .central-pdp {
  width: calc(100% - 30px);
  max-width: 1116px;
  margin: 0 auto;
}

body.single-product .central-pdp__inner {
  display: grid;
  grid-template-columns: minmax(0, 535px) minmax(0, 520px);
  gap: 61px;
  align-items: start;
  justify-content: center;
  padding: 0 0 118px;
}

body.single-product .central-pdp__gallery {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  position: sticky;
  top: 28px;
  width: 100%;
}

body.single-product .central-pdp__thumbs {
  grid-column: 1;
  grid-row: 1;
  order: 0;
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: auto;
  grid-auto-rows: 50px;
  gap: 10px;
  width: 50px;
  max-height: none;
  padding: 0;
  overflow: visible;
}

body.single-product .central-pdp__thumb {
  width: 50px;
  height: 50px;
  aspect-ratio: auto;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 5px;
  background: #fff;
}

body.single-product .central-pdp__thumb.is-active {
  border-color: #111;
}

body.single-product .central-pdp__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.single-product .central-pdp__stage {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}

body.single-product .central-pdp__slide {
  background: #fff;
}

body.single-product .central-pdp__slide .central-pdp__image,
body.single-product .central-pdp__image,
body.single-product .woocommerce div.product.central-pdp .central-pdp__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}

body.single-product .central-pdp__zoom {
  top: 16px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-color: #e5e5e5;
  box-shadow: none;
}

body.single-product .central-pdp__zoom svg {
  width: 17px;
  height: 17px;
}

body.single-product .central-pdp__info {
  position: sticky;
  top: 28px;
  width: 100%;
  padding: 0;
}

body.single-product .central-pdp__title,
body.single-product .woocommerce div.product .central-pdp__title {
  max-width: none;
  margin: 0 0 10px;
  color: #111;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
}

body.single-product .central-pdp__price,
body.single-product .woocommerce div.product .central-pdp__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 25px;
  color: #3485e6;
  font-size: 27px;
  line-height: 1.1;
  font-weight: 700;
}

body.single-product .central-pdp__price del,
body.single-product .woocommerce div.product .central-pdp__price del {
  order: 2;
  margin: 0;
  color: #777;
  font-size: 16px;
  font-weight: 400;
  opacity: 1;
}

body.single-product .central-pdp__price ins,
body.single-product .woocommerce div.product .central-pdp__price ins {
  order: 1;
  color: #3485e6;
  font-size: 27px;
  font-weight: 700;
  text-decoration: none;
}

body.single-product .central-pdp__purchase {
  margin-bottom: 0;
}

body.single-product .central-pdp__purchase .variations {
  margin: 0 0 25px;
}

body.single-product .central-pdp__purchase .variations th {
  margin: 0 0 10px;
  color: #333;
  font-size: 15px;
  font-weight: 400;
}

body.single-product .central-option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.single-product .central-option-button {
  min-width: 54px;
  min-height: 42px;
  padding: 10px 20px;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  background: #fff;
  color: #333;
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}

body.single-product .central-option-button.is-selected {
  border-color: #111;
  background: #111;
  color: #fff;
}

body.single-product .central-option-button:disabled,
body.single-product .central-option-button.is-disabled {
  border-color: #e7e7e7;
  background: #f4f4f4;
  color: #9a9a9a;
  opacity: 1;
  cursor: not-allowed;
  pointer-events: none;
}

body.single-product .central-option-button:disabled::before,
body.single-product .central-option-button.is-disabled::before {
  left: -2px;
  right: -2px;
  height: 1px;
  background: #cfcfcf;
  transform: rotate(-38deg);
}

body.single-product .central-pdp__purchase .woocommerce-variation-add-to-cart,
body.single-product .central-pdp__purchase .woocommerce-variation-add-to-cart-enabled,
body.single-product .central-pdp__purchase .woocommerce-variation-add-to-cart-disabled,
body.single-product .central-pdp__purchase form.cart:not(.variations_form) {
  display: grid !important;
  grid-template-columns: 132px minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 10px;
  align-items: center;
}

body.single-product .central-pdp__purchase .quantity {
  width: 130px;
  min-height: 48px;
  border: 1px solid #ececec;
  border-radius: 999px;
  background: #f5f5f5;
}

body.single-product .central-pdp__purchase .quantity .qty {
  min-height: 46px;
  color: #12304d;
  font-size: 15px;
}

body.single-product .central-pdp__purchase .central-quantity-button {
  width: 39px;
  height: 46px;
  color: #777;
  font-size: 22px;
  font-weight: 300;
}

body.single-product .central-pdp__purchase .single_add_to_cart_button,
body.single-product .woocommerce div.product.central-pdp form.cart .button {
  min-height: 48px;
  border: 0 !important;
  border-radius: 999px;
  background: #111 !important;
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
}

body.single-product .central-pdp__purchase .single_add_to_cart_button.central-add-to-cart-loading,
body.single-product .central-pdp__purchase .single_add_to_cart_button.loading,
body.single-product .woocommerce div.product.central-pdp form.cart .single_add_to_cart_button.central-add-to-cart-loading,
body.single-product .woocommerce div.product.central-pdp form.cart .single_add_to_cart_button.loading {
  min-height: 48px;
  border: 0 !important;
  border-radius: 999px;
  background: #111 !important;
  color: #fff !important;
  opacity: 1 !important;
  cursor: wait;
  box-shadow: none !important;
  transform: none !important;
}

body.single-product .central-pdp__purchase .single_add_to_cart_button.central-out-of-stock,
body.single-product .central-pdp__purchase .single_add_to_cart_button.central-out-of-stock:disabled,
body.single-product .central-pdp__purchase .single_add_to_cart_button.central-out-of-stock:hover,
body.single-product .central-pdp__purchase .single_add_to_cart_button.central-out-of-stock:focus,
body.single-product .woocommerce div.product.central-pdp form.cart .single_add_to_cart_button.central-out-of-stock,
body.single-product .woocommerce div.product.central-pdp form.cart .single_add_to_cart_button.central-out-of-stock:disabled,
body.single-product .woocommerce div.product.central-pdp form.cart .single_add_to_cart_button.central-out-of-stock:hover,
body.single-product .woocommerce div.product.central-pdp form.cart .single_add_to_cart_button.central-out-of-stock:focus {
  min-height: 48px;
  border: 0 !important;
  border-radius: 999px;
  background: #d8d8d8 !important;
  color: #777 !important;
  opacity: 1 !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  transform: none !important;
}

body.single-product .central-pdp__purchase .single_add_to_cart_button.central-add-to-cart-loading::after,
body.single-product .central-pdp__purchase .single_add_to_cart_button.loading::after,
body.single-product .woocommerce div.product.central-pdp form.cart .single_add_to_cart_button.central-add-to-cart-loading::after,
body.single-product .woocommerce div.product.central-pdp form.cart .single_add_to_cart_button.loading::after {
  display: none !important;
  content: none !important;
}

body.single-product .central-pdp__purchase .central-pdp__buy-now,
body.single-product .woocommerce div.product.central-pdp form.cart .central-pdp__buy-now {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  grid-column: 1 / -1;
  min-height: 48px;
  margin-top: 0 !important;
  border: 0 !important;
  border-radius: 999px;
  background: #3485e6 !important;
  color: #fff !important;
  text-align: center !important;
}

body.single-product .central-delivery-timeline {
  margin: 20px 0 0;
  padding: 20px;
  border-color: #e6e6e6;
  border-radius: 16px;
  background: #fff;
}

body.single-product .central-delivery-timeline__message {
  margin: 0 0 18px;
  padding: 13px 16px;
  border: 1px solid #eeeeee;
  border-radius: 14px;
  background: #fafafa;
  color: #111;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

body.single-product .central-delivery-timeline__steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 0;
}

body.single-product .central-delivery-timeline__steps::before {
  top: 23px;
  left: calc(16.666% + 24px);
  right: calc(16.666% + 24px);
  height: 2px;
  background: #d9d9d9;
}

body.single-product .central-delivery-timeline__icon {
  width: 46px;
  height: 46px;
  background: #000;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .14);
}

body.single-product .central-delivery-timeline__step {
  gap: 8px;
}

body.single-product .central-delivery-timeline__step strong {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

body.single-product .central-delivery-timeline__step time {
  color: #5f5f5f;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 0;
}

body.single-product .central-pdp__accordions {
  margin-top: 20px;
  border-top: 1px solid #e5e5e5;
}

body.single-product .central-pdp__accordion {
  border-bottom: 1px solid #e5e5e5;
}

body.single-product .central-pdp__accordion summary {
  min-height: 58px;
  color: #111;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

body.single-product .central-pdp__accordion summary::after {
  color: #666;
  font-size: 26px;
  font-weight: 300;
}

body.single-product .central-pdp__people {
  width: calc(100% - 30px);
  max-width: 1116px;
  margin: 0 auto;
  padding: 40px 0 64px;
  border-top: 1px solid #e5e5e5;
}

body.single-product .central-pdp__people::before {
  display: none;
  content: none;
}

body.single-product .central-pdp__people > h2 {
  margin: 0 0 48px;
  color: #111;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  letter-spacing: -.04em;
}

@media (max-width: 900px) {
  body.single-product .central-header {
    height: 64px;
  }

  body.single-product .central-header__inner {
    min-height: 64px;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    padding: 0 15px;
  }

  body.single-product .central-logo img {
    max-width: 112px;
    max-height: 34px;
  }

  body.single-product .central-account-link {
    display: none;
  }

  body.single-product .central-pdp__breadcrumb {
    width: calc(100% - 30px);
    margin: 27px auto 0;
    font-size: 14px;
  }

  body.single-product .woocommerce div.product.central-pdp,
  body.single-product .central-pdp {
    width: 100%;
  }

  body.single-product .central-pdp__inner {
    display: block;
    padding: 0 0 34px;
  }

  body.single-product .central-pdp__gallery {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 30px 15px 0;
  }

  body.single-product .central-pdp__stage {
    order: 1;
    width: 100%;
    aspect-ratio: 1 / 1.17;
  }

  body.single-product .central-pdp__zoom {
    display: none;
  }

  body.single-product .central-pdp__thumbs {
    order: 2;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 30px;
    grid-auto-rows: 30px;
    gap: 10px;
    width: 100%;
    overflow-x: auto;
  }

  body.single-product .central-pdp__thumb {
    width: 30px;
    height: 30px;
    border-radius: 3px;
  }

  body.single-product .central-pdp__info {
    position: static;
    padding: 27px 15px 0;
  }

  body.single-product .central-pdp__title,
  body.single-product .woocommerce div.product .central-pdp__title {
    max-width: 100%;
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 1.2;
  }

  body.single-product .central-pdp__price,
  body.single-product .woocommerce div.product .central-pdp__price,
  body.single-product .central-pdp__price ins,
  body.single-product .woocommerce div.product .central-pdp__price ins {
    font-size: 27px;
  }

  body.single-product .central-pdp__purchase .variations th {
    margin-bottom: 10px;
  }

  body.single-product .central-option-buttons {
    gap: 10px;
  }

  body.single-product .central-option-button {
    min-width: 55px;
    min-height: 42px;
    padding: 10px 20px;
  }

  body.single-product .central-pdp__purchase .woocommerce-variation-add-to-cart,
  body.single-product .central-pdp__purchase .woocommerce-variation-add-to-cart-enabled,
  body.single-product .central-pdp__purchase .woocommerce-variation-add-to-cart-disabled,
  body.single-product .central-pdp__purchase form.cart:not(.variations_form) {
    grid-template-columns: 126px minmax(0, 1fr);
    column-gap: 10px;
    align-items: center;
  }

  body.single-product .central-pdp__purchase .quantity {
    width: 126px;
  }

  body.single-product .central-delivery-timeline {
    margin-top: 14px;
    padding: 14px;
    border-radius: 14px;
  }

  body.single-product .central-delivery-timeline__message {
    margin-bottom: 14px;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
  }

  body.single-product .central-delivery-timeline__steps {
    gap: 10px;
  }

  body.single-product .central-delivery-timeline__steps::before {
    top: 21px;
    left: calc(16.666% + 21px);
    right: calc(16.666% + 21px);
  }

  body.single-product .central-delivery-timeline__icon {
    width: 42px;
    height: 42px;
  }

  body.single-product .central-pdp__accordions {
    margin-top: 25px;
  }

  body.single-product .central-pdp__people {
    width: calc(100% - 30px);
    padding-top: 30px;
  }

  body.single-product .central-pdp__people::before {
    display: none;
  }

  body.single-product .central-pdp__people > h2 {
    font-size: 31px;
  }
}

@media (max-width: 390px) {
  body.single-product .central-pdp__purchase .woocommerce-variation-add-to-cart,
  body.single-product .central-pdp__purchase .woocommerce-variation-add-to-cart-enabled,
  body.single-product .central-pdp__purchase .woocommerce-variation-add-to-cart-disabled,
  body.single-product .central-pdp__purchase form.cart:not(.variations_form) {
    grid-template-columns: minmax(0, 1fr);
  }

  body.single-product .central-pdp__purchase .quantity {
    width: 100%;
  }
}

@media (max-width: 767px) {
}
.woocommerce-checkout .form-row label {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  display: block;
}
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  border-radius: 8px;
  min-height: 48px;
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, .06);
  outline: none;
}
.woocommerce-checkout .form-row .woocommerce-input-wrapper {
  display: block;
  width: 100%;
}

/* Place order button */
.woocommerce-checkout #place_order {
  width: 100%;
  min-height: 54px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 10px;
  letter-spacing: .02em;
}

/* ===== UAE CHECKOUT REDESIGN ===== */
.woocommerce-checkout .entry-content {
  width: min(100% - 28px, 1120px);
}

.woocommerce-checkout .central-page {
  padding-top: 22px;
  padding-bottom: 26px;
}

.woocommerce-checkout .central-page > h1 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0;
}

.woocommerce-checkout .central-footer {
  margin-top: 22px;
}

.woocommerce-checkout .woocommerce {
  max-width: 1120px;
  margin: 0 auto;
}

.woocommerce-checkout .central-checkout-note,
.woocommerce-checkout .woocommerce-notices-wrapper,
.woocommerce-checkout .woocommerce-NoticeGroup,
.woocommerce-checkout .woocommerce-NoticeGroup-checkout,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-error {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto 14px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
  color: #222;
  box-shadow: none;
}

.woocommerce-checkout form.checkout > .woocommerce-notices-wrapper,
.woocommerce-checkout form.checkout > .woocommerce-NoticeGroup,
.woocommerce-checkout form.checkout > .woocommerce-NoticeGroup-checkout,
.woocommerce-checkout form.checkout > .woocommerce-info,
.woocommerce-checkout form.checkout > .woocommerce-message,
.woocommerce-checkout form.checkout > .woocommerce-error {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  margin: 0 0 2px;
}

.woocommerce-checkout .woocommerce-NoticeGroup:empty,
.woocommerce-checkout .woocommerce-NoticeGroup-checkout:empty,
.woocommerce-checkout .woocommerce-notices-wrapper:empty {
  display: none;
}

.woocommerce-checkout .woocommerce-notices-wrapper,
.woocommerce-checkout .woocommerce-NoticeGroup,
.woocommerce-checkout .woocommerce-NoticeGroup-checkout {
  border: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout form.checkout_coupon {
  width: 100%;
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  display: block;
  position: relative;
  padding-left: 50px;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info::before {
  position: absolute;
  top: 14px;
  left: 16px;
  transform: none;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info a,
.woocommerce-checkout .woocommerce-form-coupon-toggle .showcoupon {
  display: inline;
  width: auto;
  min-width: 0;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-NoticeGroup-checkout .woocommerce-error {
  position: relative;
  display: block;
  list-style: none;
  padding: 13px 16px 13px 46px;
  border: 1px solid #f2c9c5;
  border-radius: 10px;
  background: #fff5f4;
  color: #8f1d16;
  box-shadow: none;
}

.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-error,
.woocommerce-checkout .woocommerce-NoticeGroup-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-error {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.woocommerce-checkout .woocommerce-error::before,
.woocommerce-checkout .woocommerce-NoticeGroup-checkout .woocommerce-error::before {
  content: "!";
  position: absolute;
  top: 13px;
  left: 16px;
  width: 18px;
  height: 18px;
  transform: none;
  background: #c0392b;
  color: #fff;
  font-size: 11px;
}

.woocommerce-checkout .woocommerce-error li {
  margin: 0;
  padding: 0;
}

.woocommerce-checkout .woocommerce-error li + li {
  margin-top: 6px;
}

.woocommerce-checkout .central-checkout-progress {
  max-width: 360px;
  margin: 0 auto 18px;
  padding: 8px 0 0;
}

.woocommerce-checkout .central-checkout-progress span {
  font-size: 11px;
}

.woocommerce-checkout form.checkout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 410px);
  gap: 22px;
  align-items: start;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(17, 17, 17, .05);
}

.woocommerce-checkout #customer_details {
  padding: 24px;
}

.woocommerce-checkout #order_review {
  position: sticky;
  top: calc(var(--central-header) + 16px);
  padding: 20px;
}

.admin-bar.woocommerce-checkout #order_review {
  top: calc(var(--central-header) + 48px);
}

.woocommerce-checkout #order_review_heading {
  grid-column: 2;
  margin: 0 0 -10px;
  padding: 0 2px;
  font-size: 18px;
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3,
.woocommerce-checkout h3 {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

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

.woocommerce-checkout #customer_details .col-2 {
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid #ededed;
}

.woocommerce-checkout .form-row-hidden {
  display: none !important;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.woocommerce-checkout .form-row {
  float: none !important;
  width: 100% !important;
  clear: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce-checkout .form-row-wide,
.woocommerce-checkout #billing_first_name_field,
.woocommerce-checkout #billing_address_1_field,
.woocommerce-checkout #order_comments_field {
  grid-column: 1 / -1;
}

.woocommerce-checkout .form-row label {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0 0 7px;
  color: #111;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.woocommerce-checkout .form-row .required {
  color: #111;
  text-decoration: none;
}

.woocommerce-checkout #billing_phone_field .optional {
  display: none !important;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .select2-container .select2-selection--single {
  width: 100%;
  min-height: 50px;
  border: 1px solid #dcdcdc !important;
  border-radius: 8px !important;
  background: #fafafa !important;
  color: #111;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 650;
  box-shadow: none !important;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

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

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .select2-container--focus .select2-selection--single {
  border-color: #111 !important;
  background: #fff !important;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, .08) !important;
}

.woocommerce-checkout .select2-container .select2-selection--single {
  display: flex;
  align-items: center;
  padding: 0 14px;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0;
  line-height: 48px;
}

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

.woocommerce-checkout-review-order-table {
  border-spacing: 0 !important;
  margin: 0 !important;
}

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

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 13px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid #ededed !important;
  background: transparent !important;
  vertical-align: middle;
  font-size: 14px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.woocommerce-checkout-review-order-table .product-name {
  padding-right: 12px !important;
}

.central-checkout-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.central-checkout-item__thumb {
  display: block;
  width: 54px;
  height: 62px;
  overflow: hidden;
  border-radius: 6px;
  background: #f5f5f5;
}

.central-checkout-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.central-checkout-item__name {
  display: block;
  color: #111;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout-review-order-table tfoot td {
  text-align: right;
  font-weight: 800;
}

.woocommerce-checkout-review-order-table tfoot th {
  color: #555;
  font-weight: 750;
}

.woocommerce-checkout-review-order-table tfoot tr.order-total th,
.woocommerce-checkout-review-order-table tfoot tr.order-total td {
  padding-top: 16px !important;
  border-bottom: 0 !important;
  color: #111;
  font-size: 17px !important;
}

.woocommerce-checkout #payment {
  margin-top: 16px;
  border-radius: 0 !important;
  background: transparent !important;
}

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

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method {
  position: relative;
  margin: 0 !important;
  border: 1px solid #dedede;
  border-radius: 8px;
  padding: 14px;
  background: #fafafa;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method:has(input:checked) {
  border-color: #111;
  background: #fff;
  box-shadow: 0 0 0 1px #111 inset;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method > input {
  margin: 0 8px 0 0;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method > label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #111;
  font-size: 14px;
  font-weight: 800;
}

.woocommerce-checkout #payment div.payment_box {
  margin: 12px 0 0 !important;
  border-radius: 8px;
  background: #f3f3f3 !important;
  color: #555 !important;
  font-size: 13px;
  line-height: 1.45;
}

.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: #f3f3f3 !important;
}

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

.woocommerce-checkout #place_order {
  width: 100%;
  min-height: 56px;
  border: 1px solid #111 !important;
  border-radius: 8px !important;
  background: #111 !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 850 !important;
  letter-spacing: 0;
}

.woocommerce-checkout #place_order:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(17, 17, 17, .16);
}

.woocommerce-checkout .central-checkout-promises {
  margin-top: 12px;
  border-radius: 8px;
  background: #f7f7f7;
}

.woocommerce-checkout .woocommerce-privacy-policy-text,
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text {
  display: none !important;
}

.woocommerce-checkout #order_review {
  padding: 18px;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 10px 0 !important;
}

.woocommerce-checkout-review-order-table tbody tr:last-child th,
.woocommerce-checkout-review-order-table tbody tr:last-child td {
  border-bottom-color: #dcdcdc !important;
}

.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal th,
.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td {
  padding-top: 14px !important;
}

.woocommerce-checkout-review-order-table tfoot tr.shipping th,
.woocommerce-checkout-review-order-table tfoot tr.shipping td {
  padding-bottom: 14px !important;
}

.woocommerce-checkout-review-order-table tfoot tr.order-total th,
.woocommerce-checkout-review-order-table tfoot tr.order-total td {
  border-top: 1px solid #111 !important;
}

.central-checkout-item {
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 12px;
}

.central-checkout-item__thumb {
  width: 66px;
  height: 76px;
}

.central-checkout-item__line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.central-checkout-item__name {
  font-size: 13px;
}

.central-checkout-item__qty {
  flex: 0 0 auto;
  min-width: 28px;
  border: 1px solid #e1e1e1;
  border-radius: 999px;
  padding: 3px 8px;
  background: #f7f7f7;
  color: #555;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.woocommerce-checkout-review-order-table .product-quantity {
  display: none;
}

.woocommerce-checkout #payment {
  margin-top: 12px;
}

.woocommerce-checkout #payment ul.payment_methods {
  gap: 8px;
  padding-bottom: 12px !important;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method {
  border-color: #e2e2e2;
  padding: 12px 14px;
  background: #fff;
  overflow: hidden;
  transition:
    border-color .24s cubic-bezier(.22, 1, .36, 1),
    background-color .24s cubic-bezier(.22, 1, .36, 1),
    box-shadow .24s cubic-bezier(.22, 1, .36, 1);
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method:has(input:checked) {
  border-color: #c9c9c9;
  background: #fbfbfb;
  box-shadow: 0 8px 20px rgba(17, 17, 17, .05), 0 0 0 1px rgba(17, 17, 17, .04) inset;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method > label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: calc(100% - 28px);
  vertical-align: middle;
}

.central-payment-mini-icons {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-left: auto;
}

.central-payment-mini-icons span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  border: 1px solid #dedede;
  border-radius: 5px;
  padding: 2px 6px;
  background: #fff;
  color: #333;
  font-size: 9px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.central-payment-mini-icons--cod span {
  border-color: #d8d8d8;
  background: #f4f4f4;
  color: #111;
}

.woocommerce-checkout #payment div.payment_box {
  margin-top: 10px !important;
  padding: 12px !important;
  overflow: hidden;
  animation: central-payment-box-open .28s cubic-bezier(.22, 1, .36, 1) both;
  transform-origin: top;
}

.woocommerce-checkout #place_order {
  min-height: 54px;
}

@keyframes central-payment-box-open {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .woocommerce-checkout #payment ul.payment_methods li.wc_payment_method,
  .woocommerce-checkout #payment div.payment_box {
    animation: none;
    transition: none;
  }
}

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

  .woocommerce-checkout #order_review_heading {
    grid-column: auto;
    margin: 2px 0 -8px;
  }

  .woocommerce-checkout #order_review {
    position: static;
  }
}

@media (max-width: 767px) {
  .woocommerce-checkout .entry-content {
    width: min(100% - 20px, 1120px);
  }

  .woocommerce-checkout .central-page {
    padding-top: 18px;
    padding-bottom: 18px;
  }

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

  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review {
    padding: 16px;
    box-shadow: none;
  }

  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
  .woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .woocommerce-checkout .central-checkout-progress {
    display: grid;
    width: min(100%, 320px);
    margin-bottom: 18px;
  }

  .central-checkout-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
  }

  .central-checkout-item__thumb {
    width: 48px;
    height: 56px;
  }
}

.central-delivery-page-head {
  margin-bottom: 28px;
  padding: 26px;
  border: 1px solid var(--central-line);
  background: #fff;
}

.central-delivery-page-head h1 {
  margin: 6px 0 8px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: .95;
  letter-spacing: 0;
}

.central-delivery-page-head p {
  margin: 0;
  color: var(--central-muted);
  font-weight: 700;
}

.central-delivery-page-brands {
  margin-bottom: 34px;
}

.central-brand-carousel--delivery-page {
  margin-top: 0;
}

@media (min-width: 768px) {
  .central-brand-carousel--delivery-page {
    --central-brand-size: clamp(62px, 5.6vw, 86px);
    --central-brand-gap: clamp(10px, 1.1vw, 16px);
    display: block;
    max-width: 100%;
    padding: 6px 0 12px;
    overflow: visible;
  }

  .central-brand-carousel--delivery-page .central-brand-carousel__arrow,
  .central-brand-carousel--delivery-page .central-brand-carousel__dots {
    display: none;
  }

  .central-brand-carousel--delivery-page .central-brand-carousel__viewport {
    display: block;
    width: 100%;
    padding: 0;
    overflow: visible;
  }

  .central-brand-carousel--delivery-page .central-brand-scroll {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center;
    gap: var(--central-brand-gap);
    width: 100%;
    max-width: 100%;
    overflow: visible !important;
    scroll-snap-type: none;
    scroll-padding-inline: 0;
    padding: 14px 0 8px;
    cursor: default;
  }

  .central-brand-carousel--delivery-page .central-brand {
    flex: 0 0 var(--central-brand-size) !important;
    width: var(--central-brand-size);
    min-width: var(--central-brand-size);
    max-width: var(--central-brand-size);
    padding: 0;
    scroll-snap-align: none;
  }

  .central-brand-carousel--delivery-page .central-brand__name {
    margin-top: 8px;
    font-size: clamp(10px, .82vw, 12px);
  }
}

@media (max-width: 767px) {
  .central-delivery-page-head {
    margin-bottom: 22px;
    padding: 20px;
  }

  .central-delivery-page-brands {
    margin-bottom: 28px;
  }
}

/* ===== LOGO CENTERING FIX ===== */
.central-header .central-header__inner {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  position: relative !important;
}
.central-header .central-logo {
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-self: center !important;
  position: static !important;
  transform: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.central-header .central-actions {
  grid-column: 3 !important;
  justify-self: end !important;
}
.central-header .central-menu-toggle {
  grid-column: 1 !important;
  justify-self: start !important;
}
.central-header .central-nav {
  grid-column: 1 !important;
  justify-self: start !important;
}

.central-header .central-logo img {
  width: var(--central-logo-desktop-width, 220px) !important;
  max-width: var(--central-logo-desktop-width, 220px) !important;
  height: auto !important;
  object-fit: contain !important;
}

@media (max-width: 900px) {
  .central-header .central-header__inner {
    grid-template-columns: 54px minmax(0, 1fr) 54px !important;
    padding-inline: 15px !important;
  }

  .central-header .central-logo {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(calc(-50% + var(--central-logo-mobile-offset-x, 10px)), -50%) !important;
    grid-column: 1 / -1 !important;
    width: auto !important;
    max-width: min(var(--central-logo-mobile-width, 150px), calc(100vw - 150px)) !important;
  }

  .central-header .central-logo img {
    width: var(--central-logo-mobile-width, 150px) !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 42px !important;
  }

  .central-header .central-actions {
    width: 54px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
  }

  .central-header .central-menu-toggle {
    width: 44px !important;
  }
}

/* ===== REPRESENT-STYLE HOMEPAGE HEADER ===== */
.central-announcement {
  position: relative;
  z-index: 90;
  min-height: 33px;
  padding: 8px 42px 7px;
  text-align: center;
  letter-spacing: .02em;
  text-transform: uppercase;
  overflow: hidden;
  max-height: 64px;
  transition: max-height .22s ease, min-height .22s ease, padding .22s ease, opacity .16s ease;
}

.central-announcement a,
.central-announcement span {
  color: inherit;
  text-decoration: none;
}

.central-announcement__close {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity .16s ease, transform .16s ease;
}

.central-announcement__close:hover,
.central-announcement__close:focus-visible {
  opacity: .7;
}

.central-announcement.is-closing {
  max-height: 0 !important;
  min-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  opacity: 0 !important;
}

.central-announcement.is-closing .central-announcement__close {
  transform: translateY(-50%) scale(.88);
}

.central-header {
  position: relative;
  z-index: 85;
  height: 56px;
  background: #fff;
  border-bottom: 1px solid rgba(17, 17, 17, .1);
  transition: background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.central-header--home-overlay {
  position: relative;
  margin-bottom: -56px;
  background: linear-gradient(180deg, rgba(0, 0, 0, .48), rgba(0, 0, 0, .18) 76%, rgba(0, 0, 0, 0));
  border-bottom-color: transparent;
  color: #fff;
  box-shadow: none;
  text-shadow: 0 1px 14px rgba(0, 0, 0, .42);
}

.central-header--home-overlay.is-scrolled {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  transform: none;
  background: rgba(5, 5, 5, .9);
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, .12);
  box-shadow: none;
  text-shadow: none;
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
}

.admin-bar .central-header--home-overlay.is-scrolled {
  top: 0;
}

.central-header .central-header__inner {
  width: 100% !important;
  max-width: none !important;
  min-height: 56px !important;
  padding: 0 28px !important;
  display: grid !important;
  grid-template-columns: minmax(84px, 1fr) auto minmax(84px, 1fr) !important;
  align-items: center !important;
}

.central-header__left,
.central-actions {
  min-width: 0;
  display: inline-flex !important;
  align-items: center !important;
  gap: 18px !important;
}

.central-header__left {
  grid-column: 1;
  justify-self: start;
}

.central-header .central-nav {
  display: none;
}

.central-header .central-logo {
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-self: center !important;
  position: static !important;
  transform: none !important;
  z-index: 2;
}

.central-header .central-logo img {
  width: min(var(--central-logo-mobile-width, 150px), 34vw) !important;
  max-width: min(var(--central-logo-mobile-width, 150px), 34vw) !important;
  max-height: 34px !important;
  filter: none;
}

.central-header--home-overlay:not(.is-scrolled) .central-logo img {
  filter: brightness(0) invert(1);
}

.central-header .central-actions {
  grid-column: 3 !important;
  justify-self: end !important;
  width: auto !important;
}

.central-search-toggle,
.central-icon-link,
.central-cart-link,
.central-menu-toggle {
  color: inherit;
}

.central-search-toggle,
.central-icon-link,
.central-cart-link {
  width: 24px !important;
  height: 24px !important;
  display: inline-grid !important;
  place-items: center;
  padding: 0 !important;
  border: 0;
  background: transparent;
}

.central-search-toggle svg,
.central-icon-link svg,
.central-cart-link svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.central-search-toggle--desktop {
  display: none !important;
}

.central-account-link {
  display: none !important;
}

.central-wishlist-link {
  display: none !important;
}

.central-menu-toggle {
  width: 24px !important;
  height: 24px !important;
  padding: 0 !important;
  border: 0;
  background: transparent;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.central-menu-toggle span,
.central-menu-toggle::before,
.central-menu-toggle::after {
  width: 21px !important;
  height: 1px !important;
  background: currentColor !important;
  border-radius: 999px;
}

.central-count {
  background: currentColor;
  color: #fff;
}

.central-header--home-overlay:not(.is-scrolled) .central-count {
  background: #fff;
  color: #111;
}

.home .central-hero-slider,
.blog .central-hero-slider {
  margin-top: 0;
}

@media (min-width: 901px) {
  .central-header {
    height: 72px;
  }

  .central-header--home-overlay {
    margin-bottom: -72px;
  }

  .central-header .central-header__inner {
    min-height: 72px !important;
    padding: 0 38px !important;
    grid-template-columns: minmax(360px, 1fr) auto minmax(360px, 1fr) !important;
  }

  .central-header__left {
    display: none !important;
  }

  .central-header .central-nav {
    grid-column: 1 !important;
    display: flex !important;
    justify-self: start !important;
    align-items: center !important;
  }

  .central-header .central-nav ul {
    display: flex !important;
    align-items: center;
    gap: 30px;
  }

  .central-header .central-nav a {
    min-height: 72px;
    display: inline-flex;
    align-items: center;
    padding: 0;
    color: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
  }

  .central-header .central-logo img {
    width: var(--central-logo-desktop-width, 220px) !important;
    max-width: var(--central-logo-desktop-width, 220px) !important;
    max-height: 48px !important;
  }

  .central-header .central-actions {
    gap: 22px !important;
  }

  .central-search-toggle--desktop {
    display: inline-grid !important;
  }

  .central-search-toggle--mobile {
    display: none !important;
  }
}

@media (max-width: 782px) {
  .admin-bar .central-header--home-overlay.is-scrolled {
    top: 0;
  }
}

@media (max-width: 767px) {
  .home .central-header--home-overlay,
  .blog .central-header--home-overlay {
    height: 56px !important;
    margin-bottom: -56px !important;
    color: #fff !important;
    border-bottom: 0 !important;
  }

  .home .central-header--home-overlay:not(.is-scrolled),
  .blog .central-header--home-overlay:not(.is-scrolled) {
    background: linear-gradient(180deg, rgba(0, 0, 0, .34), rgba(0, 0, 0, .1) 72%, rgba(0, 0, 0, 0)) !important;
  }

  .home .central-header--home-overlay.is-scrolled,
  .blog .central-header--home-overlay.is-scrolled {
    background: rgba(5, 5, 5, .9) !important;
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, .12) !important;
    box-shadow: none !important;
    text-shadow: none !important;
    backdrop-filter: blur(12px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(120%) !important;
  }

  .home .central-header--home-overlay .central-header__inner,
  .blog .central-header--home-overlay .central-header__inner {
    min-height: 56px !important;
    padding-inline: 31px !important;
    grid-template-columns: minmax(72px, 1fr) auto minmax(72px, 1fr) !important;
  }

  .home .central-header__left,
  .home .central-actions,
  .blog .central-header__left,
  .blog .central-actions {
    gap: 18px !important;
  }

  .home .central-account-link,
  .blog .central-account-link {
    display: none !important;
  }

  .home .central-logo img,
  .blog .central-logo img {
    width: min(var(--central-logo-mobile-width, 120px), 32vw) !important;
    max-width: min(var(--central-logo-mobile-width, 120px), 32vw) !important;
    max-height: 31px !important;
  }
}

/* ===== MOTION + INTERACTION POLISH ===== */
@keyframes central-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes central-cart-pop {
  0% { transform: scale(1); }
  35% { transform: scale(1.22); }
  100% { transform: scale(1); }
}

@keyframes central-spin {
  to { transform: rotate(360deg); }
}

.central-reveal-prep {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .6s cubic-bezier(.22, 1, .36, 1) var(--central-reveal-delay, 0ms),
    transform .6s cubic-bezier(.22, 1, .36, 1) var(--central-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.central-reveal-prep.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-picture-hero > img {
  transform: translate3d(0, var(--central-hero-y, 0), 0) scale(1.035);
  transition: transform .18s linear;
  will-change: transform;
}

.home-picture-copy > * {
  animation: central-fade-up .62s ease both;
}

.home-picture-copy > :nth-child(2) {
  animation-delay: .08s;
}

.home-picture-copy > :nth-child(3) {
  animation-delay: .16s;
}

.home-picture-copy > :nth-child(4) {
  animation-delay: .24s;
}

.central-search-form button,
.central-button,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.home-picture-copy a,
.central-cart-drawer__checkout,
.central-cart-drawer__view-cart {
  position: relative;
  overflow: hidden;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background-color .18s ease,
    color .18s ease,
    border-color .18s ease;
}

.central-search-form button:hover,
.central-button:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.home-picture-copy a:hover,
.central-cart-drawer__checkout:hover,
.central-cart-drawer__view-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}

.central-search-form button:active,
.central-button:active,
.button:active,
.woocommerce a.button:active,
.woocommerce button.button:active,
.woocommerce input.button:active,
.woocommerce #respond input#submit:active,
.home-picture-copy a:active,
.central-cart-drawer__checkout:active,
.central-cart-drawer__view-cart:active {
  transform: translateY(0);
  box-shadow: none;
}

.central-button-loading {
  pointer-events: none;
  color: transparent !important;
}

.central-button-loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  color: #fff;
  animation: central-spin .72s linear infinite;
}

.central-cart-pulse {
  animation: central-cart-pop .45s ease;
}

.central-brand__image,
.central-category-card,
.central-option-button,
.central-delivery-timeline__icon {
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease,
    background-color .24s ease;
}

.central-brand:hover .central-brand__image,
.central-brand:focus-within .central-brand__image {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .10);
}

.central-brand:hover .central-brand__image img,
.central-brand:focus-within .central-brand__image img {
  transform: scale(1.035);
}

@media (min-width: 1024px) {
  .central-brand:hover .central-brand__image,
  .central-brand:focus-within .central-brand__image {
    transform: translateY(-2px);
  }
}

.central-category-card:hover,
.central-category-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .10);
}

.central-category-card.no-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 82% 12%, rgba(255, 255, 255, .9), transparent 36%);
  opacity: 0;
  transition: opacity .24s ease;
}

.central-category-card.no-image:hover::after,
.central-category-card.no-image:focus-visible::after {
  opacity: 1;
}

.woocommerce ul.products li.product,
.woocommerce ul.products li.product:focus-within,
.central-product-card,
.central-product-card:focus-within,
.woocommerce ul.products li.product .woocommerce-LoopProduct-link,
.woocommerce ul.products li.product:focus-within .woocommerce-LoopProduct-link,
.central-product-card__image,
.central-product-card:focus-within .central-product-card__image,
.woocommerce ul.products li.product a img,
.central-product-card__image img {
  transform: none;
  transition: none;
  will-change: auto;
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link,
.woocommerce ul.products li.product:focus-within .woocommerce-LoopProduct-link,
.central-product-card__image,
.central-product-card:focus-within .central-product-card__image {
  box-shadow: none;
}

.woocommerce ul.products li.product a img,
.central-product-card__image img {
  transform: none;
}

.central-brand__image img {
  transition: transform .35s ease;
}

.central-option-button:hover:not(:disabled):not(.is-disabled) {
  transform: translateY(-2px);
  border-color: #111;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .10);
}

.central-delivery-timeline__step:hover .central-delivery-timeline__icon {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
}

.central-mobile-drawer {
  transform: translateX(-100%);
  transition: transform .26s cubic-bezier(.4, 0, .2, 1), opacity .26s ease, visibility 0s .26s;
}

.central-mobile-drawer.is-open {
  transform: translateX(0);
  transition-delay: 0s;
}

.woocommerce-order-received .central-page {
  padding-top: 18px;
  padding-bottom: 32px;
}

.woocommerce-order-received .central-page > h1 {
  display: none;
}

.central-thankyou {
  width: min(100% - 28px, 760px);
  margin: 0 auto;
}

.central-thankyou__hero {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin: 0 auto 14px;
  padding: 26px 22px 22px;
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 44px rgba(17, 17, 17, .06);
}

.central-thankyou__hero--failed {
  border-color: #f0c7c3;
  background: #fff7f6;
}

.central-thankyou__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
}

.central-thankyou__icon--success::before {
  content: "";
  width: 14px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg) translate(1px, -1px);
}

.central-thankyou__icon--failed {
  background: #c0392b;
}

.central-thankyou__eyebrow {
  margin: 2px 0 0;
  color: #777;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.central-thankyou__hero h2 {
  margin: 0;
  color: #111;
  font-size: clamp(23px, 4vw, 34px);
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: 0;
}

.central-thankyou__hero p {
  max-width: 520px;
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.55;
}

.central-thankyou__hero .central-thankyou__whatsapp {
  display: none;
}

.central-thankyou__section {
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 17, 17, .04);
}

.central-thankyou__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 14px;
}

.central-thankyou__meta div {
  display: grid;
  gap: 5px;
  border: 1px solid #ededed;
  border-radius: 8px;
  padding: 11px 12px;
  background: #fafafa;
}

.central-thankyou__meta span {
  color: #777;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.central-thankyou__meta strong {
  color: #111;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 850;
}

.central-thankyou__payment-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.central-thankyou__payment-title .central-payment-mini-icons {
  margin-left: 0;
}

.central-thankyou__support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 16px 0 20px;
  padding: 16px;
  border: 1px solid #d9f2e3;
  border-radius: 10px;
  background: #f4fbf7;
}

.central-thankyou__support p {
  margin: 0;
  color: #215f3a;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.central-thankyou__whatsapp,
.central-thankyou__actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  margin: 6px 0 0;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1f9d55;
  background: #1f9d55;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none;
}

.central-thankyou__whatsapp:hover,
.central-thankyou__whatsapp:focus-visible {
  background: #178647;
  color: #fff;
}

.central-thankyou__whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.central-thankyou__whatsapp--wide {
  flex: 0 0 auto;
  margin: 0;
  white-space: nowrap;
}

.central-thankyou__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.central-thankyou__actions .button {
  margin: 0;
  border-color: #111;
  background: #111;
}

.central-thankyou__actions .central-thankyou__secondary {
  background: #fff;
  color: #111;
}

.central-thankyou__section {
  padding: 18px;
}

.central-thankyou__section h3 {
  margin: 0 0 14px;
  color: #111;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 850;
}

.central-thankyou__table-wrap {
  overflow-x: auto;
}

.central-thankyou__table {
  width: 100%;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
}

.central-thankyou__table th,
.central-thankyou__table td {
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid #ededed;
  color: #222;
  text-align: left;
  vertical-align: top;
}

.central-thankyou__table th:last-child,
.central-thankyou__table td:last-child {
  text-align: right;
}

.central-thankyou__table thead th {
  padding-top: 0;
  color: #777;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.central-thankyou__table tfoot tr:last-child th,
.central-thankyou__table tfoot tr:last-child td {
  border-bottom: 0;
  color: #111;
  font-size: 15px;
  font-weight: 850;
}

.central-thankyou__product {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
}

.central-thankyou__thumb {
  display: block;
  width: 52px;
  height: 62px;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
}

.central-thankyou__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.central-thankyou__product strong {
  display: block;
  margin-bottom: 3px;
  color: #111;
  font-size: 14px;
  line-height: 1.3;
}

.central-thankyou__product span,
.central-thankyou__product .wc-item-meta {
  color: #777;
  font-size: 12px;
  line-height: 1.4;
}

.central-thankyou__product .wc-item-meta {
  margin: 5px 0 0;
  padding: 0;
  list-style: none;
}

.central-thankyou__address {
  margin-top: 14px;
  border-top: 1px solid #ededed;
  padding-top: 14px;
}

.central-thankyou__address h3 {
  margin: 0 0 8px;
  color: #111;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
}

.central-thankyou__address address {
  margin: 0;
  color: #555;
  font-style: normal;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .central-thankyou__meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .woocommerce-order-received .central-page {
    padding-top: 18px;
  }

  .central-thankyou {
    width: min(100% - 20px, 760px);
  }

  .central-thankyou__hero {
    padding: 24px 16px;
  }

  .central-thankyou__section {
    padding: 16px;
  }

  .central-thankyou__table thead {
    display: none;
  }

  .central-thankyou__table tr {
    display: grid;
    gap: 8px;
    padding: 14px 0;
    border-bottom: 1px solid #ededed;
  }

  .central-thankyou__table th,
  .central-thankyou__table td {
    padding: 0;
    border: 0;
  }

  .central-thankyou__table th:last-child,
  .central-thankyou__table td:last-child {
    text-align: left;
  }

  .central-thankyou__support {
    display: grid;
    gap: 12px;
    padding: 14px;
  }

  .central-thankyou__whatsapp {
    width: 100%;
  }

  .central-thankyou__whatsapp--wide {
    white-space: normal;
  }
}

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

  .central-reveal-prep {
    opacity: 1;
    transform: none;
  }

  .home-picture-hero > img {
    transform: none;
  }
}
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STICKY ADD TO CART BAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.central-sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid var(--central-line);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .08);
  transform: translateY(100%);
  transition: transform .28s cubic-bezier(.22, 1, .36, 1);
  padding: 0;
}

.central-sticky-atc.is-visible {
  transform: translateY(0);
}

.central-sticky-atc__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: var(--central-container);
  margin: 0 auto;
  padding: 10px 16px;
}

.central-sticky-atc__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.central-sticky-atc__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--central-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.central-sticky-atc__price {
  font-size: 14px;
  font-weight: 800;
  color: #1570d6;
}

.central-sticky-atc__price del {
  color: #999;
  font-size: 12px;
  margin-right: 6px;
}

.central-sticky-atc__price ins {
  text-decoration: none;
}

.central-sticky-atc__btn {
  flex-shrink: 0;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background .18s ease, transform .12s ease;
}

.central-sticky-atc__btn:active {
  transform: scale(.96);
}

@media (min-width: 960px) {
  .central-sticky-atc {
    display: none;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WHATSAPP PRODUCT INQUIRY BUTTON
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.central-whatsapp-inquiry,
a.central-whatsapp-inquiry,
.woocommerce .central-whatsapp-inquiry {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 14px;
  padding: 16px 24px;
  border: none !important;
  border-radius: 50px !important;
  background: #25d366 !important;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none !important;
  cursor: pointer;
  transition: background .18s ease, transform .12s ease, box-shadow .18s ease;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .3);
}

.central-whatsapp-inquiry:hover,
a.central-whatsapp-inquiry:hover,
.woocommerce .central-whatsapp-inquiry:hover {
  background: #1ead56 !important;
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
  transform: translateY(-1px);
}

.central-whatsapp-inquiry:active,
a.central-whatsapp-inquiry:active {
  transform: translateY(0) scale(.98);
  box-shadow: 0 2px 10px rgba(37, 211, 102, .25);
}

.central-whatsapp-inquiry svg,
a.central-whatsapp-inquiry svg {
  flex-shrink: 0;
  color: #fff;
  width: 20px;
  height: 20px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PREDICTIVE AJAX SEARCH
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.central-predictive-container {
  margin-top: 14px;
  border: 1px solid var(--central-line);
  border-radius: var(--central-radius);
  background: #fff;
  overflow: hidden;
  max-height: 420px;
  overflow-y: auto;
}

.central-predictive-container[hidden] {
  display: none;
}

.central-predictive-loading {
  padding: 18px;
  text-align: center;
  color: var(--central-muted);
  font-size: 14px;
  font-weight: 600;
}

.central-predictive-results {
  display: grid;
  gap: 0;
}

.central-predictive-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--central-line);
  transition: background .12s ease;
}

.central-predictive-item:last-child {
  border-bottom: 0;
}

.central-predictive-item:hover {
  background: var(--central-soft);
}

.central-predictive-item__image {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--central-soft);
}

.central-predictive-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.central-predictive-item__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.central-predictive-item__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--central-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.central-predictive-item__price {
  font-size: 13px;
  font-weight: 700;
  color: #1570d6;
}

.central-predictive-view-all {
  display: block;
  padding: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--central-ink);
  border-top: 1px solid var(--central-line);
  transition: background .12s ease;
}

.central-predictive-view-all:hover {
  background: var(--central-soft);
}

.central-predictive-empty {
  padding: 24px 18px;
  text-align: center;
}

.central-predictive-empty p {
  margin: 0 0 12px;
  color: var(--central-muted);
  font-size: 14px;
}

.central-predictive-empty a {
  font-size: 14px;
  font-weight: 700;
  color: var(--central-ink);
  text-decoration: underline;
}

.single-product .central-photo-reviews .shortcode-wcpr-filter-container,
.single-product .central-photo-reviews .shortcode-wcpr-filter-button,
.single-product .central-photo-reviews .shortcode-wcpr-filter-button-wrap,
.single-product #reviews .wcpr-filter-container,
.single-product .wcpr-filter-container,
.single-product .wcpr-filter-button,
.single-product .wcpr-filter-button-wrap {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

/* Mobile flow: keep the first hero tall like the reference while preserving upload controls. */
@media (max-width: 767px) {
  .central-hero-slider {
    --central-hero-image-scale: 1;
    --central-hero-object-position: center;
    height: calc(100svh - 33px) !important;
    min-height: calc(100svh - 33px) !important;
  }

  .central-hero-slide__content {
    left: 18px;
    right: 18px;
    bottom: 54px;
    max-width: none;
  }

  .central-hero-slide__content h2 {
    font-size: clamp(30px, 12vw, 46px);
  }

  .central-hero-slider__arrow {
    display: none;
  }

  .central-hero-slider__dots {
    bottom: 22px;
  }

  .home-picture-hero,
  .home-picture-copy {
    min-height: min(430px, 70svh);
  }

  .home-picture-copy {
    padding: 38px 20px;
  }

  .marquee__group {
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .central-brand-section {
    padding-bottom: 34px;
  }

  .central-section__title {
    margin-bottom: 22px;
    font-size: 28px;
  }

  .central-brand-carousel {
    --central-brand-size: clamp(96px, 29vw, 116px);
    --central-brand-gap: 16px;
    --central-brand-label-space: 26px;
  }

  .central-brand-scroll {
    scroll-padding-inline: 8px;
    padding-inline: 8px;
    padding-bottom: 8px;
  }

  .central-brand__name {
    margin-top: 9px;
    font-size: 12px;
  }

  .central-brand-carousel__dots {
    min-height: 12px;
    margin-top: 12px;
  }

  .central-brand-carousel__dot {
    width: 6px;
    height: 6px;
  }

  .central-brand-carousel__dot.is-active {
    width: 18px;
  }

  .central-photo-reviews--home {
    margin-top: 8px;
  }

  body.single-product .central-pdp__breadcrumb {
    margin-top: 18px;
  }

  body.single-product .central-pdp__inner {
    padding-bottom: 30px;
  }

  body.single-product .central-pdp__gallery {
    gap: 12px;
    padding-top: 16px;
  }

  body.single-product .central-pdp__stage {
    aspect-ratio: 1 / 1;
  }

  body.single-product .central-pdp__info {
    padding-top: 22px;
  }

  body.single-product .central-pdp__price,
  body.single-product .woocommerce div.product .central-pdp__price {
    margin-bottom: 18px;
  }

  body.single-product .central-pdp__purchase .variations {
    margin-bottom: 18px;
  }

  body.single-product .central-delivery-timeline {
    margin-top: 14px;
  }

  body.single-product .central-pdp__accordions {
    margin-top: 18px;
  }

  body.single-product .central-pdp__accordion summary {
    min-height: 48px;
  }

  body.single-product .central-photo-reviews--product {
    padding-top: 32px;
  }

  body.single-product .central-pdp__people {
    padding-top: 36px;
    padding-bottom: 48px;
  }

  body.single-product .central-pdp__people > h2 {
    margin-bottom: 20px;
    font-size: 26px;
  }
}

@media (max-width: 767px) {

  .central-home > .central-photo-reviews--home {
    width: min(100% - 32px, var(--central-container));
    margin-top: 42px;
    padding-bottom: 30px;
  }

  .central-home .central-photo-reviews--home .central-orders-served {
    justify-content: center;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 24px;
    gap: 6px;
    font-size: clamp(23px, 6.8vw, 27px);
    line-height: 1.16;
    font-weight: 800;
    text-align: center;
  }

  .central-home .central-photo-reviews--home .central-orders-served__star {
    flex: 0 0 auto;
    font-size: clamp(20px, 5.8vw, 24px);
  }

  .central-home .central-photo-reviews--home .central-photo-reviews__shortcode {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: auto !important;
  }

  .central-home .central-photo-reviews--home .shortcode-wcpr-overall-rating-and-rating-count {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 26px !important;
    padding: 20px 16px !important;
    border-radius: 14px !important;
  }

}

/* ===== FINAL CHECKOUT PREMIUM OVERRIDES ===== */
.woocommerce-checkout {
  background: #fff;
}

.woocommerce-checkout .entry-content {
  width: min(100% - 32px, 1180px);
}

.woocommerce-checkout .central-page {
  padding-top: 28px;
  padding-bottom: 38px;
}

.woocommerce-checkout .central-page > h1 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.04;
}

.woocommerce-checkout form.checkout {
  grid-template-columns: minmax(0, 1fr) minmax(370px, 430px) !important;
  gap: 28px !important;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
  border: 1px solid #e8e8e8 !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: 0 18px 45px rgba(17, 17, 17, .06) !important;
}

.woocommerce-checkout #customer_details {
  display: grid;
  gap: 20px;
  padding: 28px !important;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
  border: 1px solid #eee !important;
  border-radius: 16px;
  padding: 20px;
  background: #fff;
}

.woocommerce-checkout #customer_details .col-2 {
  margin-top: 0;
}

.woocommerce-checkout #order_review {
  top: calc(var(--central-header) + 22px);
  padding: 24px !important;
  align-self: start;
  animation: central-checkout-summary-in .36s cubic-bezier(.22, 1, .36, 1) both;
}

.woocommerce-checkout #order_review_heading {
  align-self: end;
  margin: 0 0 -10px;
  padding: 0 4px;
  font-size: 20px;
}

.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table,
.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table[hidden] {
  display: table !important;
  width: 100%;
}

.woocommerce-checkout #order_review #payment {
  display: block;
  width: 100%;
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3,
.woocommerce-checkout h3 {
  margin-bottom: 18px;
  color: #111;
  font-size: 21px;
}

.woocommerce-checkout .form-row label {
  margin-bottom: 8px;
  color: #202020;
  font-size: 13px;
  font-weight: 800;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .select2-container .select2-selection--single {
  min-height: 52px;
  border-color: #dedede !important;
  border-radius: 13px !important;
  background: #fbfbfb !important;
  padding: 13px 15px;
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease, transform .2s ease;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .select2-container--focus .select2-selection--single {
  border-color: #111 !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(17, 17, 17, .08) !important;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 15px 0 !important;
  border-bottom-color: #eee !important;
}

.central-checkout-item {
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 14px;
}

.central-checkout-item__thumb {
  width: 68px;
  height: 78px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #f7f7f7;
}

.central-checkout-item__name {
  color: #111;
  font-size: 14px;
  font-weight: 800;
}

.woocommerce-checkout-review-order-table dl.variation,
.woocommerce-checkout-review-order-table .variation {
  margin: 6px 0 0;
  color: #666;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout-review-order-table tfoot td {
  color: #111;
  font-size: 14px !important;
  font-weight: 850;
}

.woocommerce-checkout-review-order-table tfoot tr.order-total th,
.woocommerce-checkout-review-order-table tfoot tr.order-total td {
  padding-top: 18px !important;
  border-top: 1px solid #111 !important;
  font-size: 18px !important;
}

.woocommerce-checkout #shipping_method {
  display: grid;
  justify-items: end;
  gap: 10px;
  margin: 0;
}

.woocommerce-checkout #shipping_method li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 12px;
  width: max-content;
  min-width: 168px;
  max-width: 100%;
  margin: 0 !important;
  margin-left: auto !important;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  padding: 13px 14px;
  background: #fbfbfb;
  transition: border-color .22s ease, box-shadow .22s ease, background-color .22s ease, transform .22s ease;
}

.woocommerce-checkout #shipping_method li input {
  flex: 0 0 auto;
}

.woocommerce-checkout #shipping_method li label {
  flex: 0 0 auto;
  margin: 0;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.woocommerce-checkout #shipping_method li.is-selected,
.woocommerce-checkout #shipping_method li:has(input:checked) {
  border-color: #111;
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 17, 17, .06), 0 0 0 1px #111 inset;
}

.woocommerce-checkout #payment ul.payment_methods {
  gap: 10px;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method {
  border-color: #e4e4e4;
  border-radius: 14px;
  padding: 15px 16px;
  background: #fbfbfb;
  transition: border-color .22s ease, box-shadow .22s ease, background-color .22s ease, transform .22s ease;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method.is-selected,
.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method:has(input:checked) {
  border-color: #111;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 17, 17, .07), 0 0 0 1px #111 inset;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method:hover,
.woocommerce-checkout #shipping_method li:hover {
  transform: translateY(-1px);
}

.woocommerce-checkout #payment div.payment_box {
  border-radius: 12px;
  background: #f6f6f6 !important;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
  margin: 14px 0;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 13px 14px;
  background: #fafafa;
}

.woocommerce-checkout #place_order {
  min-height: 60px;
  border-radius: 14px !important;
  font-size: 16px !important;
  box-shadow: 0 14px 28px rgba(17, 17, 17, .16);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.woocommerce-checkout #place_order:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(17, 17, 17, .20);
}

.woocommerce-checkout #place_order:active {
  transform: translateY(0) scale(.99);
}

.woocommerce-checkout #place_order.central-button-loading {
  opacity: .82;
  cursor: wait;
}

.woocommerce-checkout form.checkout_coupon {
  border-radius: 16px;
  transition: opacity .24s ease, transform .24s ease;
}

.woocommerce-checkout .central-checkout-promises {
  border-radius: 14px;
  padding: 12px 14px;
}

@keyframes central-checkout-summary-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr !important;
  }

  .woocommerce-checkout #order_review {
    position: static;
  }
}

@media (max-width: 767px) {
  .woocommerce-checkout .entry-content {
    width: min(100% - 20px, 1180px);
  }

  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review {
    padding: 16px !important;
    border-radius: 16px !important;
  }

  .woocommerce-checkout #order_review .woocommerce-checkout-review-order-table[hidden] {
    display: none !important;
  }

  .woocommerce-checkout #customer_details .col-1,
  .woocommerce-checkout #customer_details .col-2 {
    padding: 16px;
    border-radius: 14px;
  }

  .central-checkout-item {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .central-checkout-item__thumb {
    width: 54px;
    height: 62px;
  }
}

/* ===== CHECKOUT DESKTOP ALIGNMENT FIX ===== */
.woocommerce-checkout .entry-content,
.woocommerce-checkout .woocommerce,
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout form.checkout_coupon {
  width: min(100% - 40px, 1180px) !important;
  max-width: 1180px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.woocommerce-checkout form.checkout {
  display: grid !important;
  grid-template-columns: minmax(0, 58fr) minmax(390px, 42fr) !important;
  gap: 32px !important;
  align-items: start !important;
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
  width: 100% !important;
  min-width: 0;
  border: 1px solid #e7e7e7 !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: 0 18px 44px rgba(17, 17, 17, .06) !important;
}

.woocommerce-checkout #customer_details {
  padding: 28px !important;
}

.woocommerce-checkout #order_review {
  position: sticky;
  top: calc(var(--central-header) + 22px);
  display: block;
  padding: 26px !important;
}

.admin-bar.woocommerce-checkout #order_review {
  top: calc(var(--central-header) + 54px);
}

.woocommerce-checkout #order_review_heading {
  display: block;
  grid-column: auto !important;
  margin: 0 0 18px !important;
  padding: 0 0 16px !important;
  border-bottom: 1px solid #ededed;
  color: #111;
  font-size: 21px !important;
  line-height: 1.2;
  font-weight: 850;
}

.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table,
.woocommerce-checkout #order_review #payment {
  width: 100%;
}

.woocommerce-checkout-review-order-table {
  table-layout: fixed;
}

.woocommerce-checkout-review-order-table .product-name {
  width: 72%;
  padding-right: 16px !important;
}

.woocommerce-checkout-review-order-table .product-total {
  width: 28%;
  text-align: right !important;
  white-space: nowrap;
}

.central-checkout-item {
  display: grid !important;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.central-checkout-item__thumb {
  width: 68px;
  height: 78px;
  border: 1px solid #ececec;
  border-radius: 12px;
  background: #f6f6f6;
}

.central-checkout-item__meta,
.central-checkout-item__line {
  min-width: 0;
}

.central-checkout-item__line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.central-checkout-item__name {
  flex: 1 1 auto;
  min-width: 0;
  color: #111;
  font-size: 14px;
  line-height: 1.32;
  font-weight: 820;
}

.central-checkout-item__qty {
  flex: 0 0 auto;
  min-width: 30px;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  padding: 4px 8px;
  background: #f8f8f8;
  color: #555;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  text-align: center;
}

.woocommerce-checkout-review-order-table .variation dd,
.woocommerce-checkout-review-order-table .variation dd p {
  text-transform: uppercase;
}

.woocommerce-checkout #payment {
  margin-top: 18px !important;
}

.woocommerce-checkout #payment ul.payment_methods {
  padding-bottom: 14px !important;
}

.woocommerce-checkout #payment .place-order {
  padding-top: 2px !important;
}

@media (max-width: 980px) {
  .woocommerce-checkout .entry-content,
  .woocommerce-checkout .woocommerce,
  .woocommerce-checkout .woocommerce-form-coupon-toggle,
  .woocommerce-checkout form.checkout_coupon {
    width: min(100% - 24px, 680px) !important;
  }

  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .woocommerce-checkout #order_review {
    position: static;
  }
}

@media (max-width: 767px) {
  .woocommerce-checkout .entry-content,
  .woocommerce-checkout .woocommerce,
  .woocommerce-checkout .woocommerce-form-coupon-toggle,
  .woocommerce-checkout form.checkout_coupon {
    width: min(100% - 20px, 680px) !important;
  }

  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review {
    padding: 16px !important;
    border-radius: 16px !important;
  }

  .central-checkout-item {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px;
  }

  .central-checkout-item__thumb {
    width: 54px;
    height: 62px;
  }

  .woocommerce-checkout-review-order-table .product-name {
    width: 68%;
    padding-right: 10px !important;
  }

  .woocommerce-checkout-review-order-table .product-total {
    width: 32%;
  }

  .woocommerce-checkout #shipping_method li {
    min-width: 146px;
    padding: 11px 12px;
  }

  .woocommerce-checkout #shipping_method li label {
    font-size: 12.5px;
  }
}

/* ===== CART/CHECKOUT RESPONSIVE STABILITY FIX ===== */
body.woocommerce-cart .entry-content,
body.woocommerce-checkout .entry-content,
body.woocommerce-cart .woocommerce,
body.woocommerce-checkout .woocommerce,
body.woocommerce-checkout .woocommerce-form-coupon-toggle,
body.woocommerce-checkout form.checkout_coupon {
  width: min(100% - 32px, 1180px) !important;
  max-width: 1180px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

body.woocommerce-cart,
body.woocommerce-checkout {
  overflow-x: clip;
}

@supports selector(html:has(body)) {
  html:has(body.woocommerce-cart),
  html:has(body.woocommerce-checkout) {
    overflow-x: clip;
  }
}

body.woocommerce-cart .select2-hidden-accessible,
body.woocommerce-checkout .select2-hidden-accessible,
body.woocommerce-cart .form-row select.select2-hidden-accessible,
body.woocommerce-checkout .form-row select.select2-hidden-accessible {
  width: 1px !important;
  min-width: 1px !important;
  max-width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
}

body.woocommerce-cart .central-cart-drawer,
body.woocommerce-checkout .central-cart-drawer {
  overflow: hidden;
}

body.woocommerce-cart form.checkout,
body.woocommerce-checkout form.checkout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px) !important;
  gap: 24px !important;
  align-items: start !important;
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
}

body.woocommerce-cart #customer_details,
body.woocommerce-checkout #customer_details,
body.woocommerce-cart #order_review,
body.woocommerce-checkout #order_review {
  min-width: 0 !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 14px 34px rgba(17, 17, 17, .05) !important;
}

body.woocommerce-cart #customer_details,
body.woocommerce-checkout #customer_details {
  display: grid !important;
  gap: 16px !important;
  padding: 22px !important;
}

body.woocommerce-cart #customer_details .col-1,
body.woocommerce-cart #customer_details .col-2,
body.woocommerce-checkout #customer_details .col-1,
body.woocommerce-checkout #customer_details .col-2 {
  min-width: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

body.woocommerce-cart #customer_details .col-2,
body.woocommerce-checkout #customer_details .col-2 {
  margin-top: 0 !important;
  border-top: 1px solid #ededed !important;
  padding-top: 16px !important;
}

body.woocommerce-cart #order_review,
body.woocommerce-checkout #order_review {
  position: sticky;
  top: calc(var(--central-header) + 18px);
  padding: 22px !important;
}

body.woocommerce-cart #order_review_heading,
body.woocommerce-checkout #order_review_heading {
  grid-column: 2 !important;
  margin: 0 0 -8px !important;
}

body.woocommerce-cart .woocommerce-billing-fields__field-wrapper,
body.woocommerce-cart .woocommerce-additional-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

body.woocommerce-cart .form-row,
body.woocommerce-checkout .form-row {
  min-width: 0 !important;
}

body.woocommerce-cart .form-row-wide,
body.woocommerce-cart #billing_first_name_field,
body.woocommerce-cart #billing_address_1_field,
body.woocommerce-cart #order_comments_field,
body.woocommerce-checkout .form-row-wide,
body.woocommerce-checkout #billing_first_name_field,
body.woocommerce-checkout #billing_address_1_field,
body.woocommerce-checkout #order_comments_field {
  grid-column: 1 / -1 !important;
}

body.woocommerce-cart .form-row input.input-text,
body.woocommerce-cart .form-row select,
body.woocommerce-cart .form-row textarea,
body.woocommerce-cart .select2-container,
body.woocommerce-cart .select2-container .select2-selection--single,
body.woocommerce-checkout .form-row input.input-text,
body.woocommerce-checkout .form-row select,
body.woocommerce-checkout .form-row textarea,
body.woocommerce-checkout .select2-container,
body.woocommerce-checkout .select2-container .select2-selection--single {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

body.woocommerce-cart .form-row input.input-text,
body.woocommerce-cart .form-row select,
body.woocommerce-cart .form-row textarea,
body.woocommerce-cart .select2-container .select2-selection--single,
body.woocommerce-checkout .form-row input.input-text,
body.woocommerce-checkout .form-row select,
body.woocommerce-checkout .form-row textarea,
body.woocommerce-checkout .select2-container .select2-selection--single {
  min-height: 50px;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 980px) {
  body.woocommerce-cart .entry-content,
  body.woocommerce-checkout .entry-content,
  body.woocommerce-cart .woocommerce,
  body.woocommerce-checkout .woocommerce,
  body.woocommerce-checkout .woocommerce-form-coupon-toggle,
  body.woocommerce-checkout form.checkout_coupon {
    width: min(100% - 20px, 720px) !important;
  }

  body.woocommerce-cart .woocommerce,
  body.woocommerce-cart form.checkout,
  body.woocommerce-checkout form.checkout {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  body.woocommerce-cart #order_review,
  body.woocommerce-checkout #order_review,
  body.woocommerce-cart .cart-collaterals .cart_totals {
    position: static !important;
  }

  body.woocommerce-cart #order_review_heading,
  body.woocommerce-checkout #order_review_heading {
    grid-column: auto !important;
    margin: 0 !important;
  }
}

@media (max-width: 767px) {
  body.woocommerce-cart .central-page,
  body.woocommerce-checkout .central-page {
    padding-top: 16px !important;
  }

  body.woocommerce-cart .entry-content,
  body.woocommerce-checkout .entry-content,
  body.woocommerce-cart .woocommerce,
  body.woocommerce-checkout .woocommerce,
  body.woocommerce-checkout .woocommerce-form-coupon-toggle,
  body.woocommerce-checkout form.checkout_coupon {
    width: min(100% - 14px, 520px) !important;
  }

  body.woocommerce-cart .central-page > h1,
  body.woocommerce-checkout .central-page > h1 {
    margin-bottom: 12px !important;
    font-size: 26px !important;
  }

  body.woocommerce-cart #customer_details,
  body.woocommerce-checkout #customer_details,
  body.woocommerce-cart #order_review,
  body.woocommerce-checkout #order_review,
  body.woocommerce-cart .cart-collaterals .cart_totals {
    padding: 12px !important;
    border-radius: 12px !important;
    box-shadow: none !important;
  }

  body.woocommerce-cart #customer_details,
  body.woocommerce-checkout #customer_details {
    gap: 14px !important;
  }

  body.woocommerce-cart .woocommerce-billing-fields__field-wrapper,
  body.woocommerce-cart .woocommerce-additional-fields__field-wrapper,
  body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
  body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  body.woocommerce-cart .woocommerce-billing-fields h3,
  body.woocommerce-cart .woocommerce-additional-fields h3,
  body.woocommerce-cart h3,
  body.woocommerce-checkout .woocommerce-billing-fields h3,
  body.woocommerce-checkout .woocommerce-additional-fields h3,
  body.woocommerce-checkout h3 {
    margin-bottom: 12px !important;
    font-size: 18px !important;
  }

  body.woocommerce-cart .form-row label,
  body.woocommerce-checkout .form-row label {
    margin-bottom: 6px !important;
    font-size: 11px !important;
  }

  body.woocommerce-cart .form-row input.input-text,
  body.woocommerce-cart .form-row select,
  body.woocommerce-cart .form-row textarea,
  body.woocommerce-cart .select2-container .select2-selection--single,
  body.woocommerce-checkout .form-row input.input-text,
  body.woocommerce-checkout .form-row select,
  body.woocommerce-checkout .form-row textarea,
  body.woocommerce-checkout .select2-container .select2-selection--single {
    min-height: 48px !important;
    border-radius: 8px !important;
    padding: 11px 12px !important;
    font-size: 14px !important;
  }

  body.woocommerce-cart .central-cart-trust,
  body.woocommerce-checkout .central-checkout-progress {
    gap: 6px !important;
    margin-bottom: 12px !important;
  }

  body.woocommerce-cart .central-cart-trust span,
  body.woocommerce-checkout .central-checkout-progress span {
    min-height: 28px !important;
    padding: 6px 8px !important;
    font-size: 10px !important;
  }

  body.woocommerce-cart table.cart tr.cart_item {
    grid-template-columns: 76px minmax(0, 1fr) !important;
    padding: 10px !important;
  }

  body.woocommerce-cart table.cart .product-thumbnail {
    display: block !important;
    grid-column: 1 !important;
    grid-row: 1 / span 4 !important;
    width: 66px !important;
  }

  body.woocommerce-cart table.cart .product-thumbnail img {
    display: block !important;
    width: 66px !important;
    max-width: 66px !important;
  }

  body.woocommerce-cart table.cart .product-thumbnail img {
    height: 78px !important;
  }

  body.woocommerce-cart table.cart .product-name,
  body.woocommerce-cart table.cart .product-price,
  body.woocommerce-cart table.cart .product-quantity,
  body.woocommerce-cart table.cart .product-subtotal {
    grid-column: 2 !important;
    text-align: left !important;
  }

  body.woocommerce-cart table.cart .product-name {
    padding-right: 34px !important;
  }

  body.woocommerce-cart table.cart .product-name a {
    font-size: 13px !important;
    line-height: 1.25 !important;
  }

  body.woocommerce-cart table.cart td.actions .coupon {
    grid-template-columns: 1fr !important;
  }

  body.woocommerce-cart table.cart td.actions .coupon .input-text,
  body.woocommerce-cart table.cart td.actions .coupon .button,
  body.woocommerce-cart table.cart td.actions > .button,
  body.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
  body.woocommerce-checkout #place_order {
    width: 100% !important;
    min-height: 48px !important;
  }
}

body.woocommerce-cart .central-order-promises span::before,
body.woocommerce-checkout .central-order-promises span::before {
  content: "$" !important;
}

body.woocommerce-cart .central-order-promises span:nth-child(1)::before,
body.woocommerce-checkout .central-order-promises span:nth-child(1)::before {
  content: "$" !important;
}

body.woocommerce-cart .central-order-promises span:nth-child(2)::before,
body.woocommerce-checkout .central-order-promises span:nth-child(2)::before {
  content: "OK" !important;
}

body.woocommerce-cart .central-order-promises span:nth-child(3)::before,
body.woocommerce-checkout .central-order-promises span:nth-child(3)::before {
  content: "i" !important;
}

body.woocommerce-cart .central-cart-trust span::before {
  content: "+" !important;
}

body.woocommerce-cart .select2-hidden-accessible,
body.woocommerce-checkout .select2-hidden-accessible,
body.woocommerce-cart .form-row select.select2-hidden-accessible,
body.woocommerce-checkout .form-row select.select2-hidden-accessible {
  width: 1px !important;
  min-width: 1px !important;
  max-width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
}

body.woocommerce-cart .central-cart-drawer:not(.is-open) .central-cart-drawer__panel,
body.woocommerce-checkout .central-cart-drawer:not(.is-open) .central-cart-drawer__panel {
  visibility: hidden !important;
  transform: none !important;
}

/* Reference cleanup pass: tighter Represent-style homepage chrome. */
.home .central-announcement,
.blog .central-announcement {
  min-height: 30px;
  padding: 7px 38px 6px;
  font-size: 11px !important;
  line-height: 1.1;
  letter-spacing: .01em;
}

.home .central-header--home-overlay,
.blog .central-header--home-overlay {
  backdrop-filter: none;
}

.home .central-header--home-overlay:not(.is-scrolled),
.blog .central-header--home-overlay:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(0, 0, 0, .36), rgba(0, 0, 0, .12) 68%, rgba(0, 0, 0, 0));
}

.home .central-header--home-overlay:not(.is-scrolled) .central-icon-link,
.home .central-header--home-overlay:not(.is-scrolled) .central-search-toggle,
.home .central-header--home-overlay:not(.is-scrolled) .central-menu-toggle,
.blog .central-header--home-overlay:not(.is-scrolled) .central-icon-link,
.blog .central-header--home-overlay:not(.is-scrolled) .central-search-toggle,
.blog .central-header--home-overlay:not(.is-scrolled) .central-menu-toggle {
  color: #fff;
  text-shadow: none;
}

.home .central-header--home-overlay:not(.is-scrolled) .central-count,
.blog .central-header--home-overlay:not(.is-scrolled) .central-count {
  top: -7px;
  right: -8px;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 0;
  font-size: 9px;
  line-height: 16px;
  font-weight: 800;
}

.home .central-search-panel.is-open,
.blog .central-search-panel.is-open {
  position: fixed;
  left: 0;
  right: 0;
  top: 30px;
  z-index: 95;
  display: block;
  padding: 16px 0 18px;
  border-top: 0;
  border-bottom: 1px solid rgba(17, 17, 17, .08);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .12);
}

.home .central-search-panel h3,
.blog .central-search-panel h3 {
  display: none;
}

.home .central-search-form,
.blog .central-search-form {
  border-radius: 0;
}

@media (max-width: 767px) {
  .home .central-announcement,
  .blog .central-announcement {
    min-height: 33px;
    padding: 8px 42px 7px;
    font-size: 12px !important;
  }

  .home .central-header--home-overlay,
  .blog .central-header--home-overlay {
    height: 54px !important;
    margin-bottom: -54px !important;
  }

  .home .central-header--home-overlay .central-header__inner,
  .blog .central-header--home-overlay .central-header__inner {
    min-height: 54px !important;
    padding-inline: 28px !important;
    grid-template-columns: minmax(80px, 1fr) auto minmax(80px, 1fr) !important;
  }

  .home .central-header__left,
  .home .central-actions,
  .blog .central-header__left,
  .blog .central-actions {
    gap: 18px !important;
  }

  .home .central-search-toggle,
  .home .central-icon-link,
  .home .central-cart-link,
  .home .central-menu-toggle,
  .blog .central-search-toggle,
  .blog .central-icon-link,
  .blog .central-cart-link,
  .blog .central-menu-toggle {
    width: 21px !important;
    height: 21px !important;
  }

  .home .central-search-toggle svg,
  .home .central-icon-link svg,
  .home .central-cart-link svg,
  .blog .central-search-toggle svg,
  .blog .central-icon-link svg,
  .blog .central-cart-link svg {
    width: 19px;
    height: 19px;
  }

  .home .central-menu-toggle span,
  .home .central-menu-toggle::before,
  .home .central-menu-toggle::after,
  .blog .central-menu-toggle span,
  .blog .central-menu-toggle::before,
  .blog .central-menu-toggle::after {
    width: 21px !important;
    height: 1px !important;
  }

  .home .central-logo img,
  .blog .central-logo img {
    width: min(var(--central-logo-mobile-width, 118px), 31vw) !important;
    max-width: min(var(--central-logo-mobile-width, 118px), 31vw) !important;
    max-height: 30px !important;
  }

  .home .central-hero-slider,
  .blog .central-hero-slider {
    height: calc(100svh - 33px) !important;
    min-height: calc(100svh - 33px) !important;
  }

  .home .central-hero-slide img,
  .blog .central-hero-slide img {
    object-position: var(--central-hero-object-position, center top);
  }

  .home .central-search-panel.is-open,
  .blog .central-search-panel.is-open {
    top: 33px;
    padding: 12px 0 14px;
  }
}

@media (min-width: 901px) {
  .home .central-announcement,
  .blog .central-announcement {
    min-height: 24px;
    padding-block: 6px;
  }

  .home .central-header--home-overlay,
  .blog .central-header--home-overlay {
    height: 46px;
    margin-bottom: -46px;
  }

  .home .central-header--home-overlay .central-header__inner,
  .blog .central-header--home-overlay .central-header__inner {
    min-height: 46px !important;
    padding-inline: 24px !important;
  }

  .home .central-header .central-nav a,
  .blog .central-header .central-nav a {
    min-height: 46px;
    font-size: 12px;
  }

  .home .central-header .central-logo img,
  .blog .central-header .central-logo img {
    width: min(var(--central-logo-desktop-width, 150px), 12vw) !important;
    max-width: min(var(--central-logo-desktop-width, 150px), 12vw) !important;
    max-height: 30px !important;
  }

  .home .central-header .central-actions,
  .blog .central-header .central-actions {
    gap: 20px !important;
  }

  .home .central-hero-slider,
  .blog .central-hero-slider {
    height: calc(100svh - 24px) !important;
    min-height: 720px;
  }
}

/* Product search landing page */
.central-product-search-page {
  width: min(100% - 24px, var(--central-container));
  margin: 0 auto;
  padding: 18px 0 24px;
}

.central-product-search-page__form {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 13px;
  background: #f5f5f5;
  color: #111;
}

.central-product-search-page__form svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.central-product-search-page__form input[type="search"] {
  min-width: 0;
  height: 44px;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 14px;
  outline: 0;
}

.central-product-search-page__form input[type="search"]::-webkit-search-cancel-button,
.central-product-search-page__form input[type="search"]::-webkit-search-decoration {
  display: none;
  appearance: none;
}

.central-product-search-page__form input[type="search"]::placeholder {
  color: #777;
}

.central-product-search-page__clear {
  color: #777;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
}

.central-product-search-page__submit {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: scale(.92);
  transition: opacity .18s ease, transform .18s ease;
}

.central-product-search-page__form.has-value .central-product-search-page__submit {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.central-product-search-page__filters {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 18px;
  color: #777;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.central-product-search-page__filters label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.central-product-search-page__filters input {
  appearance: none;
  width: 11px;
  height: 11px;
  margin: 0;
  border: 1px solid #111;
  border-radius: 0;
  background: #fff;
}

.central-product-search-page__filters input:checked {
  background: #111;
}

.central-product-search-page__popular {
  margin-top: 26px;
}

.central-product-search-page__popular-title {
  margin: 0 0 16px;
  color: #777;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.central-product-search-page__popular-list {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.central-product-search-page__popular-list a {
  color: #111;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 700;
  text-decoration: none;
}

.search.post-type-archive-product .central-page,
.search-results.post-type-archive-product .central-page {
  width: 100%;
  max-width: none;
  padding-top: 0;
}

.search.post-type-archive-product .woocommerce-ordering,
.search-results.post-type-archive-product .woocommerce-ordering,
.search.post-type-archive-product .woocommerce-result-count,
.search-results.post-type-archive-product .woocommerce-result-count {
  display: none !important;
}

@media (max-width: 767px) {
  .central-product-search-page {
    width: min(100% - 32px, 680px);
    padding-top: 16px;
  }

  .search.post-type-archive-product ul.products,
  .search-results.post-type-archive-product ul.products,
  .search.post-type-archive-product .woocommerce ul.products,
  .search-results.post-type-archive-product .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 0 !important;
    row-gap: 0 !important;
  }
}

/* Search page polish to match the Represent reference. */
.search.post-type-archive-product .central-page,
.search-results.post-type-archive-product .central-page {
  width: 100%;
  padding-inline: 0;
}

.search.post-type-archive-product .woocommerce-products-header,
.search-results.post-type-archive-product .woocommerce-products-header,
.search.post-type-archive-product .page-title,
.search-results.post-type-archive-product .page-title,
.search.post-type-archive-product .central-page > h1,
.search-results.post-type-archive-product .central-page > h1 {
  display: none !important;
}

.search.post-type-archive-product .central-header,
.search-results.post-type-archive-product .central-header {
  border-bottom: 0;
}

.search.post-type-archive-product .central-logo img,
.search-results.post-type-archive-product .central-logo img {
  max-height: 32px !important;
}

.search.post-type-archive-product .central-product-search-page,
.search-results.post-type-archive-product .central-product-search-page {
  padding-top: 12px;
  padding-bottom: 22px;
}

.search.post-type-archive-product ul.products,
.search-results.post-type-archive-product ul.products,
.search.post-type-archive-product .woocommerce ul.products,
.search-results.post-type-archive-product .woocommerce ul.products {
  width: 100% !important;
  margin: 0 !important;
}

.search.post-type-archive-product ul.products li.product,
.search-results.post-type-archive-product ul.products li.product,
.search.post-type-archive-product .central-product-card,
.search-results.post-type-archive-product .central-product-card {
  background: #fff !important;
  border-radius: 0 !important;
}

.search.post-type-archive-product ul.products li.product .woocommerce-LoopProduct-link,
.search-results.post-type-archive-product ul.products li.product .woocommerce-LoopProduct-link,
.search.post-type-archive-product .central-product-card__image,
.search-results.post-type-archive-product .central-product-card__image {
  background: #fff !important;
  border-radius: 0 !important;
}

.search.post-type-archive-product ul.products li.product img,
.search-results.post-type-archive-product ul.products li.product img,
.search.post-type-archive-product .central-product-card__image img,
.search-results.post-type-archive-product .central-product-card__image img {
  background: #fff !important;
}

.search.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
.search-results.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
.search.post-type-archive-product .central-product-card__title,
.search-results.post-type-archive-product .central-product-card__title {
  font-size: 13px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
}

.search.post-type-archive-product ul.products li.product .price,
.search-results.post-type-archive-product ul.products li.product .price,
.search.post-type-archive-product .central-product-card__price,
.search-results.post-type-archive-product .central-product-card__price {
  margin-top: 6px !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
}

@media (max-width: 767px) {
  .search.post-type-archive-product .central-header__inner,
  .search-results.post-type-archive-product .central-header__inner {
    min-height: 56px !important;
    padding-inline: 28px !important;
  }

  .search.post-type-archive-product .central-logo img,
  .search-results.post-type-archive-product .central-logo img {
    width: min(var(--central-logo-mobile-width, 118px), 31vw) !important;
    max-width: min(var(--central-logo-mobile-width, 118px), 31vw) !important;
    max-height: 30px !important;
  }

  .search.post-type-archive-product .central-product-search-page,
  .search-results.post-type-archive-product .central-product-search-page {
    width: calc(100% - 32px);
    margin-inline: 16px;
    padding-top: 8px;
    padding-bottom: 22px;
  }

  .central-product-search-page__form {
    min-height: 39px;
    padding-inline: 12px;
  }

  .central-product-search-page__form input[type="search"] {
    height: 39px;
    font-size: 12px;
  }

  .central-product-search-page__filters {
    margin-top: 22px;
    gap: 42px;
    font-size: 12px;
  }

  .central-product-search-page__popular {
    margin-top: 26px;
  }

  .central-product-search-page__popular-title {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .central-product-search-page__popular-list {
    gap: 12px;
  }

  .search.post-type-archive-product ul.products,
  .search-results.post-type-archive-product ul.products,
  .search.post-type-archive-product .woocommerce ul.products,
  .search-results.post-type-archive-product .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }

  .search.post-type-archive-product ul.products li.product,
  .search-results.post-type-archive-product ul.products li.product {
    padding-bottom: 28px !important;
  }

  .search.post-type-archive-product ul.products li.product a img,
  .search-results.post-type-archive-product ul.products li.product a img,
  .search.post-type-archive-product .central-product-card__image img,
  .search-results.post-type-archive-product .central-product-card__image img {
    aspect-ratio: 1 / 1.08;
    object-fit: contain !important;
    padding: 22px 14px 12px !important;
  }

  .search.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
  .search-results.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
  .search.post-type-archive-product .central-product-card__title,
  .search-results.post-type-archive-product .central-product-card__title {
    min-height: 32px;
    margin-top: 14px !important;
    padding-inline: 10px !important;
  }

  .search.post-type-archive-product ul.products li.product .price,
  .search-results.post-type-archive-product ul.products li.product .price,
  .search.post-type-archive-product .central-product-card__price,
  .search-results.post-type-archive-product .central-product-card__price {
    padding-inline: 10px !important;
  }
}

/* Mobile sticky header: balanced Represent-style icon row */
@media (max-width: 767px) {
  .central-header {
    --central-mobile-header-side: 68px;
    --central-mobile-icon-hitbox: 28px;
    --central-mobile-icon-size: 21px;
    --central-mobile-icon-stroke: 1.35;
  }

  .central-header .central-header__inner,
  .home .central-header--home-overlay .central-header__inner,
  .blog .central-header--home-overlay .central-header__inner {
    position: relative !important;
    min-height: 54px !important;
    padding-inline: 22px !important;
    grid-template-columns: minmax(var(--central-mobile-header-side), 1fr) auto minmax(var(--central-mobile-header-side), 1fr) !important;
    column-gap: 0 !important;
  }

  .central-header .central-logo,
  .home .central-header .central-logo,
  .blog .central-header .central-logo {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    grid-column: 1 / -1 !important;
    width: auto !important;
    max-width: min(var(--central-logo-mobile-width, 118px), calc(100vw - 168px)) !important;
    transform: translate(-50%, -50%) !important;
    z-index: 1;
  }

  .central-header .central-logo img,
  .home .central-logo img,
  .blog .central-logo img {
    width: min(var(--central-logo-mobile-width, 118px), 31vw) !important;
    max-width: 100% !important;
    max-height: 30px !important;
  }

  .central-header__left,
  .central-header .central-actions,
  .home .central-header__left,
  .home .central-actions,
  .blog .central-header__left,
  .blog .central-actions {
    position: relative;
    z-index: 2;
    min-width: 0 !important;
    gap: 12px !important;
  }

  .central-header__left {
    justify-self: start !important;
    width: var(--central-mobile-icon-hitbox) !important;
  }

  .central-header .central-actions {
    justify-self: end !important;
    justify-content: flex-end !important;
    width: var(--central-mobile-header-side) !important;
  }

  .central-header .central-menu-toggle,
  .central-header .central-search-toggle,
  .central-header .central-icon-link,
  .central-header .central-cart-link,
  .home .central-search-toggle,
  .home .central-icon-link,
  .home .central-cart-link,
  .home .central-menu-toggle,
  .blog .central-search-toggle,
  .blog .central-icon-link,
  .blog .central-cart-link,
  .blog .central-menu-toggle {
    width: var(--central-mobile-icon-hitbox) !important;
    height: var(--central-mobile-icon-hitbox) !important;
    flex: 0 0 var(--central-mobile-icon-hitbox) !important;
    padding: 0 !important;
    color: inherit;
  }

  .central-header .central-search-toggle svg,
  .central-header .central-icon-link svg,
  .central-header .central-cart-link svg,
  .home .central-search-toggle svg,
  .home .central-icon-link svg,
  .home .central-cart-link svg,
  .blog .central-search-toggle svg,
  .blog .central-icon-link svg,
  .blog .central-cart-link svg {
    width: var(--central-mobile-icon-size) !important;
    height: var(--central-mobile-icon-size) !important;
    stroke-width: var(--central-mobile-icon-stroke) !important;
    vector-effect: non-scaling-stroke;
  }

  .central-header .central-menu-toggle span,
  .central-header .central-menu-toggle::before,
  .central-header .central-menu-toggle::after,
  .home .central-menu-toggle span,
  .home .central-menu-toggle::before,
  .home .central-menu-toggle::after,
  .blog .central-menu-toggle span,
  .blog .central-menu-toggle::before,
  .blog .central-menu-toggle::after {
    width: var(--central-mobile-icon-size) !important;
    height: 1px !important;
  }

  .central-header .central-menu-toggle::before {
    transform: translateY(-6px) !important;
  }

  .central-header .central-menu-toggle::after {
    transform: translateY(6px) !important;
  }

  .central-header .central-count {
    right: -5px;
    top: -5px;
    width: 14px;
    min-width: 14px;
    height: 14px;
    font-size: 9px;
    line-height: 14px;
    margin: 0;
  }

  .home .central-header--home-overlay.is-scrolled,
  .blog .central-header--home-overlay.is-scrolled {
    background: rgba(5, 5, 5, .9) !important;
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, .12) !important;
    box-shadow: none !important;
    text-shadow: none !important;
    backdrop-filter: blur(12px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(120%) !important;
  }

  .home .central-header--home-overlay.is-scrolled .central-logo img,
  .blog .central-header--home-overlay.is-scrolled .central-logo img {
    filter: brightness(0) invert(1) !important;
  }

  .home .central-header--home-overlay.is-scrolled .central-count,
  .blog .central-header--home-overlay.is-scrolled .central-count {
    background: #fff !important;
    color: #111 !important;
  }
}

/* Final mobile sticky header rules: keep layout stable and scroll state black. */
@media (max-width: 767px) {
  .central-header {
    --central-mobile-header-side: 68px;
    --central-mobile-icon-hitbox: 28px;
    --central-mobile-icon-size: 21px;
    --central-mobile-icon-stroke: 1.55;
    height: 54px !important;
    position: fixed !important;
    top: 0 !important;
    z-index: 85 !important;
  }

  .home .central-header--home-overlay,
  .blog .central-header--home-overlay {
    margin-bottom: -54px !important;
  }

  .home .central-header--home-overlay:not(.is-scrolled),
  .blog .central-header--home-overlay:not(.is-scrolled) {
    background: linear-gradient(180deg, rgba(0, 0, 0, .34), rgba(0, 0, 0, .1) 72%, rgba(0, 0, 0, 0)) !important;
    color: #fff !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .central-header.is-scrolled,
  .central-header--scrolled,
  .central-header--home-overlay.is-scrolled,
  .sticky-header.is-scrolled,
  .site-header.is-scrolled,
  .mobile-header.is-scrolled,
  .home .central-header--home-overlay.is-scrolled,
  .blog .central-header--home-overlay.is-scrolled {
    background: rgba(5, 5, 5, .92) !important;
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, .12) !important;
    box-shadow: none !important;
    text-shadow: none !important;
    backdrop-filter: blur(12px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(120%) !important;
  }

  .central-header .central-header__inner,
  .home .central-header--home-overlay .central-header__inner,
  .blog .central-header--home-overlay .central-header__inner,
  body.single-product .central-header__inner {
    min-height: 54px !important;
    padding-inline: 22px !important;
    grid-template-columns: minmax(var(--central-mobile-header-side), 1fr) auto minmax(var(--central-mobile-header-side), 1fr) !important;
    column-gap: 0 !important;
  }

  .central-header .central-logo,
  .home .central-header .central-logo,
  .blog .central-header .central-logo,
  body.single-product .central-logo {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    grid-column: 1 / -1 !important;
    width: auto !important;
    max-width: min(var(--central-logo-mobile-width, 118px), calc(100vw - 168px)) !important;
    transform: translate(-50%, -50%) !important;
    z-index: 1 !important;
  }

  .central-header .central-logo img,
  .home .central-header .central-logo img,
  .blog .central-header .central-logo img,
  body.single-product .central-logo img {
    width: min(var(--central-logo-mobile-width, 118px), 31vw) !important;
    max-width: 100% !important;
    max-height: 30px !important;
  }

  .home .central-header--home-overlay:not(.is-scrolled) .central-logo img,
  .blog .central-header--home-overlay:not(.is-scrolled) .central-logo img,
  .central-header.is-scrolled .central-logo img,
  .central-header--scrolled .central-logo img,
  .central-header--home-overlay.is-scrolled .central-logo img {
    filter: brightness(0) invert(1) !important;
  }

  .central-header__left,
  .central-header .central-actions,
  .home .central-header__left,
  .home .central-actions,
  .blog .central-header__left,
  .blog .central-actions,
  body.single-product .central-header__left,
  body.single-product .central-actions {
    position: relative !important;
    z-index: 2 !important;
    min-width: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .central-header__left,
  body.single-product .central-header__left {
    justify-self: start !important;
    width: var(--central-mobile-icon-hitbox) !important;
  }

  .central-header .central-actions,
  body.single-product .central-actions {
    justify-self: end !important;
    justify-content: flex-end !important;
    width: var(--central-mobile-header-side) !important;
  }

  .central-header .central-menu-toggle,
  .central-header .central-search-toggle,
  .central-header .central-icon-link,
  .central-header .central-cart-link,
  .home .central-search-toggle,
  .home .central-icon-link,
  .home .central-cart-link,
  .home .central-menu-toggle,
  .blog .central-search-toggle,
  .blog .central-icon-link,
  .blog .central-cart-link,
  .blog .central-menu-toggle,
  body.single-product .central-menu-toggle,
  body.single-product .central-search-toggle,
  body.single-product .central-icon-link,
  body.single-product .central-cart-link {
    width: var(--central-mobile-icon-hitbox) !important;
    height: var(--central-mobile-icon-hitbox) !important;
    flex: 0 0 var(--central-mobile-icon-hitbox) !important;
    padding: 0 !important;
    color: inherit !important;
    display: inline-grid !important;
    place-items: center !important;
  }

  .central-header .central-search-toggle svg,
  .central-header .central-icon-link svg,
  .central-header .central-cart-link svg,
  .home .central-search-toggle svg,
  .home .central-icon-link svg,
  .home .central-cart-link svg,
  .blog .central-search-toggle svg,
  .blog .central-icon-link svg,
  .blog .central-cart-link svg,
  body.single-product .central-search-toggle svg,
  body.single-product .central-icon-link svg,
  body.single-product .central-cart-link svg {
    width: var(--central-mobile-icon-size) !important;
    height: var(--central-mobile-icon-size) !important;
    stroke: currentColor !important;
    stroke-width: var(--central-mobile-icon-stroke) !important;
    vector-effect: non-scaling-stroke;
  }

  .central-header .central-menu-toggle span,
  .central-header .central-menu-toggle::before,
  .central-header .central-menu-toggle::after,
  .home .central-menu-toggle span,
  .home .central-menu-toggle::before,
  .home .central-menu-toggle::after,
  .blog .central-menu-toggle span,
  .blog .central-menu-toggle::before,
  .blog .central-menu-toggle::after,
  body.single-product .central-menu-toggle span,
  body.single-product .central-menu-toggle::before,
  body.single-product .central-menu-toggle::after {
    width: var(--central-mobile-icon-size) !important;
    height: 1.5px !important;
    background: currentColor !important;
  }

  .central-header .central-count {
    right: -5px !important;
    top: -5px !important;
    width: 14px !important;
    min-width: 14px !important;
    height: 14px !important;
    margin: 0 !important;
    background: #fff !important;
    color: #111 !important;
    font-size: 9px !important;
    line-height: 14px !important;
  }

  .central-header .central-search-toggle--desktop,
  .home .central-header .central-search-toggle--desktop,
  .blog .central-header .central-search-toggle--desktop,
  body.single-product .central-search-toggle--desktop {
    display: none !important;
  }

  .central-header .central-search-toggle--mobile,
  .home .central-header .central-search-toggle--mobile,
  .blog .central-header .central-search-toggle--mobile,
  body.single-product .central-search-toggle--mobile {
    display: inline-grid !important;
  }

  .central-account-link,
  .central-wishlist-link {
    display: none !important;
  }
}

/* Mobile sticky header gap fix: no announcement/admin offset while scrolling. */
@media (max-width: 767px) {
  .central-header,
  .central-header.is-scrolled,
  .central-header--scrolled,
  .central-header--home-overlay,
  .central-header--home-overlay.is-scrolled,
  .sticky-header,
  .sticky-header.is-scrolled,
  .site-header,
  .site-header.is-scrolled,
  .mobile-header,
  .mobile-header.is-scrolled,
  .home .central-header--home-overlay,
  .home .central-header--home-overlay.is-scrolled,
  .blog .central-header--home-overlay,
  .blog .central-header--home-overlay.is-scrolled,
  .admin-bar .central-header,
  .admin-bar .central-header.is-scrolled,
  .admin-bar .central-header--home-overlay,
  .admin-bar .central-header--home-overlay.is-scrolled,
  .admin-bar .sticky-header,
  .admin-bar .sticky-header.is-scrolled,
  .admin-bar .site-header,
  .admin-bar .site-header.is-scrolled,
  .admin-bar .mobile-header,
  .admin-bar .mobile-header.is-scrolled {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 54px !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    transform: none !important;
  }

  body:not(.home):not(.blog) .site-content {
    padding-top: 54px;
  }

  .central-header.is-scrolled,
  .central-header--scrolled,
  .central-header--home-overlay.is-scrolled,
  .sticky-header.is-scrolled,
  .site-header.is-scrolled,
  .mobile-header.is-scrolled,
  .home .central-header--home-overlay.is-scrolled,
  .blog .central-header--home-overlay.is-scrolled {
    height: 54px !important;
    background: rgba(5, 5, 5, .92) !important;
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, .12) !important;
    box-shadow: none !important;
    backdrop-filter: blur(12px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(120%) !important;
  }

  .home .central-header--home-overlay,
  .home .central-header--home-overlay.is-scrolled,
  .blog .central-header--home-overlay,
  .blog .central-header--home-overlay.is-scrolled,
  .admin-bar.home .central-header--home-overlay,
  .admin-bar.home .central-header--home-overlay.is-scrolled,
  .admin-bar.blog .central-header--home-overlay,
  .admin-bar.blog .central-header--home-overlay.is-scrolled {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 54px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    transform: none !important;
  }

  .central-announcement,
  .home .central-announcement,
  .blog .central-announcement {
    position: relative !important;
    z-index: 80 !important;
    margin-top: 54px !important;
  }

  .central-header,
  .central-header.is-scrolled,
  .central-header--home-overlay,
  .central-header--home-overlay.is-scrolled {
    z-index: 120 !important;
  }
}

/* Final mobile announcement/header stack: announcement row, header row, then content. */
@media (max-width: 767px) {
  .central-announcement,
  .home .central-announcement,
  .blog .central-announcement {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 130 !important;
    display: grid !important;
    place-items: center !important;
    width: 100% !important;
    min-height: 32px !important;
    margin: 0 !important;
    padding: 7px 34px !important;
    overflow: hidden !important;
    background: var(--central-announcement-bg, #000) !important;
    color: var(--central-announcement-color, #fff) !important;
    font-size: min(var(--central-announcement-font-size, 11px), 11px) !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: .01em !important;
    text-align: center !important;
    text-transform: uppercase !important;
    transform: none !important;
  }

  .central-announcement a,
  .central-announcement span {
    display: block !important;
    max-width: 100% !important;
    overflow: hidden !important;
    color: inherit !important;
    text-align: center !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .central-header,
  .central-header.is-scrolled,
  .central-header--home-overlay,
  .central-header--home-overlay.is-scrolled,
  .home .central-header--home-overlay,
  .home .central-header--home-overlay.is-scrolled,
  .blog .central-header--home-overlay,
  .blog .central-header--home-overlay.is-scrolled,
  .admin-bar .central-header,
  .admin-bar .central-header.is-scrolled,
  .admin-bar .central-header--home-overlay,
  .admin-bar .central-header--home-overlay.is-scrolled {
    position: sticky !important;
    top: 0 !important;
    right: auto !important;
    left: auto !important;
    z-index: 120 !important;
    width: 100% !important;
    height: 54px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: rgba(5, 5, 5, .92) !important;
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, .12) !important;
    box-shadow: none !important;
    text-shadow: none !important;
    transform: none !important;
    backdrop-filter: blur(12px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(120%) !important;
  }

  .central-header .central-header__inner,
  .home .central-header--home-overlay .central-header__inner,
  .blog .central-header--home-overlay .central-header__inner {
    min-height: 54px !important;
  }

  .home .central-header--home-overlay:not(.is-scrolled),
  .blog .central-header--home-overlay:not(.is-scrolled) {
    background: rgba(5, 5, 5, .92) !important;
    color: #fff !important;
  }

  .home .central-hero-slider,
  .blog .central-hero-slider {
    margin-top: 0 !important;
    height: calc(100svh - 86px) !important;
    min-height: calc(100svh - 86px) !important;
  }

  body:not(.home):not(.blog) .site-content {
    padding-top: 0 !important;
  }

  .central-cart-link {
    position: relative !important;
  }

  .central-header .central-count {
    position: absolute !important;
    top: -4px !important;
    right: -6px !important;
    z-index: 3 !important;
    margin: 0 !important;
  }
}

/* Final mobile menu drawer: readable, above page chrome, and outside header overlap. */
@media (max-width: 767px) {
  .central-menu-backdrop {
    position: fixed !important;
    inset: 0 !important;
    z-index: 990 !important;
    display: block;
    background: rgba(0, 0, 0, .42) !important;
    opacity: 1;
  }

  .central-menu-backdrop[hidden] {
    display: none !important;
  }

  .central-mobile-drawer {
    position: fixed !important;
    inset: 0 auto 0 0 !important;
    z-index: 1000 !important;
    display: flex !important;
    flex-direction: column !important;
    width: min(84vw, 340px) !important;
    max-width: 340px !important;
    height: 100dvh !important;
    padding: max(18px, env(safe-area-inset-top)) 22px 28px !important;
    overflow-y: auto !important;
    background: #fff !important;
    color: #111 !important;
    border-right: 1px solid rgba(17, 17, 17, .08) !important;
    box-shadow: 24px 0 52px rgba(0, 0, 0, .18) !important;
    text-shadow: none !important;
    transform: translateX(-105%) !important;
    visibility: hidden !important;
    transition: transform .26s cubic-bezier(.4, 0, .2, 1), visibility 0s .26s !important;
  }

  .central-mobile-drawer.is-open {
    transform: translateX(0) !important;
    visibility: visible !important;
    transition-delay: 0s !important;
  }

  .central-mobile-drawer__top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 48px !important;
    padding: 0 0 14px !important;
    border-bottom: 1px solid rgba(17, 17, 17, .1) !important;
    color: #111 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: .04em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
  }

  .central-mobile-drawer__close {
    display: grid !important;
    place-items: center !important;
    width: 42px !important;
    height: 42px !important;
    margin: -8px -10px -8px 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #111 !important;
    font-size: 30px !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    cursor: pointer !important;
  }

  .central-mobile-drawer__nav {
    display: grid !important;
    gap: 0 !important;
    padding: 14px 0 0 !important;
  }

  .central-mobile-drawer__nav a {
    display: flex !important;
    align-items: center !important;
    min-height: 54px !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(17, 17, 17, .08) !important;
    color: #111 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: .01em !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    text-shadow: none !important;
    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  body.central-menu-open {
    overflow: hidden !important;
    touch-action: none;
  }
}

/* Final Represent-style hero header: transparent blur at top, black on scroll. */
.central-header {
  --central-header-scroll: 0;
  border-bottom: 0 !important;
  box-shadow: none !important;
  transition:
    background .32s ease,
    background-color .32s ease,
    border-color .36s ease,
    box-shadow .28s ease,
    color .28s ease,
    backdrop-filter .32s ease,
    -webkit-backdrop-filter .32s ease;
}

.central-header--home-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: #050505;
  opacity: var(--central-header-scroll, 0);
  transition: opacity .36s ease;
}

.central-header--home-overlay::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 100%;
  height: 18px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: opacity .32s ease, background .32s ease;
}

.central-header--home-overlay .central-header__inner {
  z-index: 1;
}

.central-logo__image {
  transition: opacity .28s ease;
}

.central-logo__image--light {
  display: none !important;
}

.central-header--home-overlay .central-logo__image--dark {
  display: none !important;
}

.central-header--home-overlay .central-logo__image--light {
  display: block !important;
}

body:not(.home):not(.blog) .central-header {
  --central-header-scroll: 0;
  background: #fff !important;
  color: #111 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body:not(.home):not(.blog) .central-header::before,
body:not(.home):not(.blog) .central-header::after {
  content: none !important;
}

body:not(.home):not(.blog) .central-header .central-menu-toggle,
body:not(.home):not(.blog) .central-header .central-search-toggle,
body:not(.home):not(.blog) .central-header .central-icon-link,
body:not(.home):not(.blog) .central-header .central-cart-link {
  color: #111 !important;
}

body:not(.home):not(.blog) .central-header .central-logo__image--dark {
  display: block !important;
  filter: none !important;
}

body:not(.home):not(.blog) .central-header .central-logo__image--light {
  display: none !important;
}

.central-header.is-scrolled,
.central-header--scrolled,
.central-header--home-overlay.is-scrolled,
.sticky-header.is-scrolled,
.site-header.is-scrolled,
.mobile-header.is-scrolled {
  background: #050505 !important;
  color: #fff !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  backdrop-filter: blur(4px) saturate(105%) !important;
  -webkit-backdrop-filter: blur(4px) saturate(105%) !important;
}

.central-header--home-overlay.is-scrolled::before {
  opacity: 1;
}

.central-header--home-overlay.is-scrolled::after {
  opacity: 0 !important;
}

.central-header--home-overlay .central-logo img,
.central-header--home-overlay.is-scrolled .central-logo img,
.home .central-header--home-overlay:not(.is-scrolled) .central-logo img,
.blog .central-header--home-overlay:not(.is-scrolled) .central-logo img,
.home .central-header--home-overlay.is-scrolled .central-logo img,
.blog .central-header--home-overlay.is-scrolled .central-logo img {
  filter: none !important;
}

.central-header.is-scrolled .central-menu-toggle,
.central-header.is-scrolled .central-search-toggle,
.central-header.is-scrolled .central-icon-link,
.central-header.is-scrolled .central-cart-link,
.central-header--home-overlay .central-menu-toggle,
.central-header--home-overlay .central-search-toggle,
.central-header--home-overlay .central-icon-link,
.central-header--home-overlay .central-cart-link {
  color: #fff !important;
}

.central-header .central-search-toggle svg,
.central-header .central-icon-link svg,
.central-header .central-cart-link svg {
  width: 21px !important;
  height: 21px !important;
  stroke: currentColor !important;
  stroke-width: 1.55 !important;
  vector-effect: non-scaling-stroke;
}

.central-header .central-menu-toggle span,
.central-header .central-menu-toggle::before,
.central-header .central-menu-toggle::after {
  width: 21px !important;
  height: 1.55px !important;
  background: currentColor !important;
}

.home .central-header--home-overlay:not(.is-scrolled),
.blog .central-header--home-overlay:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .05) 58%, rgba(0, 0, 0, 0)) !important;
  color: #fff !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  backdrop-filter: blur(3px) saturate(105%) !important;
  -webkit-backdrop-filter: blur(3px) saturate(105%) !important;
}

.home .central-header--home-overlay:not(.is-scrolled)::before,
.blog .central-header--home-overlay:not(.is-scrolled)::before {
  opacity: var(--central-header-scroll, 0);
}

.home .central-header--home-overlay:not(.is-scrolled)::after,
.blog .central-header--home-overlay:not(.is-scrolled)::after {
  opacity: calc(1 - var(--central-header-scroll, 0));
}

@media (min-width: 768px) {
  .home .central-header--home-overlay,
  .blog .central-header--home-overlay {
    position: sticky !important;
    top: 0 !important;
    z-index: 120 !important;
    height: 46px !important;
    margin: 0 0 -46px !important;
  }

  .home .central-header--home-overlay .central-header__inner,
  .blog .central-header--home-overlay .central-header__inner {
    min-height: 46px !important;
  }
}

@media (max-width: 767px) {
  .central-header,
  .central-header.is-scrolled,
  .central-header--home-overlay,
  .central-header--home-overlay.is-scrolled,
  .home .central-header--home-overlay,
  .home .central-header--home-overlay.is-scrolled,
  .blog .central-header--home-overlay,
  .blog .central-header--home-overlay.is-scrolled {
    position: sticky !important;
    top: 0 !important;
    right: auto !important;
    left: auto !important;
    z-index: 120 !important;
    width: 100% !important;
    height: 54px !important;
    padding: 0 !important;
    transform: none !important;
  }

  .home .central-header--home-overlay,
  .blog .central-header--home-overlay {
    margin: 0 0 -54px !important;
  }

  .central-header .central-header__inner,
  .home .central-header--home-overlay .central-header__inner,
  .blog .central-header--home-overlay .central-header__inner {
    min-height: 54px !important;
  }

  .home .central-hero-slider,
  .blog .central-hero-slider {
    margin-top: 0 !important;
    height: calc(100svh - 32px) !important;
    min-height: calc(100svh - 32px) !important;
  }

  .central-announcement,
  .home .central-announcement,
  .blog .central-announcement {
    position: relative !important;
    z-index: 130 !important;
    margin: 0 !important;
  }
}

/* Homepage product carousel final override. Keep after all legacy product rules. */
@media (max-width: 767px) {
  .central-home .central-represent-products {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 0 30px !important;
    overflow: hidden !important;
  }

  .central-home .central-represent-products__grid {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    background: #fff !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .central-home .central-represent-products__grid::-webkit-scrollbar {
    display: none;
  }

  .central-home .central-represent-product {
    display: grid !important;
    grid-template-rows: 248px 42px 18px 22px !important;
    flex: 0 0 50% !important;
    width: 50% !important;
    min-width: 50% !important;
    max-width: 50% !important;
    margin: 0 !important;
    padding: 0 0 14px !important;
    background: #fff !important;
    border-right: 1px solid #fff;
    scroll-snap-align: start;
  }

  .central-home .central-represent-product__image {
    display: grid !important;
    width: 100% !important;
    height: 248px !important;
    min-height: 248px !important;
    padding: 18px 12px !important;
    place-items: center !important;
    background: #fff !important;
  }

  .central-home .central-represent-product__image img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: contain !important;
    mix-blend-mode: normal !important;
  }

  .central-home .central-represent-product__title {
    margin: 16px 10px 4px !important;
    min-height: 32px !important;
    max-height: 36px !important;
    overflow: hidden !important;
    font-size: 13px !important;
    line-height: 1.28 !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
  }

  .central-home .central-represent-product__stock {
    min-height: 16px !important;
    margin: 0 10px 2px !important;
    color: #777 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
  }

  .central-home .central-represent-product__price {
    margin: 0 10px !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  .central-home .central-represent-products__cta-wrap {
    margin-top: 22px !important;
    padding: 0 16px !important;
  }

  .central-home .central-represent-products__cta {
    min-width: 204px !important;
    min-height: 50px !important;
    padding: 0 20px !important;
    border-radius: 4px !important;
    font-size: 12px !important;
  }
}

/* Final mobile homepage hero override. */
@media (max-width: 767px) {
  .home .central-announcement,
  .blog .central-announcement {
    min-height: 28px !important;
    padding: 6px 34px !important;
    background: #050505 !important;
    color: #fff !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
  }

  .home .central-header--home-overlay,
  .blog .central-header--home-overlay {
    height: 62px !important;
    margin: 0 0 -62px !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .04)) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .home .central-header--home-overlay .central-header__inner,
  .blog .central-header--home-overlay .central-header__inner {
    min-height: 62px !important;
    padding: 0 20px !important;
  }

  .home .central-header--home-overlay .central-logo img,
  .blog .central-header--home-overlay .central-logo img {
    width: min(var(--central-logo-mobile-width, 118px), 118px) !important;
    max-width: 118px !important;
    max-height: 28px !important;
    filter: brightness(0) invert(1) !important;
  }

  .home .central-header--home-overlay .central-logo__text,
  .blog .central-header--home-overlay .central-logo__text {
    color: #fff !important;
    font-size: 18px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: -.03em !important;
  }

  .home .central-header--home-overlay .central-menu-toggle span,
  .home .central-header--home-overlay .central-menu-toggle::before,
  .home .central-header--home-overlay .central-menu-toggle::after,
  .blog .central-header--home-overlay .central-menu-toggle span,
  .blog .central-header--home-overlay .central-menu-toggle::before,
  .blog .central-header--home-overlay .central-menu-toggle::after {
    width: 20px !important;
    height: 1px !important;
  }

  .home .central-header--home-overlay .central-search-toggle svg,
  .home .central-header--home-overlay .central-icon-link svg,
  .blog .central-header--home-overlay .central-search-toggle svg,
  .blog .central-header--home-overlay .central-icon-link svg {
    width: 19px !important;
    height: 19px !important;
    stroke-width: 1.45 !important;
  }

  .home .central-hero-slider,
  .blog .central-hero-slider {
    height: calc(100svh - 28px) !important;
    min-height: 720px !important;
    max-height: 900px !important;
  }

  .home .central-hero-slide img,
  .blog .central-hero-slide img {
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
  }

  .home .central-hero-slide__content,
  .blog .central-hero-slide__content {
    left: 24px !important;
    right: 22px !important;
    bottom: 80px !important;
    max-width: 340px !important;
    text-shadow: 0 1px 14px rgba(0, 0, 0, .24) !important;
  }

  .home .central-hero-slide__content p,
  .blog .central-hero-slide__content p {
    margin: 0 0 8px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: -.02em !important;
  }

  .home .central-hero-slide__content h2,
  .blog .central-hero-slide__content h2 {
    margin: 0 0 20px !important;
    font-size: 25px !important;
    line-height: 1.04 !important;
    font-weight: 500 !important;
    letter-spacing: -.055em !important;
  }

  .home .central-hero-slide__button,
  .blog .central-hero-slide__button {
    min-width: 114px !important;
    min-height: 40px !important;
    padding: 0 18px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: rgba(119, 111, 105, .86) !important;
    color: #fff !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
  }

  .home .central-hero-slider__dots,
  .home .central-hero-slider__arrow,
  .blog .central-hero-slider__dots,
  .blog .central-hero-slider__arrow {
    display: none !important;
  }
}

/* Absolute final mobile shop archive layout. */
@media (max-width: 767px) {
  body.post-type-archive-product .central-page,
  body.tax-product_cat .central-page,
  body.tax-product_tag .central-page {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  body.post-type-archive-product .woocommerce-products-header,
  body.post-type-archive-product .woocommerce-ordering,
  body.post-type-archive-product .woocommerce-result-count,
  body.tax-product_cat .woocommerce-products-header,
  body.tax-product_cat .woocommerce-ordering,
  body.tax-product_cat .woocommerce-result-count,
  body.tax-product_tag .woocommerce-products-header,
  body.tax-product_tag .woocommerce-ordering,
  body.tax-product_tag .woocommerce-result-count {
    display: none !important;
  }

  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 10px 34px !important;
    border-right: 1px solid #fff !important;
    text-align: left !important;
  }

  body.post-type-archive-product ul.products li.product:nth-child(2n),
  body.tax-product_cat ul.products li.product:nth-child(2n),
  body.tax-product_tag ul.products li.product:nth-child(2n) {
    border-right: 0 !important;
  }

  body.post-type-archive-product .central-product-card__image,
  body.tax-product_cat .central-product-card__image,
  body.tax-product_tag .central-product-card__image {
    width: calc(100% + 20px) !important;
    height: 260px !important;
    margin: 0 -10px 14px !important;
    padding: 20px 10px !important;
    display: grid !important;
    place-items: center !important;
    background: #fff !important;
    border: 0 !important;
    aspect-ratio: auto !important;
  }

  body.post-type-archive-product .central-product-card__image img,
  body.tax-product_cat .central-product-card__image img,
  body.tax-product_tag .central-product-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center bottom !important;
  }

  body.post-type-archive-product .central-product-card__quick,
  body.tax-product_cat .central-product-card__quick,
  body.tax-product_tag .central-product-card__quick {
    position: absolute !important;
    right: 10px !important;
    top: 226px !important;
    display: grid !important;
    width: 24px !important;
    height: 24px !important;
    place-items: center !important;
    color: #111 !important;
    font-size: 24px !important;
    font-weight: 200 !important;
    line-height: 1 !important;
  }

  body.post-type-archive-product .central-wishlist-button,
  body.post-type-archive-product .central-product-fulfillment,
  body.post-type-archive-product .central-product-stock-badge,
  body.tax-product_cat .central-wishlist-button,
  body.tax-product_cat .central-product-fulfillment,
  body.tax-product_cat .central-product-stock-badge,
  body.tax-product_tag .central-wishlist-button,
  body.tax-product_tag .central-product-fulfillment,
  body.tax-product_tag .central-product-stock-badge {
    display: none !important;
  }

  body.post-type-archive-product .woocommerce-loop-product__title,
  body.tax-product_cat .woocommerce-loop-product__title,
  body.tax-product_tag .woocommerce-loop-product__title {
    display: block !important;
    margin: 0 0 4px !important;
    padding: 0 !important;
    text-align: left !important;
    color: #050505 !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    letter-spacing: -.03em !important;
  }

  body.post-type-archive-product ul.products li.product .price,
  body.tax-product_cat ul.products li.product .price,
  body.tax-product_tag ul.products li.product .price,
  body.post-type-archive-product ul.products li.product .price *,
  body.tax-product_cat ul.products li.product .price *,
  body.tax-product_tag ul.products li.product .price * {
    display: block !important;
    margin: 0 !important;
    color: #050505 !important;
    text-align: left !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    font-weight: 500 !important;
  }
}

/* Absolute final archive cleanup: no plus icons, inline prices. */
@media (max-width: 767px) {
  body.post-type-archive-product .central-product-card__quick,
  body.tax-product_cat .central-product-card__quick,
  body.tax-product_tag .central-product-card__quick {
    display: none !important;
  }

  body.post-type-archive-product ul.products li.product .price,
  body.tax-product_cat ul.products li.product .price,
  body.tax-product_tag ul.products li.product .price {
    display: inline-flex !important;
    align-items: baseline !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 4px !important;
    margin: 0 !important;
    color: #050505 !important;
    text-align: left !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
  }

  body.post-type-archive-product ul.products li.product .price *,
  body.tax-product_cat ul.products li.product .price *,
  body.tax-product_tag ul.products li.product .price * {
    display: inline !important;
    margin: 0 !important;
    color: #050505 !important;
    white-space: nowrap !important;
  }
}

/* Absolute final desktop parity: header, hero, logo, and archive match mobile language. */
@media (min-width: 768px) {
  .central-announcement,
  .home .central-announcement,
  .blog .central-announcement {
    min-height: 28px !important;
    padding: 6px 42px !important;
    background: #050505 !important;
    color: #fff !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
  }

  .central-header,
  .central-header--home-overlay,
  .central-header.is-scrolled,
  .central-header--home-overlay.is-scrolled {
    position: sticky !important;
    top: 0 !important;
    z-index: 120 !important;
    height: 68px !important;
    margin: 0 !important;
    background: #fff !important;
    color: #050505 !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .home .central-header--home-overlay,
  .blog .central-header--home-overlay {
    margin: 0 0 -68px !important;
    background: linear-gradient(180deg, rgba(0,0,0,.24), rgba(0,0,0,.04)) !important;
    color: #fff !important;
  }

  .central-header .central-header__inner,
  .home .central-header--home-overlay .central-header__inner,
  .blog .central-header--home-overlay .central-header__inner {
    width: 100% !important;
    max-width: none !important;
    min-height: 68px !important;
    padding: 0 28px !important;
    display: grid !important;
    grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr) !important;
    align-items: center !important;
  }

  .central-header .central-nav {
    display: block !important;
    grid-column: 1 !important;
  }

  .central-header .central-nav ul {
    display: flex !important;
    align-items: center !important;
    gap: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .central-header .central-nav a {
    color: inherit !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
  }

  .central-header .central-menu-toggle {
    display: none !important;
  }

  .central-header .central-logo {
    grid-column: 2 !important;
    position: static !important;
    transform: none !important;
    display: grid !important;
    place-items: center !important;
    margin: 0 !important;
  }

  .central-header .central-logo img {
    width: var(--central-logo-desktop-width, 150px) !important;
    max-width: min(var(--central-logo-desktop-width, 150px), 220px) !important;
    max-height: 38px !important;
    object-fit: contain !important;
  }

  .home .central-header--home-overlay .central-logo img,
  .blog .central-header--home-overlay .central-logo img {
    filter: brightness(0) invert(1) !important;
  }

  .central-header .central-actions {
    grid-column: 3 !important;
    justify-content: end !important;
    gap: 24px !important;
  }

  .central-header .central-search-toggle svg,
  .central-header .central-icon-link svg,
  .central-header .central-cart-link svg {
    width: 20px !important;
    height: 20px !important;
    stroke-width: 1.45 !important;
  }

  .home .central-hero-slider,
  .blog .central-hero-slider {
    height: calc(100svh - 28px) !important;
    min-height: 760px !important;
    max-height: 980px !important;
  }

  .home .central-hero-slide img,
  .blog .central-hero-slide img {
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
  }

  .home .central-hero-slide__content,
  .blog .central-hero-slide__content {
    left: clamp(38px, 7vw, 82px) !important;
    right: auto !important;
    bottom: clamp(76px, 11vw, 130px) !important;
    max-width: 420px !important;
    text-shadow: 0 1px 14px rgba(0,0,0,.24) !important;
  }

  .home .central-hero-slide__content p,
  .blog .central-hero-slide__content p {
    margin: 0 0 8px !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: -.02em !important;
  }

  .home .central-hero-slide__content h2,
  .blog .central-hero-slide__content h2 {
    margin: 0 0 22px !important;
    font-size: clamp(28px, 3.4vw, 44px) !important;
    line-height: 1.02 !important;
    font-weight: 500 !important;
    letter-spacing: -.055em !important;
  }

  .home .central-hero-slide__button,
  .blog .central-hero-slide__button {
    min-width: 122px !important;
    min-height: 42px !important;
    padding: 0 20px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: rgba(119,111,105,.86) !important;
    color: #fff !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
  }

  .home .central-hero-slider__dots,
  .home .central-hero-slider__arrow,
  .blog .central-hero-slider__dots,
  .blog .central-hero-slider__arrow {
    display: none !important;
  }
}

@media (min-width: 768px) {
  body.post-type-archive-product .central-page,
  body.tax-product_cat .central-page,
  body.tax-product_tag .central-page {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #fff !important;
  }

  body.post-type-archive-product .woocommerce-products-header,
  body.post-type-archive-product .woocommerce-ordering,
  body.post-type-archive-product .woocommerce-result-count,
  body.tax-product_cat .woocommerce-products-header,
  body.tax-product_cat .woocommerce-ordering,
  body.tax-product_cat .woocommerce-result-count,
  body.tax-product_tag .woocommerce-products-header,
  body.tax-product_tag .woocommerce-ordering,
  body.tax-product_tag .woocommerce-result-count {
    display: none !important;
  }

  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
  }

  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 14px 42px !important;
    border-right: 1px solid #fff !important;
    text-align: left !important;
    background: #fff !important;
  }

  body.post-type-archive-product ul.products li.product:nth-child(4n),
  body.tax-product_cat ul.products li.product:nth-child(4n),
  body.tax-product_tag ul.products li.product:nth-child(4n) {
    border-right: 0 !important;
  }

  body.post-type-archive-product .central-product-card__image,
  body.tax-product_cat .central-product-card__image,
  body.tax-product_tag .central-product-card__image {
    width: calc(100% + 28px) !important;
    height: clamp(350px, 31vw, 500px) !important;
    margin: 0 -14px 16px !important;
    padding: 34px 18px !important;
    display: grid !important;
    place-items: center !important;
    background: #fff !important;
    border: 0 !important;
    aspect-ratio: auto !important;
  }

  body.post-type-archive-product .central-product-card__image img,
  body.tax-product_cat .central-product-card__image img,
  body.tax-product_tag .central-product-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center bottom !important;
  }

  body.post-type-archive-product .central-product-card__quick,
  body.tax-product_cat .central-product-card__quick,
  body.tax-product_tag .central-product-card__quick,
  body.post-type-archive-product .central-wishlist-button,
  body.post-type-archive-product .central-product-fulfillment,
  body.post-type-archive-product .central-product-stock-badge,
  body.tax-product_cat .central-wishlist-button,
  body.tax-product_cat .central-product-fulfillment,
  body.tax-product_cat .central-product-stock-badge,
  body.tax-product_tag .central-wishlist-button,
  body.tax-product_tag .central-product-fulfillment,
  body.tax-product_tag .central-product-stock-badge {
    display: none !important;
  }

  body.post-type-archive-product .woocommerce-loop-product__title,
  body.tax-product_cat .woocommerce-loop-product__title,
  body.tax-product_tag .woocommerce-loop-product__title {
    display: block !important;
    margin: 0 0 4px !important;
    padding: 0 !important;
    text-align: left !important;
    color: #050505 !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    letter-spacing: -.03em !important;
    max-width: none !important;
  }

  body.post-type-archive-product ul.products li.product .price,
  body.tax-product_cat ul.products li.product .price,
  body.tax-product_tag ul.products li.product .price {
    display: inline-flex !important;
    align-items: baseline !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 4px !important;
    margin: 0 !important;
    color: #050505 !important;
    text-align: left !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
  }

  body.post-type-archive-product ul.products li.product .price *,
  body.tax-product_cat ul.products li.product .price *,
  body.tax-product_tag ul.products li.product .price * {
    display: inline !important;
    color: #050505 !important;
    white-space: nowrap !important;
  }
}

/* Final product archive alignment: fixed image/text rows with Represent-style dividers. */
body.post-type-archive-product ul.products,
body.tax-product_cat ul.products,
body.tax-product_tag ul.products {
  gap: 0 !important;
  background: #fff !important;
}

body.post-type-archive-product ul.products li.product,
body.tax-product_cat ul.products li.product,
body.tax-product_tag ul.products li.product {
  display: grid !important;
  grid-template-rows: var(--central-archive-image-height, 260px) minmax(74px, auto) !important;
  align-content: start !important;
  row-gap: 0 !important;
  padding: 0 !important;
  background: #fff !important;
  border-right: 1px solid #fff !important;
  border-bottom: 1px solid #fff !important;
  text-align: left !important;
  overflow: hidden !important;
}

body.post-type-archive-product ul.products li.product:nth-child(2n),
body.tax-product_cat ul.products li.product:nth-child(2n),
body.tax-product_tag ul.products li.product:nth-child(2n) {
  border-right: 0 !important;
}

body.post-type-archive-product .central-product-card__image,
body.tax-product_cat .central-product-card__image,
body.tax-product_tag .central-product-card__image {
  grid-row: 1 !important;
  width: 100% !important;
  height: var(--central-archive-image-height, 260px) !important;
  min-height: var(--central-archive-image-height, 260px) !important;
  margin: 0 !important;
  padding: var(--central-archive-image-padding, 20px 12px) !important;
  background: #fff !important;
  border: 0 !important;
  aspect-ratio: auto !important;
}

body.post-type-archive-product .central-product-card__image img,
body.tax-product_cat .central-product-card__image img,
body.tax-product_tag .central-product-card__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

body.post-type-archive-product .woocommerce-loop-product__title,
body.tax-product_cat .woocommerce-loop-product__title,
body.tax-product_tag .woocommerce-loop-product__title {
  grid-row: 2 !important;
  align-self: start !important;
  min-height: 36px !important;
  margin: 14px 10px 4px !important;
  padding: 0 !important;
  text-align: left !important;
  color: #050505 !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  letter-spacing: -.03em !important;
  overflow: hidden !important;
}

body.post-type-archive-product ul.products li.product .price,
body.tax-product_cat ul.products li.product .price,
body.tax-product_tag ul.products li.product .price {
  grid-row: 2 !important;
  align-self: end !important;
  display: inline-flex !important;
  flex-wrap: nowrap !important;
  gap: 4px !important;
  margin: 0 10px 14px !important;
  color: #050505 !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
}

body.post-type-archive-product ul.products li.product .price *,
body.tax-product_cat ul.products li.product .price *,
body.tax-product_tag ul.products li.product .price * {
  display: inline !important;
  color: #050505 !important;
  white-space: nowrap !important;
}

body.post-type-archive-product .central-product-card__quick,
body.tax-product_cat .central-product-card__quick,
body.tax-product_tag .central-product-card__quick,
body.post-type-archive-product .central-wishlist-button,
body.tax-product_cat .central-wishlist-button,
body.tax-product_tag .central-wishlist-button,
body.post-type-archive-product .central-product-fulfillment,
body.tax-product_cat .central-product-fulfillment,
body.tax-product_tag .central-product-fulfillment,
body.post-type-archive-product .central-product-stock-badge,
body.tax-product_cat .central-product-stock-badge,
body.tax-product_tag .central-product-stock-badge {
  display: none !important;
}

@media (max-width: 767px) {
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product {
    --central-archive-image-height: 188px;
    --central-archive-image-padding: 16px 8px;
  }
}

@media (min-width: 768px) {
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product {
    --central-archive-image-height: clamp(300px, 29vw, 460px);
    --central-archive-image-padding: 32px 18px;
  }

  body.post-type-archive-product ul.products li.product:nth-child(2n),
  body.tax-product_cat ul.products li.product:nth-child(2n),
  body.tax-product_tag ul.products li.product:nth-child(2n) {
    border-right: 1px solid #fff !important;
  }

  body.post-type-archive-product ul.products li.product:nth-child(4n),
  body.tax-product_cat ul.products li.product:nth-child(4n),
  body.tax-product_tag ul.products li.product:nth-child(4n) {
    border-right: 0 !important;
  }

  body.post-type-archive-product .woocommerce-loop-product__title,
  body.tax-product_cat .woocommerce-loop-product__title,
  body.tax-product_tag .woocommerce-loop-product__title,
  body.post-type-archive-product ul.products li.product .price,
  body.tax-product_cat ul.products li.product .price,
  body.tax-product_tag ul.products li.product .price {
    font-size: 14px !important;
    margin-left: 14px !important;
    margin-right: 14px !important;
  }
}

/* Absolute final shop/archive grid: Represent-style vertical product cards. */
body.woocommerce-shop .woocommerce-products-header,
body.woocommerce-shop .woocommerce-ordering,
body.woocommerce-shop .woocommerce-result-count,
body.post-type-archive-product .woocommerce-products-header,
body.post-type-archive-product .woocommerce-ordering,
body.post-type-archive-product .woocommerce-result-count,
body.tax-product_cat .woocommerce-products-header,
body.tax-product_cat .woocommerce-ordering,
body.tax-product_cat .woocommerce-result-count,
body.tax-product_tag .woocommerce-products-header,
body.tax-product_tag .woocommerce-ordering,
body.tax-product_tag .woocommerce-result-count {
  display: none !important;
}

body.woocommerce-shop .site-main,
body.woocommerce-shop .central-page,
body.post-type-archive-product .site-main,
body.post-type-archive-product .central-page,
body.tax-product_cat .site-main,
body.tax-product_cat .central-page,
body.tax-product_tag .site-main,
body.tax-product_tag .central-page {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce-shop ul.products,
body.post-type-archive-product ul.products,
body.tax-product_cat ul.products,
body.tax-product_tag ul.products {
  display: grid !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #fff !important;
  list-style: none !important;
}

body.woocommerce-shop ul.products li.product,
body.post-type-archive-product ul.products li.product,
body.tax-product_cat ul.products li.product,
body.tax-product_tag ul.products li.product {
  display: grid !important;
  grid-template-rows: var(--central-archive-image-height, 260px) 56px 28px !important;
  align-content: start !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  clear: none !important;
  background: #fff !important;
  border-right: 1px solid #fff !important;
  border-bottom: 1px solid #fff !important;
  text-align: left !important;
  overflow: hidden !important;
}

body.woocommerce-shop .central-product-card__image,
body.post-type-archive-product .central-product-card__image,
body.tax-product_cat .central-product-card__image,
body.tax-product_tag .central-product-card__image {
  grid-row: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: var(--central-archive-image-height, 260px) !important;
  min-height: var(--central-archive-image-height, 260px) !important;
  margin: 0 !important;
  padding: var(--central-archive-image-padding, 20px 12px) !important;
  background: #fff !important;
  border: 0 !important;
  border-radius: 0 !important;
  aspect-ratio: auto !important;
  box-shadow: none !important;
}

body.woocommerce-shop .central-product-card__image img,
body.post-type-archive-product .central-product-card__image img,
body.tax-product_cat .central-product-card__image img,
body.tax-product_tag .central-product-card__image img,
body.woocommerce-shop ul.products li.product a img,
body.post-type-archive-product ul.products li.product a img,
body.tax-product_cat ul.products li.product a img,
body.tax-product_tag ul.products li.product a img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
}

body.woocommerce-shop .woocommerce-loop-product__title,
body.post-type-archive-product .woocommerce-loop-product__title,
body.tax-product_cat .woocommerce-loop-product__title,
body.tax-product_tag .woocommerce-loop-product__title {
  grid-row: 2 !important;
  align-self: start !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  margin: 14px 10px 0 !important;
  padding: 0 !important;
  min-height: 34px !important;
  max-height: 36px !important;
  overflow: hidden !important;
  text-align: left !important;
  color: #050505 !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  letter-spacing: -.03em !important;
}

body.woocommerce-shop .woocommerce-loop-product__title a,
body.post-type-archive-product .woocommerce-loop-product__title a,
body.tax-product_cat .woocommerce-loop-product__title a,
body.tax-product_tag .woocommerce-loop-product__title a {
  color: inherit !important;
  text-decoration: none !important;
}

body.woocommerce-shop ul.products li.product .price,
body.post-type-archive-product ul.products li.product .price,
body.tax-product_cat ul.products li.product .price,
body.tax-product_tag ul.products li.product .price {
  grid-row: 3 !important;
  align-self: start !important;
  justify-self: start !important;
  display: inline-flex !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
  flex-wrap: nowrap !important;
  gap: 4px !important;
  width: auto !important;
  max-width: calc(100% - 20px) !important;
  margin: 0 10px 12px !important;
  padding: 0 !important;
  color: #050505 !important;
  text-align: left !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
}

body.woocommerce-shop ul.products li.product .price *,
body.post-type-archive-product ul.products li.product .price *,
body.tax-product_cat ul.products li.product .price *,
body.tax-product_tag ul.products li.product .price * {
  display: inline !important;
  color: #050505 !important;
  white-space: nowrap !important;
}

body.woocommerce-shop .central-product-card__quick,
body.post-type-archive-product .central-product-card__quick,
body.tax-product_cat .central-product-card__quick,
body.tax-product_tag .central-product-card__quick,
body.woocommerce-shop .central-wishlist-button,
body.post-type-archive-product .central-wishlist-button,
body.tax-product_cat .central-wishlist-button,
body.tax-product_tag .central-wishlist-button,
body.woocommerce-shop .central-product-fulfillment,
body.post-type-archive-product .central-product-fulfillment,
body.tax-product_cat .central-product-fulfillment,
body.tax-product_tag .central-product-fulfillment,
body.woocommerce-shop .central-product-stock-badge,
body.post-type-archive-product .central-product-stock-badge,
body.tax-product_cat .central-product-stock-badge,
body.tax-product_tag .central-product-stock-badge {
  display: none !important;
}

.central-header .central-logo img,
.home .central-header .central-logo img,
.blog .central-header .central-logo img,
body.single-product .central-logo img,
body.woocommerce-shop .central-logo img,
body.post-type-archive-product .central-logo img,
body.tax-product_cat .central-logo img,
body.tax-product_tag .central-logo img {
  width: var(--central-logo-desktop-width, 150px) !important;
  max-width: min(var(--central-logo-desktop-width, 150px), calc(100vw - 180px)) !important;
  height: auto !important;
  max-height: none !important;
}

@media (max-width: 767px) {
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.woocommerce-shop ul.products li.product,
  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product {
    --central-archive-image-height: 258px;
    --central-archive-image-padding: 18px 10px;
    grid-template-rows: var(--central-archive-image-height) 56px 30px !important;
  }

  body.woocommerce-shop ul.products li.product:nth-child(2n),
  body.post-type-archive-product ul.products li.product:nth-child(2n),
  body.tax-product_cat ul.products li.product:nth-child(2n),
  body.tax-product_tag ul.products li.product:nth-child(2n) {
    border-right: 0 !important;
  }

  .central-header .central-logo img,
  .home .central-header .central-logo img,
  .blog .central-header .central-logo img,
  body.single-product .central-logo img,
  body.woocommerce-shop .central-logo img,
  body.post-type-archive-product .central-logo img,
  body.tax-product_cat .central-logo img,
  body.tax-product_tag .central-logo img {
    width: var(--central-logo-mobile-width, 150px) !important;
    max-width: min(var(--central-logo-mobile-width, 150px), calc(100vw - 168px)) !important;
    height: auto !important;
    max-height: none !important;
  }
}

@media (min-width: 768px) {
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  body.woocommerce-shop ul.products li.product,
  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product {
    --central-archive-image-height: clamp(300px, 29vw, 460px);
    --central-archive-image-padding: 32px 18px;
    grid-template-rows: var(--central-archive-image-height) 58px 32px !important;
  }

  body.woocommerce-shop ul.products li.product:nth-child(2n),
  body.post-type-archive-product ul.products li.product:nth-child(2n),
  body.tax-product_cat ul.products li.product:nth-child(2n),
  body.tax-product_tag ul.products li.product:nth-child(2n) {
    border-right: 1px solid #fff !important;
  }

  body.woocommerce-shop ul.products li.product:nth-child(4n),
  body.post-type-archive-product ul.products li.product:nth-child(4n),
  body.tax-product_cat ul.products li.product:nth-child(4n),
  body.tax-product_tag ul.products li.product:nth-child(4n) {
    border-right: 0 !important;
  }

  body.woocommerce-shop .woocommerce-loop-product__title,
  body.post-type-archive-product .woocommerce-loop-product__title,
  body.tax-product_cat .woocommerce-loop-product__title,
  body.tax-product_tag .woocommerce-loop-product__title,
  body.woocommerce-shop ul.products li.product .price,
  body.post-type-archive-product ul.products li.product .price,
  body.tax-product_cat ul.products li.product .price,
  body.tax-product_tag ul.products li.product .price {
    font-size: 14px !important;
    margin-left: 14px !important;
    margin-right: 14px !important;
  }
}

/* Desktop archive correction: keep product cards tight like the mobile/reference grid. */
@media (min-width: 768px) {
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0 !important;
    background: #fff !important;
  }

  body.woocommerce-shop ul.products li.product,
  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product {
    --central-archive-image-height: clamp(255px, 22vw, 330px);
    --central-archive-image-padding: 26px 18px;
    grid-template-rows: var(--central-archive-image-height) 58px 32px !important;
    min-height: 0 !important;
    background: #fff !important;
    border-right: 1px solid #fff !important;
    border-bottom: 1px solid #fff !important;
  }

  body.woocommerce-shop .central-product-card__image,
  body.post-type-archive-product .central-product-card__image,
  body.tax-product_cat .central-product-card__image,
  body.tax-product_tag .central-product-card__image {
    height: var(--central-archive-image-height) !important;
    min-height: var(--central-archive-image-height) !important;
    padding: var(--central-archive-image-padding) !important;
    background: #fff !important;
  }

  body.woocommerce-shop .woocommerce-loop-product__title,
  body.post-type-archive-product .woocommerce-loop-product__title,
  body.tax-product_cat .woocommerce-loop-product__title,
  body.tax-product_tag .woocommerce-loop-product__title {
    margin: 14px 14px 0 !important;
    min-height: 34px !important;
    max-height: 36px !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
  }

  body.woocommerce-shop ul.products li.product .price,
  body.post-type-archive-product ul.products li.product .price,
  body.tax-product_cat ul.products li.product .price,
  body.tax-product_tag ul.products li.product .price {
    margin: 0 14px 12px !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    white-space: nowrap !important;
  }
}

/* Universal logo sizing: use the same header logo dimensions on every page, including search results. */
.central-header .central-logo,
.home .central-header .central-logo,
.blog .central-header .central-logo,
body.single-product .central-logo,
body.woocommerce-shop .central-logo,
body.post-type-archive-product .central-logo,
body.tax-product_cat .central-logo,
body.tax-product_tag .central-logo,
body.search .central-logo,
body.search-results .central-logo {
  width: auto !important;
  max-width: min(var(--central-logo-desktop-width, 150px), calc(100vw - 180px)) !important;
}

.central-header .central-logo img,
.home .central-header .central-logo img,
.blog .central-header .central-logo img,
body.single-product .central-logo img,
body.woocommerce-shop .central-logo img,
body.post-type-archive-product .central-logo img,
body.tax-product_cat .central-logo img,
body.tax-product_tag .central-logo img,
body.search .central-logo img,
body.search-results .central-logo img {
  width: var(--central-logo-desktop-width, 150px) !important;
  max-width: min(var(--central-logo-desktop-width, 150px), calc(100vw - 180px)) !important;
  height: auto !important;
  max-height: none !important;
}

@media (max-width: 767px) {
  .central-header .central-logo,
  .home .central-header .central-logo,
  .blog .central-header .central-logo,
  body.single-product .central-logo,
  body.woocommerce-shop .central-logo,
  body.post-type-archive-product .central-logo,
  body.tax-product_cat .central-logo,
  body.tax-product_tag .central-logo,
  body.search .central-logo,
  body.search-results .central-logo {
    width: auto !important;
    max-width: min(var(--central-logo-mobile-width, 150px), calc(100vw - 168px)) !important;
  }

  .central-header .central-logo img,
  .home .central-header .central-logo img,
  .blog .central-header .central-logo img,
  body.single-product .central-logo img,
  body.woocommerce-shop .central-logo img,
  body.post-type-archive-product .central-logo img,
  body.tax-product_cat .central-logo img,
  body.tax-product_tag .central-logo img,
  body.search .central-logo img,
  body.search-results .central-logo img {
    width: var(--central-logo-mobile-width, 150px) !important;
    max-width: min(var(--central-logo-mobile-width, 150px), calc(100vw - 168px)) !important;
    height: auto !important;
    max-height: none !important;
  }
}

/* Product search results must use the same product grid as shop/category pages. */
body.search .central-page,
body.search-results .central-page,
body.search .site-main,
body.search-results .site-main {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.search .woocommerce-products-header,
body.search-results .woocommerce-products-header,
body.search .woocommerce-ordering,
body.search-results .woocommerce-ordering,
body.search .woocommerce-result-count,
body.search-results .woocommerce-result-count,
body.search .page-title,
body.search-results .page-title,
body.search .central-page > h1,
body.search-results .central-page > h1 {
  display: none !important;
}

body.search ul.products,
body.search-results ul.products,
body.search .woocommerce ul.products,
body.search-results .woocommerce ul.products {
  display: grid !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #fff !important;
  list-style: none !important;
}

body.search ul.products li.product,
body.search-results ul.products li.product,
body.search .woocommerce ul.products li.product,
body.search-results .woocommerce ul.products li.product {
  display: grid !important;
  grid-template-rows: var(--central-search-image-height, 258px) 56px 30px !important;
  align-content: start !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  clear: none !important;
  background: #fff !important;
  border-right: 1px solid #fff !important;
  border-bottom: 1px solid #fff !important;
  text-align: left !important;
  overflow: hidden !important;
}

body.search .central-product-card__image,
body.search-results .central-product-card__image,
body.search ul.products li.product .woocommerce-LoopProduct-link,
body.search-results ul.products li.product .woocommerce-LoopProduct-link {
  grid-row: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: var(--central-search-image-height, 258px) !important;
  min-height: var(--central-search-image-height, 258px) !important;
  margin: 0 !important;
  padding: var(--central-search-image-padding, 18px 10px) !important;
  background: #fff !important;
  border: 0 !important;
  border-radius: 0 !important;
  aspect-ratio: auto !important;
  box-shadow: none !important;
}

body.search .central-product-card__image img,
body.search-results .central-product-card__image img,
body.search ul.products li.product img,
body.search-results ul.products li.product img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
}

body.search ul.products li.product .woocommerce-loop-product__title,
body.search-results ul.products li.product .woocommerce-loop-product__title,
body.search .central-product-card__title,
body.search-results .central-product-card__title {
  grid-row: 2 !important;
  align-self: start !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  margin: 14px 10px 0 !important;
  padding: 0 !important;
  min-height: 34px !important;
  max-height: 36px !important;
  overflow: hidden !important;
  text-align: left !important;
  color: #050505 !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  letter-spacing: -.03em !important;
}

body.search ul.products li.product .woocommerce-loop-product__title a,
body.search-results ul.products li.product .woocommerce-loop-product__title a,
body.search .central-product-card__title a,
body.search-results .central-product-card__title a {
  color: inherit !important;
  text-decoration: none !important;
}

body.search ul.products li.product .price,
body.search-results ul.products li.product .price,
body.search .central-product-card__price,
body.search-results .central-product-card__price {
  grid-row: 3 !important;
  align-self: start !important;
  justify-self: start !important;
  display: inline-flex !important;
  align-items: baseline !important;
  flex-wrap: nowrap !important;
  gap: 4px !important;
  width: auto !important;
  max-width: calc(100% - 20px) !important;
  margin: 0 10px 12px !important;
  padding: 0 !important;
  color: #050505 !important;
  text-align: left !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
}

body.search ul.products li.product .price *,
body.search-results ul.products li.product .price *,
body.search .central-product-card__price *,
body.search-results .central-product-card__price * {
  display: inline !important;
  color: #050505 !important;
  white-space: nowrap !important;
}

body.search .central-product-card__quick,
body.search-results .central-product-card__quick,
body.search .central-wishlist-button,
body.search-results .central-wishlist-button,
body.search .central-product-fulfillment,
body.search-results .central-product-fulfillment,
body.search .central-product-stock-badge,
body.search-results .central-product-stock-badge {
  display: none !important;
}

@media (max-width: 767px) {
  body.search ul.products,
  body.search-results ul.products,
  body.search .woocommerce ul.products,
  body.search-results .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.search ul.products li.product,
  body.search-results ul.products li.product,
  body.search .woocommerce ul.products li.product,
  body.search-results .woocommerce ul.products li.product {
    --central-search-image-height: 258px;
    --central-search-image-padding: 18px 10px;
  }

  body.search ul.products li.product:nth-child(2n),
  body.search-results ul.products li.product:nth-child(2n) {
    border-right: 0 !important;
  }
}

@media (min-width: 768px) {
  body.search ul.products,
  body.search-results ul.products,
  body.search .woocommerce ul.products,
  body.search-results .woocommerce ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  body.search ul.products li.product,
  body.search-results ul.products li.product,
  body.search .woocommerce ul.products li.product,
  body.search-results .woocommerce ul.products li.product {
    --central-search-image-height: clamp(255px, 22vw, 330px);
    --central-search-image-padding: 26px 18px;
    grid-template-rows: var(--central-search-image-height) 58px 32px !important;
  }

  body.search ul.products li.product:nth-child(2n),
  body.search-results ul.products li.product:nth-child(2n) {
    border-right: 1px solid #fff !important;
  }

  body.search ul.products li.product:nth-child(4n),
  body.search-results ul.products li.product:nth-child(4n) {
    border-right: 0 !important;
  }

  body.search ul.products li.product .woocommerce-loop-product__title,
  body.search-results ul.products li.product .woocommerce-loop-product__title,
  body.search .central-product-card__title,
  body.search-results .central-product-card__title,
  body.search ul.products li.product .price,
  body.search-results ul.products li.product .price,
  body.search .central-product-card__price,
  body.search-results .central-product-card__price {
    font-size: 14px !important;
    margin-left: 14px !important;
    margin-right: 14px !important;
  }
}

/* Desktop homepage header fix: keep the blur row taller than the centered logo. */
@media (min-width: 768px) {
  .home .central-header--home-overlay,
  .blog .central-header--home-overlay {
    --central-home-header-height: clamp(78px, calc(var(--central-logo-desktop-width, 150px) * .34), 112px);
    min-height: var(--central-home-header-height) !important;
    height: var(--central-home-header-height) !important;
    margin-bottom: calc(var(--central-home-header-height) * -1) !important;
    overflow: visible !important;
    background: rgba(255, 255, 255, .13) !important;
    color: #fff !important;
    backdrop-filter: blur(8px) saturate(115%) !important;
    -webkit-backdrop-filter: blur(8px) saturate(115%) !important;
  }

  .home .central-header--home-overlay:not(.is-scrolled),
  .blog .central-header--home-overlay:not(.is-scrolled) {
    min-height: var(--central-home-header-height) !important;
    height: var(--central-home-header-height) !important;
    margin-bottom: calc(var(--central-home-header-height) * -1) !important;
    background: rgba(255, 255, 255, .13) !important;
    color: #fff !important;
    backdrop-filter: blur(8px) saturate(115%) !important;
    -webkit-backdrop-filter: blur(8px) saturate(115%) !important;
  }

  .home .central-header--home-overlay::before,
  .blog .central-header--home-overlay::before,
  .home .central-header--home-overlay::after,
  .blog .central-header--home-overlay::after {
    inset: 0 !important;
    height: auto !important;
  }

  .home .central-header--home-overlay .central-header__inner,
  .blog .central-header--home-overlay .central-header__inner {
    min-height: var(--central-home-header-height) !important;
    height: var(--central-home-header-height) !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    align-items: center !important;
  }

  .home .central-header--home-overlay .central-logo,
  .blog .central-header--home-overlay .central-logo {
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    max-height: calc(var(--central-home-header-height) - 16px) !important;
    overflow: visible !important;
  }

  .home .central-header--home-overlay .central-logo img,
  .blog .central-header--home-overlay .central-logo img {
    width: var(--central-logo-desktop-width, 150px) !important;
    max-width: min(var(--central-logo-desktop-width, 150px), calc(100vw - 220px)) !important;
    max-height: calc(var(--central-home-header-height) - 16px) !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .home .central-header--home-overlay .central-nav,
  .blog .central-header--home-overlay .central-nav,
  .home .central-header--home-overlay .central-actions,
  .blog .central-header--home-overlay .central-actions,
  .home .central-header--home-overlay .central-header__left,
  .blog .central-header--home-overlay .central-header__left {
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
  }
}

/* Final Represent product listing system for shop, category, tag, and search pages. */
body.woocommerce-shop .woocommerce-products-header,
body.post-type-archive-product .woocommerce-products-header,
body.tax-product_cat .woocommerce-products-header,
body.tax-product_tag .woocommerce-products-header,
body.search .woocommerce-products-header,
body.search-results .woocommerce-products-header,
body.woocommerce-shop .page-title,
body.post-type-archive-product .page-title,
body.tax-product_cat .page-title,
body.tax-product_tag .page-title,
body.search .page-title,
body.search-results .page-title,
body.woocommerce-shop .woocommerce-ordering,
body.post-type-archive-product .woocommerce-ordering,
body.tax-product_cat .woocommerce-ordering,
body.tax-product_tag .woocommerce-ordering,
body.search .woocommerce-ordering,
body.search-results .woocommerce-ordering,
body.woocommerce-shop .woocommerce-result-count,
body.post-type-archive-product .woocommerce-result-count,
body.tax-product_cat .woocommerce-result-count,
body.tax-product_tag .woocommerce-result-count,
body.search .woocommerce-result-count,
body.search-results .woocommerce-result-count {
  display: none !important;
}

body.woocommerce-shop .central-page,
body.post-type-archive-product .central-page,
body.tax-product_cat .central-page,
body.tax-product_tag .central-page,
body.search .central-page,
body.search-results .central-page,
body.woocommerce-shop .site-main,
body.post-type-archive-product .site-main,
body.tax-product_cat .site-main,
body.tax-product_tag .site-main,
body.search .site-main,
body.search-results .site-main {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce-shop ul.products,
body.post-type-archive-product ul.products,
body.tax-product_cat ul.products,
body.tax-product_tag ul.products,
body.search ul.products,
body.search-results ul.products,
body.search .woocommerce ul.products,
body.search-results .woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(var(--central-listing-columns, 2), minmax(0, 1fr)) !important;
  gap: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #fff !important;
  list-style: none !important;
}

body.woocommerce-shop ul.products li.product,
body.post-type-archive-product ul.products li.product,
body.tax-product_cat ul.products li.product,
body.tax-product_tag ul.products li.product,
body.search ul.products li.product,
body.search-results ul.products li.product,
body.search .woocommerce ul.products li.product,
body.search-results .woocommerce ul.products li.product {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  grid-template-rows: var(--central-listing-image-height, 258px) 25px 22px 29px !important;
  align-content: start !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  clear: none !important;
  background: #fff !important;
  border-right: 1px solid #fff !important;
  border-bottom: 1px solid #fff !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-align: left !important;
  overflow: hidden !important;
}

body.woocommerce-shop .central-product-card__image,
body.post-type-archive-product .central-product-card__image,
body.tax-product_cat .central-product-card__image,
body.tax-product_tag .central-product-card__image,
body.search .central-product-card__image,
body.search-results .central-product-card__image,
body.search ul.products li.product .woocommerce-LoopProduct-link,
body.search-results ul.products li.product .woocommerce-LoopProduct-link {
  grid-column: 1 / -1 !important;
  grid-row: 1 !important;
  position: relative !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  width: 100% !important;
  height: var(--central-listing-image-height, 258px) !important;
  min-height: var(--central-listing-image-height, 258px) !important;
  margin: 0 !important;
  padding: var(--central-listing-image-padding, 0 10px) !important;
  background: #fff !important;
  border: 0 !important;
  border-radius: 0 !important;
  aspect-ratio: auto !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

body.woocommerce-shop .central-product-card__image::after,
body.post-type-archive-product .central-product-card__image::after,
body.tax-product_cat .central-product-card__image::after,
body.tax-product_tag .central-product-card__image::after,
body.search .central-product-card__image::after,
body.search-results .central-product-card__image::after {
  content: "+";
  position: absolute;
  right: 11px;
  bottom: 10px;
  z-index: 2;
  color: #111;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  pointer-events: none;
}

body.woocommerce-shop .central-product-card__image img,
body.post-type-archive-product .central-product-card__image img,
body.tax-product_cat .central-product-card__image img,
body.tax-product_tag .central-product-card__image img,
body.search .central-product-card__image img,
body.search-results .central-product-card__image img,
body.woocommerce-shop ul.products li.product a img,
body.post-type-archive-product ul.products li.product a img,
body.tax-product_cat ul.products li.product a img,
body.tax-product_tag ul.products li.product a img,
body.search ul.products li.product img,
body.search-results ul.products li.product img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: center bottom !important;
}

body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
body.tax-product_tag ul.products li.product .woocommerce-loop-product__title,
body.search ul.products li.product .woocommerce-loop-product__title,
body.search-results ul.products li.product .woocommerce-loop-product__title {
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
  align-self: end !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  min-height: 0 !important;
  max-height: 34px !important;
  margin: 12px 10px 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  color: #050505 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: -.03em !important;
  line-height: 1.18 !important;
  text-align: left !important;
}

body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title a,
body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title a,
body.tax-product_cat ul.products li.product .woocommerce-loop-product__title a,
body.tax-product_tag ul.products li.product .woocommerce-loop-product__title a,
body.search ul.products li.product .woocommerce-loop-product__title a,
body.search-results ul.products li.product .woocommerce-loop-product__title a {
  color: inherit !important;
  text-decoration: none !important;
}

body.woocommerce-shop ul.products li.product .central-product-card__meta,
body.post-type-archive-product ul.products li.product .central-product-card__meta,
body.tax-product_cat ul.products li.product .central-product-card__meta,
body.tax-product_tag ul.products li.product .central-product-card__meta,
body.search ul.products li.product .central-product-card__meta,
body.search-results ul.products li.product .central-product-card__meta {
  grid-column: 1 / -1 !important;
  grid-row: 3 !important;
  align-self: start !important;
  display: block !important;
  margin: 4px 10px 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  color: #626262 !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: -.02em !important;
  line-height: 1.2 !important;
  text-align: left !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
}

body.woocommerce-shop ul.products li.product .price,
body.post-type-archive-product ul.products li.product .price,
body.tax-product_cat ul.products li.product .price,
body.tax-product_tag ul.products li.product .price,
body.search ul.products li.product .price,
body.search-results ul.products li.product .price {
  grid-column: 1 / -1 !important;
  grid-row: 4 !important;
  align-self: start !important;
  justify-self: start !important;
  display: inline-flex !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
  flex-wrap: nowrap !important;
  gap: 4px !important;
  width: auto !important;
  max-width: calc(100% - 20px) !important;
  margin: 0 10px 10px !important;
  padding: 0 !important;
  color: #050505 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: -.02em !important;
  line-height: 1.25 !important;
  text-align: left !important;
  white-space: nowrap !important;
}

body.woocommerce-shop ul.products li.product .price *,
body.post-type-archive-product ul.products li.product .price *,
body.tax-product_cat ul.products li.product .price *,
body.tax-product_tag ul.products li.product .price *,
body.search ul.products li.product .price *,
body.search-results ul.products li.product .price * {
  display: inline !important;
  color: #050505 !important;
  white-space: nowrap !important;
}

body.woocommerce-shop .central-wishlist-button,
body.post-type-archive-product .central-wishlist-button,
body.tax-product_cat .central-wishlist-button,
body.tax-product_tag .central-wishlist-button,
body.search .central-wishlist-button,
body.search-results .central-wishlist-button,
body.woocommerce-shop .central-product-fulfillment,
body.post-type-archive-product .central-product-fulfillment,
body.tax-product_cat .central-product-fulfillment,
body.tax-product_tag .central-product-fulfillment,
body.search .central-product-fulfillment,
body.search-results .central-product-fulfillment,
body.woocommerce-shop .central-product-stock-badge,
body.post-type-archive-product .central-product-stock-badge,
body.tax-product_cat .central-product-stock-badge,
body.tax-product_tag .central-product-stock-badge,
body.search .central-product-stock-badge,
body.search-results .central-product-stock-badge {
  display: none !important;
}

@media (max-width: 767px) {
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products,
  body.search ul.products,
  body.search-results ul.products,
  body.search .woocommerce ul.products,
  body.search-results .woocommerce ul.products {
    --central-listing-columns: 2;
  }

  body.woocommerce-shop ul.products li.product,
  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product,
  body.search ul.products li.product,
  body.search-results ul.products li.product {
    --central-listing-image-height: 260px;
    --central-listing-image-padding: 0 8px;
  }

  body.woocommerce-shop ul.products li.product:nth-child(2n),
  body.post-type-archive-product ul.products li.product:nth-child(2n),
  body.tax-product_cat ul.products li.product:nth-child(2n),
  body.tax-product_tag ul.products li.product:nth-child(2n),
  body.search ul.products li.product:nth-child(2n),
  body.search-results ul.products li.product:nth-child(2n) {
    border-right: 0 !important;
  }
}

@media (min-width: 768px) {
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products,
  body.search ul.products,
  body.search-results ul.products,
  body.search .woocommerce ul.products,
  body.search-results .woocommerce ul.products {
    --central-listing-columns: 4;
  }

  body.woocommerce-shop ul.products li.product,
  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product,
  body.search ul.products li.product,
  body.search-results ul.products li.product {
    --central-listing-image-height: clamp(360px, 29vw, 470px);
    --central-listing-image-padding: 0 18px;
    grid-template-rows: var(--central-listing-image-height) 30px 24px !important;
  }

  body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
  body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_tag ul.products li.product .woocommerce-loop-product__title,
  body.search ul.products li.product .woocommerce-loop-product__title,
  body.search-results ul.products li.product .woocommerce-loop-product__title {
    grid-column: 1 !important;
    grid-row: 2 !important;
    margin: 14px 18px 0 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
  }

  body.woocommerce-shop ul.products li.product .central-product-card__meta,
  body.post-type-archive-product ul.products li.product .central-product-card__meta,
  body.tax-product_cat ul.products li.product .central-product-card__meta,
  body.tax-product_tag ul.products li.product .central-product-card__meta,
  body.search ul.products li.product .central-product-card__meta,
  body.search-results ul.products li.product .central-product-card__meta {
    grid-column: 1 !important;
    grid-row: 3 !important;
    margin: 3px 18px 12px !important;
    font-size: 13px !important;
  }

  body.woocommerce-shop ul.products li.product .price,
  body.post-type-archive-product ul.products li.product .price,
  body.tax-product_cat ul.products li.product .price,
  body.tax-product_tag ul.products li.product .price,
  body.search ul.products li.product .price,
  body.search-results ul.products li.product .price {
    grid-column: 2 !important;
    grid-row: 2 !important;
    justify-self: end !important;
    margin: 14px 18px 0 10px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
  }

  body.woocommerce-shop ul.products li.product:nth-child(2n),
  body.post-type-archive-product ul.products li.product:nth-child(2n),
  body.tax-product_cat ul.products li.product:nth-child(2n),
  body.tax-product_tag ul.products li.product:nth-child(2n),
  body.search ul.products li.product:nth-child(2n),
  body.search-results ul.products li.product:nth-child(2n) {
    border-right: 1px solid #fff !important;
  }

  body.woocommerce-shop ul.products li.product:nth-child(4n),
  body.post-type-archive-product ul.products li.product:nth-child(4n),
  body.tax-product_cat ul.products li.product:nth-child(4n),
  body.tax-product_tag ul.products li.product:nth-child(4n),
  body.search ul.products li.product:nth-child(4n),
  body.search-results ul.products li.product:nth-child(4n) {
    border-right: 0 !important;
  }
}

/* Mobile product title fix: give two-line names enough room. */
@media (max-width: 767px) {
  body.woocommerce-shop ul.products li.product,
  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product,
  body.search ul.products li.product,
  body.search-results ul.products li.product {
    --central-listing-image-height: 214px;
    --central-listing-image-padding: 0 8px;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: var(--central-listing-image-height) 50px 24px 36px !important;
  }

  body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
  body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_tag ul.products li.product .woocommerce-loop-product__title,
  body.search ul.products li.product .woocommerce-loop-product__title,
  body.search-results ul.products li.product .woocommerce-loop-product__title {
    grid-column: 1 !important;
    grid-row: 2 !important;
    align-self: start !important;
    min-height: 34px !important;
    max-height: 38px !important;
    margin: 12px 10px 0 !important;
    font-size: 13px !important;
    line-height: 1.22 !important;
    -webkit-line-clamp: 2 !important;
  }

  body.woocommerce-shop ul.products li.product .central-product-card__meta,
  body.post-type-archive-product ul.products li.product .central-product-card__meta,
  body.tax-product_cat ul.products li.product .central-product-card__meta,
  body.tax-product_tag ul.products li.product .central-product-card__meta,
  body.search ul.products li.product .central-product-card__meta,
  body.search-results ul.products li.product .central-product-card__meta {
    grid-column: 1 !important;
    grid-row: 3 !important;
    margin: 0 10px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
  }

  body.woocommerce-shop ul.products li.product .price,
  body.post-type-archive-product ul.products li.product .price,
  body.tax-product_cat ul.products li.product .price,
  body.tax-product_tag ul.products li.product .price,
  body.search ul.products li.product .price,
  body.search-results ul.products li.product .price {
    grid-column: 1 !important;
    grid-row: 4 !important;
    justify-self: start !important;
    align-self: start !important;
    margin: 4px 10px 12px !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
  }
}

/* Desktop listing gutter fix: flush cards with hairline dividers only. */
@media (min-width: 768px) {
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products,
  body.search ul.products,
  body.search-results ul.products,
  body.search .woocommerce ul.products,
  body.search-results .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    column-gap: 0 !important;
    row-gap: 0 !important;
    gap: 0 !important;
    background: #fff !important;
  }

  body.woocommerce-shop ul.products li.product,
  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product,
  body.search ul.products li.product,
  body.search-results ul.products li.product,
  body.search .woocommerce ul.products li.product,
  body.search-results .woocommerce ul.products li.product,
  body.search .central-product-card,
  body.search-results .central-product-card {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: none !important;
    background: #fff !important;
    border-right: 1px solid #fff !important;
    border-bottom: 1px solid #fff !important;
    box-shadow: none !important;
  }

  body.woocommerce-shop ul.products li.product:nth-child(4n),
  body.post-type-archive-product ul.products li.product:nth-child(4n),
  body.tax-product_cat ul.products li.product:nth-child(4n),
  body.tax-product_tag ul.products li.product:nth-child(4n),
  body.search ul.products li.product:nth-child(4n),
  body.search-results ul.products li.product:nth-child(4n) {
    border-right: 0 !important;
  }
}

/* Match listing image panels to the homepage product card gray. */
body.woocommerce-shop .central-product-card__image,
body.post-type-archive-product .central-product-card__image,
body.tax-product_cat .central-product-card__image,
body.tax-product_tag .central-product-card__image,
body.search .central-product-card__image,
body.search-results .central-product-card__image,
body.search ul.products li.product .woocommerce-LoopProduct-link,
body.search-results ul.products li.product .woocommerce-LoopProduct-link {
  background: #fff !important;
}

body.woocommerce-shop ul.products li.product,
body.post-type-archive-product ul.products li.product,
body.tax-product_cat ul.products li.product,
body.tax-product_tag ul.products li.product,
body.search ul.products li.product,
body.search-results ul.products li.product {
  background: #fff !important;
}

/* Homepage-card parity: gray image panel only, compact white product details. */
body.woocommerce-shop .woocommerce ul.products li.product.central-product-card,
body.post-type-archive-product .woocommerce ul.products li.product.central-product-card,
body.tax-product_cat .woocommerce ul.products li.product.central-product-card,
body.tax-product_tag .woocommerce ul.products li.product.central-product-card,
body.search .woocommerce ul.products li.product.central-product-card,
body.search-results .woocommerce ul.products li.product.central-product-card,
body.woocommerce-shop ul.products li.product.central-product-card,
body.post-type-archive-product ul.products li.product.central-product-card,
body.tax-product_cat ul.products li.product.central-product-card,
body.tax-product_tag ul.products li.product.central-product-card,
body.search ul.products li.product.central-product-card,
body.search-results ul.products li.product.central-product-card {
  background: #fff !important;
  background-color: #fff !important;
}

body.woocommerce-shop .woocommerce ul.products li.product .central-product-card__image,
body.post-type-archive-product .woocommerce ul.products li.product .central-product-card__image,
body.tax-product_cat .woocommerce ul.products li.product .central-product-card__image,
body.tax-product_tag .woocommerce ul.products li.product .central-product-card__image,
body.search .woocommerce ul.products li.product .central-product-card__image,
body.search-results .woocommerce ul.products li.product .central-product-card__image,
body.woocommerce-shop ul.products li.product .central-product-card__image,
body.post-type-archive-product ul.products li.product .central-product-card__image,
body.tax-product_cat ul.products li.product .central-product-card__image,
body.tax-product_tag ul.products li.product .central-product-card__image,
body.search ul.products li.product .central-product-card__image,
body.search-results ul.products li.product .central-product-card__image {
  background: #fff !important;
  background-color: #fff !important;
}

@media (max-width: 767px) {
  body.woocommerce-shop .woocommerce ul.products li.product.central-product-card,
  body.post-type-archive-product .woocommerce ul.products li.product.central-product-card,
  body.tax-product_cat .woocommerce ul.products li.product.central-product-card,
  body.tax-product_tag .woocommerce ul.products li.product.central-product-card,
  body.search .woocommerce ul.products li.product.central-product-card,
  body.search-results .woocommerce ul.products li.product.central-product-card,
  body.woocommerce-shop ul.products li.product.central-product-card,
  body.post-type-archive-product ul.products li.product.central-product-card,
  body.tax-product_cat ul.products li.product.central-product-card,
  body.tax-product_tag ul.products li.product.central-product-card,
  body.search ul.products li.product.central-product-card,
  body.search-results ul.products li.product.central-product-card {
    --central-listing-image-height: 214px;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: var(--central-listing-image-height) auto auto auto !important;
    align-content: start !important;
    min-height: 0 !important;
    height: auto !important;
    background: #fff !important;
  }

  body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
  body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_tag ul.products li.product .woocommerce-loop-product__title,
  body.search ul.products li.product .woocommerce-loop-product__title,
  body.search-results ul.products li.product .woocommerce-loop-product__title {
    min-height: 0 !important;
    max-height: 38px !important;
    margin: 14px 10px 0 !important;
  }

  body.woocommerce-shop ul.products li.product .central-product-card__meta,
  body.post-type-archive-product ul.products li.product .central-product-card__meta,
  body.tax-product_cat ul.products li.product .central-product-card__meta,
  body.tax-product_tag ul.products li.product .central-product-card__meta,
  body.search ul.products li.product .central-product-card__meta,
  body.search-results ul.products li.product .central-product-card__meta {
    margin: 4px 10px 0 !important;
  }

  body.woocommerce-shop ul.products li.product .price,
  body.post-type-archive-product ul.products li.product .price,
  body.tax-product_cat ul.products li.product .price,
  body.tax-product_tag ul.products li.product .price,
  body.search ul.products li.product .price,
  body.search-results ul.products li.product .price {
    margin: 8px 10px 14px !important;
  }
}

/* Blend uploaded white product backgrounds into the gray panel, matching homepage cards. */
body.woocommerce-shop .central-product-card__image img,
body.post-type-archive-product .central-product-card__image img,
body.tax-product_cat .central-product-card__image img,
body.tax-product_tag .central-product-card__image img,
body.search .central-product-card__image img,
body.search-results .central-product-card__image img,
body.woocommerce-shop ul.products li.product a img,
body.post-type-archive-product ul.products li.product a img,
body.tax-product_cat ul.products li.product a img,
body.tax-product_tag ul.products li.product a img,
body.search ul.products li.product a img,
body.search-results ul.products li.product a img {
  mix-blend-mode: multiply !important;
}

/* Clean Represent-style product listing: white page, gray image panels, stacked details. */
body.woocommerce-shop,
body.post-type-archive-product,
body.tax-product_cat,
body.tax-product_tag,
body.search,
body.search-results,
body.woocommerce-shop .central-page,
body.post-type-archive-product .central-page,
body.tax-product_cat .central-page,
body.tax-product_tag .central-page,
body.search .central-page,
body.search-results .central-page,
body.woocommerce-shop .site-main,
body.post-type-archive-product .site-main,
body.tax-product_cat .site-main,
body.tax-product_tag .site-main,
body.search .site-main,
body.search-results .site-main,
body.woocommerce-shop ul.products,
body.post-type-archive-product ul.products,
body.tax-product_cat ul.products,
body.tax-product_tag ul.products,
body.search ul.products,
body.search-results ul.products,
body.search .woocommerce ul.products,
body.search-results .woocommerce ul.products {
  background: #fff !important;
  background-color: #fff !important;
}

body.woocommerce-shop ul.products,
body.post-type-archive-product ul.products,
body.tax-product_cat ul.products,
body.tax-product_tag ul.products,
body.search ul.products,
body.search-results ul.products,
body.search .woocommerce ul.products,
body.search-results .woocommerce ul.products,
body.woocommerce-shop .woocommerce ul.products,
body.post-type-archive-product .woocommerce ul.products,
body.tax-product_cat .woocommerce ul.products,
body.tax-product_tag .woocommerce ul.products,
body.woocommerce-shop .woocommerce ul.products[class*="columns-"],
body.post-type-archive-product .woocommerce ul.products[class*="columns-"],
body.tax-product_cat .woocommerce ul.products[class*="columns-"],
body.tax-product_tag .woocommerce ul.products[class*="columns-"],
body.search .woocommerce ul.products[class*="columns-"],
body.search-results .woocommerce ul.products[class*="columns-"] {
  column-gap: var(--central-listing-card-gap, 5px) !important;
  row-gap: var(--central-listing-card-gap, 5px) !important;
  gap: var(--central-listing-card-gap, 5px) !important;
}

body.woocommerce-shop ul.products li.product,
body.post-type-archive-product ul.products li.product,
body.tax-product_cat ul.products li.product,
body.tax-product_tag ul.products li.product,
body.search ul.products li.product,
body.search-results ul.products li.product,
body.search .woocommerce ul.products li.product,
body.search-results .woocommerce ul.products li.product,
body.woocommerce-shop .woocommerce ul.products li.product.central-product-card,
body.post-type-archive-product .woocommerce ul.products li.product.central-product-card,
body.tax-product_cat .woocommerce ul.products li.product.central-product-card,
body.tax-product_tag .woocommerce ul.products li.product.central-product-card,
body.search .woocommerce ul.products li.product.central-product-card,
body.search-results .woocommerce ul.products li.product.central-product-card {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-rows: var(--central-listing-image-height) auto auto auto !important;
  background: #fff !important;
  background-color: #fff !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

body.woocommerce-shop .central-product-card__image,
body.post-type-archive-product .central-product-card__image,
body.tax-product_cat .central-product-card__image,
body.tax-product_tag .central-product-card__image,
body.search .central-product-card__image,
body.search-results .central-product-card__image,
body.woocommerce-shop .woocommerce ul.products li.product .central-product-card__image,
body.post-type-archive-product .woocommerce ul.products li.product .central-product-card__image,
body.tax-product_cat .woocommerce ul.products li.product .central-product-card__image,
body.tax-product_tag .woocommerce ul.products li.product .central-product-card__image,
body.search .woocommerce ul.products li.product .central-product-card__image,
body.search-results .woocommerce ul.products li.product .central-product-card__image {
  align-items: center !important;
  height: var(--central-listing-image-height) !important;
  min-height: var(--central-listing-image-height) !important;
  padding: var(--central-listing-image-padding) !important;
  background: #fff !important;
  background-color: #fff !important;
}

body.woocommerce-shop ul.products li.product .woocommerce-LoopProduct-link,
body.post-type-archive-product ul.products li.product .woocommerce-LoopProduct-link,
body.tax-product_cat ul.products li.product .woocommerce-LoopProduct-link,
body.tax-product_tag ul.products li.product .woocommerce-LoopProduct-link,
body.search ul.products li.product .woocommerce-LoopProduct-link,
body.search-results ul.products li.product .woocommerce-LoopProduct-link {
  grid-column: 1 !important;
  grid-row: 1 !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: var(--central-listing-image-height) !important;
  min-height: var(--central-listing-image-height) !important;
  margin: 0 !important;
  padding: var(--central-listing-image-padding) !important;
  background: #fff !important;
  background-color: #fff !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
}

body.woocommerce-shop .central-product-card__image::after,
body.post-type-archive-product .central-product-card__image::after,
body.tax-product_cat .central-product-card__image::after,
body.tax-product_tag .central-product-card__image::after,
body.search .central-product-card__image::after,
body.search-results .central-product-card__image::after,
body.woocommerce-shop ul.products li.product a::after,
body.post-type-archive-product ul.products li.product a::after,
body.tax-product_cat ul.products li.product a::after,
body.tax-product_tag ul.products li.product a::after,
body.search ul.products li.product a::after,
body.search-results ul.products li.product a::after {
  content: none !important;
  display: none !important;
}

body.woocommerce-shop .central-product-card__image img,
body.post-type-archive-product .central-product-card__image img,
body.tax-product_cat .central-product-card__image img,
body.tax-product_tag .central-product-card__image img,
body.search .central-product-card__image img,
body.search-results .central-product-card__image img,
body.woocommerce-shop ul.products li.product .woocommerce-LoopProduct-link img,
body.post-type-archive-product ul.products li.product .woocommerce-LoopProduct-link img,
body.tax-product_cat ul.products li.product .woocommerce-LoopProduct-link img,
body.tax-product_tag ul.products li.product .woocommerce-LoopProduct-link img,
body.search ul.products li.product .woocommerce-LoopProduct-link img,
body.search-results ul.products li.product .woocommerce-LoopProduct-link img,
body.woocommerce-shop ul.products li.product a img,
body.post-type-archive-product ul.products li.product a img,
body.tax-product_cat ul.products li.product a img,
body.tax-product_tag ul.products li.product a img,
body.search ul.products li.product a img,
body.search-results ul.products li.product a img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  mix-blend-mode: multiply !important;
}

body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
body.tax-product_tag ul.products li.product .woocommerce-loop-product__title,
body.search ul.products li.product .woocommerce-loop-product__title,
body.search-results ul.products li.product .woocommerce-loop-product__title {
  grid-column: 1 !important;
  grid-row: 2 !important;
  align-self: start !important;
  min-height: 0 !important;
  max-height: 38px !important;
  margin: 16px 10px 0 !important;
  color: #000 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: -.03em !important;
  line-height: 1.2 !important;
}

body.woocommerce-shop ul.products li.product .central-product-card__meta,
body.post-type-archive-product ul.products li.product .central-product-card__meta,
body.tax-product_cat ul.products li.product .central-product-card__meta,
body.tax-product_tag ul.products li.product .central-product-card__meta,
body.search ul.products li.product .central-product-card__meta,
body.search-results ul.products li.product .central-product-card__meta {
  grid-column: 1 !important;
  grid-row: 3 !important;
  margin: 3px 10px 0 !important;
  color: #565656 !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: -.02em !important;
  line-height: 1.25 !important;
}

body.woocommerce-shop ul.products li.product .price,
body.post-type-archive-product ul.products li.product .price,
body.tax-product_cat ul.products li.product .price,
body.tax-product_tag ul.products li.product .price,
body.search ul.products li.product .price,
body.search-results ul.products li.product .price {
  grid-column: 1 !important;
  grid-row: 4 !important;
  justify-self: start !important;
  margin: 4px 10px 18px !important;
  color: #000 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: -.02em !important;
  line-height: 1.25 !important;
}

@media (max-width: 767px) {
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products,
  body.search ul.products,
  body.search-results ul.products,
  body.search .woocommerce ul.products,
  body.search-results .woocommerce ul.products {
    --central-listing-columns: 2;
    --central-listing-card-gap: 8px;
  }

  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products,
  body.search ul.products,
  body.search-results ul.products,
  body.woocommerce-shop .woocommerce ul.products,
  body.post-type-archive-product .woocommerce ul.products,
  body.tax-product_cat .woocommerce ul.products,
  body.tax-product_tag .woocommerce ul.products,
  body.search .woocommerce ul.products,
  body.search-results .woocommerce ul.products,
  body.woocommerce-shop .woocommerce ul.products[class*="columns-"],
  body.post-type-archive-product .woocommerce ul.products[class*="columns-"],
  body.tax-product_cat .woocommerce ul.products[class*="columns-"],
  body.tax-product_tag .woocommerce ul.products[class*="columns-"],
  body.search .woocommerce ul.products[class*="columns-"],
  body.search-results .woocommerce ul.products[class*="columns-"] {
    column-gap: 8px !important;
    row-gap: 8px !important;
    gap: 8px !important;
  }

  body.woocommerce-shop ul.products li.product,
  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product,
  body.search ul.products li.product,
  body.search-results ul.products li.product {
    --central-listing-image-height: clamp(218px, 62vw, 246px);
    --central-listing-image-padding: 26px 20px;
    padding: 0 !important;
  }

  body.woocommerce-shop ul.products li.product .price,
  body.post-type-archive-product ul.products li.product .price,
  body.tax-product_cat ul.products li.product .price,
  body.tax-product_tag ul.products li.product .price,
  body.search ul.products li.product .price,
  body.search-results ul.products li.product .price {
    margin-bottom: 16px !important;
  }
}

@media (min-width: 768px) {
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products,
  body.search ul.products,
  body.search-results ul.products,
  body.search .woocommerce ul.products,
  body.search-results .woocommerce ul.products {
    --central-listing-columns: 4;
    --central-listing-card-gap: 5px;
  }

  body.woocommerce-shop ul.products li.product,
  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product,
  body.search ul.products li.product,
  body.search-results ul.products li.product {
    --central-listing-image-height: clamp(300px, 27vw, 470px);
    --central-listing-image-padding: 38px 32px;
  }

  body.woocommerce-shop ul.products li.product:nth-child(4n),
  body.post-type-archive-product ul.products li.product:nth-child(4n),
  body.tax-product_cat ul.products li.product:nth-child(4n),
  body.tax-product_tag ul.products li.product:nth-child(4n),
  body.search ul.products li.product:nth-child(4n),
  body.search-results ul.products li.product:nth-child(4n) {
    border-right: 0 !important;
  }

  body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
  body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_tag ul.products li.product .woocommerce-loop-product__title,
  body.search ul.products li.product .woocommerce-loop-product__title,
  body.search-results ul.products li.product .woocommerce-loop-product__title,
  body.woocommerce-shop ul.products li.product .central-product-card__meta,
  body.post-type-archive-product ul.products li.product .central-product-card__meta,
  body.tax-product_cat ul.products li.product .central-product-card__meta,
  body.tax-product_tag ul.products li.product .central-product-card__meta,
  body.search ul.products li.product .central-product-card__meta,
  body.search-results ul.products li.product .central-product-card__meta,
  body.woocommerce-shop ul.products li.product .price,
  body.post-type-archive-product ul.products li.product .price,
  body.tax-product_cat ul.products li.product .price,
  body.tax-product_tag ul.products li.product .price,
  body.search ul.products li.product .price,
  body.search-results ul.products li.product .price {
    margin-left: 18px !important;
    margin-right: 18px !important;
  }
}

/* Hard visual gutter between product cards. */
body.woocommerce-shop ul.products,
body.post-type-archive-product ul.products,
body.tax-product_cat ul.products,
body.tax-product_tag ul.products,
body.search ul.products,
body.search-results ul.products,
body.woocommerce-shop .woocommerce ul.products,
body.post-type-archive-product .woocommerce ul.products,
body.tax-product_cat .woocommerce ul.products,
body.tax-product_tag .woocommerce ul.products,
body.search .woocommerce ul.products,
body.search-results .woocommerce ul.products,
body.woocommerce-shop .woocommerce ul.products[class*="columns-"],
body.post-type-archive-product .woocommerce ul.products[class*="columns-"],
body.tax-product_cat .woocommerce ul.products[class*="columns-"],
body.tax-product_tag .woocommerce ul.products[class*="columns-"],
body.search .woocommerce ul.products[class*="columns-"],
body.search-results .woocommerce ul.products[class*="columns-"] {
  gap: 0 !important;
  column-gap: 0 !important;
  row-gap: 0 !important;
  background: #fff !important;
}

body.woocommerce-shop ul.products li.product,
body.post-type-archive-product ul.products li.product,
body.tax-product_cat ul.products li.product,
body.tax-product_tag ul.products li.product,
body.search ul.products li.product,
body.search-results ul.products li.product,
body.woocommerce-shop .woocommerce ul.products li.product,
body.post-type-archive-product .woocommerce ul.products li.product,
body.tax-product_cat .woocommerce ul.products li.product,
body.tax-product_tag .woocommerce ul.products li.product,
body.search .woocommerce ul.products li.product,
body.search-results .woocommerce ul.products li.product {
  padding: 0 3px 6px !important;
  background: #fff !important;
}

body.woocommerce-shop .central-product-card__image,
body.post-type-archive-product .central-product-card__image,
body.tax-product_cat .central-product-card__image,
body.tax-product_tag .central-product-card__image,
body.search .central-product-card__image,
body.search-results .central-product-card__image,
body.woocommerce-shop ul.products li.product .woocommerce-LoopProduct-link,
body.post-type-archive-product ul.products li.product .woocommerce-LoopProduct-link,
body.tax-product_cat ul.products li.product .woocommerce-LoopProduct-link,
body.tax-product_tag ul.products li.product .woocommerce-LoopProduct-link,
body.search ul.products li.product .woocommerce-LoopProduct-link,
body.search-results ul.products li.product .woocommerce-LoopProduct-link {
  width: 100% !important;
}

@media (max-width: 767px) {
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products,
  body.search ul.products,
  body.search-results ul.products,
  body.woocommerce-shop .woocommerce ul.products,
  body.post-type-archive-product .woocommerce ul.products,
  body.tax-product_cat .woocommerce ul.products,
  body.tax-product_tag .woocommerce ul.products,
  body.search .woocommerce ul.products,
  body.search-results .woocommerce ul.products,
  body.woocommerce-shop .woocommerce ul.products[class*="columns-"],
  body.post-type-archive-product .woocommerce ul.products[class*="columns-"],
  body.tax-product_cat .woocommerce ul.products[class*="columns-"],
  body.tax-product_tag .woocommerce ul.products[class*="columns-"],
  body.search .woocommerce ul.products[class*="columns-"],
  body.search-results .woocommerce ul.products[class*="columns-"] {
    column-gap: 8px !important;
    row-gap: 8px !important;
    gap: 8px !important;
  }

  body.woocommerce-shop ul.products li.product,
  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product,
  body.search ul.products li.product,
  body.search-results ul.products li.product,
  body.woocommerce-shop .woocommerce ul.products li.product,
  body.post-type-archive-product .woocommerce ul.products li.product,
  body.tax-product_cat .woocommerce ul.products li.product,
  body.tax-product_tag .woocommerce ul.products li.product,
  body.search .woocommerce ul.products li.product,
  body.search-results .woocommerce ul.products li.product {
    padding: 0 !important;
  }
}

/* Final clean product grid: no gray panels, larger images, aligned prices. */
body.woocommerce-shop .central-product-card__image,
body.post-type-archive-product .central-product-card__image,
body.tax-product_cat .central-product-card__image,
body.tax-product_tag .central-product-card__image,
body.search .central-product-card__image,
body.search-results .central-product-card__image,
body.woocommerce-shop ul.products li.product .woocommerce-LoopProduct-link,
body.post-type-archive-product ul.products li.product .woocommerce-LoopProduct-link,
body.tax-product_cat ul.products li.product .woocommerce-LoopProduct-link,
body.tax-product_tag ul.products li.product .woocommerce-LoopProduct-link,
body.search ul.products li.product .woocommerce-LoopProduct-link,
body.search-results ul.products li.product .woocommerce-LoopProduct-link {
  background: #fff !important;
  background-color: #fff !important;
  padding: var(--central-listing-image-padding-clean, 8px) !important;
}

body.woocommerce-shop .central-product-card__image img,
body.post-type-archive-product .central-product-card__image img,
body.tax-product_cat .central-product-card__image img,
body.tax-product_tag .central-product-card__image img,
body.search .central-product-card__image img,
body.search-results .central-product-card__image img,
body.woocommerce-shop ul.products li.product .woocommerce-LoopProduct-link img,
body.post-type-archive-product ul.products li.product .woocommerce-LoopProduct-link img,
body.tax-product_cat ul.products li.product .woocommerce-LoopProduct-link img,
body.tax-product_tag ul.products li.product .woocommerce-LoopProduct-link img,
body.search ul.products li.product .woocommerce-LoopProduct-link img,
body.search-results ul.products li.product .woocommerce-LoopProduct-link img,
body.woocommerce-shop ul.products li.product a img,
body.post-type-archive-product ul.products li.product a img,
body.tax-product_cat ul.products li.product a img,
body.tax-product_tag ul.products li.product a img,
body.search ul.products li.product a img,
body.search-results ul.products li.product a img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  mix-blend-mode: normal !important;
}

@media (max-width: 767px) {
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag ul.products,
  body.search ul.products,
  body.search-results ul.products,
  body.woocommerce-shop .woocommerce ul.products,
  body.post-type-archive-product .woocommerce ul.products,
  body.tax-product_cat .woocommerce ul.products,
  body.tax-product_tag .woocommerce ul.products,
  body.search .woocommerce ul.products,
  body.search-results .woocommerce ul.products,
  body.woocommerce-shop .woocommerce ul.products[class*="columns-"],
  body.post-type-archive-product .woocommerce ul.products[class*="columns-"],
  body.tax-product_cat .woocommerce ul.products[class*="columns-"],
  body.tax-product_tag .woocommerce ul.products[class*="columns-"],
  body.search .woocommerce ul.products[class*="columns-"],
  body.search-results .woocommerce ul.products[class*="columns-"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
    column-gap: 0 !important;
    row-gap: 0 !important;
  }

  body.woocommerce-shop ul.products li.product,
  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product,
  body.search ul.products li.product,
  body.search-results ul.products li.product,
  body.woocommerce-shop .woocommerce ul.products li.product,
  body.post-type-archive-product .woocommerce ul.products li.product,
  body.tax-product_cat .woocommerce ul.products li.product,
  body.tax-product_tag .woocommerce ul.products li.product,
  body.search .woocommerce ul.products li.product,
  body.search-results .woocommerce ul.products li.product {
    --central-listing-image-height: 190px;
    --central-listing-image-padding-clean: 6px 10px 4px;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: 190px 46px 22px !important;
    min-height: 258px !important;
    padding: 0 !important;
    background: #fff !important;
    overflow: hidden !important;
  }

  body.woocommerce-shop .central-product-card__image,
  body.post-type-archive-product .central-product-card__image,
  body.tax-product_cat .central-product-card__image,
  body.tax-product_tag .central-product-card__image,
  body.search .central-product-card__image,
  body.search-results .central-product-card__image,
  body.woocommerce-shop ul.products li.product .woocommerce-LoopProduct-link,
  body.post-type-archive-product ul.products li.product .woocommerce-LoopProduct-link,
  body.tax-product_cat ul.products li.product .woocommerce-LoopProduct-link,
  body.tax-product_tag ul.products li.product .woocommerce-LoopProduct-link,
  body.search ul.products li.product .woocommerce-LoopProduct-link,
  body.search-results ul.products li.product .woocommerce-LoopProduct-link {
    grid-column: 1 !important;
    grid-row: 1 !important;
    height: 190px !important;
    min-height: 190px !important;
    margin: 0 !important;
  }

  body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
  body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
  body.tax-product_tag ul.products li.product .woocommerce-loop-product__title,
  body.search ul.products li.product .woocommerce-loop-product__title,
  body.search-results ul.products li.product .woocommerce-loop-product__title {
    grid-column: 1 !important;
    grid-row: 2 !important;
    align-self: start !important;
    min-height: 34px !important;
    max-height: 36px !important;
    margin: 10px 10px 0 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    -webkit-line-clamp: 2 !important;
  }

  body.woocommerce-shop ul.products li.product .central-product-card__meta,
  body.post-type-archive-product ul.products li.product .central-product-card__meta,
  body.tax-product_cat ul.products li.product .central-product-card__meta,
  body.tax-product_tag ul.products li.product .central-product-card__meta,
  body.search ul.products li.product .central-product-card__meta,
  body.search-results ul.products li.product .central-product-card__meta {
    display: none !important;
  }

  body.woocommerce-shop ul.products li.product .price,
  body.post-type-archive-product ul.products li.product .price,
  body.tax-product_cat ul.products li.product .price,
  body.tax-product_tag ul.products li.product .price,
  body.search ul.products li.product .price,
  body.search-results ul.products li.product .price {
    grid-column: 1 !important;
    grid-row: 3 !important;
    align-self: start !important;
    justify-self: start !important;
    margin: 0 10px !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
  }
}

@media (min-width: 768px) {
  body.woocommerce-shop ul.products li.product,
  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product,
  body.search ul.products li.product,
  body.search-results ul.products li.product {
    --central-listing-image-height: clamp(330px, 30vw, 500px);
    --central-listing-image-padding-clean: 14px 22px 10px;
    grid-template-rows: var(--central-listing-image-height) 44px 24px !important;
  }

  body.woocommerce-shop ul.products li.product .price,
  body.post-type-archive-product ul.products li.product .price,
  body.tax-product_cat ul.products li.product .price,
  body.tax-product_tag ul.products li.product .price,
  body.search ul.products li.product .price,
  body.search-results ul.products li.product .price {
    grid-column: 1 !important;
    grid-row: 3 !important;
    justify-self: start !important;
    margin-top: 0 !important;
  }
}

/* Absolute white listing surface. */
body.woocommerce-shop,
body.post-type-archive-product,
body.tax-product_cat,
body.tax-product_tag,
body.search,
body.search-results,
body.woocommerce-shop .site,
body.post-type-archive-product .site,
body.tax-product_cat .site,
body.tax-product_tag .site,
body.search .site,
body.search-results .site,
body.woocommerce-shop .site-main,
body.post-type-archive-product .site-main,
body.tax-product_cat .site-main,
body.tax-product_tag .site-main,
body.search .site-main,
body.search-results .site-main,
body.woocommerce-shop .central-page,
body.post-type-archive-product .central-page,
body.tax-product_cat .central-page,
body.tax-product_tag .central-page,
body.search .central-page,
body.search-results .central-page,
body.woocommerce-shop .woocommerce,
body.post-type-archive-product .woocommerce,
body.tax-product_cat .woocommerce,
body.tax-product_tag .woocommerce,
body.search .woocommerce,
body.search-results .woocommerce,
body.woocommerce-shop ul.products,
body.post-type-archive-product ul.products,
body.tax-product_cat ul.products,
body.tax-product_tag ul.products,
body.search ul.products,
body.search-results ul.products,
body.woocommerce-shop .woocommerce ul.products,
body.post-type-archive-product .woocommerce ul.products,
body.tax-product_cat .woocommerce ul.products,
body.tax-product_tag .woocommerce ul.products,
body.search .woocommerce ul.products,
body.search-results .woocommerce ul.products,
body.woocommerce-shop .woocommerce ul.products[class*="columns-"],
body.post-type-archive-product .woocommerce ul.products[class*="columns-"],
body.tax-product_cat .woocommerce ul.products[class*="columns-"],
body.tax-product_tag .woocommerce ul.products[class*="columns-"],
body.search .woocommerce ul.products[class*="columns-"],
body.search-results .woocommerce ul.products[class*="columns-"],
body.woocommerce-shop ul.products li.product,
body.post-type-archive-product ul.products li.product,
body.tax-product_cat ul.products li.product,
body.tax-product_tag ul.products li.product,
body.search ul.products li.product,
body.search-results ul.products li.product,
body.woocommerce-shop .woocommerce ul.products li.product,
body.post-type-archive-product .woocommerce ul.products li.product,
body.tax-product_cat .woocommerce ul.products li.product,
body.tax-product_tag .woocommerce ul.products li.product,
body.search .woocommerce ul.products li.product,
body.search-results .woocommerce ul.products li.product,
body.woocommerce-shop .central-product-card__image,
body.post-type-archive-product .central-product-card__image,
body.tax-product_cat .central-product-card__image,
body.tax-product_tag .central-product-card__image,
body.search .central-product-card__image,
body.search-results .central-product-card__image,
body.woocommerce-shop ul.products li.product .woocommerce-LoopProduct-link,
body.post-type-archive-product ul.products li.product .woocommerce-LoopProduct-link,
body.tax-product_cat ul.products li.product .woocommerce-LoopProduct-link,
body.tax-product_tag ul.products li.product .woocommerce-LoopProduct-link,
body.search ul.products li.product .woocommerce-LoopProduct-link,
body.search-results ul.products li.product .woocommerce-LoopProduct-link {
  background: #fff !important;
  background-color: #fff !important;
}

/* Remove desktop homepage header glow/blur. */
@media (min-width: 960px) {
  .home .central-header--home-overlay,
  .blog .central-header--home-overlay,
  .home .central-header--home-overlay:not(.is-scrolled),
  .blog .central-header--home-overlay:not(.is-scrolled) {
    background: rgba(0, 0, 0, .18) !important;
    box-shadow: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .home .central-header--home-overlay::before,
  .home .central-header--home-overlay::after,
  .blog .central-header--home-overlay::before,
  .blog .central-header--home-overlay::after,
  .home .central-header--home-overlay:not(.is-scrolled)::before,
  .home .central-header--home-overlay:not(.is-scrolled)::after,
  .blog .central-header--home-overlay:not(.is-scrolled)::before,
  .blog .central-header--home-overlay:not(.is-scrolled)::after {
    content: none !important;
    display: none !important;
    opacity: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* Final archive surface cleanup: keep spacing, make every content gap pure white. */
body.woocommerce-shop #content,
body.post-type-archive-product #content,
body.tax-product_cat #content,
body.tax-product_tag #content,
body.search #content,
body.search-results #content,
body.woocommerce-shop .site-content,
body.post-type-archive-product .site-content,
body.tax-product_cat .site-content,
body.tax-product_tag .site-content,
body.search .site-content,
body.search-results .site-content,
body.woocommerce-shop .central-page,
body.post-type-archive-product .central-page,
body.tax-product_cat .central-page,
body.tax-product_tag .central-page,
body.search .central-page,
body.search-results .central-page,
body.woocommerce-shop .central-page *,
body.post-type-archive-product .central-page *,
body.tax-product_cat .central-page *,
body.tax-product_tag .central-page *,
body.search .central-page *,
body.search-results .central-page *,
body.woocommerce-shop .woocommerce,
body.post-type-archive-product .woocommerce,
body.tax-product_cat .woocommerce,
body.tax-product_tag .woocommerce,
body.search .woocommerce,
body.search-results .woocommerce,
body.woocommerce-shop .woocommerce *,
body.post-type-archive-product .woocommerce *,
body.tax-product_cat .woocommerce *,
body.tax-product_tag .woocommerce *,
body.search .woocommerce *,
body.search-results .woocommerce *,
body.woocommerce-shop .central-product-search-page,
body.post-type-archive-product .central-product-search-page,
body.tax-product_cat .central-product-search-page,
body.tax-product_tag .central-product-search-page,
body.search .central-product-search-page,
body.search-results .central-product-search-page,
body.woocommerce-shop .woocommerce-products-header,
body.post-type-archive-product .woocommerce-products-header,
body.tax-product_cat .woocommerce-products-header,
body.tax-product_tag .woocommerce-products-header,
body.search .woocommerce-products-header,
body.search-results .woocommerce-products-header,
body.woocommerce-shop ul.products,
body.post-type-archive-product ul.products,
body.tax-product_cat ul.products,
body.tax-product_tag ul.products,
body.search ul.products,
body.search-results ul.products,
body.woocommerce-shop ul.products li.product,
body.post-type-archive-product ul.products li.product,
body.tax-product_cat ul.products li.product,
body.tax-product_tag ul.products li.product,
body.search ul.products li.product,
body.search-results ul.products li.product,
body.woocommerce-shop ul.products li.product a,
body.post-type-archive-product ul.products li.product a,
body.tax-product_cat ul.products li.product a,
body.tax-product_tag ul.products li.product a,
body.search ul.products li.product a,
body.search-results ul.products li.product a,
body.woocommerce-shop .central-product-card,
body.post-type-archive-product .central-product-card,
body.tax-product_cat .central-product-card,
body.tax-product_tag .central-product-card,
body.search .central-product-card,
body.search-results .central-product-card,
body.woocommerce-shop .central-product-card__image,
body.post-type-archive-product .central-product-card__image,
body.tax-product_cat .central-product-card__image,
body.tax-product_tag .central-product-card__image,
body.search .central-product-card__image,
body.search-results .central-product-card__image {
  background: #fff !important;
  background-color: #fff !important;
  background-image: none !important;
}

body.woocommerce-shop #content::before,
body.woocommerce-shop #content::after,
body.post-type-archive-product #content::before,
body.post-type-archive-product #content::after,
body.tax-product_cat #content::before,
body.tax-product_cat #content::after,
body.tax-product_tag #content::before,
body.tax-product_tag #content::after,
body.search #content::before,
body.search #content::after,
body.search-results #content::before,
body.search-results #content::after,
body.woocommerce-shop .central-page::before,
body.woocommerce-shop .central-page::after,
body.post-type-archive-product .central-page::before,
body.post-type-archive-product .central-page::after,
body.tax-product_cat .central-page::before,
body.tax-product_cat .central-page::after,
body.tax-product_tag .central-page::before,
body.tax-product_tag .central-page::after,
body.search .central-page::before,
body.search .central-page::after,
body.search-results .central-page::before,
body.search-results .central-page::after,
body.woocommerce-shop ul.products::before,
body.woocommerce-shop ul.products::after,
body.post-type-archive-product ul.products::before,
body.post-type-archive-product ul.products::after,
body.tax-product_cat ul.products::before,
body.tax-product_cat ul.products::after,
body.tax-product_tag ul.products::before,
body.tax-product_tag ul.products::after,
body.search ul.products::before,
body.search ul.products::after,
body.search-results ul.products::before,
body.search-results ul.products::after {
  background: #fff !important;
  background-color: #fff !important;
  background-image: none !important;
}

/* Desktop header stack: announcement bar and header must touch directly. */
@media (min-width: 768px) {
  .central-announcement,
  .home .central-announcement,
  .blog .central-announcement {
    margin: 0 !important;
    margin-bottom: 0 !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    transform: none !important;
    box-shadow: none !important;
  }

  .central-announcement + .central-header,
  .central-announcement + .central-header--home-overlay,
  .home .central-announcement + .central-header,
  .home .central-announcement + .central-header--home-overlay,
  .blog .central-announcement + .central-header,
  .blog .central-announcement + .central-header--home-overlay {
    margin-top: 0 !important;
    border-top: 0 !important;
    top: 0 !important;
    transform: none !important;
  }

  .central-announcement + .central-header::before,
  .central-announcement + .central-header::after,
  .central-announcement + .central-header--home-overlay::before,
  .central-announcement + .central-header--home-overlay::after {
    top: 0 !important;
  }

  .admin-bar .central-announcement + .central-header,
  .admin-bar .central-announcement + .central-header--home-overlay,
  .central-sticky-header-enabled .central-announcement + .central-header,
  .admin-bar.central-sticky-header-enabled .central-announcement + .central-header {
    margin-top: 0 !important;
    top: 0 !important;
  }
}

/* Mobile header breathing room under the logo/icons. */
@media (max-width: 767px) {
  .central-header,
  .central-header.is-scrolled,
  .central-header--home-overlay,
  .central-header--home-overlay.is-scrolled,
  .home .central-header,
  .home .central-header--home-overlay,
  .home .central-header--home-overlay.is-scrolled,
  .blog .central-header,
  .blog .central-header--home-overlay,
  .blog .central-header--home-overlay.is-scrolled {
    --central-mobile-header-height: 70px;
    height: var(--central-mobile-header-height) !important;
    min-height: var(--central-mobile-header-height) !important;
  }

  .central-header .central-header__inner,
  .central-header--home-overlay .central-header__inner,
  .home .central-header .central-header__inner,
  .home .central-header--home-overlay .central-header__inner,
  .blog .central-header .central-header__inner,
  .blog .central-header--home-overlay .central-header__inner {
    min-height: var(--central-mobile-header-height) !important;
    height: var(--central-mobile-header-height) !important;
    padding-top: 0 !important;
    padding-bottom: 6px !important;
    align-items: center !important;
  }

  .home .central-header--home-overlay,
  .blog .central-header--home-overlay {
    margin-bottom: calc(var(--central-mobile-header-height) * -1) !important;
  }
}

/* Announcement close state must remove the row completely, including mobile overrides. */
.central-announcement.is-closing,
.home .central-announcement.is-closing,
.blog .central-announcement.is-closing {
  max-height: 0 !important;
  min-height: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.central-announcement[hidden],
.home .central-announcement[hidden],
.blog .central-announcement[hidden] {
  display: none !important;
  max-height: 0 !important;
  min-height: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* Match every WooCommerce product card text stack to the homepage card. */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
ul.products li.product.central-product-card,
.central-product-card:not(.central-represent-product) {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  grid-template-rows: var(--central-listing-image-height, var(--central-archive-image-height, var(--central-search-image-height, 258px))) 56px 30px !important;
  grid-auto-flow: row !important;
  align-content: start !important;
  background: #fff !important;
  text-align: left !important;
}

.woocommerce ul.products li.product .central-product-card__image,
.woocommerce-page ul.products li.product .central-product-card__image,
ul.products li.product.central-product-card .central-product-card__image,
.central-product-card:not(.central-represent-product) .central-product-card__image,
.woocommerce ul.products li.product .woocommerce-LoopProduct-link,
.woocommerce-page ul.products li.product .woocommerce-LoopProduct-link {
  grid-row: 1 !important;
  grid-column: 1 / -1 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
ul.products li.product.central-product-card .woocommerce-loop-product__title,
.central-product-card:not(.central-represent-product) .central-product-card__title {
  grid-row: 2 !important;
  grid-column: 1 / -1 !important;
  align-self: start !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  min-height: 32px !important;
  max-height: 36px !important;
  margin: 16px 10px 4px !important;
  padding: 0 !important;
  overflow: hidden !important;
  color: #111 !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  line-height: 1.28 !important;
  letter-spacing: -.02em !important;
  text-align: left !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title a,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title a,
ul.products li.product.central-product-card .woocommerce-loop-product__title a,
.central-product-card:not(.central-represent-product) .central-product-card__title a {
  color: inherit !important;
  text-decoration: none !important;
}

.woocommerce ul.products li.product .central-product-card__stock,
.woocommerce-page ul.products li.product .central-product-card__stock,
ul.products li.product.central-product-card .central-product-card__stock,
.central-product-card:not(.central-represent-product) .central-product-card__stock {
  grid-row: 3 !important;
  grid-column: 2 !important;
  align-self: start !important;
  display: block !important;
  min-height: 16px !important;
  margin: 0 10px 0 6px !important;
  padding: 0 !important;
  overflow: hidden !important;
  color: #777 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  text-align: right !important;
  white-space: nowrap !important;
}

.woocommerce ul.products li.product .central-product-card__meta,
.woocommerce-page ul.products li.product .central-product-card__meta,
ul.products li.product.central-product-card .central-product-card__meta,
.central-product-card:not(.central-represent-product) .central-product-card__meta,
.woocommerce ul.products li.product .central-product-fulfillment,
.woocommerce-page ul.products li.product .central-product-fulfillment,
.woocommerce ul.products li.product .central-product-stock-badge,
.woocommerce-page ul.products li.product .central-product-stock-badge {
  display: none !important;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price,
ul.products li.product.central-product-card .price,
.central-product-card:not(.central-represent-product) .central-product-card__price {
  grid-row: 3 !important;
  grid-column: 1 !important;
  align-self: start !important;
  justify-self: start !important;
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  min-height: 18px !important;
  margin: 0 0 0 10px !important;
  padding: 0 !important;
  overflow: hidden !important;
  color: #111 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  white-space: nowrap !important;
}

.woocommerce ul.products li.product .price *,
.woocommerce-page ul.products li.product .price *,
ul.products li.product.central-product-card .price *,
.central-product-card:not(.central-represent-product) .central-product-card__price * {
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  white-space: nowrap !important;
}

.woocommerce ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del,
ul.products li.product.central-product-card .price del,
.central-product-card:not(.central-represent-product) .central-product-card__price del {
  color: #777 !important;
}

.woocommerce ul.products li.product .price ins,
.woocommerce-page ul.products li.product .price ins,
ul.products li.product.central-product-card .price ins,
.central-product-card:not(.central-represent-product) .central-product-card__price ins {
  color: #111 !important;
  text-decoration: none !important;
}

/* Strong final fix: prevent archive/search cards from using old two-column text placement. */
body.woocommerce-shop ul.products li.product.central-product-card,
body.post-type-archive-product ul.products li.product.central-product-card,
body.tax-product_cat ul.products li.product.central-product-card,
body.tax-product_tag ul.products li.product.central-product-card,
body.search ul.products li.product.central-product-card,
body.search-results ul.products li.product.central-product-card,
.woocommerce ul.products li.product.central-product-card {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  grid-template-rows: var(--central-listing-image-height, var(--central-archive-image-height, var(--central-search-image-height, 258px))) 56px 30px !important;
  grid-auto-columns: 0 !important;
  grid-auto-flow: row !important;
}

body.woocommerce-shop ul.products li.product.central-product-card > .central-product-card__image,
body.post-type-archive-product ul.products li.product.central-product-card > .central-product-card__image,
body.tax-product_cat ul.products li.product.central-product-card > .central-product-card__image,
body.tax-product_tag ul.products li.product.central-product-card > .central-product-card__image,
body.search ul.products li.product.central-product-card > .central-product-card__image,
body.search-results ul.products li.product.central-product-card > .central-product-card__image,
.woocommerce ul.products li.product.central-product-card > .central-product-card__image {
  grid-column: 1 / -1 !important;
  grid-row: 1 !important;
}

body.woocommerce-shop ul.products li.product.central-product-card > .woocommerce-loop-product__title,
body.post-type-archive-product ul.products li.product.central-product-card > .woocommerce-loop-product__title,
body.tax-product_cat ul.products li.product.central-product-card > .woocommerce-loop-product__title,
body.tax-product_tag ul.products li.product.central-product-card > .woocommerce-loop-product__title,
body.search ul.products li.product.central-product-card > .woocommerce-loop-product__title,
body.search-results ul.products li.product.central-product-card > .woocommerce-loop-product__title,
.woocommerce ul.products li.product.central-product-card > .woocommerce-loop-product__title {
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
}

body.woocommerce-shop ul.products li.product.central-product-card > .central-product-card__stock,
body.post-type-archive-product ul.products li.product.central-product-card > .central-product-card__stock,
body.tax-product_cat ul.products li.product.central-product-card > .central-product-card__stock,
body.tax-product_tag ul.products li.product.central-product-card > .central-product-card__stock,
body.search ul.products li.product.central-product-card > .central-product-card__stock,
body.search-results ul.products li.product.central-product-card > .central-product-card__stock,
.woocommerce ul.products li.product.central-product-card > .central-product-card__stock {
  grid-column: 2 !important;
  grid-row: 3 !important;
  width: auto !important;
  max-width: calc(100% - 20px) !important;
  height: 16px !important;
  min-height: 16px !important;
  max-height: 16px !important;
}

body.woocommerce-shop ul.products li.product.central-product-card > .price,
body.post-type-archive-product ul.products li.product.central-product-card > .price,
body.tax-product_cat ul.products li.product.central-product-card > .price,
body.tax-product_tag ul.products li.product.central-product-card > .price,
body.search ul.products li.product.central-product-card > .price,
body.search-results ul.products li.product.central-product-card > .price,
.woocommerce ul.products li.product.central-product-card > .price {
  grid-column: 1 !important;
  grid-row: 3 !important;
  width: auto !important;
  max-width: 100% !important;
  margin-top: 0 !important;
  clear: both !important;
}

/* Product card final text layout: compact price + stock on one line. */
.price-stock-row,
.central-represent-product__price-stock,
.central-product-card__price-stock,
.woocommerce ul.products li.product.central-product-card > .central-product-card__price-stock,
.woocommerce-page ul.products li.product.central-product-card > .central-product-card__price-stock,
ul.products li.product.central-product-card > .central-product-card__price-stock,
.central-product-card:not(.central-represent-product) > .central-product-card__price-stock {
  grid-column: 1 / -1 !important;
  grid-row: 3 !important;
  justify-self: start !important;
  align-self: start !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 18px !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 10px !important;
  padding: 0 !important;
  overflow: visible !important;
  text-align: left !important;
}

.price-stock-row .price,
.price-stock-row .central-product-card__price,
.price-stock-row .central-represent-product__price,
.central-product-card__price-stock > .price,
.central-product-card__price-stock > .central-product-card__price,
.central-represent-product__price-stock > .central-represent-product__price {
  position: static !important;
  grid-column: auto !important;
  grid-row: auto !important;
  justify-self: auto !important;
  display: inline-flex !important;
  width: auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  clear: none !important;
  color: #111 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  white-space: nowrap !important;
}

.price-stock-row .stock-status,
.price-stock-row .central-product-card__stock,
.price-stock-row .central-represent-product__stock,
.central-product-card__price-stock > .central-product-card__stock,
.central-represent-product__price-stock > .central-represent-product__stock {
  position: static !important;
  grid-column: auto !important;
  grid-row: auto !important;
  justify-self: auto !important;
  display: inline-flex !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  color: #777 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  text-align: left !important;
  white-space: nowrap !important;
}

.price-stock-row .stock-status[aria-hidden="true"],
.price-stock-row .central-product-card__stock[aria-hidden="true"],
.price-stock-row .central-represent-product__stock[aria-hidden="true"] {
  display: none !important;
}

/* Product card price/stock layout: keep stock on the same line as price everywhere. */
.woocommerce ul.products li.product.central-product-card .price-stock-row,
.woocommerce-page ul.products li.product.central-product-card .price-stock-row,
ul.products li.product.central-product-card .price-stock-row,
.central-product-card:not(.central-represent-product) .price-stock-row,
.central-represent-product .price-stock-row {
  grid-column: 1 !important;
  grid-row: 3 !important;
  display: flex !important;
  flex-flow: row nowrap !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  width: auto !important;
  max-width: calc(100% - 20px) !important;
  min-width: 0 !important;
  margin: 0 10px !important;
  padding: 0 !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

.woocommerce ul.products li.product.central-product-card .price-stock-row > .price,
.woocommerce-page ul.products li.product.central-product-card .price-stock-row > .price,
ul.products li.product.central-product-card .price-stock-row > .price,
.central-product-card:not(.central-represent-product) .price-stock-row > .central-product-card__price,
.central-represent-product .price-stock-row > .central-represent-product__price {
  position: static !important;
  grid-column: auto !important;
  grid-row: auto !important;
  display: inline-flex !important;
  flex: 0 1 auto !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  clear: none !important;
  line-height: 1.35 !important;
  text-align: left !important;
  white-space: nowrap !important;
}

.woocommerce ul.products li.product.central-product-card .price-stock-row > .stock-status,
.woocommerce-page ul.products li.product.central-product-card .price-stock-row > .stock-status,
ul.products li.product.central-product-card .price-stock-row > .stock-status,
.central-product-card:not(.central-represent-product) .price-stock-row > .central-product-card__stock,
.central-represent-product .price-stock-row > .central-represent-product__stock {
  position: static !important;
  grid-column: auto !important;
  grid-row: auto !important;
  display: inline-flex !important;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  line-height: 1.25 !important;
  text-align: left !important;
  white-space: nowrap !important;
}

.woocommerce ul.products li.product.central-product-card .price-stock-row > .stock-status[aria-hidden="true"],
.woocommerce-page ul.products li.product.central-product-card .price-stock-row > .stock-status[aria-hidden="true"],
ul.products li.product.central-product-card .price-stock-row > .stock-status[aria-hidden="true"],
.central-product-card:not(.central-represent-product) .price-stock-row > .central-product-card__stock[aria-hidden="true"],
.central-represent-product .price-stock-row > .central-represent-product__stock[aria-hidden="true"] {
  display: none !important;
}

/* Premium homepage header states: transparent over hero, solid white after hero. */
.home .central-header--home-overlay,
.blog .central-header--home-overlay,
.home .central-header--home-overlay:not(.is-scrolled),
.blog .central-header--home-overlay:not(.is-scrolled) {
  background: transparent !important;
  color: #fff !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  text-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition:
    background .28s ease,
    background-color .28s ease,
    border-color .28s ease,
    color .22s ease;
}

.home .central-header--home-overlay.is-scrolled,
.blog .central-header--home-overlay.is-scrolled {
  background: #fff !important;
  color: #111 !important;
  border-bottom: 1px solid rgba(0, 0, 0, .08) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.home .central-header--home-overlay::before,
.home .central-header--home-overlay::after,
.blog .central-header--home-overlay::before,
.blog .central-header--home-overlay::after {
  content: none !important;
  display: none !important;
}

.home .central-header--home-overlay:not(.is-scrolled) .central-logo__image--dark,
.blog .central-header--home-overlay:not(.is-scrolled) .central-logo__image--dark {
  display: none !important;
}

.home .central-header--home-overlay:not(.is-scrolled) .central-logo__image--light,
.blog .central-header--home-overlay:not(.is-scrolled) .central-logo__image--light {
  display: block !important;
}

.home .central-header--home-overlay.is-scrolled .central-logo__image--dark,
.blog .central-header--home-overlay.is-scrolled .central-logo__image--dark {
  display: block !important;
  filter: none !important;
}

.home .central-header--home-overlay.is-scrolled .central-logo__image--light,
.blog .central-header--home-overlay.is-scrolled .central-logo__image--light {
  display: none !important;
}

.home .central-header--home-overlay .central-nav a,
.blog .central-header--home-overlay .central-nav a,
.home .central-header--home-overlay .central-menu-toggle,
.home .central-header--home-overlay .central-search-toggle,
.home .central-header--home-overlay .central-icon-link,
.home .central-header--home-overlay .central-cart-link,
.blog .central-header--home-overlay .central-menu-toggle,
.blog .central-header--home-overlay .central-search-toggle,
.blog .central-header--home-overlay .central-icon-link,
.blog .central-header--home-overlay .central-cart-link {
  color: inherit !important;
  transition: color .22s ease, background-color .22s ease;
}

.home .central-header--home-overlay .central-menu-toggle span,
.home .central-header--home-overlay .central-menu-toggle::before,
.home .central-header--home-overlay .central-menu-toggle::after,
.blog .central-header--home-overlay .central-menu-toggle span,
.blog .central-header--home-overlay .central-menu-toggle::before,
.blog .central-header--home-overlay .central-menu-toggle::after {
  background: currentColor !important;
}

.home .central-header--home-overlay .central-search-toggle svg,
.home .central-header--home-overlay .central-icon-link svg,
.home .central-header--home-overlay .central-cart-link svg,
.blog .central-header--home-overlay .central-search-toggle svg,
.blog .central-header--home-overlay .central-icon-link svg,
.blog .central-header--home-overlay .central-cart-link svg {
  stroke: currentColor !important;
}

.home .central-header--home-overlay:not(.is-scrolled) .central-count,
.blog .central-header--home-overlay:not(.is-scrolled) .central-count {
  background: #fff !important;
  color: #111 !important;
}

.home .central-header--home-overlay.is-scrolled .central-count,
.blog .central-header--home-overlay.is-scrolled .central-count {
  background: #111 !important;
  color: #fff !important;
}

/* Single product page: keep PDP sections out of product-card grid rules. */
body.single-product article.central-pdp,
body.single-product .woocommerce div.product.central-pdp,
body.single-product .central-pdp {
  display: block !important;
  width: min(100% - 30px, 1116px) !important;
  max-width: 1116px !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  overflow: visible !important;
  background: #fff !important;
}

body.single-product .central-pdp__inner {
  display: grid !important;
  grid-template-columns: minmax(0, 535px) minmax(0, 520px) !important;
  gap: clamp(36px, 5vw, 61px) !important;
  align-items: start !important;
  justify-content: center !important;
  width: 100% !important;
  height: auto !important;
  padding: 0 0 72px !important;
  overflow: visible !important;
}

body.single-product .central-pdp__gallery {
  position: sticky !important;
  top: 28px !important;
  display: grid !important;
  grid-template-columns: 50px minmax(0, 1fr) !important;
  gap: 10px !important;
  align-items: start !important;
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  overflow: visible !important;
}

body.single-product .central-pdp__stage {
  grid-column: 2 !important;
  grid-row: 1 !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

body.single-product .central-pdp__thumbs {
  grid-column: 1 !important;
  grid-row: 1 !important;
  order: 0 !important;
  display: grid !important;
  grid-auto-flow: row !important;
  grid-auto-columns: auto !important;
  grid-auto-rows: 50px !important;
  gap: 10px !important;
  width: 50px !important;
  max-width: 50px !important;
  height: auto !important;
  max-height: calc(100svh - 84px) !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body.single-product .central-pdp__thumb {
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  min-height: 50px !important;
}

body.single-product .central-pdp__info {
  position: sticky !important;
  top: 28px !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  padding: 0 !important;
  overflow: visible !important;
}

body.single-product .central-pdp__people {
  clear: both !important;
  display: block !important;
  width: min(100% - 30px, 1116px) !important;
  max-width: 1116px !important;
  margin: 0 auto !important;
  padding: 40px 0 64px !important;
  border-top: 1px solid #e5e5e5 !important;
  overflow: visible !important;
}

body.single-product .central-pdp__people .related,
body.single-product .central-pdp__people .woocommerce {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

body.single-product .central-pdp__people ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  overflow: visible !important;
}

body.single-product .central-pdp__people ul.products li.product {
  float: none !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  clear: none !important;
}

@media (max-width: 900px) {
  body.single-product article.central-pdp,
  body.single-product .woocommerce div.product.central-pdp,
  body.single-product .central-pdp {
    width: 100% !important;
    max-width: none !important;
  }

  body.single-product .central-pdp__inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 0 34px !important;
  }

  body.single-product .central-pdp__gallery {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    padding: 18px 15px 0 !important;
  }

  body.single-product .central-pdp__stage {
    order: 1 !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
  }

  body.single-product .central-pdp__thumbs {
    order: 2 !important;
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: 44px !important;
    grid-auto-rows: 44px !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: none !important;
    padding: 0 0 2px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }

  body.single-product .central-pdp__thumb {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }

  body.single-product .central-pdp__info {
    position: static !important;
    width: 100% !important;
    padding: 24px 15px 0 !important;
  }

  body.single-product .central-pdp__summary,
  body.single-product .central-pdp__purchase,
  body.single-product .central-pdp__accordions,
  body.single-product .central-delivery-timeline {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.single-product .central-pdp__people {
    width: calc(100% - 30px) !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: 30px 0 48px !important;
  }

  body.single-product .central-pdp__people > h2 {
    margin: 0 0 22px !important;
    font-size: 26px !important;
    line-height: 1.18 !important;
  }

  body.single-product .central-pdp__people ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Mobile homepage scroll stability: preserve the overlay header layout without scroll-state jitter. */
@media (max-width: 767px) {
  .home .central-announcement,
  .blog .central-announcement {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 130 !important;
    min-height: 28px !important;
    margin: 0 !important;
    transform: none !important;
  }

  .home .central-header--home-overlay,
  .home .central-header--home-overlay:not(.is-scrolled),
  .home .central-header--home-overlay.is-scrolled,
  .blog .central-header--home-overlay,
  .blog .central-header--home-overlay:not(.is-scrolled),
  .blog .central-header--home-overlay.is-scrolled {
    position: sticky !important;
    top: 0 !important;
    right: auto !important;
    left: auto !important;
    z-index: 120 !important;
    width: 100% !important;
    height: var(--central-mobile-header-height, 70px) !important;
    min-height: var(--central-mobile-header-height, 70px) !important;
    margin: 0 0 calc(var(--central-mobile-header-height, 70px) * -1) !important;
    padding: 0 !important;
    transform: none !important;
    border: 0 !important;
    text-shadow: none !important;
  }

  .home .central-header--home-overlay .central-header__inner,
  .blog .central-header--home-overlay .central-header__inner {
    min-height: var(--central-mobile-header-height, 70px) !important;
    height: var(--central-mobile-header-height, 70px) !important;
  }

  .home .central-hero-slider,
  .blog .central-hero-slider {
    height: 100svh !important;
    min-height: 100svh !important;
    max-height: none !important;
    margin: 0 !important;
    overflow: hidden !important;
    transform: none !important;
    scroll-snap-align: none !important;
    contain: layout paint;
  }

  .home .central-hero-slider__viewport,
  .home .central-hero-slider__track,
  .home .central-hero-slide,
  .home .central-hero-slide picture,
  .home .central-hero-slide img,
  .blog .central-hero-slider__viewport,
  .blog .central-hero-slider__track,
  .blog .central-hero-slide,
  .blog .central-hero-slide picture,
  .blog .central-hero-slide img {
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  .home .central-hero-slider__track,
  .blog .central-hero-slider__track {
    will-change: auto !important;
  }

  .home .central-hero-slide img,
  .blog .central-hero-slide img {
    width: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
    backface-visibility: hidden;
  }

  .home .central-hero-slide__content,
  .blog .central-hero-slide__content {
    left: clamp(24px, 6vw, 34px) !important;
    right: 22px !important;
    bottom: max(68px, calc(env(safe-area-inset-bottom, 0px) + 58px)) !important;
    max-width: min(340px, calc(100vw - 46px)) !important;
  }
}

/* Final desktop header override: one shared header after all legacy page rules. */
@media (min-width: 901px) {
  body {
    --central-header: 72px;
    --central-desktop-header-height: 72px;
    --central-desktop-content-gap: 28px;
    scroll-padding-top: calc(var(--central-desktop-header-height) + var(--central-desktop-content-gap));
  }

  .central-header,
  .central-header.is-scrolled,
  .central-header--scrolled,
  .central-header--home-overlay,
  .central-header--home-overlay:not(.is-scrolled),
  .central-header--home-overlay.is-scrolled,
  .home .central-header--home-overlay,
  .home .central-header--home-overlay:not(.is-scrolled),
  .home .central-header--home-overlay.is-scrolled,
  .blog .central-header--home-overlay,
  .blog .central-header--home-overlay:not(.is-scrolled),
  .blog .central-header--home-overlay.is-scrolled,
  body.single-product .central-header,
  body.single-product .central-header.is-scrolled,
  body.woocommerce-cart .central-header,
  body.woocommerce-checkout .central-header,
  body.woocommerce-account .central-header,
  body.woocommerce-shop .central-header,
  body.post-type-archive-product .central-header,
  body.tax-product_cat .central-header,
  body.tax-product_tag .central-header,
  body.search .central-header,
  body.search-results .central-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 130 !important;
    width: 100% !important;
    height: var(--central-desktop-header-height) !important;
    min-height: var(--central-desktop-header-height) !important;
    max-height: var(--central-desktop-header-height) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: rgba(255, 255, 255, .98) !important;
    color: #111 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(17, 17, 17, .1) !important;
    box-shadow: 0 8px 22px rgba(17, 17, 17, .06) !important;
    text-shadow: none !important;
    backdrop-filter: saturate(120%) blur(10px) !important;
    -webkit-backdrop-filter: saturate(120%) blur(10px) !important;
    transform: none !important;
  }

  body.admin-bar .central-header,
  body.admin-bar .central-header.is-scrolled,
  body.admin-bar .central-header--home-overlay,
  body.admin-bar .central-header--home-overlay.is-scrolled {
    top: 32px !important;
  }

  .central-header::before,
  .central-header::after,
  .central-header--home-overlay::before,
  .central-header--home-overlay::after {
    content: none !important;
    display: none !important;
  }

  .central-header .central-header__inner,
  .central-header--home-overlay .central-header__inner,
  .home .central-header--home-overlay .central-header__inner,
  .blog .central-header--home-overlay .central-header__inner,
  body.single-product .central-header .central-header__inner,
  body.woocommerce-cart .central-header .central-header__inner,
  body.woocommerce-checkout .central-header .central-header__inner,
  body.woocommerce-account .central-header .central-header__inner,
  body.woocommerce-shop .central-header .central-header__inner,
  body.post-type-archive-product .central-header .central-header__inner,
  body.tax-product_cat .central-header .central-header__inner,
  body.tax-product_tag .central-header .central-header__inner,
  body.search .central-header .central-header__inner,
  body.search-results .central-header .central-header__inner {
    display: grid !important;
    grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr) !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
    height: var(--central-desktop-header-height) !important;
    min-height: var(--central-desktop-header-height) !important;
    max-height: var(--central-desktop-header-height) !important;
    padding: 0 28px !important;
    column-gap: 24px !important;
  }

  .central-header .central-menu-toggle {
    display: none !important;
  }

  .central-header .central-nav {
    display: block !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    min-width: 0 !important;
  }

  .central-header .central-nav ul,
  .central-header .central-nav .menu {
    display: flex !important;
    align-items: center !important;
    gap: clamp(18px, 2vw, 30px) !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .central-header .central-nav a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: var(--central-desktop-header-height) !important;
    padding: 0 !important;
    color: #111 !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    text-shadow: none !important;
    white-space: nowrap !important;
  }

  .central-header .central-logo,
  .central-header--home-overlay .central-logo,
  body.single-product .central-header .central-logo,
  body.woocommerce-cart .central-header .central-logo,
  body.woocommerce-checkout .central-header .central-logo,
  body.woocommerce-account .central-header .central-logo,
  body.woocommerce-shop .central-header .central-logo,
  body.post-type-archive-product .central-header .central-logo,
  body.tax-product_cat .central-header .central-logo,
  body.tax-product_tag .central-header .central-logo,
  body.search .central-header .central-logo,
  body.search-results .central-header .central-logo {
    position: static !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    align-self: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    max-width: min(var(--central-logo-desktop-width, 150px), 220px) !important;
    height: var(--central-desktop-header-height) !important;
    min-height: var(--central-desktop-header-height) !important;
    margin: 0 !important;
    transform: none !important;
    overflow: hidden !important;
  }

  .central-header .central-logo img,
  .central-header.is-scrolled .central-logo img,
  .central-header--home-overlay .central-logo img,
  .central-header--home-overlay:not(.is-scrolled) .central-logo img,
  .central-header--home-overlay.is-scrolled .central-logo img,
  .home .central-header--home-overlay .central-logo img,
  .home .central-header--home-overlay:not(.is-scrolled) .central-logo img,
  .home .central-header--home-overlay.is-scrolled .central-logo img,
  .blog .central-header--home-overlay .central-logo img,
  .blog .central-header--home-overlay:not(.is-scrolled) .central-logo img,
  .blog .central-header--home-overlay.is-scrolled .central-logo img,
  body.single-product .central-header .central-logo img,
  body.woocommerce-cart .central-header .central-logo img,
  body.woocommerce-checkout .central-header .central-logo img,
  body.woocommerce-account .central-header .central-logo img,
  body.woocommerce-shop .central-header .central-logo img,
  body.post-type-archive-product .central-header .central-logo img,
  body.tax-product_cat .central-header .central-logo img,
  body.tax-product_tag .central-header .central-logo img,
  body.search .central-header .central-logo img,
  body.search-results .central-header .central-logo img {
    display: block !important;
    width: var(--central-logo-desktop-width, 150px) !important;
    max-width: min(var(--central-logo-desktop-width, 150px), 220px) !important;
    height: auto !important;
    max-height: 44px !important;
    object-fit: contain !important;
    object-position: center center !important;
    filter: none !important;
  }

  .central-header .central-logo__image--dark,
  .central-header--home-overlay .central-logo__image--dark {
    display: block !important;
    filter: none !important;
  }

  .central-header .central-logo__image--light,
  .central-header--home-overlay .central-logo__image--light {
    display: none !important;
  }

  .central-header .central-actions,
  .central-header--home-overlay .central-actions,
  body.single-product .central-header .central-actions,
  body.woocommerce-cart .central-header .central-actions,
  body.woocommerce-checkout .central-header .central-actions,
  body.woocommerce-account .central-header .central-actions,
  body.woocommerce-shop .central-header .central-actions,
  body.post-type-archive-product .central-header .central-actions,
  body.tax-product_cat .central-header .central-actions,
  body.tax-product_tag .central-header .central-actions,
  body.search .central-header .central-actions,
  body.search-results .central-header .central-actions {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 18px !important;
    width: auto !important;
    min-width: 0 !important;
    color: #111 !important;
  }

  .central-header .central-search-toggle,
  .central-header .central-icon-link,
  .central-header .central-cart-link {
    display: inline-grid !important;
    place-items: center !important;
    width: 44px !important;
    height: 44px !important;
    color: #111 !important;
  }

  .central-header .central-search-toggle--desktop {
    display: inline-grid !important;
  }

  .central-header .central-search-toggle--mobile {
    display: none !important;
  }

  .central-header .central-search-toggle svg,
  .central-header .central-icon-link svg,
  .central-header .central-cart-link svg {
    width: 21px !important;
    height: 21px !important;
    stroke: currentColor !important;
    stroke-width: 1.55 !important;
    vector-effect: non-scaling-stroke;
  }

  .central-header .central-count {
    background: #111 !important;
    color: #fff !important;
  }

  body.single-product .central-pdp__gallery,
  body.single-product .central-pdp__info,
  body.woocommerce-cart #order_review,
  body.woocommerce-checkout #order_review {
    top: calc(var(--central-desktop-header-height) + var(--central-desktop-content-gap)) !important;
  }

  body.single-product .central-pdp__thumbs {
    max-height: calc(100svh - var(--central-desktop-header-height) - 84px) !important;
  }
}

/* Final checkout flow override: keep after the final header block. */
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 410px) !important;
  gap: 16px 28px !important;
  align-items: start !important;
  width: min(100% - 32px, 1120px) !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout,
body.woocommerce-checkout:not(.woocommerce-order-received) #order_review,
body.woocommerce-checkout:not(.woocommerce-order-received) #payment {
  display: contents !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details {
  grid-column: 1 !important;
  grid-row: 2 / span 6 !important;
  display: grid !important;
  gap: 14px !important;
  padding: 20px !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-1,
body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-2 {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-2 {
  padding-top: 14px !important;
  border-top: 1px solid #eeeeee !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review_heading {
  grid-column: 2 !important;
  grid-row: 2 !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
  border: 0 !important;
  font-size: 17px !important;
  line-height: 1.2 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout-review-order-table {
  grid-column: 2 !important;
  grid-row: 3 !important;
  display: table !important;
  width: 100% !important;
  margin: 0 !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 12px !important;
  background: #fff !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods {
  grid-column: 2 !important;
  grid-row: 4 !important;
  display: grid !important;
  gap: 9px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 14px !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li.wc_payment_method {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  gap: 10px !important;
  padding: 12px !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 10px !important;
  background: #fafafa !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li.wc_payment_method.is-selected,
body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li.wc_payment_method:has(input:checked) {
  border-color: #111 !important;
  background: #fff !important;
  box-shadow: 0 0 0 1px #111 inset !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle {
  grid-column: 2 !important;
  grid-row: 5 !important;
  width: 100% !important;
  margin: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle .woocommerce-info {
  margin: 0 !important;
  padding: 10px 12px !important;
  border: 1px dashed #d8d8d8 !important;
  border-radius: 10px !important;
  background: #fbfbfb !important;
  color: #666 !important;
  font-size: 12px !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle .woocommerce-info::before {
  display: none !important;
  content: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon {
  grid-column: 2 !important;
  grid-row: 6 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 9px !important;
  width: 100% !important;
  max-width: none !important;
  margin: -6px 0 0 !important;
  padding: 12px !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 10px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon[style*="display:none"],
body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon[style*="display: none"] {
  display: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment .place-order {
  grid-column: 2 !important;
  grid-row: 7 !important;
  display: grid !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #place_order {
  width: 100% !important;
  min-height: 56px !important;
  border-radius: 10px !important;
  background: #111 !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 850 !important;
  box-shadow: 0 12px 24px rgba(17, 17, 17, .16) !important;
}

@media (max-width: 900px) {
  body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce {
    grid-template-columns: minmax(0, 1fr) !important;
    width: min(100% - 18px, 620px) !important;
    gap: 12px !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details {
    grid-column: 1 !important;
    grid-row: 2 !important;
    padding: 14px !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-1 {
    order: 1 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-2 {
    order: 2 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #order_review_heading {
    grid-column: 1 !important;
    grid-row: 3 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout-review-order-table {
    grid-column: 1 !important;
    grid-row: 4 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods {
    grid-column: 1 !important;
    grid-row: 5 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle {
    grid-column: 1 !important;
    grid-row: 6 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon {
    grid-column: 1 !important;
    grid-row: 7 !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 8px !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon .form-row-first,
  body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon .form-row-last {
    grid-column: 1 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon button[name="apply_coupon"],
  body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon .button {
    width: 100% !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #payment .place-order {
    grid-column: 1 !important;
    grid-row: 8 !important;
  }
}

/* Final checkout flow override: this must stay after header and coupon legacy rules. */
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 410px) !important;
  gap: 16px 28px !important;
  align-items: start !important;
  width: min(100% - 32px, 1120px) !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout,
body.woocommerce-checkout:not(.woocommerce-order-received) #order_review,
body.woocommerce-checkout:not(.woocommerce-order-received) #payment {
  display: contents !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details {
  grid-column: 1 !important;
  grid-row: 2 / span 6 !important;
  display: grid !important;
  gap: 14px !important;
  padding: 20px !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-1,
body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-2 {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-2 {
  padding-top: 14px !important;
  border-top: 1px solid #eeeeee !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review_heading {
  grid-column: 2 !important;
  grid-row: 2 !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
  border: 0 !important;
  font-size: 17px !important;
  line-height: 1.2 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout-review-order-table {
  grid-column: 2 !important;
  grid-row: 3 !important;
  display: table !important;
  width: 100% !important;
  margin: 0 !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 12px !important;
  background: #fff !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods {
  grid-column: 2 !important;
  grid-row: 4 !important;
  display: grid !important;
  gap: 9px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 14px !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li.wc_payment_method {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  gap: 10px !important;
  padding: 12px !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 10px !important;
  background: #fafafa !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li.wc_payment_method:has(input:checked) {
  border-color: #111 !important;
  background: #fff !important;
  box-shadow: 0 0 0 1px #111 inset !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle {
  grid-column: 2 !important;
  grid-row: 5 !important;
  width: 100% !important;
  margin: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle .woocommerce-info {
  margin: 0 !important;
  padding: 10px 12px !important;
  border: 1px dashed #d8d8d8 !important;
  border-radius: 10px !important;
  background: #fbfbfb !important;
  color: #666 !important;
  font-size: 12px !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle .woocommerce-info::before {
  display: none !important;
  content: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon {
  grid-column: 2 !important;
  grid-row: 6 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 9px !important;
  width: 100% !important;
  max-width: none !important;
  margin: -6px 0 0 !important;
  padding: 12px !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 10px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon[style*="display:none"],
body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon[style*="display: none"] {
  display: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon input[name="coupon_code"],
body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon .input-text {
  height: 44px !important;
  min-height: 44px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  line-height: 44px !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon button[name="apply_coupon"],
body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon .button {
  min-width: 122px !important;
  height: 44px !important;
  min-height: 44px !important;
  border-radius: 8px !important;
  font-size: 12px !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment .place-order {
  grid-column: 2 !important;
  grid-row: 7 !important;
  display: grid !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #place_order {
  width: 100% !important;
  min-height: 56px !important;
  border-radius: 10px !important;
  background: #111 !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 850 !important;
  box-shadow: 0 12px 24px rgba(17, 17, 17, .16) !important;
}

@media (max-width: 900px) {
  body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce {
    grid-template-columns: minmax(0, 1fr) !important;
    width: min(100% - 18px, 620px) !important;
    gap: 12px !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details {
    grid-column: 1 !important;
    grid-row: 2 !important;
    padding: 14px !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-1 {
    order: 1 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-2 {
    order: 2 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #order_review_heading {
    grid-column: 1 !important;
    grid-row: 3 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout-review-order-table {
    grid-column: 1 !important;
    grid-row: 4 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods {
    grid-column: 1 !important;
    grid-row: 5 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle {
    grid-column: 1 !important;
    grid-row: 6 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon {
    grid-column: 1 !important;
    grid-row: 7 !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 8px !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon .form-row-first,
  body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon .form-row-last {
    grid-column: 1 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon button[name="apply_coupon"],
  body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon .button {
    width: 100% !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #payment .place-order {
    grid-column: 1 !important;
    grid-row: 8 !important;
  }
}

/* Modern checkout rebuild: clean flow, subdued coupon, clear payment. */
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 410px) !important;
  gap: 16px 28px !important;
  align-items: start !important;
  width: min(100% - 32px, 1120px) !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout,
body.woocommerce-checkout:not(.woocommerce-order-received) #order_review,
body.woocommerce-checkout:not(.woocommerce-order-received) #payment {
  display: contents !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-notices-wrapper,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-NoticeGroup,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle,
body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon,
body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details,
body.woocommerce-checkout:not(.woocommerce-order-received) #order_review_heading,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout-review-order-table,
body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods,
body.woocommerce-checkout:not(.woocommerce-order-received) #payment .place-order {
  min-width: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-notices-wrapper,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-NoticeGroup {
  grid-column: 1 / -1 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details {
  grid-column: 1 !important;
  grid-row: 2 / span 5 !important;
  display: grid !important;
  gap: 14px !important;
  width: 100% !important;
  padding: 20px !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-1,
body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-2 {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-2 {
  padding-top: 14px !important;
  border-top: 1px solid #eeeeee !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-billing-fields h3,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-additional-fields h3,
body.woocommerce-checkout:not(.woocommerce-order-received) #order_review_heading {
  margin: 0 0 14px !important;
  color: #111 !important;
  font-size: 17px !important;
  line-height: 1.2 !important;
  font-weight: 850 !important;
  letter-spacing: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-additional-fields__field-wrapper {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 11px !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .form-row {
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .form-row label {
  display: block !important;
  margin: 0 0 6px !important;
  color: #333 !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 750 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .form-row input.input-text,
body.woocommerce-checkout:not(.woocommerce-order-received) .form-row select,
body.woocommerce-checkout:not(.woocommerce-order-received) .form-row textarea,
body.woocommerce-checkout:not(.woocommerce-order-received) .select2-container .select2-selection--single {
  width: 100% !important;
  min-height: 46px !important;
  border: 1px solid #dddddd !important;
  border-radius: 9px !important;
  background: #fff !important;
  padding: 11px 13px !important;
  color: #111 !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .form-row textarea {
  min-height: 86px !important;
  resize: vertical;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .form-row input.input-text:focus,
body.woocommerce-checkout:not(.woocommerce-order-received) .form-row select:focus,
body.woocommerce-checkout:not(.woocommerce-order-received) .form-row textarea:focus,
body.woocommerce-checkout:not(.woocommerce-order-received) .select2-container--focus .select2-selection--single {
  border-color: #111 !important;
  outline: 0 !important;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, .07) !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review_heading {
  grid-column: 2 !important;
  grid-row: 2 !important;
  align-self: end !important;
  padding: 0 !important;
  border: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout-review-order-table {
  grid-column: 2 !important;
  grid-row: 3 !important;
  display: table !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  table-layout: fixed !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 12px !important;
  background: #fff !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout-review-order-table th,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout-review-order-table td {
  padding: 13px 14px !important;
  border-bottom: 1px solid #eeeeee !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout-review-order-table tr:last-child th,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout-review-order-table tr:last-child td {
  border-bottom: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout-review-order-table thead {
  display: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout-review-order-table .product-name {
  width: 68% !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout-review-order-table .product-total {
  width: 32% !important;
  text-align: right !important;
  white-space: nowrap !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .central-checkout-item {
  display: grid !important;
  grid-template-columns: 54px minmax(0, 1fr) !important;
  gap: 11px !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .central-checkout-item__thumb {
  width: 54px !important;
  height: 64px !important;
  border: 1px solid #ececec !important;
  border-radius: 9px !important;
  background: #f7f7f7 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .central-checkout-item__name {
  font-size: 13px !important;
  line-height: 1.3 !important;
  font-weight: 760 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .central-checkout-item__qty {
  padding: 3px 7px !important;
  font-size: 11px !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods {
  grid-column: 2 !important;
  grid-row: 4 !important;
  display: grid !important;
  gap: 9px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 14px !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li.wc_payment_method {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  gap: 10px !important;
  align-items: start !important;
  margin: 0 !important;
  padding: 12px !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 10px !important;
  background: #fafafa !important;
  box-shadow: none !important;
  transform: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li.wc_payment_method:has(input:checked) {
  border-color: #111 !important;
  background: #fff !important;
  box-shadow: 0 0 0 1px #111 inset !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li.wc_payment_method > input {
  margin: 2px 0 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li.wc_payment_method > label {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  align-items: center !important;
  margin: 0 !important;
  color: #111 !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment div.payment_box {
  grid-column: 1 / -1 !important;
  margin: 8px 0 0 !important;
  padding: 10px 11px !important;
  border: 0 !important;
  border-radius: 9px !important;
  background: #f4f4f4 !important;
  color: #555 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .central-payment-mini-icons {
  gap: 4px !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .central-payment-mini-icons span {
  padding: 3px 5px !important;
  border-radius: 5px !important;
  font-size: 9px !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle {
  grid-column: 2 !important;
  grid-row: 5 !important;
  width: 100% !important;
  margin: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle .woocommerce-info {
  margin: 0 !important;
  padding: 10px 12px !important;
  border: 1px dashed #d8d8d8 !important;
  border-radius: 10px !important;
  background: #fbfbfb !important;
  color: #666 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  font-weight: 650 !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle .woocommerce-info::before {
  display: none !important;
  content: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle .showcoupon {
  color: #111 !important;
  font-weight: 800 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon {
  grid-column: 2 !important;
  grid-row: 6 !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 9px !important;
  width: 100% !important;
  max-width: none !important;
  margin: -6px 0 0 !important;
  padding: 12px !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 10px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon[style*="display:none"],
body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon[style*="display: none"] {
  display: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon input[name="coupon_code"],
body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon .input-text {
  height: 44px !important;
  min-height: 44px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  line-height: 44px !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon button[name="apply_coupon"],
body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon .button {
  min-width: 122px !important;
  height: 44px !important;
  min-height: 44px !important;
  border-radius: 8px !important;
  font-size: 12px !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment .place-order {
  grid-column: 2 !important;
  grid-row: 7 !important;
  display: grid !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-terms-and-conditions-wrapper {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #666 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #place_order {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 56px !important;
  margin: 0 !important;
  border-radius: 10px !important;
  background: #111 !important;
  color: #fff !important;
  font-size: 15px !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  box-shadow: 0 12px 24px rgba(17, 17, 17, .16) !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #place_order:hover,
body.woocommerce-checkout:not(.woocommerce-order-received) #place_order:focus {
  background: #222 !important;
  color: #fff !important;
  box-shadow: 0 16px 30px rgba(17, 17, 17, .2) !important;
}

@media (max-width: 900px) {
  body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce {
    grid-template-columns: minmax(0, 1fr) !important;
    width: min(100% - 18px, 620px) !important;
    gap: 12px !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details {
    grid-column: 1 !important;
    grid-row: 2 !important;
    padding: 14px !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-1 {
    order: 1 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-2 {
    order: 2 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #order_review_heading {
    grid-column: 1 !important;
    grid-row: 3 !important;
    margin-top: 4px !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout-review-order-table {
    grid-column: 1 !important;
    grid-row: 4 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods {
    grid-column: 1 !important;
    grid-row: 5 !important;
    padding: 12px !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle {
    grid-column: 1 !important;
    grid-row: 6 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon {
    grid-column: 1 !important;
    grid-row: 7 !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 8px !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon .form-row-first,
  body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon .form-row-last {
    grid-column: 1 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon button[name="apply_coupon"],
  body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon .button {
    width: 100% !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #payment .place-order {
    grid-column: 1 !important;
    grid-row: 8 !important;
  }
}

/* Checkout coupon layout: keep input and button aligned without overlap. */
body.woocommerce-checkout form.checkout_coupon {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 12px !important;
  align-items: end !important;
  width: min(100% - 32px, 1120px) !important;
  max-width: 1120px !important;
  margin: 0 auto 22px !important;
  padding: 18px !important;
  border: 1px solid #e7e7e7 !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 12px 30px rgba(17, 17, 17, .04) !important;
}

body.woocommerce-checkout form.checkout_coupon > p {
  float: none !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce-checkout form.checkout_coupon .form-row-first {
  grid-column: 1 !important;
}

body.woocommerce-checkout form.checkout_coupon .form-row-last {
  grid-column: 2 !important;
}

body.woocommerce-checkout form.checkout_coupon input[name="coupon_code"],
body.woocommerce-checkout form.checkout_coupon .input-text {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: 52px !important;
  min-height: 52px !important;
  margin: 0 !important;
  padding: 0 16px !important;
  border: 1px solid #dcdcdc !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: #111 !important;
  font-size: 14px !important;
  line-height: 52px !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}

body.woocommerce-checkout form.checkout_coupon input[name="coupon_code"]:focus,
body.woocommerce-checkout form.checkout_coupon .input-text:focus {
  border-color: #111 !important;
  outline: 0 !important;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, .08) !important;
}

body.woocommerce-checkout form.checkout_coupon button[name="apply_coupon"],
body.woocommerce-checkout form.checkout_coupon .button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 150px !important;
  height: 52px !important;
  min-height: 52px !important;
  margin: 0 !important;
  padding: 0 22px !important;
  border: 1px solid #111 !important;
  border-radius: 10px !important;
  background: #111 !important;
  color: #fff !important;
  font-size: 13px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  text-align: center !important;
  white-space: nowrap !important;
  box-shadow: none !important;
  transform: none !important;
}

body.woocommerce-checkout form.checkout_coupon button[name="apply_coupon"]:hover,
body.woocommerce-checkout form.checkout_coupon button[name="apply_coupon"]:focus,
body.woocommerce-checkout form.checkout_coupon .button:hover,
body.woocommerce-checkout form.checkout_coupon .button:focus {
  background: #222 !important;
  border-color: #222 !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(17, 17, 17, .12) !important;
}

@media (max-width: 767px) {
  body.woocommerce-checkout form.checkout_coupon {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px !important;
    width: min(100% - 20px, 720px) !important;
    padding: 14px !important;
    margin-bottom: 18px !important;
  }

  body.woocommerce-checkout form.checkout_coupon .form-row-first,
  body.woocommerce-checkout form.checkout_coupon .form-row-last {
    grid-column: 1 !important;
  }

  body.woocommerce-checkout form.checkout_coupon button[name="apply_coupon"],
  body.woocommerce-checkout form.checkout_coupon .button {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* Global desktop header contract. Keep this last so every page shares one header. */
@media (min-width: 901px) {
  body {
    --central-header: 72px;
    --central-desktop-header-height: 72px;
    --central-desktop-content-gap: 28px;
    scroll-padding-top: calc(var(--central-desktop-header-height) + var(--central-desktop-content-gap));
  }

  .central-header,
  .central-header.is-scrolled,
  .central-header--scrolled,
  .central-header--home-overlay,
  .central-header--home-overlay:not(.is-scrolled),
  .central-header--home-overlay.is-scrolled,
  .home .central-header,
  .home .central-header--home-overlay,
  .home .central-header--home-overlay:not(.is-scrolled),
  .home .central-header--home-overlay.is-scrolled,
  .blog .central-header,
  .blog .central-header--home-overlay,
  .blog .central-header--home-overlay:not(.is-scrolled),
  .blog .central-header--home-overlay.is-scrolled,
  body.single-product .central-header,
  body.single-product .central-header.is-scrolled,
  body.woocommerce-cart .central-header,
  body.woocommerce-checkout .central-header,
  body.woocommerce-account .central-header,
  body.woocommerce-shop .central-header,
  body.post-type-archive-product .central-header,
  body.tax-product_cat .central-header,
  body.tax-product_tag .central-header,
  body.search .central-header,
  body.search-results .central-header {
    position: sticky !important;
    top: 0 !important;
    right: auto !important;
    left: auto !important;
    z-index: 130 !important;
    width: 100% !important;
    height: var(--central-desktop-header-height) !important;
    min-height: var(--central-desktop-header-height) !important;
    max-height: var(--central-desktop-header-height) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: rgba(255, 255, 255, .98) !important;
    color: #111 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(17, 17, 17, .1) !important;
    box-shadow: 0 8px 22px rgba(17, 17, 17, .06) !important;
    text-shadow: none !important;
    backdrop-filter: saturate(120%) blur(10px) !important;
    -webkit-backdrop-filter: saturate(120%) blur(10px) !important;
    transform: none !important;
  }

  body.admin-bar .central-header,
  body.admin-bar .central-header.is-scrolled,
  body.admin-bar .central-header--home-overlay,
  body.admin-bar .central-header--home-overlay.is-scrolled {
    top: 32px !important;
  }

  .central-header::before,
  .central-header::after,
  .central-header--home-overlay::before,
  .central-header--home-overlay::after {
    content: none !important;
    display: none !important;
  }

  .central-header .central-header__inner,
  .central-header--home-overlay .central-header__inner,
  .home .central-header .central-header__inner,
  .home .central-header--home-overlay .central-header__inner,
  .blog .central-header .central-header__inner,
  .blog .central-header--home-overlay .central-header__inner,
  body.single-product .central-header .central-header__inner,
  body.woocommerce-cart .central-header .central-header__inner,
  body.woocommerce-checkout .central-header .central-header__inner,
  body.woocommerce-account .central-header .central-header__inner,
  body.woocommerce-shop .central-header .central-header__inner,
  body.post-type-archive-product .central-header .central-header__inner,
  body.tax-product_cat .central-header .central-header__inner,
  body.tax-product_tag .central-header .central-header__inner,
  body.search .central-header .central-header__inner,
  body.search-results .central-header .central-header__inner {
    display: grid !important;
    grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr) !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
    height: var(--central-desktop-header-height) !important;
    min-height: var(--central-desktop-header-height) !important;
    max-height: var(--central-desktop-header-height) !important;
    padding: 0 28px !important;
    column-gap: 24px !important;
  }

  .central-header .central-header__left {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    min-width: 0 !important;
  }

  .central-header .central-menu-toggle {
    display: none !important;
  }

  .central-header .central-nav {
    display: block !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    min-width: 0 !important;
  }

  .central-header .central-nav ul,
  .central-header .central-nav .menu {
    display: flex !important;
    align-items: center !important;
    gap: clamp(18px, 2vw, 30px) !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .central-header .central-nav a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: var(--central-desktop-header-height) !important;
    padding: 0 !important;
    color: #111 !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    text-shadow: none !important;
    white-space: nowrap !important;
  }

  .central-header .central-logo,
  .central-header--home-overlay .central-logo,
  .home .central-header .central-logo,
  .home .central-header--home-overlay .central-logo,
  .blog .central-header .central-logo,
  .blog .central-header--home-overlay .central-logo,
  body.single-product .central-header .central-logo,
  body.woocommerce-cart .central-header .central-logo,
  body.woocommerce-checkout .central-header .central-logo,
  body.woocommerce-account .central-header .central-logo,
  body.woocommerce-shop .central-header .central-logo,
  body.post-type-archive-product .central-header .central-logo,
  body.tax-product_cat .central-header .central-logo,
  body.tax-product_tag .central-header .central-logo,
  body.search .central-header .central-logo,
  body.search-results .central-header .central-logo {
    position: static !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    align-self: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    max-width: min(var(--central-logo-desktop-width, 150px), 220px) !important;
    height: var(--central-desktop-header-height) !important;
    min-height: var(--central-desktop-header-height) !important;
    margin: 0 !important;
    transform: none !important;
    overflow: hidden !important;
  }

  .central-header .central-logo img,
  .central-header.is-scrolled .central-logo img,
  .central-header--home-overlay .central-logo img,
  .central-header--home-overlay:not(.is-scrolled) .central-logo img,
  .central-header--home-overlay.is-scrolled .central-logo img,
  .home .central-header--home-overlay .central-logo img,
  .home .central-header--home-overlay:not(.is-scrolled) .central-logo img,
  .home .central-header--home-overlay.is-scrolled .central-logo img,
  .blog .central-header--home-overlay .central-logo img,
  .blog .central-header--home-overlay:not(.is-scrolled) .central-logo img,
  .blog .central-header--home-overlay.is-scrolled .central-logo img,
  body.single-product .central-header .central-logo img,
  body.woocommerce-cart .central-header .central-logo img,
  body.woocommerce-checkout .central-header .central-logo img,
  body.woocommerce-account .central-header .central-logo img,
  body.woocommerce-shop .central-header .central-logo img,
  body.post-type-archive-product .central-header .central-logo img,
  body.tax-product_cat .central-header .central-logo img,
  body.tax-product_tag .central-header .central-logo img,
  body.search .central-header .central-logo img,
  body.search-results .central-header .central-logo img {
    display: block !important;
    width: var(--central-logo-desktop-width, 150px) !important;
    max-width: min(var(--central-logo-desktop-width, 150px), 220px) !important;
    height: auto !important;
    max-height: 44px !important;
    object-fit: contain !important;
    object-position: center center !important;
    filter: none !important;
  }

  .central-header .central-logo__image--dark,
  .central-header--home-overlay .central-logo__image--dark {
    display: block !important;
    filter: none !important;
  }

  .central-header .central-logo__image--light,
  .central-header--home-overlay .central-logo__image--light {
    display: none !important;
  }

  .central-header .central-actions,
  .central-header--home-overlay .central-actions,
  .home .central-header .central-actions,
  .home .central-header--home-overlay .central-actions,
  .blog .central-header .central-actions,
  .blog .central-header--home-overlay .central-actions,
  body.single-product .central-header .central-actions,
  body.woocommerce-cart .central-header .central-actions,
  body.woocommerce-checkout .central-header .central-actions,
  body.woocommerce-account .central-header .central-actions,
  body.woocommerce-shop .central-header .central-actions,
  body.post-type-archive-product .central-header .central-actions,
  body.tax-product_cat .central-header .central-actions,
  body.tax-product_tag .central-header .central-actions,
  body.search .central-header .central-actions,
  body.search-results .central-header .central-actions {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 18px !important;
    width: auto !important;
    min-width: 0 !important;
    color: #111 !important;
  }

  .central-header .central-search-toggle,
  .central-header .central-icon-link,
  .central-header .central-cart-link {
    display: inline-grid !important;
    place-items: center !important;
    width: 44px !important;
    height: 44px !important;
    color: #111 !important;
  }

  .central-header .central-search-toggle--desktop {
    display: inline-grid !important;
  }

  .central-header .central-search-toggle--mobile {
    display: none !important;
  }

  .central-header .central-search-toggle svg,
  .central-header .central-icon-link svg,
  .central-header .central-cart-link svg {
    width: 21px !important;
    height: 21px !important;
    stroke: currentColor !important;
    stroke-width: 1.55 !important;
    vector-effect: non-scaling-stroke;
  }

  .central-header .central-count {
    background: #111 !important;
    color: #fff !important;
  }

  .central-search-panel {
    top: 100% !important;
  }

  body.single-product .central-pdp__gallery,
  body.single-product .central-pdp__info,
  body.woocommerce-cart #order_review,
  body.woocommerce-checkout #order_review {
    top: calc(var(--central-desktop-header-height) + var(--central-desktop-content-gap)) !important;
  }

  body.single-product .central-pdp__thumbs {
    max-height: calc(100svh - var(--central-desktop-header-height) - 84px) !important;
  }
}

/* Desktop PDP header: keep the sticky bar and product columns from overlapping. */
@media (min-width: 901px) {
  body.single-product {
    --central-pdp-desktop-header-height: 72px;
    --central-pdp-desktop-header-gap: 28px;
    scroll-padding-top: calc(var(--central-pdp-desktop-header-height) + var(--central-pdp-desktop-header-gap));
  }

  body.single-product .central-header,
  body.single-product .central-header.is-scrolled,
  body.single-product .central-header--scrolled {
    position: sticky !important;
    top: 0 !important;
    right: auto !important;
    left: auto !important;
    z-index: 130 !important;
    width: 100% !important;
    height: var(--central-pdp-desktop-header-height) !important;
    min-height: var(--central-pdp-desktop-header-height) !important;
    max-height: var(--central-pdp-desktop-header-height) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: rgba(255, 255, 255, .98) !important;
    color: #111 !important;
    border-bottom: 1px solid rgba(17, 17, 17, .1) !important;
    box-shadow: 0 8px 22px rgba(17, 17, 17, .06) !important;
    text-shadow: none !important;
    backdrop-filter: saturate(120%) blur(10px) !important;
    -webkit-backdrop-filter: saturate(120%) blur(10px) !important;
    transform: none !important;
  }

  body.admin-bar.single-product .central-header,
  body.admin-bar.single-product .central-header.is-scrolled,
  body.admin-bar.single-product .central-header--scrolled {
    top: 32px !important;
  }

  body.single-product .central-header::before,
  body.single-product .central-header::after {
    content: none !important;
    display: none !important;
  }

  body.single-product .central-header .central-header__inner {
    height: var(--central-pdp-desktop-header-height) !important;
    min-height: var(--central-pdp-desktop-header-height) !important;
    max-height: var(--central-pdp-desktop-header-height) !important;
    padding: 0 28px !important;
    align-items: center !important;
  }

  body.single-product .central-header .central-logo {
    position: static !important;
    grid-column: 2 !important;
    justify-self: center !important;
    align-self: center !important;
    width: auto !important;
    max-width: min(220px, 28vw) !important;
    height: var(--central-pdp-desktop-header-height) !important;
    min-height: var(--central-pdp-desktop-header-height) !important;
    transform: none !important;
    overflow: hidden !important;
  }

  body.single-product .central-header .central-logo img,
  body.single-product .central-header.is-scrolled .central-logo img,
  body.single-product .central-header--scrolled .central-logo img {
    display: block !important;
    width: auto !important;
    max-width: min(220px, 28vw) !important;
    height: auto !important;
    max-height: 44px !important;
    object-fit: contain !important;
    object-position: center center !important;
    filter: none !important;
  }

  body.single-product .central-header .central-logo__image--dark {
    display: block !important;
  }

  body.single-product .central-header .central-logo__image--light {
    display: none !important;
  }

  body.single-product .central-header .central-nav,
  body.single-product .central-header .central-actions,
  body.single-product .central-header .central-menu-toggle,
  body.single-product .central-header .central-search-toggle,
  body.single-product .central-header .central-icon-link,
  body.single-product .central-header .central-cart-link {
    color: #111 !important;
  }

  body.single-product .site-content {
    padding-top: 0 !important;
  }

  body.single-product .central-pdp__gallery,
  body.single-product .central-pdp__info {
    top: calc(var(--central-pdp-desktop-header-height) + var(--central-pdp-desktop-header-gap)) !important;
  }

  body.single-product .central-pdp__thumbs {
    max-height: calc(100svh - var(--central-pdp-desktop-header-height) - 84px) !important;
  }
}

/* Final product card alignment: fixed image, title, and price rows. */
.woocommerce ul.products,
.woocommerce-page ul.products,
ul.products {
  align-items: stretch !important;
}

.woocommerce ul.products li.product.central-product-card,
.woocommerce-page ul.products li.product.central-product-card,
ul.products li.product.central-product-card,
.central-product-card:not(.central-represent-product),
.central-represent-product {
  --central-card-image-height: var(--central-listing-image-height, var(--central-archive-image-height, var(--central-search-image-height, 258px)));
  --central-card-title-height: 36px;
  --central-card-price-height: 18px;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-rows: var(--central-card-image-height) var(--central-card-title-height) var(--central-card-price-height) !important;
  row-gap: 6px !important;
  align-items: start !important;
  align-content: start !important;
  height: 100% !important;
}

.woocommerce ul.products li.product.central-product-card > .central-product-card__image,
.woocommerce-page ul.products li.product.central-product-card > .central-product-card__image,
ul.products li.product.central-product-card > .central-product-card__image,
.central-product-card:not(.central-represent-product) > .central-product-card__image,
.central-represent-product__image {
  grid-column: 1 !important;
  grid-row: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: var(--central-card-image-height) !important;
  min-height: var(--central-card-image-height) !important;
  max-height: var(--central-card-image-height) !important;
  overflow: hidden !important;
}

.woocommerce ul.products li.product.central-product-card > .central-product-card__image img,
.woocommerce-page ul.products li.product.central-product-card > .central-product-card__image img,
ul.products li.product.central-product-card > .central-product-card__image img,
.central-product-card:not(.central-represent-product) > .central-product-card__image img,
.central-represent-product__image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.woocommerce ul.products li.product.central-product-card > .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product.central-product-card > .woocommerce-loop-product__title,
ul.products li.product.central-product-card > .woocommerce-loop-product__title,
.central-product-card:not(.central-represent-product) > .central-product-card__title,
.central-represent-product__title {
  grid-column: 1 !important;
  grid-row: 2 !important;
  align-self: start !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  width: auto !important;
  height: var(--central-card-title-height) !important;
  min-height: var(--central-card-title-height) !important;
  max-height: var(--central-card-title-height) !important;
  margin: 0 !important;
  padding: 0 10px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.woocommerce ul.products li.product.central-product-card .price-stock-row,
.woocommerce-page ul.products li.product.central-product-card .price-stock-row,
ul.products li.product.central-product-card .price-stock-row,
.central-product-card:not(.central-represent-product) .price-stock-row,
.central-represent-product .price-stock-row {
  grid-column: 1 !important;
  grid-row: 3 !important;
  align-self: start !important;
  display: flex !important;
  flex-flow: row nowrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 5px !important;
  width: auto !important;
  height: var(--central-card-price-height) !important;
  min-height: var(--central-card-price-height) !important;
  max-height: var(--central-card-price-height) !important;
  margin: 0 !important;
  padding: 0 10px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

.woocommerce ul.products li.product.central-product-card .price-stock-row > .price,
.woocommerce-page ul.products li.product.central-product-card .price-stock-row > .price,
ul.products li.product.central-product-card .price-stock-row > .price,
.central-product-card:not(.central-represent-product) .price-stock-row > .central-product-card__price,
.central-represent-product .price-stock-row > .central-represent-product__price,
.woocommerce ul.products li.product.central-product-card .price-stock-row > .stock-status,
.woocommerce-page ul.products li.product.central-product-card .price-stock-row > .stock-status,
ul.products li.product.central-product-card .price-stock-row > .stock-status,
.central-product-card:not(.central-represent-product) .price-stock-row > .central-product-card__stock,
.central-represent-product .price-stock-row > .central-represent-product__stock {
  position: static !important;
  grid-column: auto !important;
  grid-row: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  clear: none !important;
  color: #111 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  text-align: left !important;
  white-space: nowrap !important;
}

.woocommerce ul.products li.product.central-product-card .price-stock-row > .stock-status[aria-hidden="true"],
.woocommerce-page ul.products li.product.central-product-card .price-stock-row > .stock-status[aria-hidden="true"],
ul.products li.product.central-product-card .price-stock-row > .stock-status[aria-hidden="true"],
.central-product-card:not(.central-represent-product) .price-stock-row > .central-product-card__stock[aria-hidden="true"],
.central-represent-product .price-stock-row > .central-represent-product__stock[aria-hidden="true"] {
  display: none !important;
}

.woocommerce ul.products li.product.central-product-card .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product.central-product-card .woocommerce-loop-product__title,
ul.products li.product.central-product-card .woocommerce-loop-product__title,
.central-product-card:not(.central-represent-product) .central-product-card__title {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  min-height: 32px !important;
  max-height: 36px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  letter-spacing: 0 !important;
}

/* Legacy product card grid fallback. Wrapper rules above keep price and stock together. */
.central-represent-product,
.woocommerce ul.products li.product.central-product-card,
.woocommerce-page ul.products li.product.central-product-card,
ul.products li.product.central-product-card,
.central-product-card:not(.central-represent-product) {
  grid-template-columns: auto auto minmax(0, 1fr) !important;
}

.central-represent-product__image,
.woocommerce ul.products li.product.central-product-card > .central-product-card__image,
.woocommerce-page ul.products li.product.central-product-card > .central-product-card__image,
ul.products li.product.central-product-card > .central-product-card__image,
.central-product-card:not(.central-represent-product) > .central-product-card__image {
  grid-column: 1 / -1 !important;
}

.central-represent-product__title,
.woocommerce ul.products li.product.central-product-card > .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product.central-product-card > .woocommerce-loop-product__title,
ul.products li.product.central-product-card > .woocommerce-loop-product__title,
.central-product-card:not(.central-represent-product) > .central-product-card__title {
  grid-column: 1 / -1 !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  max-height: 36px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.central-represent-product__price,
.woocommerce ul.products li.product.central-product-card > .price,
.woocommerce-page ul.products li.product.central-product-card > .price,
ul.products li.product.central-product-card > .price,
.central-product-card:not(.central-represent-product) > .central-product-card__price {
  grid-column: 1 !important;
  grid-row: 3 !important;
  justify-self: start !important;
  width: auto !important;
  max-width: none !important;
  margin-right: 0 !important;
  white-space: nowrap !important;
}

.central-represent-product__stock,
.woocommerce ul.products li.product.central-product-card > .central-product-card__stock,
.woocommerce-page ul.products li.product.central-product-card > .central-product-card__stock,
ul.products li.product.central-product-card > .central-product-card__stock,
.central-product-card:not(.central-represent-product) > .central-product-card__stock {
  grid-column: 2 !important;
  grid-row: 3 !important;
  justify-self: start !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin-left: 6px !important;
  margin-right: 0 !important;
  text-align: left !important;
  white-space: nowrap !important;
}

.central-represent-product__stock[aria-hidden="true"],
.woocommerce ul.products li.product.central-product-card > .central-product-card__stock[aria-hidden="true"],
.woocommerce-page ul.products li.product.central-product-card > .central-product-card__stock[aria-hidden="true"],
ul.products li.product.central-product-card > .central-product-card__stock[aria-hidden="true"],
.central-product-card:not(.central-represent-product) > .central-product-card__stock[aria-hidden="true"] {
  display: none !important;
}


/* Product card price/stock final override: keep stock directly beside price. */
.price-stock-row,
.central-product-card__price-row,
.product-card-price-row,
.central-represent-product__price-stock,
.central-product-card__price-stock,
.woocommerce ul.products li.product.central-product-card > .central-product-card__price-stock,
.woocommerce-page ul.products li.product.central-product-card > .central-product-card__price-stock,
ul.products li.product.central-product-card > .central-product-card__price-stock,
.central-product-card:not(.central-represent-product) > .central-product-card__price-stock {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 8px !important;
  width: auto !important;
  max-width: 100% !important;
  grid-column: 1 !important;
  grid-row: 3 !important;
  justify-self: start !important;
  flex-wrap: wrap !important;
  margin: 0 10px !important;
  padding: 0 !important;
  overflow: visible !important;
  text-align: left !important;
}

.stock-status,
.central-product-card__stock,
.product-card-stock,
.central-represent-product__stock,
.price-stock-row .stock-status,
.price-stock-row .central-product-card__stock,
.price-stock-row .central-represent-product__stock,
.central-product-card__price-stock > .central-product-card__stock,
.central-represent-product__price-stock > .central-represent-product__stock {
  margin-left: 0 !important;
  margin-right: 0 !important;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  white-space: nowrap !important;
  text-align: left !important;
}

.price-stock-row > .price,
.price-stock-row > .central-product-card__price,
.price-stock-row > .central-represent-product__price,
.central-product-card__price-stock > .price,
.central-product-card__price-stock > .central-product-card__price,
.central-represent-product__price-stock > .central-represent-product__price {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  overflow: visible !important;
  white-space: nowrap !important;
  text-align: left !important;
}

.central-represent-product,
.woocommerce ul.products li.product.central-product-card,
.woocommerce-page ul.products li.product.central-product-card,
ul.products li.product.central-product-card,
.central-product-card:not(.central-represent-product) {
  grid-template-columns: minmax(0, 1fr) !important;
}

.central-represent-product__image,
.woocommerce ul.products li.product.central-product-card > .central-product-card__image,
.woocommerce-page ul.products li.product.central-product-card > .central-product-card__image,
ul.products li.product.central-product-card > .central-product-card__image,
.central-product-card:not(.central-represent-product) > .central-product-card__image,
.central-represent-product__title,
.woocommerce ul.products li.product.central-product-card > .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product.central-product-card > .woocommerce-loop-product__title,
ul.products li.product.central-product-card > .woocommerce-loop-product__title,
.central-product-card:not(.central-represent-product) > .central-product-card__title {
  grid-column: 1 !important;
}

.price-stock-row .stock-status[aria-hidden="true"],
.price-stock-row .central-product-card__stock[aria-hidden="true"],
.price-stock-row .central-represent-product__stock[aria-hidden="true"] {
  display: none !important;
}

/* Final product card price/stock row override. */
.woocommerce ul.products li.product.central-product-card .price-stock-row,
.woocommerce-page ul.products li.product.central-product-card .price-stock-row,
ul.products li.product.central-product-card .price-stock-row,
.central-product-card:not(.central-represent-product) .price-stock-row,
.central-represent-product .price-stock-row {
  grid-column: 1 !important;
  grid-row: 3 !important;
  display: flex !important;
  flex-flow: row nowrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 5px !important;
  width: auto !important;
  max-width: calc(100% - 20px) !important;
  min-width: 0 !important;
  margin: 0 10px !important;
  padding: 0 !important;
  overflow: hidden !important;
  text-align: left !important;
  white-space: nowrap !important;
}

.woocommerce ul.products li.product.central-product-card .price-stock-row > .price,
.woocommerce-page ul.products li.product.central-product-card .price-stock-row > .price,
ul.products li.product.central-product-card .price-stock-row > .price,
.central-product-card:not(.central-represent-product) .price-stock-row > .central-product-card__price,
.central-represent-product .price-stock-row > .central-represent-product__price {
  position: static !important;
  grid-column: auto !important;
  grid-row: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 1 auto !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  clear: none !important;
  color: #111 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  text-align: left !important;
  white-space: nowrap !important;
}

.woocommerce ul.products li.product.central-product-card .price-stock-row > .stock-status,
.woocommerce-page ul.products li.product.central-product-card .price-stock-row > .stock-status,
ul.products li.product.central-product-card .price-stock-row > .stock-status,
.central-product-card:not(.central-represent-product) .price-stock-row > .central-product-card__stock,
.central-represent-product .price-stock-row > .central-represent-product__stock {
  position: static !important;
  grid-column: auto !important;
  grid-row: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  color: #111 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  text-align: left !important;
  white-space: nowrap !important;
}

.woocommerce ul.products li.product.central-product-card .price-stock-row > .stock-status[aria-hidden="true"],
.woocommerce-page ul.products li.product.central-product-card .price-stock-row > .stock-status[aria-hidden="true"],
ul.products li.product.central-product-card .price-stock-row > .stock-status[aria-hidden="true"],
.central-product-card:not(.central-represent-product) .price-stock-row > .central-product-card__stock[aria-hidden="true"],
.central-represent-product .price-stock-row > .central-represent-product__stock[aria-hidden="true"] {
  display: none !important;
}

/* Final product card alignment: fixed image, title, and price rows. */
.woocommerce ul.products,
.woocommerce-page ul.products,
ul.products {
  align-items: stretch !important;
}

.woocommerce ul.products li.product.central-product-card,
.woocommerce-page ul.products li.product.central-product-card,
ul.products li.product.central-product-card,
.central-product-card:not(.central-represent-product),
.central-represent-product {
  --central-card-image-height: var(--central-listing-image-height, var(--central-archive-image-height, var(--central-search-image-height, 258px)));
  --central-card-title-height: 36px;
  --central-card-price-height: 18px;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-rows: var(--central-card-image-height) var(--central-card-title-height) var(--central-card-price-height) !important;
  row-gap: 8px !important;
  align-items: start !important;
  align-content: start !important;
  height: 100% !important;
}

.woocommerce ul.products li.product.central-product-card > .central-product-card__image,
.woocommerce-page ul.products li.product.central-product-card > .central-product-card__image,
ul.products li.product.central-product-card > .central-product-card__image,
.central-product-card:not(.central-represent-product) > .central-product-card__image,
.central-represent-product__image {
  grid-column: 1 !important;
  grid-row: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: var(--central-card-image-height) !important;
  min-height: var(--central-card-image-height) !important;
  max-height: var(--central-card-image-height) !important;
  overflow: hidden !important;
}

.woocommerce ul.products li.product.central-product-card > .central-product-card__image img,
.woocommerce-page ul.products li.product.central-product-card > .central-product-card__image img,
ul.products li.product.central-product-card > .central-product-card__image img,
.central-product-card:not(.central-represent-product) > .central-product-card__image img,
.central-represent-product__image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.woocommerce ul.products li.product.central-product-card > .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product.central-product-card > .woocommerce-loop-product__title,
ul.products li.product.central-product-card > .woocommerce-loop-product__title,
.central-product-card:not(.central-represent-product) > .central-product-card__title,
.central-represent-product__title {
  grid-column: 1 !important;
  grid-row: 2 !important;
  align-self: start !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  width: auto !important;
  height: var(--central-card-title-height) !important;
  min-height: var(--central-card-title-height) !important;
  max-height: var(--central-card-title-height) !important;
  margin: 0 !important;
  padding: 0 10px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.woocommerce ul.products li.product.central-product-card .price-stock-row,
.woocommerce-page ul.products li.product.central-product-card .price-stock-row,
ul.products li.product.central-product-card .price-stock-row,
.central-product-card:not(.central-represent-product) .price-stock-row,
.central-represent-product .price-stock-row {
  grid-column: 1 !important;
  grid-row: 3 !important;
  align-self: start !important;
  display: flex !important;
  flex-flow: row nowrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 5px !important;
  width: auto !important;
  height: var(--central-card-price-height) !important;
  min-height: var(--central-card-price-height) !important;
  max-height: var(--central-card-price-height) !important;
  margin: 0 !important;
  padding: 0 10px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

.woocommerce ul.products li.product.central-product-card .price-stock-row > .price,
.woocommerce-page ul.products li.product.central-product-card .price-stock-row > .price,
ul.products li.product.central-product-card .price-stock-row > .price,
.central-product-card:not(.central-represent-product) .price-stock-row > .central-product-card__price,
.central-represent-product .price-stock-row > .central-represent-product__price,
.woocommerce ul.products li.product.central-product-card .price-stock-row > .stock-status,
.woocommerce-page ul.products li.product.central-product-card .price-stock-row > .stock-status,
ul.products li.product.central-product-card .price-stock-row > .stock-status,
.central-product-card:not(.central-represent-product) .price-stock-row > .central-product-card__stock,
.central-represent-product .price-stock-row > .central-represent-product__stock {
  position: static !important;
  grid-column: auto !important;
  grid-row: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  clear: none !important;
  color: #111 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  text-align: left !important;
  white-space: nowrap !important;
}

.woocommerce ul.products li.product.central-product-card .price-stock-row > .stock-status[aria-hidden="true"],
.woocommerce-page ul.products li.product.central-product-card .price-stock-row > .stock-status[aria-hidden="true"],
ul.products li.product.central-product-card .price-stock-row > .stock-status[aria-hidden="true"],
.central-product-card:not(.central-represent-product) .price-stock-row > .central-product-card__stock[aria-hidden="true"],
.central-represent-product .price-stock-row > .central-represent-product__stock[aria-hidden="true"] {
  display: none !important;
}

/* iPhone/Android mobile hero viewport fix. Keep last so it beats old 100svh calc rules. */
@media (max-width: 767px) {
  .home .central-hero-slider,
  .blog .central-hero-slider {
    --central-mobile-hero-height: var(--mobile-vh, 100svh);
    height: 100vh !important;
    height: 100svh !important;
    height: var(--central-mobile-hero-height) !important;
    min-height: 100vh !important;
    min-height: 100svh !important;
    min-height: var(--central-mobile-hero-height) !important;
    max-height: none !important;
    margin: 0 !important;
    overflow: hidden !important;
    transform: none !important;
    scroll-snap-align: none !important;
  }

  @supports (height: 100dvh) {
    .home .central-hero-slider,
    .blog .central-hero-slider {
      --central-mobile-hero-height: var(--mobile-vh, 100dvh);
    }
  }

  .home .central-hero-slider__viewport,
  .home .central-hero-slider__track,
  .home .central-hero-slide,
  .home .central-hero-slide picture,
  .home .central-hero-slide img,
  .blog .central-hero-slider__viewport,
  .blog .central-hero-slider__track,
  .blog .central-hero-slide,
  .blog .central-hero-slide picture,
  .blog .central-hero-slide img {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: none !important;
  }

  .home .central-hero-slide img,
  .blog .central-hero-slide img {
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
  }

  .home .central-hero-slide__content,
  .blog .central-hero-slide__content {
    left: clamp(24px, 6vw, 34px) !important;
    right: 22px !important;
    bottom: max(68px, calc(env(safe-area-inset-bottom, 0px) + 58px)) !important;
    max-width: min(340px, calc(100vw - 46px)) !important;
  }
}

/* Final desktop header override: one shared header after all legacy page rules. */
@media (min-width: 901px) {
  body {
    --central-header: 72px;
    --central-desktop-header-height: 72px;
    --central-desktop-content-gap: 28px;
    scroll-padding-top: calc(var(--central-desktop-header-height) + var(--central-desktop-content-gap));
  }

  .central-header,
  .central-header.is-scrolled,
  .central-header--scrolled,
  .central-header--home-overlay,
  .central-header--home-overlay:not(.is-scrolled),
  .central-header--home-overlay.is-scrolled,
  .home .central-header--home-overlay,
  .home .central-header--home-overlay:not(.is-scrolled),
  .home .central-header--home-overlay.is-scrolled,
  .blog .central-header--home-overlay,
  .blog .central-header--home-overlay:not(.is-scrolled),
  .blog .central-header--home-overlay.is-scrolled,
  body.single-product .central-header,
  body.single-product .central-header.is-scrolled,
  body.woocommerce-cart .central-header,
  body.woocommerce-checkout .central-header,
  body.woocommerce-account .central-header,
  body.woocommerce-shop .central-header,
  body.post-type-archive-product .central-header,
  body.tax-product_cat .central-header,
  body.tax-product_tag .central-header,
  body.search .central-header,
  body.search-results .central-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 130 !important;
    width: 100% !important;
    height: var(--central-desktop-header-height) !important;
    min-height: var(--central-desktop-header-height) !important;
    max-height: var(--central-desktop-header-height) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: rgba(255, 255, 255, .98) !important;
    color: #111 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(17, 17, 17, .1) !important;
    box-shadow: 0 8px 22px rgba(17, 17, 17, .06) !important;
    text-shadow: none !important;
    backdrop-filter: saturate(120%) blur(10px) !important;
    -webkit-backdrop-filter: saturate(120%) blur(10px) !important;
    transform: none !important;
  }

  body.admin-bar .central-header,
  body.admin-bar .central-header.is-scrolled,
  body.admin-bar .central-header--home-overlay,
  body.admin-bar .central-header--home-overlay.is-scrolled {
    top: 32px !important;
  }

  .central-header::before,
  .central-header::after,
  .central-header--home-overlay::before,
  .central-header--home-overlay::after {
    content: none !important;
    display: none !important;
  }

  .central-header .central-header__inner,
  .central-header--home-overlay .central-header__inner,
  .home .central-header--home-overlay .central-header__inner,
  .blog .central-header--home-overlay .central-header__inner,
  body.single-product .central-header .central-header__inner,
  body.woocommerce-cart .central-header .central-header__inner,
  body.woocommerce-checkout .central-header .central-header__inner,
  body.woocommerce-account .central-header .central-header__inner,
  body.woocommerce-shop .central-header .central-header__inner,
  body.post-type-archive-product .central-header .central-header__inner,
  body.tax-product_cat .central-header .central-header__inner,
  body.tax-product_tag .central-header .central-header__inner,
  body.search .central-header .central-header__inner,
  body.search-results .central-header .central-header__inner {
    display: grid !important;
    grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr) !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
    height: var(--central-desktop-header-height) !important;
    min-height: var(--central-desktop-header-height) !important;
    max-height: var(--central-desktop-header-height) !important;
    padding: 0 28px !important;
    column-gap: 24px !important;
  }

  .central-header .central-menu-toggle {
    display: none !important;
  }

  .central-header .central-nav {
    display: block !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    min-width: 0 !important;
  }

  .central-header .central-nav ul,
  .central-header .central-nav .menu {
    display: flex !important;
    align-items: center !important;
    gap: clamp(18px, 2vw, 30px) !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .central-header .central-nav a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: var(--central-desktop-header-height) !important;
    padding: 0 !important;
    color: #111 !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    text-shadow: none !important;
    white-space: nowrap !important;
  }

  .central-header .central-logo,
  .central-header--home-overlay .central-logo,
  body.single-product .central-header .central-logo,
  body.woocommerce-cart .central-header .central-logo,
  body.woocommerce-checkout .central-header .central-logo,
  body.woocommerce-account .central-header .central-logo,
  body.woocommerce-shop .central-header .central-logo,
  body.post-type-archive-product .central-header .central-logo,
  body.tax-product_cat .central-header .central-logo,
  body.tax-product_tag .central-header .central-logo,
  body.search .central-header .central-logo,
  body.search-results .central-header .central-logo {
    position: static !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    align-self: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    max-width: min(var(--central-logo-desktop-width, 150px), 220px) !important;
    height: var(--central-desktop-header-height) !important;
    min-height: var(--central-desktop-header-height) !important;
    margin: 0 !important;
    transform: none !important;
    overflow: hidden !important;
  }

  .central-header .central-logo img,
  .central-header.is-scrolled .central-logo img,
  .central-header--home-overlay .central-logo img,
  .central-header--home-overlay:not(.is-scrolled) .central-logo img,
  .central-header--home-overlay.is-scrolled .central-logo img,
  .home .central-header--home-overlay .central-logo img,
  .home .central-header--home-overlay:not(.is-scrolled) .central-logo img,
  .home .central-header--home-overlay.is-scrolled .central-logo img,
  .blog .central-header--home-overlay .central-logo img,
  .blog .central-header--home-overlay:not(.is-scrolled) .central-logo img,
  .blog .central-header--home-overlay.is-scrolled .central-logo img,
  body.single-product .central-header .central-logo img,
  body.woocommerce-cart .central-header .central-logo img,
  body.woocommerce-checkout .central-header .central-logo img,
  body.woocommerce-account .central-header .central-logo img,
  body.woocommerce-shop .central-header .central-logo img,
  body.post-type-archive-product .central-header .central-logo img,
  body.tax-product_cat .central-header .central-logo img,
  body.tax-product_tag .central-header .central-logo img,
  body.search .central-header .central-logo img,
  body.search-results .central-header .central-logo img {
    display: block !important;
    width: var(--central-logo-desktop-width, 150px) !important;
    max-width: min(var(--central-logo-desktop-width, 150px), 220px) !important;
    height: auto !important;
    max-height: 44px !important;
    object-fit: contain !important;
    object-position: center center !important;
    filter: none !important;
  }

  .central-header .central-logo__image--dark,
  .central-header--home-overlay .central-logo__image--dark {
    display: block !important;
    filter: none !important;
  }

  .central-header .central-logo__image--light,
  .central-header--home-overlay .central-logo__image--light {
    display: none !important;
  }

  .central-header .central-actions,
  .central-header--home-overlay .central-actions,
  body.single-product .central-header .central-actions,
  body.woocommerce-cart .central-header .central-actions,
  body.woocommerce-checkout .central-header .central-actions,
  body.woocommerce-account .central-header .central-actions,
  body.woocommerce-shop .central-header .central-actions,
  body.post-type-archive-product .central-header .central-actions,
  body.tax-product_cat .central-header .central-actions,
  body.tax-product_tag .central-header .central-actions,
  body.search .central-header .central-actions,
  body.search-results .central-header .central-actions {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 18px !important;
    width: auto !important;
    min-width: 0 !important;
    color: #111 !important;
  }

  .central-header .central-search-toggle,
  .central-header .central-icon-link,
  .central-header .central-cart-link {
    display: inline-grid !important;
    place-items: center !important;
    width: 44px !important;
    height: 44px !important;
    color: #111 !important;
  }

  .central-header .central-search-toggle--desktop {
    display: inline-grid !important;
  }

  .central-header .central-search-toggle--mobile {
    display: none !important;
  }

  .central-header .central-search-toggle svg,
  .central-header .central-icon-link svg,
  .central-header .central-cart-link svg {
    width: 21px !important;
    height: 21px !important;
    stroke: currentColor !important;
    stroke-width: 1.55 !important;
    vector-effect: non-scaling-stroke;
  }

  .central-header .central-count {
    background: #111 !important;
    color: #fff !important;
  }

  body.single-product .central-pdp__gallery,
  body.single-product .central-pdp__info,
  body.woocommerce-cart #order_review,
  body.woocommerce-checkout #order_review {
    top: calc(var(--central-desktop-header-height) + var(--central-desktop-content-gap)) !important;
  }

  body.single-product .central-pdp__thumbs {
    max-height: calc(100svh - var(--central-desktop-header-height) - 84px) !important;
  }
}

/* Final checkout flow override: keep after every legacy checkout/header rule. */
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 410px) !important;
  gap: 16px 28px !important;
  align-items: start !important;
  width: min(100% - 32px, 1120px) !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout,
body.woocommerce-checkout:not(.woocommerce-order-received) #order_review,
body.woocommerce-checkout:not(.woocommerce-order-received) #payment {
  display: contents !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details {
  grid-column: 1 !important;
  grid-row: 2 / span 6 !important;
  display: grid !important;
  gap: 14px !important;
  padding: 20px !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-1,
body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-2 {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-2 {
  padding-top: 14px !important;
  border-top: 1px solid #eeeeee !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #order_review_heading {
  grid-column: 2 !important;
  grid-row: 2 !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
  border: 0 !important;
  font-size: 17px !important;
  line-height: 1.2 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout-review-order-table {
  grid-column: 2 !important;
  grid-row: 3 !important;
  display: table !important;
  width: 100% !important;
  margin: 0 !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 12px !important;
  background: #fff !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods {
  grid-column: 2 !important;
  grid-row: 4 !important;
  display: grid !important;
  gap: 9px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 14px !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li.wc_payment_method {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  gap: 10px !important;
  padding: 12px !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 10px !important;
  background: #fafafa !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li.wc_payment_method:has(input:checked) {
  border-color: #111 !important;
  background: #fff !important;
  box-shadow: 0 0 0 1px #111 inset !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle {
  grid-column: 2 !important;
  grid-row: 5 !important;
  width: 100% !important;
  margin: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle .woocommerce-info {
  margin: 0 !important;
  padding: 10px 12px !important;
  border: 1px dashed #d8d8d8 !important;
  border-radius: 10px !important;
  background: #fbfbfb !important;
  color: #666 !important;
  font-size: 12px !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle .woocommerce-info::before {
  display: none !important;
  content: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon {
  grid-column: 2 !important;
  grid-row: 6 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 9px !important;
  width: 100% !important;
  max-width: none !important;
  margin: -6px 0 0 !important;
  padding: 12px !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 10px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon[style*="display:none"],
body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon[style*="display: none"] {
  display: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment .place-order {
  grid-column: 2 !important;
  grid-row: 7 !important;
  display: grid !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #place_order {
  width: 100% !important;
  min-height: 56px !important;
  border-radius: 10px !important;
  background: #111 !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 850 !important;
  box-shadow: 0 12px 24px rgba(17, 17, 17, .16) !important;
}

@media (max-width: 900px) {
  body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce {
    grid-template-columns: minmax(0, 1fr) !important;
    width: min(100% - 18px, 620px) !important;
    gap: 12px !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details {
    grid-column: 1 !important;
    grid-row: 2 !important;
    padding: 14px !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-1 {
    order: 1 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #customer_details .col-2 {
    order: 2 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #order_review_heading {
    grid-column: 1 !important;
    grid-row: 3 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout-review-order-table {
    grid-column: 1 !important;
    grid-row: 4 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods {
    grid-column: 1 !important;
    grid-row: 5 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle {
    grid-column: 1 !important;
    grid-row: 6 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon {
    grid-column: 1 !important;
    grid-row: 7 !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 8px !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon .form-row-first,
  body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon .form-row-last {
    grid-column: 1 !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon button[name="apply_coupon"],
  body.woocommerce-checkout:not(.woocommerce-order-received) form.checkout_coupon .button {
    width: 100% !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #payment .place-order {
    grid-column: 1 !important;
    grid-row: 8 !important;
  }
}

/* Final payment cleanup: compact payment rows and no mobile summary dropdown. */
body.woocommerce-checkout:not(.woocommerce-order-received) .central-order-summary-toggle {
  display: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .central-order-summary-collapsible,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout-review-order-table[hidden] {
  display: table !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout-review-order-table tfoot tr.shipping td {
  width: 60% !important;
  text-align: right !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #shipping_method {
  display: inline-grid !important;
  justify-content: end !important;
  justify-items: end !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 0 0 auto !important;
  padding: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #shipping_method li {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  width: auto !important;
  min-width: 126px !important;
  max-width: none !important;
  margin: 0 0 0 auto !important;
  padding: 11px 16px !important;
  text-align: center !important;
  white-space: nowrap !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #shipping_method li label {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  font-size: 12.5px !important;
  line-height: 1.1 !important;
  text-align: center !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods {
  display: grid !important;
  gap: 7px !important;
  margin: 0 !important;
  padding: 10px !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 10px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li.wc_payment_method {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 9px !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 9px 10px !important;
  border: 1px solid #e6e6e6 !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: none !important;
  transform: none !important;
  overflow: hidden !important;
  transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li.wc_payment_method:hover {
  border-color: #cfcfcf !important;
  background: #fff !important;
  box-shadow: none !important;
  transform: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li.wc_payment_method:has(input:checked) {
  border-color: #111 !important;
  background: #fdfdfd !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li.wc_payment_method input[type="radio"] {
  grid-column: 1 !important;
  grid-row: 1 !important;
  align-self: center !important;
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li.wc_payment_method > label {
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  min-width: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #151515 !important;
  font-size: 13px !important;
  font-weight: 750 !important;
  line-height: 1.25 !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li.wc_payment_method img {
  max-height: 18px !important;
  width: auto !important;
  margin-left: auto !important;
  object-fit: contain !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment .central-payment-mini-icons {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 3px !important;
  max-width: 150px !important;
  margin-left: auto !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment .central-payment-mini-icons span {
  min-width: 24px !important;
  padding: 2px 4px !important;
  border-radius: 4px !important;
  font-size: 8px !important;
  letter-spacing: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment div.payment_box {
  grid-column: 1 / -1 !important;
  display: block !important;
  margin: 3px 0 0 !important;
  padding: 7px 8px 0 27px !important;
  border: 0 !important;
  border-top: 1px solid #ededed !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #666 !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
  box-shadow: none !important;
  transform: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li.wc_payment_method.is-payment-accordion-ready > div.payment_box {
  height: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: height .32s ease-out, opacity .24s ease-out, margin .32s ease-out, padding .32s ease-out, border-color .24s ease-out, visibility 0s linear .32s !important;
  will-change: height, opacity !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li.wc_payment_method.is-payment-accordion-ready.is-selected > div.payment_box,
body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li.wc_payment_method.is-payment-accordion-ready.is-payment-opening > div.payment_box {
  margin-top: 3px !important;
  padding-top: 7px !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: height .32s ease-out, opacity .24s ease-out, margin .32s ease-out, padding .32s ease-out, border-color .24s ease-out, visibility 0s linear 0s !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li.wc_payment_method.is-payment-closing > div.payment_box {
  opacity: 0 !important;
  visibility: visible !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment div.payment_box::before {
  display: none !important;
  content: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment div.payment_box p {
  margin: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #payment .place-order {
  margin-top: 2px !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) #place_order {
  min-height: 54px !important;
  border-radius: 9px !important;
  box-shadow: 0 10px 20px rgba(17, 17, 17, .16) !important;
}

@media (max-width: 900px) {
  body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods {
    gap: 7px !important;
    padding: 9px !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #payment ul.payment_methods li.wc_payment_method {
    min-height: 40px !important;
    padding: 9px !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received) #payment div.payment_box {
    padding-left: 25px !important;
  }
}

/* Desktop homepage header: match the mobile transparent hero overlay behavior. */
@media (min-width: 901px) {
  body.home .central-header--home-overlay,
  body.blog .central-header--home-overlay {
    position: sticky !important;
    top: 0 !important;
    z-index: 130 !important;
    height: var(--central-desktop-header-height, 72px) !important;
    min-height: var(--central-desktop-header-height, 72px) !important;
    max-height: var(--central-desktop-header-height, 72px) !important;
    margin: 0 0 calc(var(--central-desktop-header-height, 72px) * -1) !important;
    padding: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    color: #fff !important;
    border: 0 !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: none !important;
    transition: background .24s ease, color .24s ease, border-color .24s ease, box-shadow .24s ease !important;
  }

  body.home .central-header--home-overlay.is-scrolled,
  body.blog .central-header--home-overlay.is-scrolled {
    background: #fff !important;
    color: #111 !important;
    border-bottom: 1px solid rgba(17, 17, 17, .1) !important;
    box-shadow: 0 8px 22px rgba(17, 17, 17, .06) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.home .central-header--home-overlay:not(.is-scrolled) .central-nav a,
  body.blog .central-header--home-overlay:not(.is-scrolled) .central-nav a,
  body.home .central-header--home-overlay:not(.is-scrolled) .central-actions,
  body.blog .central-header--home-overlay:not(.is-scrolled) .central-actions,
  body.home .central-header--home-overlay:not(.is-scrolled) .central-search-toggle,
  body.blog .central-header--home-overlay:not(.is-scrolled) .central-search-toggle,
  body.home .central-header--home-overlay:not(.is-scrolled) .central-icon-link,
  body.blog .central-header--home-overlay:not(.is-scrolled) .central-icon-link,
  body.home .central-header--home-overlay:not(.is-scrolled) .central-cart-link,
  body.blog .central-header--home-overlay:not(.is-scrolled) .central-cart-link {
    color: #fff !important;
  }

  body.home .central-header--home-overlay.is-scrolled .central-nav a,
  body.blog .central-header--home-overlay.is-scrolled .central-nav a,
  body.home .central-header--home-overlay.is-scrolled .central-actions,
  body.blog .central-header--home-overlay.is-scrolled .central-actions,
  body.home .central-header--home-overlay.is-scrolled .central-search-toggle,
  body.blog .central-header--home-overlay.is-scrolled .central-search-toggle,
  body.home .central-header--home-overlay.is-scrolled .central-icon-link,
  body.blog .central-header--home-overlay.is-scrolled .central-icon-link,
  body.home .central-header--home-overlay.is-scrolled .central-cart-link,
  body.blog .central-header--home-overlay.is-scrolled .central-cart-link {
    color: #111 !important;
  }

  body.home .central-header--home-overlay:not(.is-scrolled) .central-logo__image--dark,
  body.blog .central-header--home-overlay:not(.is-scrolled) .central-logo__image--dark {
    display: none !important;
  }

  body.home .central-header--home-overlay:not(.is-scrolled) .central-logo__image--light,
  body.blog .central-header--home-overlay:not(.is-scrolled) .central-logo__image--light {
    display: block !important;
    filter: none !important;
  }

  body.home .central-header--home-overlay.is-scrolled .central-logo__image--dark,
  body.blog .central-header--home-overlay.is-scrolled .central-logo__image--dark {
    display: block !important;
    filter: none !important;
  }

  body.home .central-header--home-overlay.is-scrolled .central-logo__image--light,
  body.blog .central-header--home-overlay.is-scrolled .central-logo__image--light {
    display: none !important;
  }

  body.home .central-header--home-overlay:not(.is-scrolled) .central-count,
  body.blog .central-header--home-overlay:not(.is-scrolled) .central-count {
    background: #fff !important;
    color: #111 !important;
  }

  body.home .central-header--home-overlay.is-scrolled .central-count,
  body.blog .central-header--home-overlay.is-scrolled .central-count {
    background: #111 !important;
    color: #fff !important;
  }

  body.admin-bar.home .central-header--home-overlay,
  body.admin-bar.blog .central-header--home-overlay {
    top: 32px !important;
  }
}

/* Global product card layout contract. Shared by homepage, archives, search, categories, related, upsells, cross-sells, and product carousels. */
.woocommerce ul.products,
.woocommerce-page ul.products,
ul.products,
.central-represent-products__grid {
  align-items: stretch !important;
}

.woocommerce ul.products li.product.central-product-card,
.woocommerce-page ul.products li.product.central-product-card,
ul.products li.product.central-product-card,
.central-product-card:not(.central-pdp),
.central-represent-product {
  --central-card-image-height: var(--central-listing-image-height, clamp(250px, 26vw, 390px));
  --central-card-title-height: 2.5em;
  --central-card-price-height: 20px;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-rows: var(--central-card-image-height) var(--central-card-title-height) var(--central-card-price-height) !important;
  row-gap: 8px !important;
  align-items: start !important;
  align-content: start !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
}

.woocommerce ul.products li.product.central-product-card > .central-product-card__image,
.woocommerce-page ul.products li.product.central-product-card > .central-product-card__image,
ul.products li.product.central-product-card > .central-product-card__image,
.central-product-card:not(.central-pdp) > .central-product-card__image,
.central-represent-product__image {
  grid-column: 1 !important;
  grid-row: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: var(--central-card-image-height) !important;
  min-height: var(--central-card-image-height) !important;
  max-height: var(--central-card-image-height) !important;
  margin: 0 !important;
  padding: var(--central-listing-image-padding, 0 12px) !important;
  overflow: hidden !important;
  background: #fff !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.woocommerce ul.products li.product.central-product-card > .central-product-card__image img,
.woocommerce-page ul.products li.product.central-product-card > .central-product-card__image img,
ul.products li.product.central-product-card > .central-product-card__image img,
.central-product-card:not(.central-pdp) > .central-product-card__image img,
.central-represent-product__image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  mix-blend-mode: normal !important;
}

.woocommerce ul.products li.product.central-product-card > .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product.central-product-card > .woocommerce-loop-product__title,
ul.products li.product.central-product-card > .woocommerce-loop-product__title,
.central-product-card:not(.central-pdp) > .central-product-card__title,
.central-represent-product__title {
  grid-column: 1 !important;
  grid-row: 2 !important;
  align-self: start !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  width: calc(100% - 20px) !important;
  height: var(--central-card-title-height) !important;
  min-height: var(--central-card-title-height) !important;
  max-height: var(--central-card-title-height) !important;
  margin: 0 10px !important;
  padding: 0 !important;
  overflow: hidden !important;
  color: #050505 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  text-overflow: ellipsis !important;
}

.woocommerce ul.products li.product.central-product-card > .woocommerce-loop-product__title a,
.woocommerce-page ul.products li.product.central-product-card > .woocommerce-loop-product__title a,
ul.products li.product.central-product-card > .woocommerce-loop-product__title a,
.central-product-card:not(.central-pdp) > .central-product-card__title a,
.central-represent-product__title a {
  color: inherit !important;
  text-decoration: none !important;
}

.woocommerce ul.products li.product.central-product-card .price-stock-row,
.woocommerce-page ul.products li.product.central-product-card .price-stock-row,
ul.products li.product.central-product-card .price-stock-row,
.central-product-card:not(.central-pdp) .price-stock-row,
.central-represent-product .price-stock-row {
  grid-column: 1 !important;
  grid-row: 3 !important;
  align-self: start !important;
  justify-self: start !important;
  display: flex !important;
  flex-flow: row nowrap !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
  gap: 6px !important;
  width: calc(100% - 20px) !important;
  height: var(--central-card-price-height) !important;
  min-height: var(--central-card-price-height) !important;
  max-height: var(--central-card-price-height) !important;
  margin: 0 10px !important;
  padding: 0 !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-align: left !important;
}

.woocommerce ul.products li.product.central-product-card .price-stock-row > .price,
.woocommerce-page ul.products li.product.central-product-card .price-stock-row > .price,
ul.products li.product.central-product-card .price-stock-row > .price,
.central-product-card:not(.central-pdp) .price-stock-row > .central-product-card__price,
.central-represent-product .price-stock-row > .central-represent-product__price,
.woocommerce ul.products li.product.central-product-card .price-stock-row > .stock-status,
.woocommerce-page ul.products li.product.central-product-card .price-stock-row > .stock-status,
ul.products li.product.central-product-card .price-stock-row > .stock-status,
.central-product-card:not(.central-pdp) .price-stock-row > .central-product-card__stock,
.central-represent-product .price-stock-row > .central-represent-product__stock {
  position: static !important;
  display: inline-flex !important;
  align-items: baseline !important;
  flex: 0 1 auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  color: #111 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  text-align: left !important;
  white-space: nowrap !important;
}

.price-stock-row .amount,
.price-stock-row del,
.price-stock-row ins,
.price-stock-row bdi {
  display: inline !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  line-height: inherit !important;
  vertical-align: baseline !important;
  white-space: nowrap !important;
}

.price-stock-row del {
  opacity: .55 !important;
}

.price-stock-row ins {
  text-decoration: none !important;
}

.woocommerce ul.products li.product.central-product-card .price-stock-row > .stock-status,
.woocommerce-page ul.products li.product.central-product-card .price-stock-row > .stock-status,
ul.products li.product.central-product-card .price-stock-row > .stock-status,
.central-product-card:not(.central-pdp) .price-stock-row > .central-product-card__stock,
.central-represent-product .price-stock-row > .central-represent-product__stock {
  flex: 0 0 auto !important;
  color: #666 !important;
  font-size: 12px !important;
}

.woocommerce ul.products li.product.central-product-card .price-stock-row > .stock-status[aria-hidden="true"],
.woocommerce-page ul.products li.product.central-product-card .price-stock-row > .stock-status[aria-hidden="true"],
ul.products li.product.central-product-card .price-stock-row > .stock-status[aria-hidden="true"],
.central-product-card:not(.central-pdp) .price-stock-row > .central-product-card__stock[aria-hidden="true"],
.central-represent-product .price-stock-row > .central-represent-product__stock[aria-hidden="true"] {
  display: none !important;
}

.central-product-card:not(.central-pdp) .central-wishlist-button,
.central-product-card:not(.central-pdp) .central-product-fulfillment,
.central-product-card:not(.central-pdp) .central-product-stock-badge {
  z-index: 2;
}

@media (min-width: 768px) {
  .central-represent-products__grid .central-home-product-card {
    --central-listing-image-height: clamp(360px, 29vw, 470px);
    --central-listing-image-padding: 0 18px;
  }
}

@media (max-width: 767px) {
  .woocommerce ul.products li.product.central-product-card,
  .woocommerce-page ul.products li.product.central-product-card,
  ul.products li.product.central-product-card,
  .central-product-card:not(.central-pdp),
  .central-represent-product {
    --central-card-image-height: var(--central-listing-image-height, 214px);
    --central-card-title-height: 2.44em;
    --central-card-price-height: 20px;
    row-gap: 7px !important;
  }

  .woocommerce ul.products li.product.central-product-card > .woocommerce-loop-product__title,
  .woocommerce-page ul.products li.product.central-product-card > .woocommerce-loop-product__title,
  ul.products li.product.central-product-card > .woocommerce-loop-product__title,
  .central-product-card:not(.central-pdp) > .central-product-card__title,
  .central-represent-product__title {
    font-size: 13px !important;
    line-height: 1.22 !important;
  }

  .central-home .central-represent-products__grid .central-home-product-card {
    --central-listing-image-height: 214px;
    --central-listing-image-padding: 0 8px;
    flex: 0 0 50% !important;
    width: 50% !important;
    min-width: 50% !important;
    max-width: 50% !important;
    padding-bottom: 14px !important;
    scroll-snap-align: start;
  }
}

/* First homepage section spacing after hero. */
.central-home > .central-hero-slider:first-child + .central-represent-products {
  padding-top: clamp(42px, 5.5vw, 58px) !important;
}

@media (max-width: 767px) {
  .central-home > .central-hero-slider:first-child + .central-represent-products {
    padding-top: clamp(32px, 10vw, 48px) !important;
  }
}

/* Final desktop homepage overlay header contract. */
@media (min-width: 901px) {
  body.home .central-header--home-overlay,
  body.blog .central-header--home-overlay,
  body.home .central-header--home-overlay:not(.is-scrolled),
  body.blog .central-header--home-overlay:not(.is-scrolled) {
    position: sticky !important;
    top: 0 !important;
    right: auto !important;
    left: auto !important;
    z-index: 130 !important;
    width: 100% !important;
    height: var(--central-desktop-header-height, 72px) !important;
    min-height: var(--central-desktop-header-height, 72px) !important;
    max-height: var(--central-desktop-header-height, 72px) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: #fff !important;
    border: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    transform: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: background-color .24s ease, color .24s ease, border-color .24s ease, box-shadow .24s ease !important;
  }

  body.home .central-header--home-overlay .central-header__inner,
  body.blog .central-header--home-overlay .central-header__inner {
    height: var(--central-desktop-header-height, 72px) !important;
    min-height: var(--central-desktop-header-height, 72px) !important;
    max-height: var(--central-desktop-header-height, 72px) !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  body.home .central-header--home-overlay ~ .site-content .central-hero-slider:first-child,
  body.blog .central-header--home-overlay ~ .site-content .central-hero-slider:first-child,
  body.home .central-header--home-overlay ~ .site-content .central-home > .central-hero-slider:first-child,
  body.blog .central-header--home-overlay ~ .site-content .central-home > .central-hero-slider:first-child {
    margin-top: calc(var(--central-desktop-header-height, 72px) * -1) !important;
  }

  body.home .central-header--home-overlay.is-scrolled,
  body.blog .central-header--home-overlay.is-scrolled {
    background: #fff !important;
    background-color: #fff !important;
    background-image: none !important;
    color: #111 !important;
    border-bottom: 1px solid rgba(17, 17, 17, .1) !important;
    box-shadow: 0 8px 22px rgba(17, 17, 17, .06) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.home .central-header--home-overlay:not(.is-scrolled) .central-nav,
  body.blog .central-header--home-overlay:not(.is-scrolled) .central-nav,
  body.home .central-header--home-overlay:not(.is-scrolled) .central-nav a,
  body.blog .central-header--home-overlay:not(.is-scrolled) .central-nav a,
  body.home .central-header--home-overlay:not(.is-scrolled) .central-actions,
  body.blog .central-header--home-overlay:not(.is-scrolled) .central-actions,
  body.home .central-header--home-overlay:not(.is-scrolled) .central-search-toggle,
  body.blog .central-header--home-overlay:not(.is-scrolled) .central-search-toggle,
  body.home .central-header--home-overlay:not(.is-scrolled) .central-icon-link,
  body.blog .central-header--home-overlay:not(.is-scrolled) .central-icon-link,
  body.home .central-header--home-overlay:not(.is-scrolled) .central-cart-link,
  body.blog .central-header--home-overlay:not(.is-scrolled) .central-cart-link {
    color: #fff !important;
  }

  body.home .central-header--home-overlay.is-scrolled .central-nav,
  body.blog .central-header--home-overlay.is-scrolled .central-nav,
  body.home .central-header--home-overlay.is-scrolled .central-nav a,
  body.blog .central-header--home-overlay.is-scrolled .central-nav a,
  body.home .central-header--home-overlay.is-scrolled .central-actions,
  body.blog .central-header--home-overlay.is-scrolled .central-actions,
  body.home .central-header--home-overlay.is-scrolled .central-search-toggle,
  body.blog .central-header--home-overlay.is-scrolled .central-search-toggle,
  body.home .central-header--home-overlay.is-scrolled .central-icon-link,
  body.blog .central-header--home-overlay.is-scrolled .central-icon-link,
  body.home .central-header--home-overlay.is-scrolled .central-cart-link,
  body.blog .central-header--home-overlay.is-scrolled .central-cart-link {
    color: #111 !important;
  }

  body.home .central-header--home-overlay:not(.is-scrolled) .central-logo__image--dark,
  body.blog .central-header--home-overlay:not(.is-scrolled) .central-logo__image--dark {
    display: none !important;
  }

  body.home .central-header--home-overlay:not(.is-scrolled) .central-logo__image--light,
  body.blog .central-header--home-overlay:not(.is-scrolled) .central-logo__image--light {
    display: block !important;
    filter: none !important;
  }

  body.home .central-header--home-overlay.is-scrolled .central-logo__image--dark,
  body.blog .central-header--home-overlay.is-scrolled .central-logo__image--dark {
    display: block !important;
    filter: none !important;
  }

  body.home .central-header--home-overlay.is-scrolled .central-logo__image--light,
  body.blog .central-header--home-overlay.is-scrolled .central-logo__image--light {
    display: none !important;
  }

  body.home .central-header--home-overlay:not(.is-scrolled) .central-count,
  body.blog .central-header--home-overlay:not(.is-scrolled) .central-count {
    background: #fff !important;
    color: #111 !important;
  }

  body.home .central-header--home-overlay.is-scrolled .central-count,
  body.blog .central-header--home-overlay.is-scrolled .central-count {
    background: #111 !important;
    color: #fff !important;
  }
}

/* Mobile homepage: final hero-to-first-section spacing. Keep after legacy overrides. */
@media (max-width: 767px) {
  body.home .central-home > .central-hero-slider:first-child + .central-represent-products {
    padding-top: clamp(32px, 10vw, 48px) !important;
  }
}

/* Global mobile logo contract: keep every page/header state at the homepage mobile size. */
@media (max-width: 900px) {
  .central-header .central-logo,
  .central-header.is-scrolled .central-logo,
  .central-header--scrolled .central-logo,
  .central-header--home-overlay .central-logo,
  .central-header--home-overlay:not(.is-scrolled) .central-logo,
  .central-header--home-overlay.is-scrolled .central-logo,
  .home .central-header .central-logo,
  .home .central-header--home-overlay .central-logo,
  .home .central-header--home-overlay:not(.is-scrolled) .central-logo,
  .home .central-header--home-overlay.is-scrolled .central-logo,
  .blog .central-header .central-logo,
  .blog .central-header--home-overlay .central-logo,
  .blog .central-header--home-overlay:not(.is-scrolled) .central-logo,
  .blog .central-header--home-overlay.is-scrolled .central-logo,
  body.single-product .central-header .central-logo,
  body.woocommerce-cart .central-header .central-logo,
  body.woocommerce-checkout .central-header .central-logo,
  body.woocommerce-account .central-header .central-logo,
  body.woocommerce-shop .central-header .central-logo,
  body.post-type-archive-product .central-header .central-logo,
  body.tax-product_cat .central-header .central-logo,
  body.tax-product_tag .central-header .central-logo,
  body.search .central-header .central-logo,
  body.search-results .central-header .central-logo {
    width: auto !important;
    max-width: min(var(--central-logo-mobile-width, 118px), 118px, calc(100vw - 168px)) !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  .central-header .central-logo img,
  .central-header.is-scrolled .central-logo img,
  .central-header--scrolled .central-logo img,
  .central-header--home-overlay .central-logo img,
  .central-header--home-overlay:not(.is-scrolled) .central-logo img,
  .central-header--home-overlay.is-scrolled .central-logo img,
  .home .central-header .central-logo img,
  .home .central-header--home-overlay .central-logo img,
  .home .central-header--home-overlay:not(.is-scrolled) .central-logo img,
  .home .central-header--home-overlay.is-scrolled .central-logo img,
  .blog .central-header .central-logo img,
  .blog .central-header--home-overlay .central-logo img,
  .blog .central-header--home-overlay:not(.is-scrolled) .central-logo img,
  .blog .central-header--home-overlay.is-scrolled .central-logo img,
  body.single-product .central-header .central-logo img,
  body.woocommerce-cart .central-header .central-logo img,
  body.woocommerce-checkout .central-header .central-logo img,
  body.woocommerce-account .central-header .central-logo img,
  body.woocommerce-shop .central-header .central-logo img,
  body.post-type-archive-product .central-header .central-logo img,
  body.tax-product_cat .central-header .central-logo img,
  body.tax-product_tag .central-header .central-logo img,
  body.search .central-header .central-logo img,
  body.search-results .central-header .central-logo img {
    width: min(var(--central-logo-mobile-width, 118px), 118px, calc(100vw - 168px)) !important;
    max-width: min(var(--central-logo-mobile-width, 118px), 118px, calc(100vw - 168px)) !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
  }

  body.home .central-header--home-overlay:not(.is-scrolled) .central-logo__image--dark,
  body.blog .central-header--home-overlay:not(.is-scrolled) .central-logo__image--dark {
    display: none !important;
  }

  body.home .central-header--home-overlay:not(.is-scrolled) .central-logo__image--light,
  body.blog .central-header--home-overlay:not(.is-scrolled) .central-logo__image--light {
    display: block !important;
  }

  body.home .central-header--home-overlay.is-scrolled .central-logo__image--dark,
  body.blog .central-header--home-overlay.is-scrolled .central-logo__image--dark,
  body:not(.home):not(.blog) .central-header .central-logo__image--dark {
    display: block !important;
  }

  body.home .central-header--home-overlay.is-scrolled .central-logo__image--light,
  body.blog .central-header--home-overlay.is-scrolled .central-logo__image--light,
  body:not(.home):not(.blog) .central-header .central-logo__image--light {
    display: none !important;
  }
}

.central-category-choice {
  --central-category-choice-content-x: clamp(32px, 6vw, 88px);
  --central-category-choice-content-y: clamp(44px, 8vh, 84px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #050505;
  color: #fff;
  overflow: hidden;
}

.central-category-choice__card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-width: 0;
  min-height: 0;
  height: 100%;
  padding: var(--central-category-choice-content-y) var(--central-category-choice-content-x);
  overflow: hidden;
  color: #fff;
  text-align: left;
  text-decoration: none;
  isolation: isolate;
}

.central-category-choice__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform .7s cubic-bezier(.22, 1, .36, 1), filter .7s cubic-bezier(.22, 1, .36, 1);
}

.central-category-choice__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .2) 46%, rgba(0, 0, 0, .6) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .16) 48%, rgba(0, 0, 0, .2) 100%);
}

.central-category-choice__card + .central-category-choice__card {
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.central-category-choice__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  gap: 8px;
  width: min(430px, 100%);
  max-height: 100%;
  margin: 0;
  text-align: left;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .38);
}

.central-category-choice__eyebrow {
  color: rgba(255, 255, 255, .9);
  font-size: clamp(13px, 1.3vw, 16px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.central-category-choice__title {
  font-size: clamp(32px, 3.4vw, 54px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: 0;
}

.central-category-choice__subtitle {
  max-width: 28em;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.45;
  font-weight: 400;
}

.central-category-choice__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(112px, 100%);
  min-height: 40px;
  margin-top: 10px;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  background: rgba(78, 78, 78, .74);
  color: #fff;
  box-shadow: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: none;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.central-category-choice__card:hover .central-category-choice__image,
.central-category-choice__card:focus-visible .central-category-choice__image {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.055);
}

.central-category-choice__card:hover .central-category-choice__button,
.central-category-choice__card:focus-visible .central-category-choice__button {
  background: #fff;
  color: #050505;
  transform: translateY(-1px);
}

.central-category-choice__card:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -6px;
}

html:has(body.central-category-choice-mode),
body.central-category-choice-mode {
  height: 100% !important;
  max-height: 100% !important;
  overflow: hidden !important;
}

body.central-category-choice-mode {
  --central-category-choice-vh: var(--mobile-vh, 100dvh);
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100svh !important;
  background: #050505 !important;
  overscroll-behavior: none;
  touch-action: manipulation;
}

body.central-category-choice-mode .central-footer {
  display: none !important;
}

body.central-category-choice-mode .central-header--home-overlay,
body.central-category-choice-mode .central-header--home-overlay:not(.is-scrolled),
body.central-category-choice-mode .central-header--home-overlay.is-scrolled {
  position: fixed !important;
  top: var(--central-announcement-height, 0px) !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 60 !important;
  display: block !important;
  height: var(--central-header, 64px) !important;
  min-height: var(--central-header, 64px) !important;
  max-height: var(--central-header, 64px) !important;
  margin: 0 !important;
  background: transparent !important;
  color: #fff !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.central-category-choice-mode .central-header--home-overlay::before,
body.central-category-choice-mode .central-header--home-overlay::after {
  content: none !important;
  display: none !important;
}

body.central-category-choice-mode .central-header--home-overlay .central-header__inner {
  height: var(--central-header, 64px) !important;
  min-height: var(--central-header, 64px) !important;
  max-height: var(--central-header, 64px) !important;
}

body.central-category-choice-mode .site-content,
body.central-category-choice-mode .central-home {
  height: calc(var(--central-category-choice-vh) - var(--central-announcement-height, 0px)) !important;
  min-height: 0 !important;
  max-height: calc(var(--central-category-choice-vh) - var(--central-announcement-height, 0px)) !important;
  overflow: hidden !important;
  background: #050505 !important;
}

body.central-category-choice-mode .central-category-choice {
  height: 100% !important;
  min-height: 100% !important;
  max-height: 100% !important;
  overflow: hidden !important;
}

body.central-category-choice-mode .central-category-choice__card {
  height: 100% !important;
  min-height: 0 !important;
  max-height: 100% !important;
}

.central-choice-home {
  background: #fff;
}

.central-choice-home .central-represent-products:first-of-type {
  padding-top: clamp(34px, 5vw, 64px);
}

@media (max-width: 767px) {
  .central-category-choice {
    --central-category-choice-content-x: clamp(24px, 9vw, 46px);
    --central-category-choice-content-y: clamp(32px, 7vh, 50px);
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .central-category-choice__card {
    height: 100%;
    min-height: 0;
  }

  .central-category-choice__card + .central-category-choice__card {
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-left: 0;
  }

  .central-category-choice__content {
    gap: 6px;
    width: min(330px, 100%);
  }

  .central-category-choice__eyebrow {
    font-size: clamp(13px, 4vw, 16px);
  }

  .central-category-choice__title {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1;
  }

  .central-category-choice__subtitle {
    max-width: 24em;
    font-size: clamp(12px, 3.4vw, 13px);
    line-height: 1.35;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .central-category-choice__button {
    min-width: min(110px, 100%);
    min-height: 40px;
    margin-top: 8px;
    padding: 0 22px;
  }

  body.central-category-choice-mode .central-category-choice__card {
    height: 100% !important;
    min-height: 0 !important;
    max-height: 100% !important;
  }

}
