#order-standard_cart {
  --cart-gap: 16px;
  color: var(--ace-text, #11172f);
  font-family: var(
    --ace-font,
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", Arial, sans-serif
  );
}

#order-standard_cart .ace-store-heading {
  margin-bottom: 20px;
}

#order-standard_cart .ace-store-heading h1 {
  margin: 0;
  font-size: 1.75rem;
}

#order-standard_cart .ace-store-cart-link {
  position: relative;
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: var(--ace-primary, #5b43f5);
  background: var(--ace-surface, #fff);
  border: 1px solid var(--ace-line, #e8eaf2);
  border-radius: 8px;
  text-decoration: none;
  place-items: center;
}

#order-standard_cart .ace-store-cart-link > span {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  color: #fff;
  background: var(--ace-red, #cf3854);
  border-radius: 9px;
  font-size: .56rem;
  font-weight: 800;
  place-items: center;
}

#order-standard_cart .ace-store-regions {
  display: flex;
  align-items: center;
  min-height: 70px;
  margin-bottom: 28px;
  padding: 8px;
  overflow-x: auto;
  background: var(--ace-surface, #fff);
  border: 1px solid var(--ace-line, #e8eaf2);
  border-radius: 8px;
}

#order-standard_cart .ace-store-regions a {
  display: flex;
  flex: 1 0 120px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 8px 14px;
  color: var(--ace-muted, #69758c);
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 680;
  text-align: center;
  text-decoration: none;
}

#order-standard_cart .ace-store-region__flag {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  background: var(--ace-surface-subtle, #f8f9fc);
  border-radius: 9px;
  box-shadow: 0 3px 8px rgb(30 38 70 / 12%);
  font-size: 1.05rem;
  line-height: 1;
  place-items: center;
}

#order-standard_cart .ace-store-region__flag .iti-flag {
  transform: scale(1.1);
}

#order-standard_cart .ace-store-regions a:hover {
  color: var(--ace-text, #11172f);
  background: var(--ace-surface-subtle, #f8f9fc);
}

#order-standard_cart .ace-store-regions a.is-active {
  color: var(--ace-primary, #5b43f5);
  background: var(--ace-primary-soft, #f0edff);
}

#order-standard_cart .ace-store-groups {
  display: grid;
  gap: 16px;
}

#order-standard_cart .ace-store-group-block {
  overflow: hidden;
  background: var(--ace-surface, #fff);
  border: 1px solid var(--ace-line, #e8eaf2);
  border-radius: 8px;
}

#order-standard_cart .ace-store-group-block[hidden],
#order-standard_cart .ace-store-products[hidden] {
  display: none;
}

#order-standard_cart .ace-store-group-block.is-loading > .ace-store-group {
  opacity: .66;
}

#order-standard_cart .ace-store-group-block.is-active {
  border-color: #bdb4f9;
  box-shadow: var(--ace-shadow, 0 10px 28px rgb(30 38 70 / 6%));
}

#order-standard_cart .ace-store-group {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 126px;
  padding: 20px 26px;
  color: var(--ace-text, #11172f);
  background: var(--ace-surface, #fff);
  border: 0;
  text-decoration: none;
}

#order-standard_cart .ace-store-group:hover {
  color: var(--ace-text, #11172f);
  background: #faf9ff;
}

#order-standard_cart .ace-store-group-block.is-active > .ace-store-group {
  background: #faf9ff;
  border-bottom: 1px solid #ded9fd;
}

#order-standard_cart .ace-store-group__icon {
  width: 70px;
  height: 70px;
  font-size: 1.5rem;
}

#order-standard_cart .ace-store-group__copy {
  min-width: 0;
}

#order-standard_cart .ace-store-group__copy strong,
#order-standard_cart .ace-store-group__copy small {
  display: block;
}

#order-standard_cart .ace-store-group__copy strong {
  color: var(--ace-text, #11172f);
  font-size: 1.08rem;
  font-weight: 760;
}

#order-standard_cart .ace-store-group__copy small {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  font-size: .84rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#order-standard_cart .ace-store-group__meta {
  display: grid;
  grid-template-columns: auto 16px;
  align-items: center;
  gap: 24px;
  color: var(--ace-primary, #5b43f5);
  font-size: .85rem;
  white-space: nowrap;
}

#order-standard_cart .ace-store-group__meta > i {
  color: var(--ace-text, #11172f);
  font-size: .78rem;
}

#order-standard_cart .ace-store-products {
  padding: 24px;
  background: #fbfbfe;
  transform-origin: top;
}

#order-standard_cart .ace-store-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

#order-standard_cart .ace-store-products__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 120px;
  color: var(--ace-muted, #69758c);
  background: var(--ace-surface, #fff);
  border: 1px dashed var(--ace-line-strong, #d9dce8);
  border-radius: 8px;
  font-size: .86rem;
}

#order-standard_cart .cart-body {
  min-width: 0;
}

#order-standard_cart:not(.ace-store-page) > .row {
  display: block;
  margin-right: 0;
  margin-left: 0;
}

#order-standard_cart:not(.ace-store-page) .cart-sidebar,
#order-standard_cart:not(.ace-store-page) .categories-collapsed {
  display: none !important;
}

#order-standard_cart:not(.ace-store-page) .cart-body {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

#order-standard_cart .cart-sidebar .list-group,
#order-standard_cart .categories-collapsed,
#order-standard_cart .product,
#order-standard_cart .panel,
#order-standard_cart .order-summary,
#order-standard_cart .view-cart-items,
#order-standard_cart .sub-heading,
#order-standard_cart .domain-selection-options,
#order-standard_cart .addon-products .panel {
  color: var(--ace-text, #11172f);
  background: var(--ace-surface, #fff);
  border: 1px solid var(--ace-line, #e8eaf2);
  border-radius: 8px;
  box-shadow: var(--ace-shadow, 0 10px 28px rgb(30 38 70 / 6%));
}

#order-standard_cart .cart-sidebar .list-group {
  overflow: hidden;
}

#order-standard_cart .cart-sidebar .list-group-item {
  min-height: 44px;
  color: #4d5971;
  background: transparent;
  border-color: var(--ace-line, #e8eaf2);
}

#order-standard_cart .cart-sidebar .list-group-item.active,
#order-standard_cart .cart-sidebar .list-group-item:hover {
  color: var(--ace-primary, #5b43f5);
  background: var(--ace-primary-soft, #f0edff);
}

#order-standard_cart .products .row {
  gap: var(--cart-gap);
  margin: 0 0 var(--cart-gap);
}

#order-standard_cart .products .row > [class*="col-"] {
  flex: 1 1 calc(50% - var(--cart-gap));
  max-width: none;
  padding: 0;
}

#order-standard_cart .product {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
  overflow: hidden;
}

#order-standard_cart .product:hover {
  border-color: #beb5f9;
}

#order-standard_cart .product header {
  padding: 18px 20px;
  color: var(--ace-text, #11172f);
  background: var(--ace-surface-subtle, #f8f9fc);
  border-bottom: 1px solid var(--ace-line, #e8eaf2);
  font-size: 1.02rem;
  font-weight: 750;
}

#order-standard_cart .product .qty {
  color: var(--ace-green, #148a66);
  font-size: .72rem;
}

#order-standard_cart .product-desc {
  padding: 18px 20px;
  color: var(--ace-muted, #69758c);
}

#order-standard_cart .product-desc ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

#order-standard_cart .product-desc li::before {
  margin-right: 7px;
  color: var(--ace-green, #148a66);
  content: "✓";
  font-weight: 800;
}

#order-standard_cart .product-desc li:has(.feature-value > div)::before {
  display: none;
}

#order-standard_cart .product footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-top: 1px solid var(--ace-line, #e8eaf2);
}

#order-standard_cart .product-pricing {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

#order-standard_cart .product .price {
  color: var(--ace-primary, #5b43f5);
  font-size: 1.55rem;
  font-weight: 780;
  font-variant-numeric: tabular-nums;
}

#order-standard_cart .product .price-cycle {
  font-size: .72rem;
}

#order-standard_cart .btn,
#order-standard_cart .form-control,
#order-standard_cart select {
  min-height: 44px;
  border-radius: 8px;
}

#order-standard_cart .btn-primary,
#order-standard_cart .btn-success {
  color: #fff;
  background: var(--ace-primary, #5b43f5);
  border-color: var(--ace-primary, #5b43f5);
  box-shadow: none;
}

#order-standard_cart .btn-primary:hover,
#order-standard_cart .btn-success:hover {
  background: var(--ace-primary-hover, #4932dc);
  border-color: var(--ace-primary-hover, #4932dc);
}

#order-standard_cart #checkout:disabled,
#order-standard_cart #checkout.disabled,
#order-standard_cart #checkout[disabled] {
  color: #fff;
  background: #596579;
  border-color: #596579;
  opacity: 1;
}

#order-standard_cart .form-control,
#order-standard_cart select {
  color: var(--ace-text, #11172f);
  background: var(--ace-surface, #fff);
  border-color: var(--ace-line-strong, #d9dce8);
}

#order-standard_cart .form-control:focus,
#order-standard_cart select:focus {
  border-color: var(--ace-primary, #5b43f5);
  box-shadow: 0 0 0 3px rgb(91 67 245 / 14%);
}

#order-standard_cart .sub-heading {
  margin: 20px 0 14px;
  padding: 14px 16px;
  text-align: left;
}

#order-standard_cart .sub-heading span,
#order-standard_cart .sub-heading-borderless span {
  color: var(--ace-text, #11172f);
  background: transparent;
  font-weight: 750;
}

#order-standard_cart .field,
#order-standard_cart .form-group {
  margin-bottom: 16px;
}

#order-standard_cart label {
  color: #34405b;
  font-weight: 700;
}

#order-standard_cart .view-cart-items {
  overflow: hidden;
}

#order-standard_cart .view-cart-items-header {
  color: var(--ace-muted, #69758c);
  background: var(--ace-surface-subtle, #f8f9fc);
  border-color: var(--ace-line, #e8eaf2);
}

#order-standard_cart .item {
  color: var(--ace-text, #11172f);
  background: var(--ace-surface, #fff);
  border-color: var(--ace-line, #e8eaf2);
}

#order-standard_cart .order-summary {
  position: sticky;
  top: 18px;
  overflow: hidden;
  border: 1px solid var(--ace-line, #e8eaf2);
}

#order-standard_cart .order-summary .summary-heading {
  color: var(--ace-text, #11172f);
  background: var(--ace-surface-subtle, #f8f9fc);
  border-bottom: 1px solid var(--ace-line, #e8eaf2);
}

#order-standard_cart .order-summary .summary-container {
  color: var(--ace-text, #11172f);
  background: var(--ace-surface, #fff);
}

#order-standard_cart .summary-container .subtotal,
#order-standard_cart .summary-container .bordered-totals {
  border-color: var(--ace-line, #e8eaf2);
}

#order-standard_cart .total-due-today .amt,
#order-standard_cart .summary-container .total-due-today-pnl .amt {
  color: var(--ace-primary, #5b43f5);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

#order-standard_cart .domain-selection-options .option {
  color: var(--ace-text, #11172f);
  background: var(--ace-surface, #fff);
  border-color: var(--ace-line, #e8eaf2);
}

#order-standard_cart .domain-selection-options .option-selected {
  border-color: var(--ace-primary, #5b43f5);
}

#order-standard_cart .domain-checker-result-headline {
  color: var(--ace-text, #11172f);
}

#order-standard_cart .domain-available {
  color: var(--ace-green, #148a66);
}

#order-standard_cart .domain-unavailable {
  color: var(--ace-red, #cf3854);
}

#order-standard_cart .gateway-selector,
#order-standard_cart .cc-input-container,
#order-standard_cart .payment-methods,
#order-standard_cart .payment-form,
#order-standard_cart iframe {
  opacity: 1;
  filter: none !important;
  mix-blend-mode: normal !important;
  transform: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

@media (max-width: 991px) {
  #order-standard_cart .ace-store-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #order-standard_cart .products .row > [class*="col-"] {
    flex-basis: 100%;
  }

  #order-standard_cart .order-summary {
    position: static;
  }
}

@media (max-width: 639px) {
  #order-standard_cart .ace-store-heading h1 {
    font-size: 1.45rem;
  }

  #order-standard_cart .ace-store-regions {
    min-height: 60px;
    margin-bottom: 18px;
  }

  #order-standard_cart .ace-store-regions a {
    flex-basis: 108px;
    min-height: 44px;
    font-size: .76rem;
  }

  #order-standard_cart .ace-store-group {
    grid-template-columns: 54px minmax(0, 1fr) 18px;
    gap: 12px;
    min-height: 108px;
    padding: 16px 14px;
  }

  #order-standard_cart .ace-store-group__icon {
    width: 54px;
    height: 54px;
    font-size: 1.18rem;
  }

  #order-standard_cart .ace-store-group__copy strong {
    font-size: .9rem;
  }

  #order-standard_cart .ace-store-group__copy small {
    font-size: .72rem;
  }

  #order-standard_cart .ace-store-group__meta {
    display: block;
  }

  #order-standard_cart .ace-store-group__meta > span {
    display: none;
  }

  #order-standard_cart .ace-store-products {
    padding: 16px 14px;
  }

  #order-standard_cart .ace-store-product-grid {
    grid-template-columns: 1fr;
  }

  #order-standard_cart .product footer {
    align-items: stretch;
    flex-direction: column;
  }

  #order-standard_cart .product footer .btn {
    width: 100%;
  }
}

/* Shared clay treatment for the complete store and checkout flow. */
html.ace-clay-store-root {
  background: #262323;
}

body.ace-clay-store-page {
  --clay-bg: #262323;
  --clay-surface: #403d3e;
  --clay-surface-deep: #343132;
  --clay-accent: #fffcd0;
  --clay-accent-deep: #ddd4a4;
  --clay-text: #fffbe0;
  --clay-muted: #d1cbcc;
  --clay-shadow:
    12px 12px 24px rgb(0 0 0 / 38%),
    inset 6px 6px 12px rgb(255 255 255 / 8%),
    inset -4px -4px 8px rgb(0 0 0 / 20%);
  --clay-shadow-small:
    7px 7px 14px rgb(0 0 0 / 38%),
    inset 3px 3px 7px rgb(255 255 255 / 9%),
    inset -3px -3px 6px rgb(0 0 0 / 22%);
  color: var(--clay-text);
  background: var(--clay-bg);
  font-family: "Trebuchet MS", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body.ace-clay-store-page .ace-app-shell,
body.ace-clay-store-page .ace-app-main,
body.ace-clay-store-page .ace-page-body {
  background: var(--clay-bg);
}

body.ace-clay-store-page .ace-app-shell {
  grid-template-columns: 290px minmax(0, 1fr);
}

body.ace-clay-store-page .ace-app-rail {
  top: 16px;
  height: calc(100vh - 32px);
  height: calc(100dvh - 32px);
  margin: 16px;
  padding: 32px 20px 22px;
  color: var(--clay-text);
  background: linear-gradient(145deg, #494647, #343132);
  border: 0;
  border-radius: 32px;
  box-shadow: var(--clay-shadow);
}

body.ace-clay-store-page .ace-app-brand,
body.ace-clay-store-page .ace-app-brand strong {
  color: var(--clay-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}

body.ace-clay-store-page .ace-app-menu {
  gap: 8px;
}

body.ace-clay-store-page .ace-app-menu a,
body.ace-clay-store-page .ace-app-menu-group > summary {
  min-height: 56px;
  color: #eee8d4;
  border-radius: 24px;
  transition:
    color 200ms,
    background 200ms,
    transform 200ms;
}

body.ace-clay-store-page .ace-app-menu a:hover,
body.ace-clay-store-page .ace-app-menu a:focus-visible,
body.ace-clay-store-page .ace-app-menu-group > summary:hover,
body.ace-clay-store-page .ace-app-menu-group > summary:focus-visible {
  color: var(--clay-accent);
  background: #454243;
  box-shadow: var(--clay-shadow-small);
  transform: scale(1.01, .97);
}

body.ace-clay-store-page .ace-app-menu a.is-active,
body.ace-clay-store-page .ace-app-menu-group > summary.is-active {
  color: var(--clay-bg);
  background: linear-gradient(145deg, #fffedc, var(--clay-accent-deep));
  box-shadow:
    8px 8px 16px rgb(0 0 0 / 36%),
    inset 4px 4px 8px rgb(255 255 255 / 55%),
    inset -3px -3px 7px rgb(96 82 42 / 16%);
}

body.ace-clay-store-page .ace-app-submenu {
  padding-left: 18px;
}

body.ace-clay-store-page .ace-app-menu .ace-app-submenu a {
  min-height: 38px;
  border-radius: 18px;
}

body.ace-clay-store-page .ace-app-session {
  padding-top: 12px;
}

body.ace-clay-store-page .ace-app-account {
  min-height: 88px;
  color: var(--clay-text);
  background: linear-gradient(145deg, #494647, #343132);
  border: 0;
  border-radius: 26px;
  box-shadow: var(--clay-shadow-small);
}

body.ace-clay-store-page .ace-app-account:hover,
body.ace-clay-store-page .ace-app-account:focus-visible {
  color: var(--clay-accent);
  background: linear-gradient(145deg, #504c4d, #383536);
  border-color: transparent;
  transform: scale(1.01, .98);
}

body.ace-clay-store-page .ace-app-avatar {
  color: var(--clay-bg);
  background: linear-gradient(145deg, #fffedc, var(--clay-accent-deep));
  box-shadow:
    inset 3px 3px 6px rgb(255 255 255 / 58%),
    inset -2px -2px 5px rgb(96 82 42 / 18%);
}

body.ace-clay-store-page .ace-app-account__copy strong {
  color: var(--clay-text);
}

body.ace-clay-store-page .ace-app-account__copy small {
  color: var(--clay-muted) !important;
}

body.ace-clay-store-page .ace-app-logout {
  color: var(--clay-accent);
}

body.ace-clay-store-page .ace-page-body {
  padding: 16px 20px 34px 4px;
}

body.ace-clay-store-page .ace-page-frame {
  min-height: calc(100vh - 32px);
  min-height: calc(100dvh - 32px);
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.ace-clay-store-page .ace-page-frame .ace-page-content {
  padding: 28px 28px 44px;
}

body.ace-clay-store-page #order-standard_cart {
  --ace-text: var(--clay-text);
  --ace-muted: var(--clay-muted);
  --ace-primary: var(--clay-accent);
  --ace-primary-hover: #fffedc;
  color: var(--clay-text);
  font-family: inherit;
}

body.ace-clay-store-page #order-standard_cart .ace-store-heading {
  align-items: center;
  margin: 0 0 22px;
}

body.ace-clay-store-page #order-standard_cart .ace-store-heading h1 {
  color: var(--clay-accent);
  font-family: Georgia, "Songti SC", "STSong", serif;
  font-size: 2.15rem;
  font-weight: 650;
}

body.ace-clay-store-page #order-standard_cart .ace-store-cart-link {
  flex: 0 0 54px;
  width: 54px;
  min-width: 54px;
  height: 54px;
  min-height: 54px;
  padding: 0;
  aspect-ratio: 1;
  color: var(--clay-bg);
  background: linear-gradient(145deg, #fffedc, var(--clay-accent-deep));
  border: 0;
  border-radius: 50%;
  box-shadow:
    8px 8px 16px rgb(0 0 0 / 38%),
    inset 4px 4px 8px rgb(255 255 255 / 55%),
    inset -3px -3px 7px rgb(96 82 42 / 16%);
  transition:
    transform 200ms;
}

body.ace-clay-store-page #order-standard_cart .ace-store-cart-link:hover,
body.ace-clay-store-page #order-standard_cart .ace-store-cart-link:focus-visible {
  color: var(--clay-bg);
  box-shadow:
    5px 5px 10px rgb(0 0 0 / 36%),
    inset 5px 5px 9px rgb(255 255 255 / 46%),
    inset -3px -3px 7px rgb(96 82 42 / 20%);
  transform: scale(.96);
}

body.ace-clay-store-page #order-standard_cart .ace-store-cart-link:active {
  transform: scale(.9);
}

body.ace-clay-store-page #order-standard_cart .ace-store-cart-link > span {
  color: var(--clay-accent);
  background: #8b7e83;
  box-shadow: 0 2px 5px rgb(0 0 0 / 32%);
}

body.ace-clay-store-page #order-standard_cart .ace-store-regions {
  gap: 10px;
  min-height: 88px;
  margin-bottom: 28px;
  padding: 10px 12px;
  background: linear-gradient(145deg, #494647, #343132);
  border: 0;
  border-radius: 32px;
  box-shadow: var(--clay-shadow);
}

body.ace-clay-store-page #order-standard_cart .ace-store-regions a {
  min-height: 64px;
  color: #e8e1d3;
  border-radius: 28px;
  font-size: .95rem;
  transition:
    color 200ms,
    background 200ms,
    transform 200ms;
}

body.ace-clay-store-page #order-standard_cart .ace-store-regions a:hover,
body.ace-clay-store-page #order-standard_cart .ace-store-regions a:focus-visible {
  color: var(--clay-accent);
  background: #454243;
  box-shadow:
    inset 4px 4px 8px rgb(0 0 0 / 20%),
    inset -3px -3px 7px rgb(255 255 255 / 7%);
  transform: scale(.98);
}

body.ace-clay-store-page #order-standard_cart .ace-store-regions a.is-active {
  color: var(--clay-bg);
  background: linear-gradient(145deg, #fffedc, var(--clay-accent-deep));
  box-shadow:
    8px 8px 16px rgb(0 0 0 / 36%),
    inset 4px 4px 8px rgb(255 255 255 / 55%),
    inset -3px -3px 7px rgb(96 82 42 / 16%);
}

body.ace-clay-store-page #order-standard_cart .ace-store-region__flag {
  position: relative;
  overflow: hidden;
  box-shadow: var(--clay-shadow-small);
}

body.ace-clay-store-page #order-standard_cart .ace-store-regions a.is-active .ace-store-region__flag {
  box-shadow:
    inset 2px 2px 4px rgb(255 255 255 / 28%),
    inset -2px -2px 4px rgb(96 82 42 / 12%);
}

body.ace-clay-store-page #order-standard_cart .ace-store-groups {
  gap: 20px;
}

body.ace-clay-store-page #order-standard_cart .ace-store-group-block {
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 32px;
}

body.ace-clay-store-page #order-standard_cart .ace-store-group-block.is-active {
  border-color: transparent;
  box-shadow: none;
}

body.ace-clay-store-page #order-standard_cart .ace-store-group {
  grid-template-columns: 210px minmax(0, 1fr) 154px;
  gap: 30px;
  min-height: 174px;
  padding: 18px 34px 18px 28px;
  color: var(--clay-text);
  background: linear-gradient(145deg, #494647, #343132);
  border-radius: 32px;
  box-shadow: var(--clay-shadow);
  transition:
    color 200ms,
    background 200ms,
    transform 200ms;
}

body.ace-clay-store-page #order-standard_cart .ace-store-group:hover,
body.ace-clay-store-page #order-standard_cart .ace-store-group:focus-visible {
  color: var(--clay-accent);
  background: linear-gradient(145deg, #504c4d, #383536);
  box-shadow:
    8px 8px 16px rgb(0 0 0 / 40%),
    inset 6px 6px 12px rgb(255 255 255 / 10%),
    inset -4px -4px 8px rgb(0 0 0 / 24%);
  transform: scale(1.006, .985);
}

body.ace-clay-store-page #order-standard_cart .ace-store-group:active {
  transform: scale(1.012, .96) translateY(3px);
}

body.ace-clay-store-page #order-standard_cart .ace-store-group-block.is-active > .ace-store-group {
  background: linear-gradient(145deg, #504c4d, #383536);
  border-bottom: 0;
}

/* ===== 铭牌 1:1 还原设计稿 =====
   稿面板体 993×550，等比 ×0.2 → 198×110
   图层自上而下：暗角 → 斜向高光 → 顶部受光 → 木纹(4 层互质周期) → 木底色
   padding-bottom 7px 把内容块整体上移 3.5px，命中稿面视觉重心 */
body.ace-clay-store-page #order-standard_cart .ace-store-group__icon.ace-product-badge {
  position: relative;
  display: flex;
  width: 198px;
  height: 110px;
  padding-bottom: 7px;
  color: var(--clay-accent);
  background:
    radial-gradient(126% 104% at 50% 42%, rgb(0 0 0 / 0%) 38%, rgb(0 0 0 / 26%) 74%, rgb(0 0 0 / 52%) 100%),
    linear-gradient(116deg, rgb(0 0 0 / 0%) 0 30%, rgb(244 236 214 / 5.5%) 42%, rgb(244 236 214 / 2%) 51%, rgb(0 0 0 / 0%) 62%),
    linear-gradient(180deg, rgb(232 222 197 / 7%) 0, rgb(0 0 0 / 0%) 15%),
    repeating-linear-gradient(0deg, rgb(255 240 210 / 2.8%) 0 1px, rgb(0 0 0 / 0%) 1px 3px),
    repeating-linear-gradient(0deg, rgb(0 0 0 / 24%) 0 1px, rgb(0 0 0 / 0%) 1px 5px),
    repeating-linear-gradient(0deg, rgb(255 236 200 / 1.8%) 0 1px, rgb(0 0 0 / 0%) 1px 7px),
    repeating-linear-gradient(0deg, rgb(0 0 0 / 15%) 0 1px, rgb(0 0 0 / 0%) 1px 11px),
    linear-gradient(180deg, #241c16 0%, #1c1611 24%, #15100c 56%, #100c09 84%, #1a130d 100%);
  border-radius: 13px;
  box-shadow:
    0 0 0 1px #0a0806,
    0 10px 22px rgb(0 0 0 / 52%),
    0 3px 6px rgb(0 0 0 / 38%),
    inset 0 1px 0 rgb(232 222 197 / 11%),
    inset 0 -1px 0 rgb(0 0 0 / 60%),
    inset 0 -10px 18px rgb(0 0 0 / 40%);
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
  transition: box-shadow 260ms ease, transform 260ms ease;
}

/* 内嵌香槟金细线：内缩 3px、内圆角 10px、线宽 1px
   渐变描边模拟倒角折射——左上受光最亮，右下为反射回光 */
body.ace-clay-store-page #order-standard_cart .ace-store-group__icon.ace-product-badge::before {
  position: absolute;
  inset: 3px;
  z-index: 2;
  background:
    linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)) padding-box,
    linear-gradient(152deg,
      #f2ead2 0%,
      #cdc2a1 14%,
      #9b9076 32%,
      #6b6350 48%,
      #8d8369 60%,
      #c5ba99 78%,
      #eae1c6 92%,
      #b8ad8d 100%) border-box;
  border: 1px solid transparent;
  border-radius: 10px;
  box-shadow:
    0 0 0 1px rgb(0 0 0 / 55%),
    inset 0 0 12px rgb(0 0 0 / 38%);
  content: "";
  pointer-events: none;
}

/* 黄铜螺丝：直径 8.8px、圆心距边 17px、垂直居中
   每颗两层——底层同心穹顶(含座孔暗环+边缘回光+投影)，上层偏左上高光点 */
body.ace-clay-store-page #order-standard_cart .ace-store-group__icon.ace-product-badge::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at 15.9px calc(50% - 1.9px), rgb(255 251 234 / 90%) 0 .9px, rgb(255 251 234 / 0%) 2.4px),
    radial-gradient(circle at calc(100% - 18.1px) calc(50% - 1.9px), rgb(255 251 234 / 90%) 0 .9px, rgb(255 251 234 / 0%) 2.4px),
    radial-gradient(circle at 17px 50%,
      #eee4c6 0 1.1px,
      #d5c8a6 1.1px 2px,
      #b7aa88 2px 2.9px,
      #94886a 2.9px 3.5px,
      #6a6047 3.5px 3.9px,
      #d2c5a3 3.9px 4.2px,
      #26200f 4.2px 4.6px,
      rgb(0 0 0 / 38%) 4.6px 5.5px,
      rgb(0 0 0 / 0%) 5.8px),
    radial-gradient(circle at calc(100% - 17px) 50%,
      #eee4c6 0 1.1px,
      #d5c8a6 1.1px 2px,
      #b7aa88 2px 2.9px,
      #94886a 2.9px 3.5px,
      #6a6047 3.5px 3.9px,
      #d2c5a3 3.9px 4.2px,
      #26200f 4.2px 4.6px,
      rgb(0 0 0 / 38%) 4.6px 5.5px,
      rgb(0 0 0 / 0%) 5.8px);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

body.ace-clay-store-page #order-standard_cart .ace-product-badge__title,
body.ace-clay-store-page #order-standard_cart .ace-product-badge__subtitle {
  position: relative;
  z-index: 4;
  display: block;
  font-family: "Times New Roman", Times, "Hoefler Text", "Liberation Serif", Georgia, "Songti SC", "STSong", serif;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 主标题：稿面 cap 高 108px ×0.2 = 21.6px → font-size 21.6/0.662 ≈ 2.04rem */
body.ace-clay-store-page #order-standard_cart .ace-product-badge__title {
  background-image: linear-gradient(180deg, #e9e0c8 0%, #d6caa8 18%, #bdb190 42%, #9a8f73 66%, #82785f 82%, #cec3a5 96%, #ddd3b6 100%);
  /* text-indent 抵消末位字符的 letter-spacing，保证视觉居中 */
  font-size: 2.04rem;
  letter-spacing: .03em;
  text-indent: .03em;
  filter:
    drop-shadow(.5px 1px .5px rgb(0 0 0 / 72%))
    drop-shadow(0 2px 3px rgb(0 0 0 / 40%));
}

/* 副标题：稿面 cap 高 29px ×0.2 = 5.8px → 0.548rem；字间隙 14/29 → .25em */
body.ace-clay-store-page #order-standard_cart .ace-product-badge__subtitle {
  margin-top: 3px;
  background-image: linear-gradient(180deg, #d7cbac 0%, #b4a888 55%, #cdc2a4 100%);
  font-size: .548rem;
  letter-spacing: .25em;
  text-indent: .25em;
  filter: drop-shadow(.5px 1px .5px rgb(0 0 0 / 62%));
}

body.ace-clay-store-page #order-standard_cart .ace-product-badge--dualisp .ace-product-badge__subtitle {
  font-size: 1rem;
}

/* 分隔线：稿面宽 384px ×0.2 = 77px，中断口 9px，中心点直径 1.8px */
body.ace-clay-store-page #order-standard_cart .ace-product-badge__subtitle::after {
  display: block;
  width: 77px;
  height: 4px;
  margin: 13px auto 0;
  background:
    radial-gradient(circle at center, #cec3a5 0 .9px, transparent 1.1px) center / 100% 100% no-repeat,
    linear-gradient(90deg, #b0a68a 0 44.2%, transparent 44.2% 55.8%, #b0a68a 55.8% 100%) center / 100% 1px no-repeat;
  content: "";
  text-indent: 0;
}

body.ace-clay-store-page #order-standard_cart .ace-product-badge--dualisp .ace-product-badge__subtitle::after {
  margin-top: 4px;
}

body.ace-clay-store-page #order-standard_cart .ace-store-group:hover .ace-product-badge,
body.ace-clay-store-page #order-standard_cart .ace-store-group:focus-visible .ace-product-badge {
  box-shadow:
    0 0 0 1px #0a0908,
    0 1px 0 rgb(255 244 200 / 10%),
    0 18px 34px rgb(0 0 0 / 62%),
    0 4px 8px rgb(0 0 0 / 44%),
    0 0 26px rgb(255 224 138 / 13%),
    inset 0 1px 0 rgb(255 246 210 / 16%),
    inset 0 -12px 20px rgb(0 0 0 / 44%);
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
  body.ace-clay-store-page #order-standard_cart .ace-store-group:hover .ace-product-badge,
  body.ace-clay-store-page #order-standard_cart .ace-store-group:focus-visible .ace-product-badge {
    transform: none;
  }
}

body.ace-clay-store-page #order-standard_cart .ace-store-region__flag.ace-region-flag::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 31% 24%, rgb(255 255 255 / 38%), transparent 25%), linear-gradient(135deg, rgb(255 255 255 / 14%), transparent 45%, rgb(0 0 0 / 18%));
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

body.ace-clay-store-page #order-standard_cart .ace-region-flag--other {
  color: var(--clay-accent);
}

body.ace-clay-store-page #order-standard_cart .ace-store-group__copy {
  align-self: stretch;
  display: flex;
  padding-left: 38px;
  border-left: 1px solid rgb(223 194 107 / 64%);
  flex-direction: column;
  justify-content: center;
}

body.ace-clay-store-page #order-standard_cart .ace-store-group__copy strong {
  color: var(--clay-accent);
  font-size: 1.28rem;
}

body.ace-clay-store-page #order-standard_cart .ace-store-group__copy small {
  display: block;
  max-width: none;
  overflow: visible;
  color: var(--clay-muted) !important;
  font-size: .9rem;
  white-space: normal;
  -webkit-box-orient: initial;
  -webkit-line-clamp: unset;
}

body.ace-clay-store-page #order-standard_cart .ace-store-group__meta {
  grid-template-columns: auto 18px;
  align-items: center;
  justify-self: end;
  gap: 14px;
  min-width: 150px;
  min-height: 56px;
  padding: 0 18px;
  color: var(--clay-accent);
  background: linear-gradient(145deg, rgb(77 72 68 / 32%), rgb(28 27 26 / 20%));
  border: 1px solid #caa548;
  border-radius: 12px;
  box-shadow: inset 2px 2px 4px rgb(255 255 255 / 5%), 4px 6px 10px rgb(0 0 0 / 22%);
  font-size: .92rem;
}

body.ace-clay-store-page #order-standard_cart .ace-store-group__meta > i {
  display: block;
  justify-self: center;
  width: auto;
  height: auto;
  color: var(--clay-accent);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  font-size: .8rem;
}

body.ace-clay-store-page #order-standard_cart .ace-store-group:hover .ace-store-group__meta,
body.ace-clay-store-page #order-standard_cart .ace-store-group:focus-visible .ace-store-group__meta {
  background: rgb(213 181 90 / 8%);
  border-color: #e1c36f;
}

body.ace-clay-store-page #order-standard_cart .ace-store-products {
  margin-top: 20px;
  padding: 4px 0 8px;
  background: transparent;
}

body.ace-clay-store-page #order-standard_cart .ace-store-product-grid {
  gap: 20px;
}

body.ace-clay-store-page #order-standard_cart .ace-store-products__empty,
body.ace-clay-store-page #order-standard_cart .product {
  color: var(--clay-text);
  background: linear-gradient(145deg, #494647, #343132);
  border: 0;
  border-radius: 30px;
  box-shadow: var(--clay-shadow);
}

body.ace-clay-store-page #order-standard_cart .product {
  transition:
    transform 200ms;
}

body.ace-clay-store-page #order-standard_cart .product:hover {
  border-color: transparent;
  box-shadow:
    8px 8px 16px rgb(0 0 0 / 40%),
    inset 6px 6px 12px rgb(255 255 255 / 10%),
    inset -4px -4px 8px rgb(0 0 0 / 24%);
  transform: scale(1.01, .99);
}

body.ace-clay-store-page #order-standard_cart .product header {
  padding: 22px 22px 16px;
  color: var(--clay-accent);
  background: transparent;
  border-bottom: 0;
  font-size: 1.08rem;
}

body.ace-clay-store-page #order-standard_cart .product header span {
  color: var(--clay-accent) !important;
}

body.ace-clay-store-page #order-standard_cart .product .qty {
  color: var(--clay-accent);
}

body.ace-clay-store-page #order-standard_cart .products .product div.product-desc {
  width: 100%;
  min-width: 0;
  padding: 8px 22px 18px;
  color: var(--clay-muted);
  float: none;
}

body.ace-clay-store-page #order-standard_cart .product-desc > p {
  margin: 0 0 14px;
  line-height: 1.6;
}

body.ace-clay-store-page #order-standard_cart .product-desc > p br {
  display: none;
}

body.ace-clay-store-page #order-standard_cart .product-desc li {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  min-height: 24px;
  padding-left: 16px;
}

body.ace-clay-store-page #order-standard_cart .product-desc li::before {
  position: absolute;
  top: 0;
  left: 0;
}

body.ace-clay-store-page #order-standard_cart .product-desc .feature-value {
  min-width: 0;
  color: var(--clay-text);
  font-weight: 650;
}

body.ace-clay-store-page #order-standard_cart .product-desc .feature-value br {
  display: none;
}

body.ace-clay-store-page #order-standard_cart .product-desc li:has(.feature-value > div) {
  display: block;
  padding-left: 0;
}

body.ace-clay-store-page #order-standard_cart .product-desc p,
body.ace-clay-store-page #order-standard_cart .product-desc small {
  color: var(--clay-muted) !important;
}

body.ace-clay-store-page #order-standard_cart .product-desc .feature-value div,
body.ace-clay-store-page #order-standard_cart .product-desc .feature-value span {
  color: var(--clay-muted) !important;
}

body.ace-clay-store-page #order-standard_cart .product-desc .feature-value b,
body.ace-clay-store-page #order-standard_cart .product-desc .feature-value i {
  color: var(--clay-accent) !important;
}

body.ace-clay-store-page #order-standard_cart .product-desc .feature-value div[style*="border-top"] {
  border-color: rgb(255 252 208 / 28%) !important;
}

body.ace-clay-store-page #order-standard_cart .product-desc li::before {
  color: var(--clay-accent);
}

body.ace-clay-store-page #order-standard_cart .products .product footer {
  align-items: center;
  width: 100%;
  padding: 18px 22px 22px;
  border-top: 1px solid rgb(255 252 208 / 12%);
  float: none;
}

body.ace-clay-store-page #order-standard_cart .product .price {
  color: var(--clay-accent);
}

body.ace-clay-store-page #order-standard_cart .product-pricing small,
body.ace-clay-store-page #order-standard_cart .product .price-cycle {
  color: var(--clay-muted) !important;
}

body.ace-clay-store-page #order-standard_cart .btn-order-now {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 132px;
  min-height: 46px;
  padding: 10px 20px;
  color: var(--clay-bg);
  background: linear-gradient(180deg, #fffedc, var(--clay-accent-deep));
  border: 0;
  border-radius: 999px;
  box-shadow:
    8px 8px 16px rgb(0 0 0 / 36%),
    inset 4px 4px 8px rgb(255 255 255 / 55%),
    inset -3px -3px 7px rgb(96 82 42 / 16%);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    color 200ms,
    transform 200ms;
}

body.ace-clay-store-page #order-standard_cart .btn-order-now:hover,
body.ace-clay-store-page #order-standard_cart .btn-order-now:focus-visible {
  color: var(--clay-bg);
  background: linear-gradient(180deg, #fffedc, #e5dcae);
  box-shadow:
    5px 5px 10px rgb(0 0 0 / 36%),
    inset 5px 5px 9px rgb(255 255 255 / 48%),
    inset -3px -3px 7px rgb(96 82 42 / 20%);
  transform: scale(1.045, .92) translateY(2px);
}

body.ace-clay-store-page #order-standard_cart .btn-order-now:active {
  transform: scale(1.08, .84) translateY(4px);
}

body.ace-clay-store-page #order-standard_cart:not(.ace-store-page) {
  max-width: 1480px;
  margin: 0 auto;
  padding-bottom: 32px;
}

body.ace-clay-store-page #order-standard_cart .header-lined {
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgb(255 252 208 / 14%);
}

body.ace-clay-store-page #order-standard_cart .header-lined h1 {
  margin: 0;
  color: var(--clay-accent);
  font-family: Georgia, "Songti SC", "STSong", serif;
  font-size: 2.15rem;
  font-weight: 650;
}

body.ace-clay-store-page #order-standard_cart h2,
body.ace-clay-store-page #order-standard_cart h3,
body.ace-clay-store-page #order-standard_cart h4,
body.ace-clay-store-page #order-standard_cart strong {
  color: var(--clay-accent);
}

body.ace-clay-store-page #order-standard_cart p,
body.ace-clay-store-page #order-standard_cart small,
body.ace-clay-store-page #order-standard_cart .text-muted,
body.ace-clay-store-page #order-standard_cart .field-help-text {
  color: var(--clay-muted) !important;
}

body.ace-clay-store-page #order-standard_cart label,
body.ace-clay-store-page #order-standard_cart .control-label,
body.ace-clay-store-page #order-standard_cart .form-control-static {
  color: #eee8d4;
}

body.ace-clay-store-page #order-standard_cart .product-info,
body.ace-clay-store-page #order-standard_cart .panel,
body.ace-clay-store-page #order-standard_cart .view-cart-items,
body.ace-clay-store-page #order-standard_cart .order-summary,
body.ace-clay-store-page #order-standard_cart .apply-credit-container,
body.ace-clay-store-page #order-standard_cart .cc-input-container,
body.ace-clay-store-page #order-standard_cart .view-cart-tabs .tab-content,
body.ace-clay-store-page #order-standard_cart .view-cart-promotion-code,
body.ace-clay-store-page #order-standard_cart .view-cart-gateway-checkout,
body.ace-clay-store-page #order-standard_cart #paymentGatewaysContainer,
body.ace-clay-store-page #order-standard_cart .checkout-security-msg,
body.ace-clay-store-page #order-standard_cart .marketing-email-optin {
  color: var(--clay-text);
  background: linear-gradient(145deg, #494647, #343132);
  border: 0;
  border-radius: 26px;
  box-shadow: var(--clay-shadow-small);
}

body.ace-clay-store-page #order-standard_cart .product-info {
  margin-bottom: 24px;
  padding: 22px 24px;
}

body.ace-clay-store-page #order-standard_cart .product-info .product-title {
  color: var(--clay-accent) !important;
  font-size: 1.25rem;
  font-weight: 800;
}

body.ace-clay-store-page #order-standard_cart .product-info div,
body.ace-clay-store-page #order-standard_cart .product-info li,
body.ace-clay-store-page #order-standard_cart .product-info span {
  color: var(--clay-muted) !important;
}

body.ace-clay-store-page #order-standard_cart .product-info b,
body.ace-clay-store-page #order-standard_cart .product-info strong,
body.ace-clay-store-page #order-standard_cart .product-info i {
  color: var(--clay-accent) !important;
}

body.ace-clay-store-page #order-standard_cart .product-info div[style*="border-top"] {
  border-color: rgb(255 252 208 / 24%) !important;
}

body.ace-clay-store-page #order-standard_cart .sub-heading {
  height: auto;
  margin: 30px 0 20px;
  padding: 14px 18px;
  background: linear-gradient(145deg, #494647, #343132);
  border: 0;
  border-radius: 18px;
  box-shadow: var(--clay-shadow-small);
  text-align: left;
}

body.ace-clay-store-page #order-standard_cart .sub-heading span,
body.ace-clay-store-page #order-standard_cart .sub-heading-borderless span {
  position: static;
  padding: 0;
  color: var(--clay-accent);
  background: transparent !important;
}

body.ace-clay-store-page #order-standard_cart .field,
body.ace-clay-store-page #order-standard_cart .form-control,
body.ace-clay-store-page #order-standard_cart select {
  width: 100%;
  min-height: 48px;
  color: var(--clay-text);
  background: linear-gradient(145deg, #343132, #454142);
  border: 0;
  border-radius: 16px;
  box-shadow:
    inset 4px 4px 8px rgb(0 0 0 / 25%),
    inset -4px -4px 8px rgb(255 255 255 / 7%);
}

body.ace-clay-store-page #order-standard_cart .form-control-qty {
  width: 70px;
}

body.ace-clay-store-page #order-standard_cart textarea.form-control {
  min-height: 132px;
  resize: vertical;
}

body.ace-clay-store-page #order-standard_cart .field:focus,
body.ace-clay-store-page #order-standard_cart .form-control:focus,
body.ace-clay-store-page #order-standard_cart select:focus {
  color: var(--clay-text);
  background: linear-gradient(145deg, #393637, #4a4647);
  border-color: transparent;
  box-shadow:
    inset 4px 4px 8px rgb(0 0 0 / 25%),
    inset -4px -4px 8px rgb(255 255 255 / 7%),
    0 0 0 3px rgb(255 252 208 / 22%);
}

body.ace-clay-store-page #order-standard_cart .field::placeholder,
body.ace-clay-store-page #order-standard_cart .form-control::placeholder {
  color: #aaa3a4;
  opacity: 1;
}

body.ace-clay-store-page #order-standard_cart .field[disabled],
body.ace-clay-store-page #order-standard_cart .field[readonly],
body.ace-clay-store-page #order-standard_cart .form-control[disabled],
body.ace-clay-store-page #order-standard_cart .form-control[readonly] {
  color: #aaa3a4;
  background: #343132;
}

body.ace-clay-store-page #order-standard_cart .field-container .form-group > label,
body.ace-clay-store-page #order-standard_cart .product-configurable-options .form-group > label:first-child {
  margin-bottom: 12px;
  color: var(--clay-text);
  font-size: 1.05rem;
  line-height: 1.4;
}

body.ace-clay-store-page #order-standard_cart .product-configurable-options :is(.form-control, select) {
  font-size: 1rem;
}

body.ace-clay-store-page #order-standard_cart .ace-cycle-source {
  display: none !important;
}

body.ace-clay-store-page #order-standard_cart .ace-cycle-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

body.ace-clay-store-page #order-standard_cart .ace-cycle-option {
  position: relative;
  display: grid;
  min-height: 76px;
  align-content: center;
  gap: 4px;
  margin: 0;
  padding: 14px 18px;
  color: var(--clay-text);
  background: linear-gradient(145deg, #514e4f, #302d2e);
  border: 0;
  border-radius: 20px;
  box-shadow: var(--clay-shadow-small);
  cursor: pointer;
}

body.ace-clay-store-page #order-standard_cart .ace-cycle-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

body.ace-clay-store-page #order-standard_cart .ace-cycle-option strong {
  color: inherit;
  font-size: 1.14rem;
  line-height: 1.2;
}

body.ace-clay-store-page #order-standard_cart .ace-cycle-option span {
  color: var(--clay-muted);
  font-size: .94rem;
}

body.ace-clay-store-page #order-standard_cart .ace-cycle-option:has(input:checked) {
  color: var(--clay-bg);
  background: linear-gradient(145deg, #fffedc, var(--clay-accent-deep));
  box-shadow:
    8px 8px 16px rgb(0 0 0 / 36%),
    inset 4px 4px 8px rgb(255 255 255 / 55%),
    inset -3px -3px 7px rgb(96 82 42 / 16%);
}

body.ace-clay-store-page #order-standard_cart .ace-cycle-option:has(input:checked) span {
  color: #57513d;
}

body.ace-clay-store-page #order-standard_cart .ace-cycle-option:focus-within {
  outline: 3px solid rgb(255 252 208 / 50%);
  outline-offset: 3px;
}

body.ace-clay-store-page #order-standard_cart .ace-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

body.ace-clay-store-page #order-standard_cart .ace-choice-grid > .ace-config-label {
  grid-column: 1 / -1;
  margin: 0;
}

body.ace-clay-store-page #order-standard_cart .ace-choice-option {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 12px 16px;
  color: var(--clay-text);
  background: linear-gradient(145deg, #514e4f, #302d2e);
  border: 0;
  border-radius: 18px;
  box-shadow: var(--clay-shadow-small);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.35;
}

body.ace-clay-store-page #order-standard_cart .ace-choice-option input[type="radio"] {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin: 0;
}

body.ace-clay-store-page #order-standard_cart .ace-choice-option.is-selected {
  color: var(--clay-bg);
  background: linear-gradient(145deg, #fffedc, var(--clay-accent-deep));
}

body.ace-clay-store-page #order-standard_cart .ace-choice-option.is-selected input[type="radio"] {
  accent-color: var(--clay-bg);
}

body.ace-clay-store-page #order-standard_cart select option {
  color: var(--clay-text);
  background: #343132;
}

body.ace-clay-store-page #order-standard_cart input[type="radio"],
body.ace-clay-store-page #order-standard_cart input[type="checkbox"] {
  accent-color: var(--clay-accent-deep);
}

body.ace-clay-store-page #order-standard_cart .prepend-icon .field-icon,
body.ace-clay-store-page #order-standard_cart .prepend-icon .field-icon i,
body.ace-clay-store-page #order-standard_cart .input-group-text {
  color: var(--clay-accent);
}

body.ace-clay-store-page #order-standard_cart :is(#containerNewUserSignup, #containerNewUserSecurity) .prepend-icon {
  position: relative;
}

body.ace-clay-store-page #order-standard_cart :is(#containerNewUserSignup, #containerNewUserSecurity) .prepend-icon .field-icon {
  position: absolute;
  inset: 0 auto auto 22px;
  z-index: 2;
  display: grid;
  width: 14px;
  height: 48px;
  margin: 0;
  line-height: 0;
  pointer-events: none;
  place-items: center;
}

body.ace-clay-store-page #order-standard_cart :is(#containerNewUserSignup, #containerNewUserSecurity) .prepend-icon .field-icon i {
  position: static;
  display: grid;
  width: 1em;
  height: 1em;
  margin: 0;
  line-height: 1;
  text-align: center;
  place-items: center;
}

body.ace-clay-store-page #order-standard_cart :is(#containerNewUserSignup, #containerNewUserSecurity) .prepend-icon :is(.field, .form-control) {
  height: 48px;
  padding: 0 16px 0 42px;
  line-height: 48px;
}

body.ace-clay-store-page #order-standard_cart .btn-primary,
body.ace-clay-store-page #order-standard_cart .btn-success,
body.ace-clay-store-page #order-standard_cart .btn-info,
body.ace-clay-store-page #order-standard_cart .view-cart-items .item-qty button[type="submit"] {
  color: var(--clay-bg);
  background: linear-gradient(145deg, #fffedc, var(--clay-accent-deep));
  border: 0;
  border-radius: 18px;
  box-shadow:
    7px 7px 14px rgb(0 0 0 / 36%),
    inset 4px 4px 8px rgb(255 255 255 / 55%),
    inset -3px -3px 7px rgb(96 82 42 / 16%);
}

body.ace-clay-store-page #order-standard_cart .btn-primary:hover,
body.ace-clay-store-page #order-standard_cart .btn-primary:focus,
body.ace-clay-store-page #order-standard_cart .btn-success:hover,
body.ace-clay-store-page #order-standard_cart .btn-success:focus,
body.ace-clay-store-page #order-standard_cart .btn-info:hover,
body.ace-clay-store-page #order-standard_cart .btn-info:focus,
body.ace-clay-store-page #order-standard_cart .view-cart-items .item-qty button[type="submit"]:hover,
body.ace-clay-store-page #order-standard_cart .view-cart-items .item-qty button[type="submit"]:focus {
  color: var(--clay-bg);
  background: linear-gradient(145deg, #fffef0, #e5dcae);
}

body.ace-clay-store-page #order-standard_cart .btn-default,
body.ace-clay-store-page #order-standard_cart .btn-secondary,
body.ace-clay-store-page #order-standard_cart .btn-light,
body.ace-clay-store-page #order-standard_cart .empty-cart .btn,
body.ace-clay-store-page #order-standard_cart #continueShopping {
  color: var(--clay-text);
  background: linear-gradient(145deg, #514e4f, #302d2e);
  border: 0;
  border-radius: 16px;
  box-shadow: var(--clay-shadow-small);
}

body.ace-clay-store-page #order-standard_cart .btn-link,
body.ace-clay-store-page #order-standard_cart a {
  color: var(--clay-accent);
}

body.ace-clay-store-page #order-standard_cart .secondary-cart-body {
  width: 68%;
  padding-right: 18px;
  padding-left: 0;
}

body.ace-clay-store-page #order-standard_cart .secondary-cart-sidebar {
  width: 32%;
  padding-right: 0;
  padding-left: 18px;
}

body.ace-clay-store-page #order-standard_cart .secondary-cart-body > form[action$="a=view"] {
  overflow: hidden;
  background: linear-gradient(145deg, #494647, #343132);
  border-radius: 26px;
  box-shadow: var(--clay-shadow-small);
}

body.ace-clay-store-page #order-standard_cart .order-summary {
  overflow: hidden;
  border-bottom: 0;
}

body.ace-clay-store-page #order-standard_cart .order-summary h2,
body.ace-clay-store-page #order-standard_cart .order-summary .summary-heading {
  padding: 18px 20px;
  color: var(--clay-accent);
  background: transparent;
  border-bottom: 1px solid rgb(255 252 208 / 12%);
}

body.ace-clay-store-page #order-standard_cart .summary-container,
body.ace-clay-store-page #order-standard_cart .order-summary .summary-container {
  padding: 18px 20px;
  color: var(--clay-text);
  background: transparent;
}

body.ace-clay-store-page #order-standard_cart .order-summary .summary-totals,
body.ace-clay-store-page #order-standard_cart .order-summary .subtotal,
body.ace-clay-store-page #order-standard_cart .order-summary .bordered-totals {
  border-color: rgb(255 252 208 / 14%);
}

body.ace-clay-store-page #order-standard_cart .order-summary .product-group,
body.ace-clay-store-page #order-standard_cart .order-summary .recurring-charges,
body.ace-clay-store-page #order-standard_cart .order-summary .btn-continue-shopping {
  color: var(--clay-muted);
}

body.ace-clay-store-page #order-standard_cart .order-summary .summary-container > .text-right {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  text-align: initial !important;
}

body.ace-clay-store-page #order-standard_cart .order-summary .summary-container > .text-right > br {
  display: none;
}

body.ace-clay-store-page #order-standard_cart #checkout,
body.ace-clay-store-page #order-standard_cart #continueShopping {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 12px 16px;
  border: 0;
  border-radius: 18px;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
}

body.ace-clay-store-page #order-standard_cart #continueShopping {
  order: 1;
}

body.ace-clay-store-page #order-standard_cart #checkout {
  order: 2;
}

body.ace-clay-store-page #order-standard_cart .total-due-today .amt,
body.ace-clay-store-page #order-standard_cart .total-due-today-pnl .amt {
  color: var(--clay-accent);
}

body.ace-clay-store-page #order-standard_cart #btnCompleteProductConfig,
body.ace-clay-store-page #order-standard_cart #btnCompleteOrder {
  min-width: 172px;
  min-height: 52px;
}

body.ace-clay-store-page #order-standard_cart .view-cart-items-header {
  padding: 14px 18px;
  color: var(--clay-text);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgb(255 252 208 / 14%);
  font-weight: 700;
}

body.ace-clay-store-page #order-standard_cart .secondary-cart-body > form[action$="a=view"] .view-cart-items {
  margin-bottom: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

body.ace-clay-store-page #order-standard_cart .view-cart-items .item,
body.ace-clay-store-page #order-standard_cart .view-cart-items .item:nth-child(even) {
  padding: 18px;
  color: var(--clay-text);
  background: transparent;
  border-color: rgb(255 252 208 / 10%);
}

body.ace-clay-store-page #order-standard_cart .view-cart-items .item-title,
body.ace-clay-store-page #order-standard_cart .view-cart-items .item-domain,
body.ace-clay-store-page #order-standard_cart .view-cart-items .item-price span {
  color: var(--clay-accent);
}

body.ace-clay-store-page #order-standard_cart .btn-remove-from-cart {
  color: #f1a0ae;
}

body.ace-clay-store-page #order-standard_cart .view-cart-items .item-qty {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 10px;
}

body.ace-clay-store-page #order-standard_cart .view-cart-items .item-qty button[type="submit"] {
  min-width: 96px;
  min-height: 44px;
  padding: 10px 18px;
  font-size: .88rem;
  font-weight: 800;
}

body.ace-clay-store-page #order-standard_cart .empty-cart {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 18px;
  border-top: 1px solid rgb(255 252 208 / 10%);
}

body.ace-clay-store-page #order-standard_cart .empty-cart .btn {
  min-height: 44px;
  padding: 10px 16px;
  font-size: .86rem;
}

body.ace-clay-store-page #order-standard_cart .view-cart-tabs {
  margin-top: 20px;
}

body.ace-clay-store-page #order-standard_cart .view-cart-tabs .nav-tabs {
  border: 0;
}

body.ace-clay-store-page #order-standard_cart .view-cart-tabs .nav-tabs a[href="#applyPromo"] {
  display: none;
}

body.ace-clay-store-page #order-standard_cart .view-cart-tabs .nav-tabs .nav-link {
  display: inline-flex;
  padding: 10px 16px;
  color: var(--clay-muted);
  border: 0;
  border-radius: 16px 16px 0 0;
  text-decoration: none;
}

body.ace-clay-store-page #order-standard_cart .view-cart-tabs .nav-tabs a[aria-selected="true"],
body.ace-clay-store-page #order-standard_cart .view-cart-tabs .nav-tabs a[aria-expanded="true"] {
  color: var(--clay-accent);
  background: #403d3e;
  border-color: transparent;
}

body.ace-clay-store-page #order-standard_cart .view-cart-tabs .tab-content,
body.ace-clay-store-page #order-standard_cart .view-cart-promotion-code,
body.ace-clay-store-page #order-standard_cart .view-cart-gateway-checkout {
  padding: 20px;
}

body.ace-clay-store-page #order-standard_cart #applyPromo .prepend-icon .field-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0;
  font-size: 1rem;
  place-items: center;
}

body.ace-clay-store-page #order-standard_cart #inputPromotionCode {
  padding-left: 48px;
}

body.ace-clay-store-page #order-standard_cart .account-select-container {
  border: 0;
}

body.ace-clay-store-page #order-standard_cart .account-select-container div.account {
  margin-bottom: 12px;
  padding: 16px 18px;
  color: var(--clay-text);
  background: linear-gradient(145deg, #494647, #343132);
  border: 0;
  border-radius: 20px;
  box-shadow: var(--clay-shadow-small);
}

body.ace-clay-store-page #order-standard_cart .account-select-container div.account.active {
  background: linear-gradient(145deg, #504c4d, #383536);
  box-shadow: var(--clay-shadow-small);
}

body.ace-clay-store-page #order-standard_cart .already-registered {
  margin-bottom: 22px;
}

body.ace-clay-store-page #order-standard_cart .apply-credit-container,
body.ace-clay-store-page #order-standard_cart .cc-input-container,
body.ace-clay-store-page #order-standard_cart #paymentGatewaysContainer,
body.ace-clay-store-page #order-standard_cart .marketing-email-optin {
  margin: 20px 0;
  padding: 20px;
}

body.ace-clay-store-page #order-standard_cart #totalDueToday {
  padding: 18px 22px;
  color: var(--clay-bg);
  background: linear-gradient(145deg, #fffedc, var(--clay-accent-deep));
  border: 0;
  border-radius: 22px;
  box-shadow: var(--clay-shadow-small);
}

body.ace-clay-store-page #order-standard_cart #totalDueToday strong {
  color: var(--clay-bg);
}

body.ace-clay-store-page #order-standard_cart .checkout-security-msg {
  margin-top: 28px;
  padding: 18px 22px 18px 72px;
}

body.ace-clay-store-page #order-standard_cart .alert {
  color: #f5efdd;
  background: linear-gradient(145deg, #4b4849, #353233);
  border: 0;
  border-radius: 18px;
  box-shadow: var(--clay-shadow-small);
}

body.ace-clay-store-page #order-standard_cart .alert-danger {
  box-shadow:
    inset 0 0 0 1px rgb(223 124 142 / 55%),
    var(--clay-shadow-small);
}

body.ace-clay-store-page #order-standard_cart .modal-content {
  color: var(--clay-text);
  background: linear-gradient(145deg, #494647, #343132);
  border: 0;
  border-radius: 26px;
  box-shadow: var(--clay-shadow);
}

body.ace-clay-store-page #order-standard_cart .modal-header,
body.ace-clay-store-page #order-standard_cart .modal-footer {
  border-color: rgb(255 252 208 / 12%);
}

body.ace-clay-store-page #order-standard_cart .product-configurable-options .irs-with-grid {
  height: 92px;
}

body.ace-clay-store-page #order-standard_cart .product-configurable-options .irs-line {
  top: 34px;
  height: 14px;
  background: #302d2e;
  border: 0;
  border-radius: 999px;
  box-shadow:
    inset 3px 3px 6px rgb(0 0 0 / 30%),
    inset -3px -3px 6px rgb(255 255 255 / 7%);
}

body.ace-clay-store-page #order-standard_cart .product-configurable-options :is(
  .irs-line-left,
  .irs-line-mid,
  .irs-line-right,
  .irs-bar,
  .irs-bar-edge,
  .irs-slider
) {
  background-image: none;
}

body.ace-clay-store-page #order-standard_cart .product-configurable-options :is(
  .irs-line-left,
  .irs-line-mid,
  .irs-line-right
) {
  height: 14px;
  background: transparent;
}

body.ace-clay-store-page #order-standard_cart .product-configurable-options .irs-bar,
body.ace-clay-store-page #order-standard_cart .product-configurable-options .irs-bar-edge {
  top: 34px;
  height: 14px;
  background: linear-gradient(145deg, #fffedc, var(--clay-accent-deep));
  border: 0;
}

body.ace-clay-store-page #order-standard_cart .product-configurable-options .irs-bar-edge {
  width: 14px;
  border-radius: 999px 0 0 999px;
}

body.ace-clay-store-page #order-standard_cart .product-configurable-options .irs-slider {
  top: 25px;
  width: 32px;
  height: 32px;
  background: linear-gradient(145deg, #fffedc, var(--clay-accent-deep));
  border: 0;
  border-radius: 50%;
  box-shadow:
    6px 6px 12px rgb(0 0 0 / 38%),
    inset 3px 3px 6px rgb(255 255 255 / 55%),
    inset -2px -2px 5px rgb(96 82 42 / 18%);
  cursor: grab;
}

body.ace-clay-store-page #order-standard_cart .product-configurable-options .irs-slider:active {
  cursor: grabbing;
}

body.ace-clay-store-page #order-standard_cart .product-configurable-options :is(
  .irs-min,
  .irs-max,
  .irs-from,
  .irs-to,
  .irs-single
) {
  padding: 4px 8px;
  color: var(--clay-bg);
  background: var(--clay-accent);
  border-radius: 9px;
  font-size: .82rem;
  line-height: 1.2;
}

body.ace-clay-store-page #order-standard_cart .product-configurable-options :is(
  .irs-from,
  .irs-to,
  .irs-single
)::after {
  border-top-color: var(--clay-accent);
}

body.ace-clay-store-page #order-standard_cart .product-configurable-options .irs-grid {
  height: 34px;
}

body.ace-clay-store-page #order-standard_cart .product-configurable-options .irs-grid-pol {
  background: rgb(255 252 208 / 45%);
}

body.ace-clay-store-page #order-standard_cart .product-configurable-options .irs-grid-text {
  bottom: 8px;
  color: var(--clay-muted);
  font-size: .74rem;
  line-height: 1;
}

body.ace-clay-store-page :focus-visible {
  outline: 3px solid rgb(255 252 208 / 50%);
  outline-offset: 3px;
}

@media (max-width: 1199px) {
  body.ace-clay-store-page .ace-app-shell {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  body.ace-clay-store-page .ace-app-rail {
    margin-right: 8px;
  }

  body.ace-clay-store-page #order-standard_cart .ace-store-group {
    grid-template-columns: 168px minmax(0, 1fr) 140px;
    gap: 20px;
  }

  /* 中屏：154 宽 ÷1.8 → 86 高，各元素按 154/198 = .778 等比 */
  body.ace-clay-store-page #order-standard_cart .ace-store-group__icon.ace-product-badge {
    width: 154px;
    height: 86px;
    padding-bottom: 5px;
    border-radius: 10px;
  }

  body.ace-clay-store-page #order-standard_cart .ace-store-group__icon.ace-product-badge::before {
    inset: 2px;
    border-radius: 8px;
  }

  body.ace-clay-store-page #order-standard_cart .ace-store-group__icon.ace-product-badge::after {
    background:
      radial-gradient(circle at 12.4px calc(50% - 1.5px), rgb(255 251 234 / 90%) 0 .7px, rgb(255 251 234 / 0%) 1.9px),
      radial-gradient(circle at calc(100% - 14.1px) calc(50% - 1.5px), rgb(255 251 234 / 90%) 0 .7px, rgb(255 251 234 / 0%) 1.9px),
      radial-gradient(circle at 13.2px 50%, #eee4c6 0 .9px, #d5c8a6 .9px 1.6px, #b7aa88 1.6px 2.3px, #94886a 2.3px 2.7px, #6a6047 2.7px 3px, #d2c5a3 3px 3.3px, #26200f 3.3px 3.6px, rgb(0 0 0 / 38%) 3.6px 4.3px, rgb(0 0 0 / 0%) 4.5px),
      radial-gradient(circle at calc(100% - 13.2px) 50%, #eee4c6 0 .9px, #d5c8a6 .9px 1.6px, #b7aa88 1.6px 2.3px, #94886a 2.3px 2.7px, #6a6047 2.7px 3px, #d2c5a3 3px 3.3px, #26200f 3.3px 3.6px, rgb(0 0 0 / 38%) 3.6px 4.3px, rgb(0 0 0 / 0%) 4.5px);
  }

  body.ace-clay-store-page #order-standard_cart .ace-product-badge__title {
    font-size: 1.59rem;
  }

  body.ace-clay-store-page #order-standard_cart .ace-product-badge__subtitle {
    margin-top: 2px;
    font-size: .426rem;
  }

  body.ace-clay-store-page #order-standard_cart .ace-product-badge--dualisp .ace-product-badge__subtitle {
    font-size: .78rem;
  }

  body.ace-clay-store-page #order-standard_cart .ace-product-badge__subtitle::after {
    width: 60px;
    margin: 10px auto 0;
  }

  body.ace-clay-store-page #order-standard_cart .ace-product-badge--dualisp .ace-product-badge__subtitle::after {
    margin-top: 3px;
  }

  body.ace-clay-store-page #order-standard_cart .ace-store-group__copy {
    padding-left: 24px;
  }

  body.ace-clay-store-page #order-standard_cart .ace-store-group__meta {
    min-width: 140px;
  }
}

@media (max-width: 1023px) {
  body.ace-clay-store-page .ace-app-shell {
    grid-template-columns: 1fr;
  }

  body.ace-clay-store-page .ace-page-body {
    padding: 0 14px 96px;
  }

  body.ace-clay-store-page .ace-page-frame .ace-page-content {
    padding: 24px 18px 38px;
  }

  body.ace-clay-store-page #order-standard_cart .secondary-cart-body,
  body.ace-clay-store-page #order-standard_cart .secondary-cart-sidebar {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  body.ace-clay-store-page #order-standard_cart .cart-body > .row,
  body.ace-clay-store-page #order-standard_cart .cart-body > form > .row {
    margin-right: 0;
    margin-left: 0;
  }

  body.ace-clay-store-page .ace-mobile-nav {
    background: linear-gradient(145deg, #494647, #343132);
    border: 0;
    border-radius: 26px;
    box-shadow: var(--clay-shadow);
  }

  body.ace-clay-store-page .ace-mobile-nav a {
    color: #e8e1d3;
    border-radius: 20px;
  }

  body.ace-clay-store-page .ace-mobile-nav a:hover,
  body.ace-clay-store-page .ace-mobile-nav a.is-active {
    color: var(--clay-bg);
    background: linear-gradient(145deg, #fffedc, var(--clay-accent-deep));
  }
}

@media (max-width: 639px) {
  body.ace-clay-store-page .ace-page-body {
    padding: 0 8px 90px;
  }

  body.ace-clay-store-page .ace-page-frame .ace-page-content {
    padding: 22px 8px 34px;
  }

  body.ace-clay-store-page #order-standard_cart .field-container > .row,
  body.ace-clay-store-page #order-standard_cart .product-configurable-options > .row,
  body.ace-clay-store-page #order-standard_cart #containerNewUserSignup > .row,
  body.ace-clay-store-page #order-standard_cart #containerNewUserSecurity > .row {
    margin-right: 0;
    margin-left: 0;
  }

  body.ace-clay-store-page #order-standard_cart .ace-cycle-options,
  body.ace-clay-store-page #order-standard_cart .ace-choice-grid {
    grid-template-columns: 1fr;
  }

  body.ace-clay-store-page #order-standard_cart #btnAlreadyRegistered {
    width: 100%;
    margin: 0;
  }

  body.ace-clay-store-page #order-standard_cart .header-lined {
    margin-bottom: 20px;
  }

  body.ace-clay-store-page #order-standard_cart .header-lined h1 {
    font-size: 1.8rem;
  }

  body.ace-clay-store-page #order-standard_cart .product-info,
  body.ace-clay-store-page #order-standard_cart .order-summary,
  body.ace-clay-store-page #order-standard_cart .view-cart-items,
  body.ace-clay-store-page #order-standard_cart .apply-credit-container,
  body.ace-clay-store-page #order-standard_cart .cc-input-container,
  body.ace-clay-store-page #order-standard_cart #paymentGatewaysContainer {
    border-radius: 22px;
  }

  body.ace-clay-store-page #order-standard_cart .sub-heading {
    margin-top: 24px;
    border-radius: 16px;
  }

  body.ace-clay-store-page #order-standard_cart .already-registered .float-right,
  body.ace-clay-store-page #order-standard_cart .already-registered .pull-right {
    float: none !important;
    margin-bottom: 14px;
  }

  body.ace-clay-store-page #order-standard_cart .already-registered .btn {
    width: 100%;
    margin: 0;
  }

  body.ace-clay-store-page #order-standard_cart .checkout-security-msg {
    padding: 18px;
  }

  body.ace-clay-store-page #order-standard_cart .checkout-security-msg i {
    display: none;
  }

  body.ace-clay-store-page #order-standard_cart .ace-store-heading h1 {
    font-size: 1.8rem;
  }

  body.ace-clay-store-page #order-standard_cart .ace-store-cart-link {
    flex-basis: 48px;
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
  }

  body.ace-clay-store-page #order-standard_cart .ace-store-regions {
    min-height: 70px;
    margin-bottom: 20px;
    border-radius: 26px;
  }

  body.ace-clay-store-page #order-standard_cart .ace-store-regions a {
    min-height: 50px;
    border-radius: 22px;
  }

  body.ace-clay-store-page #order-standard_cart .ace-store-group {
    grid-template-columns: 92px minmax(0, 1fr) 42px;
    gap: 14px;
    min-height: 116px;
    padding: 18px 20px 18px 14px;
    border-radius: 26px;
  }

  /* 移动：栅格列 92px ÷1.8 → 51 高，scale = 92/198 = .465
     副标题字号做了下限保护（等比会是 4px，不可读），其余严格等比 */
  body.ace-clay-store-page #order-standard_cart .ace-store-group__icon.ace-product-badge {
    width: 92px;
    height: 51px;
    padding-bottom: 3px;
    border-radius: 6px;
  }

  body.ace-clay-store-page #order-standard_cart .ace-store-group__icon.ace-product-badge::before {
    inset: 2px;
    border-radius: 4px;
  }

  body.ace-clay-store-page #order-standard_cart .ace-store-group__icon.ace-product-badge::after {
    background:
      radial-gradient(circle at 7.4px calc(50% - .9px), rgb(255 251 234 / 90%) 0 .4px, rgb(255 251 234 / 0%) 1.1px),
      radial-gradient(circle at calc(100% - 8.4px) calc(50% - .9px), rgb(255 251 234 / 90%) 0 .4px, rgb(255 251 234 / 0%) 1.1px),
      radial-gradient(circle at 7.9px 50%, #eee4c6 0 .5px, #d5c8a6 .5px .95px, #b7aa88 .95px 1.35px, #94886a 1.35px 1.65px, #6a6047 1.65px 1.8px, #d2c5a3 1.8px 1.95px, #26200f 1.95px 2.15px, rgb(0 0 0 / 38%) 2.15px 2.6px, rgb(0 0 0 / 0%) 2.7px),
      radial-gradient(circle at calc(100% - 7.9px) 50%, #eee4c6 0 .5px, #d5c8a6 .5px .95px, #b7aa88 .95px 1.35px, #94886a 1.35px 1.65px, #6a6047 1.65px 1.8px, #d2c5a3 1.8px 1.95px, #26200f 1.95px 2.15px, rgb(0 0 0 / 38%) 2.15px 2.6px, rgb(0 0 0 / 0%) 2.7px);
  }

  body.ace-clay-store-page #order-standard_cart .ace-product-badge__title {
    font-size: .95rem;
    letter-spacing: .03em;
    text-indent: .03em;
  }

  body.ace-clay-store-page #order-standard_cart .ace-product-badge__subtitle {
    margin-top: 1px;
    font-size: .4rem;
    letter-spacing: .18em;
    text-indent: .18em;
  }

  body.ace-clay-store-page #order-standard_cart .ace-product-badge--dualisp .ace-product-badge__subtitle {
    font-size: .55rem;
  }

  body.ace-clay-store-page #order-standard_cart .ace-product-badge__subtitle::after {
    display: block;
    width: 36px;
    height: 3px;
    margin: 5px auto 0;
    background:
      radial-gradient(circle at center, #cec3a5 0 .6px, transparent .8px) center / 100% 100% no-repeat,
      linear-gradient(90deg, #b0a68a 0 44.2%, transparent 44.2% 55.8%, #b0a68a 55.8% 100%) center / 100% 1px no-repeat;
  }

  body.ace-clay-store-page #order-standard_cart .ace-product-badge--dualisp .ace-product-badge__subtitle::after {
    margin-top: 2px;
  }

  body.ace-clay-store-page #order-standard_cart .ace-store-group__copy strong {
    font-size: .94rem;
  }

  body.ace-clay-store-page #order-standard_cart .ace-store-group__copy {
    padding-left: 0;
    border-left: 0;
  }

  body.ace-clay-store-page #order-standard_cart .ace-store-group__copy small {
    font-size: .74rem;
  }

  body.ace-clay-store-page #order-standard_cart .ace-store-group__meta {
    grid-template-columns: 42px;
    gap: 0;
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    background: linear-gradient(145deg, #494647, #343132);
    border: 0;
    border-radius: 50%;
    box-shadow: var(--clay-shadow-small);
  }

  body.ace-clay-store-page #order-standard_cart .ace-store-products {
    margin-top: 16px;
    padding: 0;
  }

  body.ace-clay-store-page #order-standard_cart .ace-store-product-grid {
    gap: 16px;
  }

  body.ace-clay-store-page #order-standard_cart .product {
    border-radius: 26px;
  }
}

@media (forced-colors: active) {
  body.ace-clay-store-page #order-standard_cart .ace-product-badge__title,
  body.ace-clay-store-page #order-standard_cart .ace-product-badge__subtitle {
    color: CanvasText;
    background: none;
    filter: none;
    -webkit-text-fill-color: CanvasText;
  }

  body.ace-clay-store-page #order-standard_cart .ace-store-group__icon.ace-product-badge {
    border: 1px solid CanvasText;
  }

  body.ace-clay-store-page #order-standard_cart .product-info,
  body.ace-clay-store-page #order-standard_cart .panel,
  body.ace-clay-store-page #order-standard_cart .view-cart-items,
  body.ace-clay-store-page #order-standard_cart .order-summary,
  body.ace-clay-store-page #order-standard_cart .sub-heading,
  body.ace-clay-store-page #order-standard_cart .account,
  body.ace-clay-store-page #order-standard_cart .apply-credit-container,
  body.ace-clay-store-page #order-standard_cart .cc-input-container {
    color: CanvasText;
    background: Canvas;
    border: 1px solid CanvasText;
    box-shadow: none;
  }
}
