/* Layer 1: shell tokens and base page layout */

body.wordpressulator-commerce-shell {
  background: var(--wpu-shell-page-bg, var(--wpu-checkout-bg, #f8fafc));
  color: var(--wpu-checkout-text, #111827);
  font-family: var(
    --wpu-shell-font-family,
    Satoshi,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    system-ui,
    sans-serif
  );
  --wpu-shell-text: var(--wpu-checkout-text, #111827);
  --wpu-shell-muted: var(--wpu-checkout-muted, #64748b);
  --wpu-shell-accent: var(--wpu-checkout-primary, #1d4ed8);
  --wpu-shell-accent-hover: color-mix(
    in srgb,
    var(--wpu-shell-accent, #1d4ed8) 88%,
    #000000
  );
  --wpu-shell-page: var(--wpu-shell-page-bg, var(--wpu-checkout-bg, #f8fafc));
  --wpu-shell-line: color-mix(
    in srgb,
    var(--wpu-checkout-muted, #64748b) 18%,
    transparent
  );
  --wpu-shell-line-strong: color-mix(
    in srgb,
    var(--wpu-checkout-muted, #64748b) 30%,
    transparent
  );
  --wpu-shell-panel: #ffffff;
  --wpu-shell-panel-muted: color-mix(
    in srgb,
    var(--wpu-shell-panel, #ffffff) 86%,
    var(--wpu-shell-page, #f8fafc)
  );
  --wpu-shell-panel-soft: var(--wpu-shell-panel-muted, #f8fafc);
  --wpu-shell-radius: var(--wpu-checkout-radius, 14px);
  --wpu-shell-panel-radius: min(var(--wpu-checkout-radius, 14px), 14px);
  --wpu-shell-control-radius: min(
    calc(var(--wpu-checkout-radius, 14px) * 0.72),
    11px
  );
  --wpu-shell-on-dark: #ffffff;
  --wpu-shell-on-accent: var(--wpu-shell-on-dark, #ffffff);
  --wpu-shell-soft: color-mix(
    in srgb,
    var(--wpu-checkout-primary, #1d4ed8) 10%,
    var(--wpu-shell-panel, #ffffff)
  );
  --wpu-shell-selected: color-mix(
    in srgb,
    var(--wpu-checkout-primary, #1d4ed8) 12%,
    var(--wpu-shell-panel, #ffffff)
  );
  --wpu-shell-focus-ring: 0 0 0 3px
    color-mix(in srgb, var(--wpu-checkout-primary, #1d4ed8) 18%, transparent);
  --wpu-shell-danger: #c63434;
  --wpu-shell-danger-bg: #fff5f5;
  --wpu-shell-danger-line: #f1c4c4;
  --wpu-shell-success: #168a55;
  --wpu-shell-success-bg: #f0fbf5;
  --wpu-shell-success-line: #bde8cf;
  --wpu-shell-info: #075985;
  --wpu-shell-info-bg: #f2f8ff;
  --wpu-shell-info-line: #c7ddf5;
  --wpu-shell-warning: #8a5a00;
  --wpu-shell-warning-bg: #fff8eb;
  --wpu-shell-warning-line: #efd49d;
  --wpu-shell-shadow: none;
  --wpu-shell-container-wide: 1560px;
  --wpu-shell-container-lean: 1410px;
  --wpu-shell-container-narrow: 1050px;
  --wpu-shell-gutter-desktop: 26px;
  --wpu-shell-gutter-tablet: 22px;
  --wpu-shell-gutter-mobile: 18px;
  --wpu-shell-header-min-height: 80px;
  --wpu-shell-footer-container: var(--wpu-shell-container-lean);
  --wpu-shell-main-container: var(--wpu-shell-container-lean);
}

body.wordpressulator-commerce-shell--top-level,
body.wordpressulator-checkout-shell--top-level {
  margin: 0;
  min-block-size: 100vh;
}

body.wordpressulator-checkout-shell--top-level {
  --wpu-checkout-sticky-offset: 24px;
}

body.admin-bar.wordpressulator-checkout-shell--top-level {
  --wpu-checkout-sticky-offset: 56px;
}

body.wordpressulator-commerce-shell .wordpressulator-commerce-shell__top-page,
body.wordpressulator-checkout-shell .wordpressulator-checkout-shell__top-page {
  box-sizing: border-box;
  inline-size: 100%;
  min-block-size: 100vh;
  margin: 0;
  padding: 0;
}

body.wordpressulator-commerce-shell .wordpressulator-commerce-shell__top-page {
  display: flex;
  flex-direction: column;
}

body.wordpressulator-commerce-shell .wordpressulator-commerce-shell__main {
  box-sizing: border-box;
  flex: 1 0 auto;
  inline-size: min(
    calc(100% - (var(--wpu-shell-gutter-desktop, 26px) * 2)),
    var(--wpu-shell-main-container, 1410px)
  );
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px) 0 clamp(30px, 5vw, 64px);
}

body.wordpressulator-checkout-shell--top-level
  .wordpressulator-commerce-shell__main--checkout,
body.wordpressulator-checkout-shell .wordpressulator-checkout-shell__frame,
body.wordpressulator-checkout-shell .wordpressulator-checkout-shell__hook-band {
  inline-size: min(
    calc(100% - (var(--wpu-shell-gutter-desktop, 26px) * 2)),
    var(--wpu-shell-container-lean, 1410px)
  );
  margin-inline: auto;
}

body.wordpressulator-cart-shell .wordpressulator-commerce-shell__main--cart,
body.wordpressulator-account-shell
  .wordpressulator-commerce-shell__main--account,
body.wordpressulator-order-received-shell
  .wordpressulator-commerce-shell__main--order-received {
  inline-size: min(
    calc(100% - (var(--wpu-shell-gutter-desktop, 26px) * 2)),
    var(--wpu-shell-container-lean, 1410px)
  );
}

body.wordpressulator-checkout-shell .wordpressulator-checkout-shell__frame {
  box-sizing: border-box;
  padding: clamp(28px, 5vw, 58px) 0 clamp(36px, 6vw, 72px);
}

body.wordpressulator-checkout-shell .wordpressulator-checkout-shell__main {
  display: block;
  inline-size: 100%;
}

body.wordpressulator-checkout-shell--top-level
  .wordpressulator-checkout-shell__main.wordpressulator-commerce-shell__main--checkout {
  inline-size: min(
    calc(100% - (var(--wpu-shell-gutter-desktop, 26px) * 2)),
    var(--wpu-shell-container-lean, 1410px)
  );
  margin-inline: auto;
}

body.wordpressulator-commerce-shell .wordpressulator-checkout-shell__surface,
body.wordpressulator-checkout-shell .wordpressulator-checkout-shell__surface,
body.wordpressulator-checkout-shell--top-level
  .wordpressulator-checkout-shell__surface,
body.wordpressulator-cart-shell .wordpressulator-commerce-shell__surface--cart {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

/* Layer 2: manifest header/footer */

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-header,
body.wordpressulator-commerce-shell .wordpressulator-checkout-shell__header {
  inline-size: 100%;
  margin: 0;
  border-block-end: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  background: var(--wpu-shell-page-bg, var(--wpu-checkout-bg, #f8fafc));
}

body.wordpressulator-checkout-shell .wordpressulator-checkout-shell__header {
  margin-block-end: clamp(18px, 3vw, 28px);
}

body.wordpressulator-checkout-shell--top-level
  .wordpressulator-checkout-shell__header {
  margin-block-end: 0;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-header__inner {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  inline-size: min(
    calc(100% - (var(--wpu-shell-gutter-desktop, 26px) * 2)),
    var(--wpu-shell-container-wide, 1560px)
  );
  min-block-size: var(--wpu-shell-header-min-height, 80px);
  margin: 0 auto;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-header__mobile-bar {
  display: none;
}

body.wordpressulator-commerce-shell
  .wordpressulator-checkout-shell__header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  inline-size: min(
    calc(100% - (var(--wpu-shell-gutter-desktop, 26px) * 2)),
    var(--wpu-shell-container-narrow, 1050px)
  );
  min-block-size: var(--wpu-shell-header-min-height, 80px);
  margin: 0 auto;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-header
  a,
body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-footer
  a {
  color: var(--wpu-checkout-text, #111827);
  font-weight: 650;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-header
  a:hover,
body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-footer
  a:hover {
  color: var(--wpu-checkout-primary, #1d4ed8);
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-header__brand,
body.wordpressulator-commerce-shell .wordpressulator-checkout-shell__brand {
  display: inline-flex;
  align-items: center;
  min-inline-size: 0;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-header__logo,
body.wordpressulator-commerce-shell .wordpressulator-checkout-shell__logo {
  display: block;
  object-fit: contain;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-header__logo {
  max-inline-size: min(210px, 48vw);
  max-block-size: 40px;
}

body.wordpressulator-commerce-shell .wordpressulator-checkout-shell__logo {
  max-inline-size: min(220px, 58vw);
  max-block-size: 56px;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-header__wordmark,
body.wordpressulator-commerce-shell .wordpressulator-checkout-shell__wordmark {
  display: inline-block;
  color: var(--wpu-checkout-text, #111827);
  letter-spacing: 0;
  line-height: 1.1;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-header__wordmark {
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  font-weight: 750;
}

body.wordpressulator-commerce-shell .wordpressulator-checkout-shell__wordmark {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 900;
}

body.wordpressulator-commerce-shell .wordpressulator-checkout-shell__context {
  flex: 0 0 auto;
  color: var(--wpu-checkout-muted, #64748b);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-header__nav,
body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-header__actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.1vw, 34px);
  min-inline-size: 0;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.25;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-header__nav {
  justify-content: center;
  flex-wrap: wrap;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-header__actions {
  justify-content: flex-end;
  white-space: nowrap;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-header__action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 42px;
  block-size: 42px;
  min-block-size: 42px;
  border-radius: 999px;
  padding: 0;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-header__action-link:hover {
  background: var(--wpu-shell-soft, #f8fafc);
  transform: translateY(-1px);
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-header__action-icon {
  display: inline-grid;
  inline-size: 20px;
  block-size: 20px;
  place-items: center;
  color: currentColor;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-header__action-icon
  svg {
  display: block;
  inline-size: 20px;
  block-size: 20px;
  stroke-width: 1.9;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-header__action-label {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-footer {
  inline-size: 100%;
  margin: clamp(30px, 5vw, 64px) 0 0;
  padding: 0;
  border-block-start: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  background: var(--wpu-shell-page-bg, var(--wpu-checkout-bg, #f8fafc));
  color: var(--wpu-checkout-muted, #64748b);
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-footer__inner {
  inline-size: min(
    calc(100% - (var(--wpu-shell-gutter-desktop, 26px) * 2)),
    var(--wpu-shell-footer-container, 1410px)
  );
  margin: 0 auto;
  padding: 28px 0;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-footer__primary {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 3fr);
  gap: 28px;
  align-items: start;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-footer__brand {
  display: grid;
  gap: 10px;
  align-content: start;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-footer__brand
  h2 {
  margin: 0;
  color: var(--wpu-checkout-text, #111827);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-footer__brand
  p {
  max-inline-size: 42ch;
  margin: 0;
  color: var(--wpu-checkout-muted, #64748b);
  font-size: 0.9rem;
  font-weight: 380;
  line-height: 1.55;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-footer__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: clamp(18px, 3vw, 30px);
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-footer__column
  h2 {
  margin: 0 0 10px;
  color: var(--wpu-checkout-text, #111827);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-footer__column
  ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-footer__column
  a,
body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-footer__copyright {
  color: var(--wpu-checkout-muted, #64748b);
  font-size: 0.9rem;
  font-weight: 380;
  line-height: 1.35;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-footer__column
  a:hover {
  color: var(--wpu-checkout-primary, #1d4ed8);
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-footer__copyright {
  margin: clamp(20px, 3vw, 30px) 0 0;
}

/* Layer 3: generic typography, links, focus */

body.wordpressulator-commerce-shell .woocommerce,
body.wordpressulator-checkout-shell .wordpressulator-checkout-shell__surface,
body.wordpressulator-checkout-shell .woocommerce-checkout,
body.wordpressulator-commerce-shell .wc-block-components-text-input,
body.wordpressulator-commerce-shell .wc-block-components-address-form__email,
body.wordpressulator-commerce-shell .wc-block-components-select,
body.wordpressulator-commerce-shell .wc-blocks-components-select,
body.wordpressulator-commerce-shell .wc-block-components-combobox {
  color: var(--wpu-checkout-text, #111827);
  font-family: var(
    --wpu-shell-font-family,
    Satoshi,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    system-ui,
    sans-serif
  );
  font-size: 16px;
  line-height: 1.58;
}

body.wordpressulator-commerce-shell .woocommerce *,
body.wordpressulator-commerce-shell .woocommerce *::before,
body.wordpressulator-commerce-shell .woocommerce *::after {
  box-sizing: border-box;
}

body.wordpressulator-commerce-shell .woocommerce p,
body.wordpressulator-commerce-shell .woocommerce address,
body.wordpressulator-commerce-shell .woocommerce .woocommerce-MyAccount-content,
body.wordpressulator-commerce-shell .wc-block-components-notice-banner__content,
body.wordpressulator-commerce-shell .wc-block-components-checkbox,
body.wordpressulator-commerce-shell .wc-block-components-radio-control__option {
  color: var(--wpu-checkout-muted, #64748b);
  font-size: 1rem;
  line-height: 1.58;
}

body.wordpressulator-commerce-shell .woocommerce a {
  color: var(--wpu-checkout-primary, #1d4ed8);
  font-weight: 600;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

body.wordpressulator-commerce-shell .woocommerce h1,
body.wordpressulator-commerce-shell .woocommerce h2,
body.wordpressulator-commerce-shell .woocommerce h3,
body.wordpressulator-commerce-shell .woocommerce legend,
body.wordpressulator-commerce-shell .wc-block-components-title,
body.wordpressulator-commerce-shell
  .wp-block-woocommerce-checkout-order-summary-block
  h2,
body.wordpressulator-cart-shell .wp-block-woocommerce-cart-totals-block h2 {
  color: var(--wpu-checkout-text, #111827);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  margin-block-start: 0;
  text-wrap: balance;
}

body.wordpressulator-commerce-shell .woocommerce .required {
  color: #b91c1c;
}

body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-header
  a:focus-visible,
body.wordpressulator-commerce-shell
  .wordpressulator-commerce-shell-manifest-footer
  a:focus-visible,
body.wordpressulator-commerce-shell a:focus-visible,
body.wordpressulator-commerce-shell button:focus-visible,
body.wordpressulator-commerce-shell input:focus-visible,
body.wordpressulator-commerce-shell select:focus-visible,
body.wordpressulator-commerce-shell textarea:focus-visible {
  box-shadow: var(--wpu-shell-focus-ring);
  outline: 2px solid transparent;
  outline-offset: 3px;
}

/* Layer 4: generic form controls and buttons */

body.wordpressulator-commerce-shell .woocommerce form .form-row {
  margin-block-end: 16px;
}

body.wordpressulator-commerce-shell .woocommerce form .form-row label,
body.wordpressulator-commerce-shell
  .woocommerce
  form
  .form-row
  .woocommerce-input-wrapper,
body.wordpressulator-commerce-shell .wc-block-components-text-input label,
body.wordpressulator-commerce-shell .wc-block-components-select label,
body.wordpressulator-commerce-shell .wc-blocks-components-select__label,
body.wordpressulator-commerce-shell .wc-block-components-checkbox label,
body.wordpressulator-commerce-shell .wc-block-components-radio-control label,
body.wordpressulator-commerce-shell .wc-block-components-address-form label {
  color: var(--wpu-checkout-text, #111827);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.45;
}

body.wordpressulator-commerce-shell .woocommerce form .form-row label {
  display: block;
  margin-block-end: 7px;
}

body.wordpressulator-commerce-shell .woocommerce input.input-text,
body.wordpressulator-commerce-shell .woocommerce textarea,
body.wordpressulator-commerce-shell .woocommerce select,
body.wordpressulator-commerce-shell .woocommerce .input-text,
body.wordpressulator-commerce-shell
  .woocommerce
  .select2-container
  .select2-selection--single,
body.wordpressulator-commerce-shell
  .wc-block-components-text-input
  input[type="email"],
body.wordpressulator-commerce-shell
  .wc-block-components-text-input
  input[type="number"],
body.wordpressulator-commerce-shell
  .wc-block-components-text-input
  input[type="password"],
body.wordpressulator-commerce-shell
  .wc-block-components-text-input
  input[type="tel"],
body.wordpressulator-commerce-shell
  .wc-block-components-text-input
  input[type="text"],
body.wordpressulator-commerce-shell
  .wc-block-components-text-input
  input[type="url"],
body.wordpressulator-commerce-shell
  .wc-block-components-address-form__email
  input,
body.wordpressulator-commerce-shell
  .wc-block-components-combobox
  .components-combobox-control__input,
body.wordpressulator-commerce-shell
  .wc-block-components-combobox
  .components-form-token-field__input-container,
body.wordpressulator-commerce-shell
  .wc-block-components-select
  .wc-block-components-select__select,
body.wordpressulator-commerce-shell .wc-block-components-select select,
body.wordpressulator-commerce-shell .wc-blocks-components-select__select,
body.wordpressulator-commerce-shell .wc-block-components-textarea {
  box-sizing: border-box;
  inline-size: 100%;
  min-block-size: 50px;
  border: 1px solid var(--wpu-shell-line-strong, rgba(100, 116, 139, 0.3));
  border-radius: var(--wpu-shell-control-radius, 11px);
  background: var(--wpu-shell-panel, #ffffff);
  color: var(--wpu-checkout-text, #111827);
  box-shadow: none;
  font: inherit;
  font-size: 1rem;
  line-height: 1.45;
  padding: 11px 14px;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

body.wordpressulator-commerce-shell .woocommerce textarea,
body.wordpressulator-commerce-shell .wc-block-components-textarea {
  min-block-size: 112px;
}

body.wordpressulator-commerce-shell .woocommerce select,
body.wordpressulator-commerce-shell
  .wc-block-components-select
  .wc-block-components-select__select,
body.wordpressulator-commerce-shell .wc-block-components-select select {
  appearance: none;
  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      var(--wpu-checkout-muted, #64748b) 50%
    ),
    linear-gradient(
      135deg,
      var(--wpu-checkout-muted, #64748b) 50%,
      transparent 50%
    );
  background-position:
    calc(100% - 19px) 50%,
    calc(100% - 13px) 50%;
  background-repeat: no-repeat;
  background-size:
    6px 6px,
    6px 6px;
  padding-inline-end: 42px;
}

body.wordpressulator-commerce-shell .wc-blocks-components-select__select {
  appearance: none;
  background-image: none;
  padding-inline-end: 44px;
}

body.wordpressulator-commerce-shell .wc-blocks-components-select__container {
  position: relative;
  inline-size: 100%;
}

body.wordpressulator-commerce-shell
  .woocommerce
  .select2-container
  .select2-selection--single {
  padding-inline-end: 42px;
}

body.wordpressulator-commerce-shell
  .woocommerce
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  color: var(--wpu-checkout-text, #111827);
  line-height: 24px;
  padding-inline: 0;
}

body.wordpressulator-commerce-shell
  .woocommerce
  .select2-container
  .select2-selection--single
  .select2-selection__arrow {
  block-size: 100%;
  inline-size: 38px;
  inset-block-start: 0;
  inset-inline-end: 2px;
}

body.wordpressulator-commerce-shell .woocommerce input.input-text:hover,
body.wordpressulator-commerce-shell .woocommerce textarea:hover,
body.wordpressulator-commerce-shell .woocommerce select:hover,
body.wordpressulator-commerce-shell
  .woocommerce
  .select2-container
  .select2-selection--single:hover,
body.wordpressulator-commerce-shell .wc-block-components-text-input input:hover,
body.wordpressulator-commerce-shell
  .wc-block-components-address-form__email
  input:hover,
body.wordpressulator-commerce-shell
  .wc-block-components-combobox
  .components-combobox-control__input:hover,
body.wordpressulator-commerce-shell
  .wc-block-components-combobox
  .components-form-token-field__input-container:hover,
body.wordpressulator-commerce-shell .wc-block-components-select select:hover,
body.wordpressulator-commerce-shell
  .wc-block-components-select
  .wc-block-components-select__select:hover,
body.wordpressulator-commerce-shell
  .wc-blocks-components-select__container:hover,
body.wordpressulator-commerce-shell .wc-blocks-components-select__select:hover,
body.wordpressulator-commerce-shell .wc-block-components-textarea:hover {
  border-color: color-mix(
    in srgb,
    var(--wpu-checkout-muted, #64748b) 48%,
    transparent
  );
}

body.wordpressulator-commerce-shell .woocommerce input.input-text:focus,
body.wordpressulator-commerce-shell .woocommerce textarea:focus,
body.wordpressulator-commerce-shell .woocommerce select:focus,
body.wordpressulator-commerce-shell
  .woocommerce
  .select2-container--open
  .select2-selection--single,
body.wordpressulator-commerce-shell
  .woocommerce
  .select2-container--focus
  .select2-selection--single,
body.wordpressulator-commerce-shell .wc-block-components-text-input input:focus,
body.wordpressulator-commerce-shell
  .wc-block-components-address-form__email
  input:focus,
body.wordpressulator-commerce-shell
  .wc-block-components-combobox
  .components-combobox-control__input:focus,
body.wordpressulator-commerce-shell
  .wc-block-components-combobox
  .components-form-token-field__input-container:focus-within,
body.wordpressulator-commerce-shell .wc-block-components-select select:focus,
body.wordpressulator-commerce-shell
  .wc-block-components-select
  .wc-block-components-select__select:focus,
body.wordpressulator-commerce-shell
  .wc-blocks-components-select__container:focus-within,
body.wordpressulator-commerce-shell .wc-blocks-components-select__select:focus,
body.wordpressulator-commerce-shell .wc-block-components-textarea:focus {
  border-color: var(--wpu-checkout-primary, #1d4ed8);
  box-shadow: var(--wpu-shell-focus-ring);
  outline: none;
}

body.wordpressulator-commerce-shell
  .wc-block-components-checkbox
  .wc-block-components-checkbox__input,
body.wordpressulator-commerce-shell .wc-block-components-radio-control__input {
  border-color: var(--wpu-shell-line-strong, rgba(100, 116, 139, 0.3));
  box-shadow: none;
}

body.wordpressulator-commerce-shell .wc-block-components-checkbox,
body.wordpressulator-commerce-shell .wc-block-components-radio-control__option {
  gap: 10px;
  border-color: var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  border-radius: var(--wpu-shell-control-radius, 11px);
  color: var(--wpu-checkout-text, #111827);
}

body.wordpressulator-commerce-shell .wc-block-components-radio-control__option {
  padding: 13px 14px;
}

body.wordpressulator-commerce-shell .wc-block-components-checkbox__label,
body.wordpressulator-commerce-shell .wc-block-components-radio-control__label {
  color: var(--wpu-checkout-text, #111827);
  font-weight: 620;
  line-height: 1.4;
}

body.wordpressulator-commerce-shell
  .wc-block-components-checkbox
  .wc-block-components-checkbox__input:focus,
body.wordpressulator-commerce-shell
  .wc-block-components-radio-control__input:focus {
  box-shadow: var(--wpu-shell-focus-ring);
  outline: none;
}

body.wordpressulator-commerce-shell .wc-block-components-button,
body.wordpressulator-commerce-shell .wp-element-button,
body.wordpressulator-commerce-shell .woocommerce a.button,
body.wordpressulator-commerce-shell .woocommerce button.button,
body.wordpressulator-commerce-shell .woocommerce input.button,
body.wordpressulator-commerce-shell .woocommerce #respond input#submit,
body.wordpressulator-commerce-shell .woocommerce #payment #place_order,
body.wordpressulator-commerce-shell
  .woocommerce
  .wc-proceed-to-checkout
  a.checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-block-size: 52px;
  border: 0;
  border-radius: var(--wpu-shell-control-radius, 11px);
  background: var(--wpu-checkout-primary, #1d4ed8);
  color: var(--wpu-shell-on-accent, var(--wpu-shell-on-dark, #ffffff));
  box-shadow: 0 10px 24px
    color-mix(in srgb, var(--wpu-checkout-primary, #1d4ed8) 18%, transparent);
  font-family: var(
    --wpu-shell-font-family,
    Satoshi,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    system-ui,
    sans-serif
  );
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.15;
  padding: 0 20px;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

body.wordpressulator-commerce-shell .wc-block-components-button:hover,
body.wordpressulator-commerce-shell .wp-element-button:hover,
body.wordpressulator-commerce-shell .woocommerce a.button:hover,
body.wordpressulator-commerce-shell .woocommerce button.button:hover,
body.wordpressulator-commerce-shell .woocommerce input.button:hover,
body.wordpressulator-commerce-shell .woocommerce #respond input#submit:hover,
body.wordpressulator-commerce-shell .woocommerce #payment #place_order:hover,
body.wordpressulator-commerce-shell
  .woocommerce
  .wc-proceed-to-checkout
  a.checkout-button:hover {
  background: color-mix(
    in srgb,
    var(--wpu-checkout-primary, #1d4ed8) 88%,
    var(--wpu-checkout-text, #111827)
  );
  color: var(--wpu-shell-on-accent, var(--wpu-shell-on-dark, #ffffff));
  box-shadow: 0 12px 28px
    color-mix(in srgb, var(--wpu-checkout-primary, #1d4ed8) 24%, transparent);
  transform: translateY(-1px);
}

body.wordpressulator-commerce-shell .wc-block-components-button:active,
body.wordpressulator-commerce-shell .wp-element-button:active,
body.wordpressulator-commerce-shell .woocommerce a.button:active,
body.wordpressulator-commerce-shell .woocommerce button.button:active,
body.wordpressulator-commerce-shell .woocommerce input.button:active,
body.wordpressulator-commerce-shell .woocommerce #payment #place_order:active,
body.wordpressulator-commerce-shell
  .woocommerce
  .wc-proceed-to-checkout
  a.checkout-button:active {
  box-shadow: 0 7px 18px
    color-mix(in srgb, var(--wpu-checkout-primary, #1d4ed8) 18%, transparent);
  transform: translateY(0);
}

body.wordpressulator-commerce-shell .wc-block-components-button:focus-visible,
body.wordpressulator-commerce-shell .wp-element-button:focus-visible,
body.wordpressulator-commerce-shell .woocommerce a.button:focus-visible,
body.wordpressulator-commerce-shell .woocommerce button.button:focus-visible,
body.wordpressulator-commerce-shell .woocommerce input.button:focus-visible,
body.wordpressulator-commerce-shell
  .woocommerce
  #respond
  input#submit:focus-visible,
body.wordpressulator-commerce-shell
  .woocommerce
  #payment
  #place_order:focus-visible,
body.wordpressulator-commerce-shell
  .woocommerce
  .wc-proceed-to-checkout
  a.checkout-button:focus-visible {
  box-shadow:
    var(--wpu-shell-focus-ring),
    0 10px 24px
      color-mix(in srgb, var(--wpu-checkout-primary, #1d4ed8) 18%, transparent);
  outline: none;
}

body.wordpressulator-commerce-shell .wc-block-components-button:disabled,
body.wordpressulator-commerce-shell
  .wc-block-components-button[aria-disabled="true"],
body.wordpressulator-commerce-shell .wp-element-button:disabled,
body.wordpressulator-commerce-shell .woocommerce button.button:disabled,
body.wordpressulator-commerce-shell
  .woocommerce
  button.button:disabled[disabled],
body.wordpressulator-commerce-shell .woocommerce input.button:disabled,
body.wordpressulator-commerce-shell
  .woocommerce
  input.button:disabled[disabled] {
  background: color-mix(
    in srgb,
    var(--wpu-checkout-muted, #64748b) 18%,
    var(--wpu-shell-panel, #ffffff)
  );
  color: color-mix(
    in srgb,
    var(--wpu-checkout-muted, #64748b) 72%,
    var(--wpu-checkout-text, #111827)
  );
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
  transform: none;
}

/* Layer 5: classic Woo normalization */

body.wordpressulator-commerce-shell .woocommerce table.shop_table {
  border-color: var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  border-radius: var(--wpu-shell-panel-radius, 14px);
  overflow: hidden;
}

body.wordpressulator-commerce-shell .woocommerce table.shop_table th,
body.wordpressulator-commerce-shell .woocommerce table.shop_table td {
  border-color: var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  padding: 14px 16px;
}

body.wordpressulator-commerce-shell .woocommerce-form.woocommerce-form-login,
body.wordpressulator-commerce-shell .woocommerce-form.woocommerce-form-register,
body.wordpressulator-commerce-shell .woocommerce form.login,
body.wordpressulator-commerce-shell .woocommerce form.register,
body.wordpressulator-account-shell .woocommerce form.edit-account,
body.wordpressulator-account-shell .woocommerce form.lost_reset_password,
body.wordpressulator-account-shell
  .woocommerce
  .woocommerce-MyAccount-navigation,
body.wordpressulator-account-shell .woocommerce .woocommerce-MyAccount-content,
body.wordpressulator-order-received-shell
  .woocommerce
  .woocommerce-order-overview,
body.wordpressulator-order-received-shell
  .woocommerce
  .woocommerce-order-details,
body.wordpressulator-order-received-shell
  .woocommerce
  .woocommerce-customer-details,
body.wordpressulator-cart-shell .woocommerce .cart_totals {
  box-sizing: border-box;
  border: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  border-radius: var(--wpu-shell-panel-radius, 14px);
  background:
    radial-gradient(
      circle at 0 0,
      color-mix(in srgb, var(--wpu-checkout-primary, #1d4ed8) 4%, transparent),
      transparent 34%
    ),
    var(--wpu-shell-panel-muted, #f8fafc);
  box-shadow: none;
}

body.wordpressulator-commerce-shell .woocommerce-form.woocommerce-form-login,
body.wordpressulator-commerce-shell .woocommerce-form.woocommerce-form-register,
body.wordpressulator-commerce-shell .woocommerce form.login,
body.wordpressulator-commerce-shell .woocommerce form.register,
body.wordpressulator-account-shell .woocommerce form.edit-account,
body.wordpressulator-account-shell .woocommerce form.lost_reset_password,
body.wordpressulator-order-received-shell
  .woocommerce
  .woocommerce-order-details,
body.wordpressulator-order-received-shell
  .woocommerce
  .woocommerce-customer-details {
  inline-size: 100%;
  margin-block: 0 22px;
  padding: clamp(18px, 2.6vw, 26px);
}

body.wordpressulator-account-shell
  .woocommerce
  .woocommerce-MyAccount-navigation {
  padding: 12px;
}

body.wordpressulator-account-shell
  .woocommerce
  .woocommerce-MyAccount-navigation
  ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.wordpressulator-account-shell
  .woocommerce
  .woocommerce-MyAccount-navigation
  li
  a {
  display: flex;
  align-items: center;
  min-block-size: 42px;
  border-radius: min(calc(var(--wpu-checkout-radius, 14px) * 0.65), 10px);
  color: var(--wpu-checkout-text, #111827);
  padding: 0 12px;
  text-decoration: none;
}

body.wordpressulator-account-shell
  .woocommerce
  .woocommerce-MyAccount-navigation
  li.is-active
  a,
body.wordpressulator-account-shell
  .woocommerce
  .woocommerce-MyAccount-navigation
  li
  a:hover {
  background: var(--wpu-shell-soft, var(--wpu-shell-panel, #ffffff));
  color: var(--wpu-checkout-primary, #1d4ed8);
}

body.wordpressulator-account-shell .woocommerce .woocommerce-MyAccount-content {
  padding: clamp(16px, 2.2vw, 22px);
}

/* Layer 6: Woo Blocks normalization */

body.wordpressulator-commerce-shell
  .wp-block-woocommerce-checkout-order-summary-block,
body.wordpressulator-commerce-shell
  .wp-block-woocommerce-checkout-order-summary-cart-items-block,
body.wordpressulator-commerce-shell
  .wp-block-woocommerce-checkout-order-summary-coupon-form-block,
body.wordpressulator-commerce-shell
  .wp-block-woocommerce-checkout-payment-block,
body.wordpressulator-commerce-shell .wc-block-components-checkout-step,
body.wordpressulator-cart-shell .wp-block-woocommerce-cart-totals-block,
body.wordpressulator-cart-shell .wp-block-woocommerce-cart-order-summary-block,
body.wordpressulator-cart-shell .wp-block-woocommerce-cart-cross-sells-block,
body.wordpressulator-cart-shell
  .wp-block-woocommerce-cart-express-payment-block,
body.wordpressulator-cart-shell .wc-block-cart__sidebar,
body.wordpressulator-cart-shell .wc-block-components-sidebar,
body.wordpressulator-checkout-shell .wc-block-components-sidebar {
  border: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  border-radius: var(--wpu-shell-panel-radius, 14px);
  background: var(--wpu-shell-panel, #ffffff);
  box-shadow: none;
  color: var(--wpu-checkout-text, #111827);
}

body.wordpressulator-commerce-shell
  .wp-block-woocommerce-checkout-order-summary-block,
body.wordpressulator-cart-shell .wp-block-woocommerce-cart-totals-block,
body.wordpressulator-cart-shell .wc-block-cart__sidebar,
body.wordpressulator-cart-shell .wc-block-components-sidebar,
body.wordpressulator-checkout-shell .wc-block-components-sidebar {
  padding: clamp(16px, 2.2vw, 22px);
}

body.wordpressulator-commerce-shell
  .wc-block-components-sidebar
  .wc-block-components-totals-wrapper,
body.wordpressulator-commerce-shell .wc-block-components-order-summary,
body.wordpressulator-commerce-shell .wc-block-components-order-summary__content,
body.wordpressulator-commerce-shell .wc-block-components-panel,
body.wordpressulator-commerce-shell .wc-block-components-totals-wrapper,
body.wordpressulator-commerce-shell
  .wp-block-woocommerce-checkout-order-summary-block
  .wc-block-components-totals-wrapper,
body.wordpressulator-cart-shell
  .wp-block-woocommerce-cart-totals-block
  .wc-block-components-totals-wrapper,
body.wordpressulator-cart-shell .wc-block-cart-items {
  border-color: var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
}

body.wordpressulator-commerce-shell
  .wc-block-components-order-summary
  .wc-block-components-order-summary-item,
body.wordpressulator-commerce-shell .wc-block-components-totals-item,
body.wordpressulator-commerce-shell .wc-block-components-panel__button,
body.wordpressulator-commerce-shell .wc-block-components-title {
  color: var(--wpu-checkout-text, #111827);
}

body.wordpressulator-commerce-shell .wc-block-components-checkout-step {
  margin-block-end: clamp(14px, 2vw, 20px);
  padding: clamp(16px, 2.3vw, 24px);
}

body.wordpressulator-commerce-shell
  .wc-block-components-checkout-step__heading {
  margin-block-end: 14px;
}

body.wordpressulator-commerce-shell .wc-block-components-checkout-step__title,
body.wordpressulator-commerce-shell .wc-block-components-title {
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
}

body.wordpressulator-commerce-shell .wc-block-components-checkout-step__content,
body.wordpressulator-commerce-shell .wc-block-components-address-form,
body.wordpressulator-commerce-shell .wc-block-components-address-form-wrapper {
  min-inline-size: 0;
}

body.wordpressulator-commerce-shell .wc-block-components-text-input,
body.wordpressulator-commerce-shell .wc-blocks-components-select,
body.wordpressulator-commerce-shell .wc-block-components-address-form__email {
  margin-block: 0;
}

body.wordpressulator-commerce-shell .wc-block-components-order-summary {
  margin: 0;
}

body.wordpressulator-commerce-shell
  .wc-block-components-order-summary
  .wc-block-components-order-summary-item {
  display: grid;
  grid-template-columns: minmax(48px, auto) minmax(0, 1fr);
  gap: 12px;
  padding-block: 14px;
}

body.wordpressulator-commerce-shell
  .wc-block-components-order-summary-item__image
  img,
body.wordpressulator-commerce-shell
  .wc-block-components-order-summary-item__image
  > img {
  border: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  border-radius: 10px;
  background: var(--wpu-shell-panel, #ffffff);
  object-fit: cover;
}

body.wordpressulator-commerce-shell .wc-block-components-product-name,
body.wordpressulator-commerce-shell
  .wc-block-components-order-summary-item__description {
  color: var(--wpu-checkout-text, #111827);
  font-weight: 720;
  line-height: 1.28;
  text-decoration: none;
}

body.wordpressulator-commerce-shell .wc-block-components-product-metadata,
body.wordpressulator-commerce-shell
  .wc-block-components-product-metadata__description,
body.wordpressulator-commerce-shell
  .wc-block-components-totals-item__description {
  color: var(--wpu-checkout-muted, #64748b);
  font-size: 0.9rem;
  line-height: 1.42;
}

body.wordpressulator-commerce-shell .wc-block-components-product-price,
body.wordpressulator-commerce-shell .wc-block-components-totals-item__value,
body.wordpressulator-commerce-shell .wc-block-components-formatted-money-amount,
body.wordpressulator-commerce-shell .wc-block-formatted-money-amount {
  color: var(--wpu-checkout-text, #111827);
  font-variant-numeric: tabular-nums;
  font-weight: 720;
}

body.wordpressulator-commerce-shell .wc-block-components-totals-coupon,
body.wordpressulator-commerce-shell .wc-block-components-totals-coupon__form,
body.wordpressulator-commerce-shell
  .wp-block-woocommerce-checkout-order-summary-coupon-form-block {
  border-color: var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  border-radius: var(--wpu-shell-control-radius, 11px);
  background: var(--wpu-shell-panel-muted, #f8fafc);
}

body.wordpressulator-commerce-shell .wc-block-components-totals-coupon {
  padding: 14px !important;
}

body.wordpressulator-commerce-shell .wc-block-components-totals-coupon__form {
  display: grid;
  gap: 10px;
  padding: 12px;
}

body.wordpressulator-commerce-shell .wc-block-components-quantity-selector {
  display: inline-grid;
  grid-template-columns: 34px minmax(44px, 1fr) 34px;
  align-items: center;
  min-block-size: 32px;
  inline-size: min(100%, 132px);
  max-inline-size: 132px;
  border: 1px solid var(--wpu-shell-line-strong, rgba(100, 116, 139, 0.3));
  border-radius: 999px;
  background: var(--wpu-shell-panel, #ffffff);
  overflow: visible;
}

body.wordpressulator-commerce-shell
  .wc-block-components-quantity-selector__button,
body.wordpressulator-commerce-shell
  .wc-block-components-quantity-selector__input {
  min-block-size: 30px;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--wpu-checkout-text, #111827);
  font: inherit;
  text-align: center;
}

body.wordpressulator-commerce-shell
  .wc-block-components-quantity-selector__button {
  display: inline-grid;
  place-items: center;
  inline-size: 34px;
  min-inline-size: 34px;
  padding: 0;
  color: var(--wpu-checkout-muted, #64748b);
  cursor: pointer;
  font-size: 0.7em;
  font-weight: 400;
}

body.wordpressulator-commerce-shell
  .wc-block-components-quantity-selector__button:hover {
  background: var(--wpu-shell-panel-muted, #f8fafc);
  color: var(--wpu-checkout-primary, #1d4ed8);
  transform: none;
}

body.wordpressulator-commerce-shell
  .wc-block-components-quantity-selector__input {
  inline-size: auto;
  min-inline-size: 44px;
  padding: 0;
  border-inline: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  font-weight: 700;
}

body.wordpressulator-cart-shell .wc-block-cart-item__image img {
  border: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  border-radius: 10px;
}

/* Layer 7: notices */

body.wordpressulator-commerce-shell .woocommerce .woocommerce-error,
body.wordpressulator-commerce-shell .woocommerce .woocommerce-info,
body.wordpressulator-commerce-shell .woocommerce .woocommerce-message,
body.wordpressulator-commerce-shell .wc-block-components-notice-banner {
  border-radius: min(var(--wpu-checkout-radius, 14px), 12px);
  border-width: 1px;
  box-shadow: none;
  font-size: 0.96rem;
  font-weight: 560;
  line-height: 1.48;
  margin-block: 0 20px;
  padding: 15px 18px 15px 48px;
}

body.wordpressulator-commerce-shell .woocommerce .woocommerce-error,
body.wordpressulator-commerce-shell
  .wc-block-components-notice-banner.is-error {
  border-color: var(--wpu-shell-danger-line, #f1c4c4);
  background: var(--wpu-shell-danger-bg, #fff5f5);
  color: var(--wpu-shell-danger, #c63434);
}

body.wordpressulator-commerce-shell .woocommerce .woocommerce-info,
body.wordpressulator-commerce-shell .wc-block-components-notice-banner.is-info {
  border-color: var(--wpu-shell-info-line, #c7ddf5);
  background: var(--wpu-shell-info-bg, #f2f8ff);
  color: var(--wpu-shell-info, #075985);
}

body.wordpressulator-commerce-shell .woocommerce .woocommerce-message,
body.wordpressulator-commerce-shell
  .wc-block-components-notice-banner.is-success {
  border-color: var(--wpu-shell-success-line, #bde8cf);
  background: var(--wpu-shell-success-bg, #f0fbf5);
  color: var(--wpu-shell-success, #168a55);
}

body.wordpressulator-commerce-shell
  .wc-block-components-notice-banner.is-warning {
  border-color: var(--wpu-shell-warning-line, #efd49d);
  background: var(--wpu-shell-warning-bg, #fff8eb);
  color: var(--wpu-shell-warning, #8a5a00);
}

body.wordpressulator-commerce-shell .wc-block-components-notices,
body.wordpressulator-commerce-shell .wc-block-components-notice-snackbar-list {
  display: grid;
  gap: 10px;
  margin-block: 0 16px;
}

body.wordpressulator-commerce-shell .wc-block-components-notice-snackbar-list,
body.wordpressulator-commerce-shell
  .wc-block-components-notices__snackbar.wc-block-components-notice-snackbar-list {
  position: fixed;
  inset-block: auto calc(env(safe-area-inset-bottom, 0px) + 24px);
  inset-inline: auto clamp(16px, 3vw, 32px);
  z-index: 30;
  inline-size: min(calc(100vw - 32px), 420px);
  max-inline-size: 420px;
  margin: 0;
  pointer-events: none;
}

body.wordpressulator-commerce-shell
  .wc-block-components-notice-snackbar-list:empty,
body.wordpressulator-commerce-shell
  .wc-block-components-notices__snackbar.wc-block-components-notice-snackbar-list:empty {
  display: none;
}

body.wordpressulator-commerce-shell
  .wc-block-components-notices__snackbar.wc-block-components-notice-snackbar-list:has(
    > div:empty:only-child
  ) {
  display: none;
}

body.wordpressulator-commerce-shell .wc-block-components-notices__snackbar {
  border: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  border-radius: var(--wpu-shell-control-radius, 11px);
  background: var(--wpu-shell-panel, #ffffff);
  color: var(--wpu-checkout-text, #111827);
  box-shadow: 0 10px 24px
    color-mix(in srgb, var(--wpu-checkout-text, #111827) 8%, transparent);
  font-weight: 620;
  pointer-events: auto;
}

/* Layer 8: cart page exceptions */

body.wordpressulator-cart-shell .woocommerce,
body.wordpressulator-checkout-shell--top-level .woocommerce {
  inline-size: 100%;
  max-inline-size: none;
}

body.wordpressulator-cart-shell .woocommerce > h1,
body.wordpressulator-cart-shell .woocommerce > h2,
body.wordpressulator-cart-shell .woocommerce > h3 {
  margin-block: 0 18px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: 0;
}

body.wordpressulator-cart-shell .woocommerce .cart-empty,
body.wordpressulator-cart-shell .woocommerce .return-to-shop {
  margin-inline: auto;
  max-inline-size: 680px;
  text-align: center;
}

body.wordpressulator-cart-shell .woocommerce .cart-empty {
  margin-block: clamp(10px, 3vw, 28px) 16px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  border-radius: var(--wpu-shell-panel-radius, 14px);
  background: var(--wpu-shell-panel-muted, #f8fafc);
  color: var(--wpu-checkout-text, #111827);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 650;
  line-height: 1.35;
}

body.wordpressulator-cart-shell .woocommerce .return-to-shop {
  margin-block-end: clamp(10px, 3vw, 24px);
}

body.wordpressulator-cart-shell .woocommerce-cart-form,
body.wordpressulator-cart-shell .wc-block-cart {
  inline-size: 100%;
  min-inline-size: 0;
}

body.wordpressulator-cart-shell .woocommerce-cart-form {
  margin: 0;
}

body.wordpressulator-cart-shell .woocommerce table.shop_table.cart {
  margin-block-end: clamp(18px, 3vw, 26px);
  border-collapse: separate;
  border-spacing: 0;
  background: var(--wpu-shell-panel, #ffffff);
}

body.wordpressulator-cart-shell .woocommerce table.shop_table.cart thead th {
  background: var(--wpu-shell-panel-muted, #f8fafc);
  color: color-mix(
    in srgb,
    var(--wpu-checkout-text, #111827) 78%,
    var(--wpu-checkout-muted, #64748b)
  );
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
}

body.wordpressulator-cart-shell
  .woocommerce
  table.shop_table.cart
  td.product-thumbnail {
  inline-size: 84px;
}

body.wordpressulator-cart-shell
  .woocommerce
  table.shop_table.cart
  td.product-thumbnail
  img {
  display: block;
  inline-size: 64px;
  block-size: 64px;
  border: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  border-radius: 10px;
  object-fit: cover;
}

body.wordpressulator-cart-shell
  .woocommerce
  table.shop_table.cart
  td.product-name
  a {
  color: var(--wpu-checkout-text, #111827);
  font-weight: 650;
  text-decoration: none;
}

body.wordpressulator-cart-shell
  .woocommerce
  table.shop_table.cart
  td.product-name
  a:hover {
  color: var(--wpu-checkout-primary, #1d4ed8);
}

body.wordpressulator-cart-shell
  .woocommerce
  table.shop_table.cart
  td.product-price,
body.wordpressulator-cart-shell
  .woocommerce
  table.shop_table.cart
  td.product-subtotal,
body.wordpressulator-cart-shell .woocommerce .cart_totals .shop_table td,
body.wordpressulator-cart-shell .woocommerce .cart_totals .shop_table th {
  font-variant-numeric: tabular-nums;
}

body.wordpressulator-cart-shell
  .woocommerce
  table.shop_table.cart
  .quantity
  .qty,
body.wordpressulator-cart-shell .woocommerce .cart .quantity .qty {
  inline-size: 84px;
  min-block-size: 42px;
  text-align: center;
}

body.wordpressulator-cart-shell .woocommerce table.shop_table.cart td.actions {
  padding: 16px;
  background: var(--wpu-shell-panel-muted, #f8fafc);
}

body.wordpressulator-cart-shell
  .woocommerce
  table.shop_table.cart
  td.actions
  .coupon {
  display: flex;
  align-items: stretch;
  gap: 10px;
  max-inline-size: 460px;
}

body.wordpressulator-cart-shell
  .woocommerce
  table.shop_table.cart
  td.actions
  .coupon
  label {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

body.wordpressulator-cart-shell
  .woocommerce
  table.shop_table.cart
  td.actions
  .coupon
  .input-text {
  inline-size: min(100%, 240px);
  min-block-size: 46px;
}

body.wordpressulator-cart-shell
  .woocommerce
  table.shop_table.cart
  td.actions
  > .button {
  float: right;
  min-block-size: 46px;
}

body.wordpressulator-cart-shell
  .woocommerce
  table.shop_table.cart
  td.actions
  .coupon
  .button {
  min-block-size: 46px;
  white-space: nowrap;
}

body.wordpressulator-cart-shell .woocommerce .cart-collaterals,
body.wordpressulator-cart-shell .wc-block-cart {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}

body.wordpressulator-cart-shell .woocommerce .cart-collaterals::before,
body.wordpressulator-cart-shell .woocommerce .cart-collaterals::after,
body.wordpressulator-cart-shell .woocommerce .cross-sells ul.products::before,
body.wordpressulator-cart-shell .woocommerce .cross-sells ul.products::after,
body.wordpressulator-cart-shell .woocommerce ul.products::before,
body.wordpressulator-cart-shell .woocommerce ul.products::after {
  content: none;
  display: none;
}

body.wordpressulator-cart-shell .woocommerce .cart-collaterals .cross-sells,
body.wordpressulator-cart-shell .woocommerce .cart-collaterals .cart_totals,
body.wordpressulator-cart-shell .wc-block-cart__main,
body.wordpressulator-cart-shell .wc-block-cart__sidebar {
  inline-size: 100%;
  min-inline-size: 0;
}

body.wordpressulator-cart-shell .wc-block-cart__main {
  overflow-x: auto;
}

body.wordpressulator-cart-shell .wc-block-cart-items,
body.wordpressulator-cart-shell .wc-block-cart-items__header,
body.wordpressulator-cart-shell .wc-block-cart-items__row {
  inline-size: 100%;
}

body.wordpressulator-cart-shell .wc-block-cart-items {
  border-collapse: separate;
  border-spacing: 0;
  background: var(--wpu-shell-panel, #ffffff);
}

body.wordpressulator-cart-shell .wc-block-cart-items__header th {
  padding: 0 0 12px;
  color: var(--wpu-checkout-muted, #64748b);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.wordpressulator-cart-shell .wc-block-cart-items__row {
  border-block-start: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
}

body.wordpressulator-cart-shell .wc-block-cart-items__row td {
  padding-block: clamp(16px, 2.3vw, 22px);
  vertical-align: top;
}

body.wordpressulator-cart-shell .wc-block-cart-item__product {
  min-inline-size: 0;
}

body.wordpressulator-cart-shell .wc-block-cart-item__wrap {
  display: grid;
  gap: 9px;
  min-inline-size: 0;
}

body.wordpressulator-cart-shell .wc-block-cart-item__image {
  inline-size: clamp(72px, 8vw, 96px);
}

body.wordpressulator-cart-shell .woocommerce .cart-collaterals .cross-sells,
body.wordpressulator-cart-shell .woocommerce .cart-collaterals .cart_totals {
  float: none;
  margin: 0;
}

body.wordpressulator-cart-shell .woocommerce .cart_totals {
  justify-self: end;
  padding: 18px;
}

body.wordpressulator-cart-shell .woocommerce .cart_totals h2,
body.wordpressulator-cart-shell .woocommerce .cross-sells h2 {
  margin-block: 0 14px;
  font-size: 1.15rem;
  letter-spacing: 0;
}

body.wordpressulator-cart-shell
  .wc-block-cart-item__product
  .wc-block-components-product-name,
body.wordpressulator-cart-shell .wc-block-grid__product-title {
  display: block;
  margin-block-end: 6px;
}

body.wordpressulator-cart-shell
  .wc-block-cart-item__product
  .wc-block-components-product-name {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.28;
}

body.wordpressulator-cart-shell
  .wc-block-components-product-metadata__description
  > p {
  margin-block: 0;
  color: var(--wpu-checkout-muted, #64748b);
  font-weight: 400;
}

body.wordpressulator-cart-shell .wc-block-cart-item__prices,
body.wordpressulator-cart-shell .wc-block-cart-item__total {
  color: var(--wpu-checkout-text, #111827);
  font-variant-numeric: tabular-nums;
  font-weight: 720;
}

body.wordpressulator-cart-shell .wc-block-cart-item__total {
  font-size: 0.825em;
}

body.wordpressulator-cart-shell .wc-block-cart-item__remove-link {
  display: inline-flex;
  align-items: center;
  inline-size: fit-content;
  min-block-size: 30px;
  border: 0;
  background: transparent;
  color: var(--wpu-checkout-muted, #64748b);
  font-size: 0.86rem;
  font-weight: 560;
  line-height: 1.2;
  padding: 0;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

body.wordpressulator-cart-shell .wc-block-cart-item__remove-link:hover {
  color: var(--wpu-checkout-primary, #1d4ed8);
}

body.wordpressulator-cart-shell .wp-block-woocommerce-cart-order-summary-block {
  border: 0;
  background: transparent;
  padding: 0;
}

body.wordpressulator-cart-shell
  .wp-block-woocommerce-cart-order-summary-block
  .wc-block-components-totals-coupon__form,
body.wordpressulator-cart-shell
  .wc-block-cart__sidebar
  .wc-block-components-totals-coupon__form {
  padding: 0;
}

body.wordpressulator-cart-shell .woocommerce .cart_totals table.shop_table {
  margin-block-end: 14px;
  background: var(--wpu-shell-panel, #ffffff);
}

body.wordpressulator-cart-shell
  .woocommerce
  .cart_totals
  .wc-proceed-to-checkout {
  padding: 0;
}

body.wordpressulator-cart-shell
  .woocommerce
  .cart_totals
  .wc-proceed-to-checkout
  a.checkout-button {
  display: flex;
  margin: 0;
  text-align: center;
}

body.wordpressulator-cart-shell .woocommerce .cross-sells,
body.wordpressulator-cart-shell .wc-block-grid,
body.wordpressulator-cart-shell .wp-block-woocommerce-cart-cross-sells-block {
  min-inline-size: 0;
}

body.wordpressulator-cart-shell .wp-block-woocommerce-empty-cart-block {
  display: grid;
  gap: clamp(18px, 3vw, 26px);
}

body.wordpressulator-cart-shell .wc-block-cart__empty-cart__title {
  margin: 0 auto;
  max-inline-size: 720px;
  color: var(--wpu-checkout-text, #111827);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  text-align: center;
}

body.wordpressulator-cart-shell .woocommerce .cross-sells ul.products,
body.wordpressulator-cart-shell .woocommerce ul.products,
body.wordpressulator-cart-shell .wc-block-grid__products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(14px, 2vw, 20px);
  margin: 0;
  padding: 0;
}

body.wordpressulator-cart-shell
  .woocommerce
  .cross-sells
  ul.products
  li.product,
body.wordpressulator-cart-shell .woocommerce ul.products li.product,
body.wordpressulator-cart-shell
  .wc-block-grid.has-4-columns
  .wc-block-grid__product,
body.wordpressulator-cart-shell .wc-block-grid__product {
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
  float: none;
  inline-size: 100%;
  max-inline-size: none;
  max-width: none;
  flex: initial;
  margin: 0;
  padding: clamp(14px, 2vw, 18px);
  border: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  border-radius: var(--wpu-shell-panel-radius, 14px);
  background: var(--wpu-shell-panel, #ffffff);
  list-style: none;
}

body.wordpressulator-cart-shell .woocommerce ul.products li.product img,
body.wordpressulator-cart-shell .wc-block-grid__product-image img {
  inline-size: 100%;
  max-inline-size: none;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  object-fit: cover;
}

body.wordpressulator-cart-shell .wc-block-grid__product-image {
  inline-size: 100%;
  margin: 0;
}

body.wordpressulator-cart-shell
  .woocommerce
  ul.products
  li.product
  .woocommerce-loop-product__title,
body.wordpressulator-cart-shell .wc-block-grid__product-title {
  padding: 0;
  color: var(--wpu-checkout-text, #111827);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

body.wordpressulator-cart-shell .wc-block-grid__product-link {
  display: grid;
  gap: 10px;
  color: var(--wpu-checkout-text, #111827);
  text-decoration: none;
}

body.wordpressulator-cart-shell .wc-block-grid__product-add-to-cart {
  display: inline-flex;
  margin-left: 0;
  margin-right: 0;
  margin-block-start: auto;
}

body.wordpressulator-cart-shell .wc-block-grid__product-price,
body.wordpressulator-cart-shell .wc-block-grid__product-rating {
  color: var(--wpu-checkout-muted, #64748b);
  font-size: 0.9rem;
  line-height: 1.35;
  text-align: left;
}

body.wordpressulator-cart-shell
  .wc-block-grid__product-add-to-cart
  .wp-block-button__link,
body.wordpressulator-cart-shell
  .wc-block-grid__product-add-to-cart
  .wp-element-button {
  inline-size: 100%;
  min-block-size: 46px;
  font-size: 0.88rem;
}

/* Layer 9: checkout page exceptions */

body.wordpressulator-checkout-shell .wordpressulator-checkout-shell__hook-band {
  box-sizing: border-box;
  margin-block-end: clamp(18px, 3vw, 28px);
  padding: clamp(18px, 3vw, 28px) 0 0;
}

body.wordpressulator-checkout-shell
  .wordpressulator-checkout-shell__hook-band
  .wordpressulator-checkout-shell__header {
  margin-block-end: 0;
}

body.wordpressulator-checkout-shell--top-level .woocommerce form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 430px);
  align-items: start;
  column-gap: clamp(20px, 3vw, 34px);
  row-gap: 0;
  margin: 0;
}

body.wordpressulator-checkout-shell--top-level
  .woocommerce
  form.checkout::before,
body.wordpressulator-checkout-shell--top-level
  .woocommerce
  form.checkout::after {
  content: none;
  display: none;
}

body.wordpressulator-checkout-shell--top-level
  .woocommerce
  form.checkout
  > .col2-set,
body.wordpressulator-checkout-shell--top-level
  .woocommerce
  form.checkout
  > #customer_details {
  grid-column: 1;
  grid-row: 1 / span 2;
  inline-size: 100%;
  float: none;
  min-inline-size: 0;
}

body.wordpressulator-checkout-shell--top-level
  .woocommerce
  form.checkout
  > #order_review_heading {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  padding: 18px 20px 13px;
  border: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  border-block-end: 0;
  border-radius: var(--wpu-shell-panel-radius, 14px)
    var(--wpu-shell-panel-radius, 14px) 0 0;
  background: var(--wpu-shell-panel-muted, #f8fafc);
}

body.wordpressulator-checkout-shell--top-level
  .woocommerce
  form.checkout
  > #order_review,
body.wordpressulator-checkout-shell--top-level
  .woocommerce
  form.checkout
  > .woocommerce-checkout-review-order {
  grid-column: 2;
  grid-row: 2;
  inline-size: 100%;
  float: none;
  position: static;
  min-inline-size: 0;
}

body.wordpressulator-checkout-shell--top-level .woocommerce .col2-set,
body.wordpressulator-checkout-shell--top-level .woocommerce .col2-set .col-1,
body.wordpressulator-checkout-shell--top-level .woocommerce .col2-set .col-2 {
  float: none;
  inline-size: 100%;
  margin: 0;
}

body.wordpressulator-checkout-shell--top-level
  .woocommerce
  form.checkout
  > #customer_details,
body.wordpressulator-checkout-shell--top-level
  .woocommerce
  form.checkout
  > .col2-set {
  display: grid;
  gap: clamp(16px, 2.5vw, 24px);
}

body.wordpressulator-checkout-shell--top-level
  .woocommerce
  form.checkout
  > #customer_details
  > .col-2:empty,
body.wordpressulator-checkout-shell--top-level
  .woocommerce
  form.checkout
  > .col2-set
  > .col-2:empty {
  display: none;
}

body.wordpressulator-checkout-shell--top-level
  .woocommerce
  form.checkout
  > #customer_details
  > .col-1,
body.wordpressulator-checkout-shell--top-level
  .woocommerce
  form.checkout
  > .col2-set
  > .col-1 {
  min-inline-size: 0;
}

body.wordpressulator-checkout-shell--top-level .woocommerce-billing-fields,
body.wordpressulator-checkout-shell--top-level .woocommerce-shipping-fields,
body.wordpressulator-checkout-shell--top-level .woocommerce-additional-fields {
  border: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  border-radius: var(--wpu-shell-panel-radius, 14px);
  background: var(--wpu-shell-panel-muted, #f8fafc);
  padding: clamp(16px, 2.2vw, 22px);
}

body.wordpressulator-checkout-shell--top-level .woocommerce-additional-fields {
  margin-block-start: clamp(18px, 3vw, 28px);
}

body.wordpressulator-checkout-shell--top-level .woocommerce-billing-fields h3,
body.wordpressulator-checkout-shell--top-level .woocommerce-shipping-fields h3,
body.wordpressulator-checkout-shell--top-level
  .woocommerce-additional-fields
  h3,
body.wordpressulator-checkout-shell--top-level #order_review_heading {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  letter-spacing: 0;
}

body.wordpressulator-checkout-shell--top-level #order_review {
  background: var(--wpu-shell-panel, #ffffff);
  border: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  border-radius: 0 0 var(--wpu-shell-panel-radius, 14px)
    var(--wpu-shell-panel-radius, 14px);
  box-shadow: none;
  overflow: hidden;
}

body.wordpressulator-checkout-shell--top-level
  #order_review
  .woocommerce-checkout-review-order-table {
  margin-block-end: 0;
}

body.wordpressulator-commerce-shell .woocommerce-checkout-review-order,
body.wordpressulator-commerce-shell .woocommerce-checkout-payment,
body.wordpressulator-commerce-shell #order_review {
  border-radius: var(--wpu-shell-panel-radius, 14px);
}

body.wordpressulator-commerce-shell .woocommerce-checkout #payment {
  background: var(--wpu-shell-panel-muted, #f8fafc);
  border: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  border-radius: var(--wpu-shell-panel-radius, 14px);
}

body.wordpressulator-checkout-shell--top-level .woocommerce-checkout #payment {
  border-inline: 0;
  border-block-end: 0;
  border-radius: 0 0 var(--wpu-shell-panel-radius, 14px)
    var(--wpu-shell-panel-radius, 14px);
}

body.wordpressulator-commerce-shell
  .woocommerce-checkout
  #payment
  ul.payment_methods {
  border-block-end-color: var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  padding: 18px;
}

body.wordpressulator-commerce-shell
  .woocommerce-checkout
  #payment
  div.payment_box {
  background: var(--wpu-shell-panel, #ffffff);
  border: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  border-radius: var(--wpu-shell-control-radius, 11px);
  color: var(--wpu-checkout-text, #111827);
}

body.wordpressulator-checkout-shell--top-level
  .woocommerce-checkout
  #payment
  #place_order {
  inline-size: 100%;
  min-block-size: 52px;
}

body.wordpressulator-checkout-shell--top-level
  .woocommerce
  form.checkout_coupon {
  box-sizing: border-box;
  inline-size: 100%;
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid
    color-mix(in srgb, var(--wpu-checkout-primary, #1d4ed8) 20%, transparent);
  border-radius: var(--wpu-shell-control-radius, 11px);
  background: var(
    --wpu-shell-selected,
    color-mix(
      in srgb,
      var(--wpu-checkout-primary, #1d4ed8) 5%,
      var(--wpu-shell-panel, #ffffff)
    )
  );
}

body.wordpressulator-checkout-shell--top-level
  .woocommerce
  form.checkout_coupon
  p {
  margin-block: 0 12px;
}

body.wordpressulator-checkout-shell--top-level
  .woocommerce
  form.checkout_coupon
  .form-row {
  margin-block-end: 0;
}

body.wordpressulator-checkout-shell--top-level
  .woocommerce
  form.checkout_coupon
  .button {
  min-block-size: 46px;
}

body.wordpressulator-checkout-shell--top-level
  .wordpressulator-checkout-shell__product-line {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-inline-size: 0;
}

body.wordpressulator-checkout-shell--top-level
  .wordpressulator-checkout-shell__product-thumb {
  display: block;
  inline-size: 56px;
  block-size: 56px;
  border: 1px solid
    color-mix(in srgb, var(--wpu-checkout-muted, #64748b) 16%, transparent);
  border-radius: 10px;
  background: var(--wpu-shell-panel, #ffffff);
  object-fit: cover;
}

body.wordpressulator-checkout-shell--top-level
  .wordpressulator-checkout-shell__product-name {
  min-inline-size: 0;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-sidebar-layout {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  align-items: start;
  column-gap: clamp(22px, 4vw, 42px);
  inline-size: 100%;
  width: 100%;
  max-inline-size: 100%;
  margin: 0 auto 16px;
  padding: 0;
}

body.wordpressulator-checkout-shell--top-level
  .wordpressulator-commerce-shell__surface--checkout,
body.wordpressulator-checkout-shell--top-level
  .wp-block-woocommerce-checkout.alignwide,
body.wordpressulator-checkout-shell--top-level .wc-block-checkout {
  box-sizing: border-box;
  inline-size: 100%;
  width: 100%;
  max-inline-size: 100%;
  margin-inline: auto;
  padding-inline: 0;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-sidebar-layout
  .wc-block-components-main,
body.wordpressulator-checkout-shell--top-level .wc-block-checkout__main {
  box-sizing: border-box;
  inline-size: auto;
  width: auto;
  min-inline-size: 0;
  max-inline-size: 100%;
  margin: 0;
  padding: 0;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-sidebar-layout
  .wc-block-components-sidebar,
body.wordpressulator-checkout-shell--top-level .wc-block-checkout__sidebar {
  box-sizing: border-box;
  inline-size: auto;
  width: auto;
  min-inline-size: 0;
  max-inline-size: 100%;
  margin: 0;
  padding: clamp(16px, 2.2vw, 22px);
  position: sticky;
  top: var(--wpu-checkout-sticky-offset, 24px);
}

body.wordpressulator-checkout-shell--top-level .wc-block-components-form,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-checkout-step,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-checkout-step__content,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-address-address-wrapper,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-address-card-wrapper,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-address-form-wrapper,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-address-form {
  box-sizing: border-box;
  inline-size: 100%;
  width: 100%;
  min-inline-size: 0;
  max-inline-size: 100%;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-address-form {
  display: block;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-address-form
  > *
  + *,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-address-form-wrapper
  > *
  + * {
  margin-block-start: 13px;
}

body.wordpressulator-checkout-shell--top-level .wc-block-components-text-input,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-address-form__email,
body.wordpressulator-checkout-shell--top-level .wc-blocks-components-select,
body.wordpressulator-checkout-shell--top-level
  .wc-blocks-components-select__container {
  position: relative;
  box-sizing: border-box;
  inline-size: 100%;
  max-inline-size: 100%;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-text-input
  input,
body.wordpressulator-checkout-shell--top-level
  #wc-block-components-totals-coupon__input-coupon {
  block-size: 56px;
  height: 56px;
  min-block-size: 56px;
  padding-block: 16px;
  padding-inline: 14px;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-text-input.is-active
  input[type="email"],
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-text-input.is-active
  input[type="number"],
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-text-input.is-active
  input[type="password"],
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-text-input.is-active
  input[type="tel"],
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-text-input.is-active
  input[type="text"],
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-text-input.is-active
  input[type="url"],
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-text-input
  input[type="email"]:focus,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-text-input
  input[type="number"]:focus,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-text-input
  input[type="password"]:focus,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-text-input
  input[type="tel"]:focus,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-text-input
  input[type="text"]:focus,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-text-input
  input[type="url"]:focus,
body.wordpressulator-checkout-shell--top-level
  #wc-block-components-totals-coupon__input-coupon:focus {
  padding-block: 22px 7px;
  padding-inline: 14px;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-text-input
  label {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 14px;
  max-inline-size: calc(100% - 28px);
  margin: 0;
  color: var(--wpu-checkout-text, #111827);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.45;
  pointer-events: none;
  transform: translateY(-50%);
  transform-origin: left top;
  transition:
    inset-block-start 180ms ease,
    color 160ms ease,
    transform 180ms ease;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-text-input.is-active
  label,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-text-input
  input:focus
  + label {
  inset-block-start: 7px;
  inset-inline-start: 14px;
  color: var(--wpu-checkout-muted, #64748b);
  transform: scale(0.82);
}

body.wordpressulator-checkout-shell--top-level
  .wc-blocks-components-select__container {
  min-block-size: 64px;
  border: 1px solid var(--wpu-shell-line-strong, rgba(100, 116, 139, 0.3));
  border-radius: var(--wpu-shell-control-radius, 11px);
  background: var(--wpu-shell-panel, #ffffff);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

body.wordpressulator-checkout-shell--top-level
  .wc-blocks-components-select__container:focus-within {
  border-color: var(--wpu-checkout-primary, #1d4ed8);
  box-shadow: var(--wpu-shell-focus-ring);
}

body.wordpressulator-checkout-shell--top-level
  .wc-blocks-components-select__label {
  position: absolute;
  inset-block-start: 7px;
  inset-inline-start: 14px;
  z-index: 1;
  max-inline-size: calc(100% - 54px);
  margin: 0;
  color: var(--wpu-checkout-text, #111827);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.45;
  pointer-events: none;
  transform: none;
}

body.wordpressulator-checkout-shell--top-level
  .wc-blocks-components-select__select {
  min-block-size: 64px;
  border: 0;
  background-color: transparent;
  box-shadow: none;
  line-height: 1.35;
  padding-block: 22px 0;
  padding-inline: 14px 44px;
}

body.wordpressulator-checkout-shell--top-level
  .wc-blocks-components-select__select:focus {
  border-color: transparent;
  border-width: 0;
  box-shadow: none;
  outline: none;
  padding-block: 22px 0;
  padding-inline: 14px 44px;
}

body.wordpressulator-checkout-shell--top-level
  .wc-blocks-components-select__expand {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: 12px;
  block-size: 22px;
  inline-size: 22px;
  color: var(--wpu-checkout-muted, #64748b);
  pointer-events: none;
  transform: translateY(-50%);
}

body.wordpressulator-checkout-shell--top-level .wc-block-checkout__sidebar {
  border: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  border-radius: var(--wpu-shell-panel-radius, 14px);
  background:
    radial-gradient(
      circle at 0 0,
      color-mix(in srgb, var(--wpu-checkout-primary, #1d4ed8) 8%, transparent),
      transparent 34%
    ),
    var(--wpu-shell-panel-muted, #f8fafc);
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-checkout-order-summary__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-block: 0 12px;
  color: var(--wpu-checkout-text, #111827);
  font-weight: 850;
  line-height: 1.2;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-checkout-order-summary__title-text {
  margin: 0;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-checkout-order-summary__title-price {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

body.wordpressulator-checkout-shell--top-level
  .wp-block-woocommerce-checkout-shipping-method-block,
body.wordpressulator-checkout-shell--top-level
  .wp-block-woocommerce-checkout-shipping-methods-block,
body.wordpressulator-checkout-shell--top-level
  .wp-block-woocommerce-checkout-payment-block,
body.wordpressulator-checkout-shell--top-level
  .wp-block-woocommerce-checkout-actions-block,
body.wordpressulator-checkout-shell--top-level
  .wp-block-woocommerce-checkout-terms-block,
body.wordpressulator-checkout-shell--top-level
  .wp-block-woocommerce-checkout-order-note-block {
  box-sizing: border-box;
  inline-size: 100%;
  min-inline-size: 0;
  max-inline-size: 100%;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-shipping-rates-control,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-shipping-rates-control__package,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-radio-control {
  display: grid;
  gap: 10px;
  inline-size: 100%;
  max-inline-size: 100%;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-radio-control-accordion-option {
  box-sizing: border-box;
  inline-size: 100%;
  width: 100%;
  max-inline-size: 100%;
  padding: clamp(16px, 2vw, 20px);
  overflow: hidden;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-radio-control__option {
  box-sizing: border-box;
  position: relative;
  display: block;
  min-block-size: 54px;
  inline-size: 100%;
  width: 100%;
  max-inline-size: 100%;
  margin: 0;
  padding: 16px 16px 16px 48px;
  overflow: hidden;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-radio-control__input {
  display: inline-block;
  position: absolute;
  inline-size: 20px;
  block-size: 20px;
  left: 16px;
  top: 50%;
  margin: 0;
  transform: translateY(-50%);
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-radio-control__input:checked::before {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-radio-control__option-layout {
  inline-size: 100%;
  max-inline-size: 100%;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-radio-control__option-checked,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-radio-control__option--checked-option-highlighted,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-radio-control-accordion-option--checked-option-highlighted {
  border-color: color-mix(
    in srgb,
    var(--wpu-checkout-primary, #1d4ed8) 36%,
    var(--wpu-shell-line, rgba(100, 116, 139, 0.18))
  );
  background: var(
    --wpu-shell-selected,
    color-mix(
      in srgb,
      var(--wpu-checkout-primary, #1d4ed8) 8%,
      var(--wpu-shell-panel, #ffffff)
    )
  );
  box-shadow: inset 0 0 0 1px
    color-mix(in srgb, var(--wpu-checkout-primary, #1d4ed8) 12%, transparent);
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-radio-control__option-layout,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-radio-control__label-group {
  min-inline-size: 0;
  max-inline-size: 100%;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-radio-control__label-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  inline-size: 100%;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-radio-control__secondary-label,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-payment-method-label {
  color: var(--wpu-checkout-muted, #64748b);
  font-size: 0.9rem;
  line-height: 1.35;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-radio-control-accordion-content {
  margin-block-start: 10px;
  margin-inline-start: 32px;
  max-inline-size: calc(100% - 32px);
  padding: 14px;
  border: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  border-radius: var(--wpu-shell-control-radius, 11px);
  background: var(--wpu-shell-panel-muted, #f8fafc);
  color: var(--wpu-checkout-muted, #64748b);
}

body.wordpressulator-checkout-shell--top-level
  .wp-block-woocommerce-checkout-totals-block,
body.wordpressulator-checkout-shell--top-level
  .wp-block-woocommerce-checkout-order-summary-block,
body.wordpressulator-checkout-shell--top-level
  .wp-block-woocommerce-checkout-order-summary-cart-items-block,
body.wordpressulator-checkout-shell--top-level
  .wp-block-woocommerce-checkout-order-summary-coupon-form-block,
body.wordpressulator-checkout-shell--top-level
  .wp-block-woocommerce-checkout-order-summary-totals-block,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-order-summary,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-order-summary__content,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-sidebar
  .wc-block-components-totals-wrapper,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-sidebar
  .wc-block-components-panel {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-sidebar.wc-block-checkout__sidebar.wp-block-woocommerce-checkout-totals-block {
  border: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  border-radius: var(--wpu-shell-panel-radius, 14px);
  background:
    radial-gradient(
      circle at 0 0,
      color-mix(in srgb, var(--wpu-checkout-primary, #1d4ed8) 8%, transparent),
      transparent 34%
    ),
    var(--wpu-shell-panel-muted, #f8fafc);
}

body.wordpressulator-checkout-shell--top-level
  .wp-block-woocommerce-checkout-order-summary-coupon-form-block {
  margin-block: 0 12px;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-totals-coupon {
  border: 0;
  background: transparent;
  padding: 0;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-totals-coupon__form {
  border: 0;
  background: transparent;
  padding: 0;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-totals-footer-item {
  margin-block-start: 14px;
  padding: 0;
  border-block-start: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  font-size: 1.02rem;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-order-summary
  .wc-block-components-order-summary-item {
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: start;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-order-summary-item__image {
  inline-size: 100%;
  max-inline-size: 56px;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-order-summary
  .wc-block-components-order-summary-item__image
  > img {
  display: block;
  inline-size: 100%;
  max-inline-size: 100%;
  block-size: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-order-summary
  .wc-block-components-product-metadata,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-order-summary
  .wc-block-components-product-metadata__description,
body.wordpressulator-checkout-shell--top-level
  .wc-block-components-order-summary
  .wc-block-components-product-metadata__description
  p {
  color: var(--wpu-checkout-muted, #64748b);
  font-size: 0.88rem;
  font-weight: 340;
  line-height: 1.48;
}

body.wordpressulator-checkout-shell--top-level .wc-block-checkout__actions,
body.wordpressulator-checkout-shell--top-level .wc-block-checkout__actions_row {
  box-sizing: border-box;
  inline-size: 100%;
  max-inline-size: 100%;
}

body.wordpressulator-checkout-shell--top-level .wc-block-checkout__actions_row {
  display: flex;
  justify-content: flex-end;
}

body.wordpressulator-checkout-shell--top-level
  .wc-block-components-checkout-place-order-button {
  inline-size: min(100%, 360px);
  max-inline-size: 360px;
  min-block-size: 54px;
  margin-block-start: 14px;
}

/* Layer 10: My Account page exceptions */

body.wordpressulator-account-shell .woocommerce::before,
body.wordpressulator-account-shell .woocommerce::after {
  content: none;
  display: none;
}

body.wordpressulator-account-shell .woocommerce {
  box-sizing: border-box;
  inline-size: 100%;
  margin-inline: auto;
}

body.wordpressulator-account-shell
  .woocommerce:not(:has(.woocommerce-MyAccount-navigation)) {
  display: grid;
  align-content: center;
  inline-size: min(100%, var(--wpu-shell-container-narrow, 1050px));
  min-block-size: clamp(420px, 52vh, 620px);
}

body.wordpressulator-account-shell
  .woocommerce:has(.woocommerce-MyAccount-navigation) {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
  inline-size: min(100%, var(--wpu-shell-container-lean, 1410px));
}

body.wordpressulator-account-shell
  .woocommerce
  .woocommerce-MyAccount-navigation,
body.wordpressulator-account-shell .woocommerce .woocommerce-MyAccount-content {
  float: none;
  inline-size: 100%;
  width: auto;
  margin: 0;
  min-inline-size: 0;
}

/* Layer 11: Order Received page exceptions */

body.wordpressulator-order-received-shell .woocommerce,
body.wordpressulator-order-received-shell .woocommerce .woocommerce-order {
  box-sizing: border-box;
  inline-size: min(100%, var(--wpu-shell-container-narrow, 1050px));
  margin-inline: auto;
}

body.wordpressulator-order-received-shell
  .woocommerce
  .woocommerce-order-overview {
  margin-block: 0 20px;
  padding: clamp(16px, 2.2vw, 22px);
}

body.wordpressulator-order-received-shell
  .woocommerce
  .woocommerce-order-overview::before {
  content: none;
  display: none;
}

body.wordpressulator-order-received-shell
  .woocommerce
  .woocommerce-thankyou-order-received {
  color: var(--wpu-checkout-text, #111827);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 750;
  line-height: 1.3;
}

body.wordpressulator-order-received-shell .woocommerce .woocommerce-order {
  display: grid;
  gap: clamp(16px, 2.5vw, 24px);
}

body.wordpressulator-order-received-shell
  .woocommerce
  .woocommerce-order-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  gap: 12px;
  list-style: none;
}

body.wordpressulator-order-received-shell
  .woocommerce
  .woocommerce-order-overview
  li {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--wpu-checkout-muted, #64748b);
  font-size: 0.84rem;
  line-height: 1.35;
  text-transform: none;
}

body.wordpressulator-order-received-shell
  .woocommerce
  .woocommerce-order-overview
  strong {
  display: block;
  margin-block-start: 4px;
  color: var(--wpu-checkout-text, #111827);
  font-size: 1rem;
  font-weight: 780;
}

body.wordpressulator-order-received-shell
  .woocommerce
  .woocommerce-order-details
  table.shop_table {
  background: var(--wpu-shell-panel, #ffffff);
}

/* Layer 12: responsive layout */

@media (max-width: 960px) {
  body.wordpressulator-commerce-shell .wordpressulator-commerce-shell__main,
  body.wordpressulator-cart-shell .wordpressulator-commerce-shell__main--cart,
  body.wordpressulator-account-shell
    .wordpressulator-commerce-shell__main--account,
  body.wordpressulator-order-received-shell
    .wordpressulator-commerce-shell__main--order-received {
    inline-size: min(
      calc(100% - (var(--wpu-shell-gutter-tablet, 22px) * 2)),
      var(--wpu-shell-container-lean, 1410px)
    );
    padding-block: 24px 42px;
  }

  body.wordpressulator-checkout-shell--top-level
    .wordpressulator-commerce-shell__main--checkout {
    inline-size: min(
      calc(100% - (var(--wpu-shell-gutter-tablet, 22px) * 2)),
      var(--wpu-shell-container-lean, 1410px)
    );
    padding-block: 24px 42px;
  }

  body.wordpressulator-checkout-shell--top-level .woocommerce form.checkout,
  body.wordpressulator-checkout-shell--top-level
    .wc-block-components-sidebar-layout,
  body.wordpressulator-cart-shell .woocommerce .cart-collaterals,
  body.wordpressulator-cart-shell .wc-block-cart {
    display: block;
  }

  body.wordpressulator-checkout-shell--top-level
    .woocommerce
    form.checkout
    > .col2-set,
  body.wordpressulator-checkout-shell--top-level
    .woocommerce
    form.checkout
    > #customer_details,
  body.wordpressulator-checkout-shell--top-level
    .woocommerce
    form.checkout
    > #order_review_heading,
  body.wordpressulator-checkout-shell--top-level
    .woocommerce
    form.checkout
    > #order_review,
  body.wordpressulator-checkout-shell--top-level
    .woocommerce
    form.checkout
    > .woocommerce-checkout-review-order,
  body.wordpressulator-checkout-shell--top-level
    .wc-block-components-sidebar-layout
    .wc-block-components-sidebar {
    position: static;
    inline-size: 100%;
    margin-block-start: 20px;
  }

  body.wordpressulator-checkout-shell--top-level
    .wc-block-components-sidebar-layout
    .wc-block-components-sidebar {
    padding: 16px;
  }

  body.wordpressulator-checkout-shell--top-level
    .woocommerce
    form.checkout
    > .col2-set,
  body.wordpressulator-checkout-shell--top-level
    .woocommerce
    form.checkout
    > #customer_details {
    margin-block-start: 0;
  }

  body.wordpressulator-checkout-shell--top-level
    .woocommerce
    form.checkout
    > #order_review {
    margin-block-start: 0;
  }

  body.wordpressulator-checkout-shell--top-level .woocommerce-billing-fields,
  body.wordpressulator-checkout-shell--top-level .woocommerce-shipping-fields,
  body.wordpressulator-checkout-shell--top-level
    .woocommerce-additional-fields {
    padding: 16px;
  }

  body.wordpressulator-cart-shell .woocommerce .cart_totals,
  body.wordpressulator-cart-shell .wc-block-cart__sidebar {
    margin-block-start: 18px;
  }

  body.wordpressulator-cart-shell .wc-block-cart-items__row,
  body.wordpressulator-cart-shell .wc-block-cart-items__row td {
    display: block;
    inline-size: 100%;
  }

  body.wordpressulator-cart-shell .wc-block-cart-items__row {
    padding-block: 16px;
  }

  body.wordpressulator-cart-shell .wc-block-cart-items__row td {
    padding-block: 8px;
  }

  body.wordpressulator-cart-shell .wc-block-cart-item__image {
    inline-size: 84px;
  }

  body.wordpressulator-account-shell
    .woocommerce:has(.woocommerce-MyAccount-navigation) {
    display: block;
  }

  body.wordpressulator-account-shell
    .woocommerce
    .woocommerce-MyAccount-navigation {
    margin-block-end: 18px;
  }
}

@media (max-width: 782px) {
  body.admin-bar.wordpressulator-checkout-shell--top-level {
    --wpu-checkout-sticky-offset: 70px;
  }
}

@media (max-width: 720px) {
  body.wordpressulator-commerce-shell
    .wordpressulator-checkout-shell__header-inner,
  body.wordpressulator-checkout-shell
    .wordpressulator-checkout-shell__header-inner {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    inline-size: min(
      calc(100% - (var(--wpu-shell-gutter-mobile, 18px) * 2)),
      var(--wpu-shell-container-narrow, 1050px)
    );
    min-block-size: 68px;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__inner {
    display: block;
    inline-size: min(
      calc(100% - (var(--wpu-shell-gutter-mobile, 18px) * 2)),
      var(--wpu-shell-container-wide, 1560px)
    );
    min-block-size: 62px;
    padding-block: 0;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__brand--desktop,
  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__nav,
  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__actions {
    display: none;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-bar {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-block-size: 62px;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-menu {
    justify-self: start;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-menu-toggle,
  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-cart {
    display: inline-grid;
    inline-size: 40px;
    block-size: 40px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: var(--wpu-checkout-text, #111827);
    background: transparent;
    cursor: pointer;
    text-decoration: none;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-close-icon {
    display: none;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-menu[open]
    .wordpressulator-commerce-shell-manifest-header__mobile-menu-toggle {
    position: fixed;
    inset-block-start: 11px;
    inset-inline-end: var(--wpu-shell-gutter-mobile, 18px);
    z-index: 80;
    background: transparent;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-menu[open]
    .wordpressulator-commerce-shell-manifest-header__mobile-menu-icon {
    display: none;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-menu[open]
    .wordpressulator-commerce-shell-manifest-header__mobile-close-icon {
    display: inline-grid;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-menu-toggle {
    list-style: none;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-menu-toggle::-webkit-details-marker {
    display: none;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-menu-toggle::marker {
    content: "";
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-menu-toggle:hover,
  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-cart:hover {
    background: var(--wpu-shell-soft, #f8fafc);
    color: var(--wpu-checkout-text, #111827);
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-menu-toggle
    svg,
  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-cart
    svg {
    display: block;
    inline-size: 21px;
    block-size: 21px;
    stroke-width: 1.8;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-brand {
    display: inline-flex;
    align-items: center;
    justify-self: center;
    gap: 9px;
    min-inline-size: 0;
    color: var(--wpu-checkout-text, #111827);
    text-decoration: none;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-logo,
  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-mark {
    display: grid;
    inline-size: 30px;
    block-size: 30px;
    place-items: center;
    border: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
    border-radius: 999px;
    background: var(--wpu-shell-panel, #ffffff);
    object-fit: contain;
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-wordmark {
    max-inline-size: 48vw;
    overflow: hidden;
    color: var(--wpu-checkout-text, #111827);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-cart {
    justify-self: end;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    inline-size: 100%;
    block-size: 100dvh;
    max-inline-size: none;
    padding: 0;
    border: 0;
    background: color-mix(
      in srgb,
      var(--wpu-shell-page-bg, #fbfbfb) 96%,
      transparent
    );
    box-shadow: none;
    backdrop-filter: blur(18px);
    opacity: 1;
    transform: translateY(0);
    animation: wordpressulator-mobile-drawer-enter 180ms ease both;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-menu:not([open])
    .wordpressulator-commerce-shell-manifest-header__mobile-drawer {
    display: none;
  }

  @keyframes wordpressulator-mobile-drawer-enter {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

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

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-drawer-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-block-size: 62px;
    padding: 0 var(--wpu-shell-gutter-mobile, 18px);
    border-block-end: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-drawer-head
    .wordpressulator-commerce-shell-manifest-header__mobile-brand {
    justify-self: start;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-drawer-body {
    display: grid;
    gap: 30px;
    align-content: start;
    overflow-y: auto;
    padding: 28px var(--wpu-shell-gutter-mobile, 18px)
      calc(32px + env(safe-area-inset-bottom));
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-nav {
    display: grid;
    gap: 0;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-nav
    a {
    display: flex;
    min-block-size: 58px;
    align-items: center;
    border-block-end: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
    color: var(--wpu-checkout-text, #111827);
    font-size: clamp(1.18rem, 6vw, 1.65rem);
    font-weight: 900;
    line-height: 1.05;
    text-decoration: none;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-support-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-support-links
    a {
    display: flex;
    min-block-size: 38px;
    align-items: center;
    color: var(--wpu-checkout-muted, #64748b);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-actions {
    display: grid;
    gap: 10px;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-header__mobile-actions
    a {
    display: flex;
    min-block-size: 46px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
    border-radius: var(--wpu-shell-control-radius, 11px);
    background: var(--wpu-shell-panel, #ffffff);
    padding: 0 14px;
    color: var(--wpu-checkout-text, #111827);
    font-size: 0.92rem;
    font-weight: 850;
    text-decoration: none;
  }

  body.wordpressulator-checkout-shell .wordpressulator-checkout-shell__frame {
    inline-size: min(
      calc(100% - (var(--wpu-shell-gutter-mobile, 18px) * 2)),
      var(--wpu-shell-container-narrow, 1050px)
    );
    padding: 20px 0 32px;
  }

  body.wordpressulator-commerce-shell .wordpressulator-commerce-shell__main,
  body.wordpressulator-checkout-shell--top-level
    .wordpressulator-commerce-shell__main--checkout,
  body.wordpressulator-cart-shell .wordpressulator-commerce-shell__main--cart,
  body.wordpressulator-account-shell
    .wordpressulator-commerce-shell__main--account,
  body.wordpressulator-order-received-shell
    .wordpressulator-commerce-shell__main--order-received,
  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-footer__inner {
    inline-size: min(
      calc(100% - (var(--wpu-shell-gutter-mobile, 18px) * 2)),
      var(--wpu-shell-container-lean, 1410px)
    );
    padding-block: 20px 34px;
  }

  body.wordpressulator-checkout-shell--top-level
    .wordpressulator-checkout-shell__main.wordpressulator-commerce-shell__main--checkout {
    inline-size: 96%;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-footer__inner {
    padding: 24px 0 96px;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-footer__primary,
  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-footer__columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body.wordpressulator-commerce-shell
    .wordpressulator-commerce-shell-manifest-footer__brand
    p {
    max-inline-size: 46ch;
  }

  body.wordpressulator-commerce-shell .wc-block-components-notice-snackbar-list,
  body.wordpressulator-commerce-shell
    .wc-block-components-notices__snackbar.wc-block-components-notice-snackbar-list {
    inset-block: auto calc(env(safe-area-inset-bottom, 0px) + 18px);
    inset-inline: 50% auto;
    inline-size: min(
      calc(100vw - (var(--wpu-shell-gutter-mobile, 18px) * 2)),
      380px
    );
    max-inline-size: 380px;
    transform: translateX(-50%);
  }

  body.wordpressulator-commerce-shell .wc-block-components-notices__snackbar {
    border-color: var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
    background: color-mix(
      in srgb,
      var(--wpu-shell-panel, #ffffff) 96%,
      transparent
    );
    box-shadow: 0 14px 36px
      color-mix(in srgb, var(--wpu-checkout-text, #111827) 12%, transparent);
    font-size: 0.88rem;
    line-height: 1.35;
    backdrop-filter: blur(14px);
  }

  body.wordpressulator-commerce-shell .woocommerce table.shop_table th,
  body.wordpressulator-commerce-shell .woocommerce table.shop_table td {
    padding: 12px;
  }

  body.wordpressulator-cart-shell
    .woocommerce
    table.shop_table.cart
    td.actions
    .coupon,
  body.wordpressulator-cart-shell
    .woocommerce
    table.shop_table.cart
    td.actions
    .coupon
    .input-text,
  body.wordpressulator-cart-shell
    .woocommerce
    table.shop_table.cart
    td.actions
    .coupon
    .button,
  body.wordpressulator-cart-shell
    .woocommerce
    table.shop_table.cart
    td.actions
    > .button {
    float: none;
    inline-size: 100%;
  }

  body.wordpressulator-cart-shell
    .woocommerce
    table.shop_table.cart
    td.actions
    .coupon {
    flex-direction: column;
    margin-block-end: 10px;
  }

  body.wordpressulator-cart-shell
    .woocommerce
    table.shop_table.cart
    td.product-thumbnail {
    inline-size: auto;
  }

  body.wordpressulator-cart-shell .wc-block-grid__products {
    grid-template-columns: 1fr;
  }

  body.wordpressulator-cart-shell .wc-block-components-quantity-selector {
    grid-template-columns: 32px minmax(42px, 1fr) 32px;
    inline-size: min(100%, 128px);
    max-inline-size: 128px;
  }

  body.wordpressulator-cart-shell .wc-block-cart-items__row {
    gap: 12px;
  }

  body.wordpressulator-cart-shell .wc-block-cart-item__total {
    grid-row-start: 2;
    grid-column-start: 2;
    grid-column-end: end;
    width: max-content;
  }

  body.wordpressulator-cart-shell
    .wc-block-components-quantity-selector__button {
    inline-size: 32px;
    min-inline-size: 32px;
  }

  body.wordpressulator-checkout-shell--top-level
    .wc-block-components-checkout-step,
  body.wordpressulator-checkout-shell--top-level .wc-block-checkout__sidebar,
  body.wordpressulator-cart-shell .wc-block-cart__sidebar,
  body.wordpressulator-cart-shell .wc-block-grid__product {
    border-radius: min(var(--wpu-shell-panel-radius, 14px), 12px);
  }
}

/* Layer 13: temporary compatibility fixes */

/* Woo core hardcodes remove-link colors with high specificity. Keep this until a specificity-only override is proven across classic cart versions. */
body.wordpressulator-commerce-shell .woocommerce a.remove {
  display: inline-grid;
  place-items: center;
  inline-size: 30px;
  block-size: 30px;
  border: 1px solid var(--wpu-shell-line, rgba(100, 116, 139, 0.18));
  border-radius: 999px;
  color: #9f1239 !important;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

body.wordpressulator-commerce-shell .woocommerce a.remove:hover {
  background: #fff1f2;
  border-color: #fecdd3;
  color: #9f1239 !important;
}

/* Woo checkout loaders inject an inline overlay; this keeps it calm without changing loader behavior. */
body.wordpressulator-commerce-shell .woocommerce .blockUI.blockOverlay {
  background: color-mix(
    in srgb,
    var(--wpu-shell-panel, #ffffff) 68%,
    transparent
  ) !important;
  border-radius: inherit;
}
