/*
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.2.52
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: "Instrument Sans", Inter, 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: "Instrument Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.714;
  letter-spacing: 0;
}

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

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

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

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


/* ═══════════════════════════════════════════════════════════
   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 {
  color: #858585;
  display: inline-flex;
  margin-bottom: 14px;
}
.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: block;
}
.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 .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;
  }
}

/* ===== DELIVERY CARDS ON HOMEPAGE ===== */
.central-delivery-cards {
  padding: 30px 0 0;
}

.central-home > .central-photo-reviews--home {
  margin-top: 64px;
}

.central-category-grid--delivery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.central-category-card--ready {
  background: linear-gradient(145deg, #ffffff 0%, #f1fbf4 100%);
  border: 1px solid #cdebd6;
}
.central-category-card--ready .central-category-card__backdrop {
  color: rgba(21, 127, 59, .08);
}
.central-category-card--import {
  background: linear-gradient(145deg, #ffffff 0%, #f0f6ff 100%);
  border: 1px solid #cfe0f5;
}
.central-category-card--import .central-category-card__backdrop {
  color: rgba(25, 88, 166, .08);
}
.central-delivery-entry-card {
  aspect-ratio: auto;
  min-height: var(--central-delivery-card-height-desktop, var(--central-delivery-card-height, 150px));
  padding: 24px;
}
.central-delivery-entry-card .central-category-card__backdrop--image {
  inset: 0;
  width: 100%;
  opacity: 1;
}
.central-delivery-entry-card .central-category-card__backdrop--image img {
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}
.central-category-card--ready .central-category-card__backdrop--image {
  opacity: 1;
}
.central-category-card--import .central-category-card__backdrop--image {
  opacity: 1;
}
.central-delivery-entry-card--has-image {
  padding: 0;
}
.central-category-card.no-image .central-delivery-entry-card__meta,
.central-delivery-entry-card .central-delivery-entry-card__meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  align-content: start;
  min-height: 0;
  padding: 0;
  color: var(--central-ink);
}

.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-category-grid--delivery {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .central-category-grid--delivery .central-category-card {
    aspect-ratio: auto;
    min-height: 74px;
  }
  .central-category-grid--delivery .central-category-card__meta {
    align-content: center;
  }
  .central-delivery-cards {
    padding: 20px 0 0;
  }

  .central-delivery-cards .central-category-grid--delivery > .central-category-card.central-category-card--ready,
  .central-delivery-cards .central-category-grid--delivery > .central-category-card.central-category-card--import {
    aspect-ratio: auto;
    min-height: var(--central-delivery-card-height-mobile, 108px);
    padding: 18px;
  }

  .central-delivery-cards .central-category-grid--delivery > .central-delivery-entry-card .central-delivery-entry-card__meta {
    align-content: start;
    padding: 0;
  }

  .central-delivery-cards .central-category-grid--delivery > .central-category-card .central-category-card__name {
    font-size: 23px;
    line-height: 1.08;
  }

  .central-delivery-cards .central-category-grid--delivery > .central-category-card .central-category-card__count {
    font-size: 14.5px;
    line-height: 1.35;
  }

  .central-delivery-cards .central-category-grid--delivery > .central-category-card .central-category-card__backdrop {
    inset: auto 14px 12px auto;
    font-size: 138px;
  }

  .central-delivery-cards .central-category-grid--delivery > .central-category-card .central-category-card__backdrop--image {
    inset: 0;
    width: 100%;
  }

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

/* ===== 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 sections comfortable while revealing upcoming content sooner. */
@media (max-width: 767px) {
  .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-delivery-cards {
    padding-top: 22px;
  }

  .central-delivery-cards .central-category-grid--delivery {
    gap: 10px;
  }

  .central-delivery-cards .central-category-grid--delivery > .central-category-card.central-category-card--ready,
  .central-delivery-cards .central-category-grid--delivery > .central-category-card.central-category-card--import {
    min-height: var(--central-delivery-card-height-mobile, 108px);
    padding: 18px;
  }

  .central-delivery-cards .central-category-grid--delivery > .central-delivery-entry-card .central-delivery-entry-card__meta {
    align-content: start;
    padding: 0;
  }

  .central-delivery-cards .central-category-grid--delivery > .central-category-card .central-category-card__name {
    font-size: 22px;
  }

  .central-delivery-cards .central-category-grid--delivery > .central-category-card .central-category-card__count {
    font-size: 14px;
    line-height: 1.35;
  }

  .central-delivery-cards .central-category-grid--delivery > .central-category-card .central-category-card__backdrop {
    font-size: 124px;
  }

  .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-delivery-cards {
    padding-bottom: 0;
  }

  .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;
  gap: 10px;
  margin: 0;
}

.woocommerce-checkout #shipping_method li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 !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.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%;
  }
}
