.shop-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--shop-muted-color);
  font-size: var(--shop-small-size);
}

.shop-breadcrumb a {
  color: var(--shop-muted-color);
  text-decoration: none;
}

.shop-breadcrumb a:hover {
  color: var(--liuer-accent);
}

.shop-breadcrumb strong {
  color: var(--shop-text-color);
}

.shop-archive-hero,
.shop-cart-hero,
.shop-checkout-hero {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.shop-archive-hero p,
.shop-cart-hero p,
.shop-checkout-hero p {
  margin: 0 0 6px;
  color: var(--liuer-accent);
  font-size: var(--shop-small-size);
  font-weight: 900;
  text-transform: uppercase;
}

.shop-archive-hero h1,
.shop-cart-hero h1,
.shop-checkout-hero h1 {
  margin: 0;
  color: var(--shop-heading-color);
  font-size: 22px;
}

.shop-archive-hero span,
.shop-cart-hero span,
.shop-checkout-hero span {
  display: inline-block;
  color: var(--shop-muted-color);
}

.shop-cart-hero > a,
.shop-checkout-hero > a,
.shop-empty-state a,
.shop-cart-summary > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--shop-radius);
  background: var(--liuer-accent);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.shop-archive-sort {
  display: flex;
  gap: 10px;
  align-items: center;
}

.shop-archive-sort label {
  color: var(--shop-muted-color);
  font-size: var(--shop-small-size);
}

.shop-archive-sort select {
  padding: 0 36px 0 12px;
  border: 1px solid var(--liuer-border);
  background: #fff;
  color: var(--shop-text-color);
}

.shop-archive-layout {
  display: grid;
  align-items: start;
}

.shop-archive-sidebar {
  display: grid;
  position: sticky;
  top: calc(var(--shop-header-height, 86px) + 14px);
}

.shop-archive-sidebar section,
.shop-cart-summary,
.shop-empty-state {
  border: 1px solid var(--liuer-border);
  border-radius: var(--shop-radius);
  background: #fff;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--liuer-shadow-hex) 6%, transparent);
}

.shop-archive-sidebar h2,
.shop-cart-summary h2,
.shop-empty-state h2 {
  margin: 0 0 14px;
  color: var(--shop-heading-color);
  font-size: 18px;
  font-weight: 900;
}

.shop-archive-cats > a {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 0 10px;
  color: var(--shop-text-color);
  text-decoration: none;
}

.shop-archive-cats > a:hover,
.shop-archive-cats > a.is-active {
  background: #eef7f2;
  color: var(--liuer-accent);
}

.shop-archive-sidebar .shop-icon {
  width: 18px;
  height: 18px;
}

.shop-archive-sidebar small {
  color: var(--shop-muted-color);
}

.shop-product-sidebar-contact p,
.shop-empty-state p,
.shop-cart-summary p {
  margin: 0;
  color: var(--shop-muted-color);
  line-height: 1.6;
}

.shop-product-sidebar-contact p {
  margin: -6px 0 16px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.shop-product-contact-list {
  display: grid;
  gap: 10px;
}

.shop-product-contact-list a,
.shop-product-contact-list div {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--shop-text-color);
  text-decoration: none;
}

.shop-product-contact-list .shop-icon {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  opacity: 0.86;
}

.shop-product-contact-list strong,
.shop-product-contact-list small {
  display: block;
}

.shop-product-contact-list strong {
  color: var(--shop-text-color);
  font-size: 14px;
  line-height: 1.45;
}

.shop-product-contact-list small {
  margin-top: 0;
  color: var(--shop-muted-color);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.shop-product-sidebar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: 18px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.shop-product-sidebar-cta:hover {
  color: #fff;
  transform: translateY(-1px);
}

.shop-archive-grid {
  display: grid;
  grid-template-columns: repeat(var(--shop-archive-product-columns, 4), minmax(0, 1fr));
}

.shop-archive-grid .shop-product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--liuer-border);
  border-radius: var(--shop-radius);
  background: #fff;
}

.shop-product-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.shop-product-card__media {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 0;
}

.shop-product-card__media img {
  width: 100%;
  height: 100%;
  padding: var(--shop-product-card-image-padding);
  object-fit: contain;
  transition: transform 0.2s ease;
}

.shop-product-card:hover .shop-product-card__media img {
  transform: scale(1.035);
}

.shop-product-card__sale {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #e53935;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.shop-product-card__body {
  padding: 12px;
}

.shop-product-card h3 {
  display: -webkit-box;
  min-height: 40px;
  margin: 0;
  overflow: hidden;
  color: var(--shop-heading-color);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.shop-stars > span:not(.shop-stars-icons) {
  color: var(--shop-muted-color);
}

.shop-price {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: baseline;
  padding-right: 38px;
}

.shop-price strong {
  color: var(--shop-danger-color);
  font-size: 16px;
  font-weight: 900;
}

.shop-price del {
  color: var(--shop-muted-color);
  font-size: 12px;
}

.shop-add-cart {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: var(--shop-radius);
  background: linear-gradient(
    135deg,
    var(--liuer-accent),
    var(--liuer-accent-strong)
  );
  color: #fff;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--liuer-accent-shadow-hex) 22%, transparent);
}

.shop-add-cart::before {
  --icon: var(--i-cart);
  width: 17px;
  height: 17px;
}

.shop-add-cart.is-loading {
  cursor: wait;
  opacity: 0.82;
}

.shop-add-cart.is-loading::after {
  content: "";
  width: 15px;
  height: 15px;
  border: 2px solid var(--shop-inverse-border-strong-color);
  border-top-color: var(--liuer-inverse-border-hex);
  border-radius: 50%;
  animation: shop-review-spin 0.72s linear infinite;
}

.shop-add-cart.is-loading::before {
  display: none;
}

.shop-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}

.shop-pagination .page-numbers {
  display: grid;
  min-width: 40px;
  height: 40px;
  place-items: center;
  padding: 0 12px;
  border: 1px solid var(--liuer-border);
  background: #fff;
  color: var(--shop-text-color);
  text-decoration: none;
}

.shop-pagination .current,
.shop-pagination a:hover {
  border-color: var(--liuer-accent-border-hex);
  background: var(--liuer-accent);
  color: #fff;
}

.shop-empty-state {
  text-align: center;
}

.shop-empty-state a {
  margin-top: 18px;
}

.shop-cart-layout {
  display: grid;
  align-items: start;
}

.shop-cart-list {
  display: grid;
}

.shop-cart-item {
  display: grid;
  align-items: center;
  border: 1px solid var(--liuer-border);
  border-radius: var(--shop-radius);
  background: #fff;
}

.shop-cart-item__media {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
}

.shop-cart-item__media img {
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
}

.shop-cart-item__body h2 {
  margin: 0;
  line-height: 1.35;
}

.shop-cart-item__body a {
  color: var(--shop-heading-color);
  text-decoration: none;
}

.shop-cart-item__body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.shop-cart-item__body li {
  background: #eef7f2;
  color: var(--shop-muted-color);
}

.shop-cart-item__body li strong {
  color: var(--shop-text-color);
}

.shop-cart-item__remove {
  display: inline-block;
  margin-top: 10px;
  color: #d9342b !important;
  font-size: 13px;
}

.shop-cart-item__price span,
.shop-cart-item__total span,
.shop-cart-qty > span {
  display: block;
  margin-bottom: 7px;
  color: var(--shop-muted-color);
  font-size: 12px;
}

.shop-cart-item__price strong,
.shop-cart-item__total strong {
  color: var(--shop-heading-color);
  font-size: 15px;
}

.shop-cart-qty div {
  display: grid;
  width: max-content;
  overflow: hidden;
  border: 1px solid var(--liuer-border);
  background: #fff;
}

.shop-cart-qty button,
.shop-cart-qty input {
  border: 0;
  background: #fff;
  color: var(--shop-text-color);
  text-align: center;
}

.shop-cart-qty button {
  cursor: pointer;
  font-size: 18px;
}

.shop-cart-qty input {
  border-right: 1px solid var(--liuer-border);
  border-left: 1px solid var(--liuer-border);
}

.shop-cart-list__actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 6px 0;
}

.shop-cart-list__actions a,
.shop-cart-list__actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  text-decoration: none;
}

.shop-cart-list__actions a {
  color: var(--liuer-accent);
}

.shop-cart-list__actions button {
  border: 0;
  color: #fff;
  cursor: pointer;
}

.shop-cart-summary {
  position: sticky;
  top: calc(var(--shop-header-height, 86px) + 14px);
}

.shop-cart-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--liuer-border);
  color: var(--shop-muted-color);
}

.shop-cart-summary strong {
  color: var(--shop-heading-color);
}

.shop-cart-summary__total strong {
  color: var(--liuer-accent);
}

.shop-cart-summary > a {
  width: 100%;
  margin-top: 16px;
}

.shop-cart-summary p {
  margin-top: 12px;
  font-size: 13px;
}

.shop-checkout-form {
  display: grid;
  align-items: start;
}

.shop-checkout-fields {
  display: grid;
  gap: 14px;
}

.shop-checkout-card,
.shop-order-received {
  border: 1px solid var(--liuer-border);
  border-radius: var(--shop-radius);
  background: #fff;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--liuer-shadow-hex) 6%, transparent);
}

.shop-checkout-card h2 {
  margin: 0 0 16px;
  color: var(--shop-heading-color);
  font-size: 18px;
  font-weight: 900;
}

.shop-checkout-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-checkout-field {
  display: grid;
  min-width: 0;
}

.shop-checkout-field--textarea,
.shop-checkout-field--country,
.shop-checkout-field--state {
  grid-column: 1 / -1;
}

.shop-checkout-field span {
  color: var(--shop-text-color);
  font-size: 13px;
}

.shop-checkout-field b {
  color: #d9342b;
}

.shop-checkout-field input,
.shop-checkout-field select,
.shop-checkout-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--liuer-border);
  background: #fff;
  color: var(--shop-text-color);
  font: inherit;
  outline: none;
}

.shop-checkout-field input,
.shop-checkout-field select {
  padding: 0 12px;
}

.shop-checkout-field textarea {
  padding: 12px;
  resize: vertical;
}

.shop-checkout-field input:focus,
.shop-checkout-field select:focus,
.shop-checkout-field textarea:focus {
  border-color: var(--liuer-accent-border-hex);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--liuer-accent-shadow-hex) 10%, transparent);
}

.shop-checkout-summary {
  display: grid;
  gap: 14px;
  position: sticky;
  top: calc(var(--shop-header-height, 86px) + 14px);
}

.shop-checkout-items {
  display: grid;
  gap: 10px;
}

.shop-checkout-item {
  display: grid;
  gap: 10px;
  align-items: center;
}

.shop-checkout-item img {
  padding: 7px;
  object-fit: contain;
}

.shop-checkout-item strong,
.shop-checkout-item small,
.shop-checkout-item em {
  display: block;
}

.shop-checkout-item strong {
  color: var(--shop-text-color);
  font-size: 13px;
  line-height: 1.35;
}

.shop-checkout-item small {
  margin-top: 3px;
  color: var(--shop-muted-color);
  font-size: 12px;
}

.shop-checkout-item em {
  color: var(--shop-heading-color);
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.shop-checkout-total-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--liuer-border);
  color: var(--shop-muted-color);
  font-weight: 800;
}

.shop-checkout-total-row strong {
  color: var(--shop-heading-color);
}

.shop-checkout-total-row.is-total strong {
  color: var(--liuer-accent);
}

.shop-checkout-payments {
  display: grid;
  gap: 10px;
}

.shop-checkout-payments label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid var(--liuer-border);
  cursor: pointer;
}

.shop-checkout-payments input {
  margin-top: 2px;
  accent-color: var(--liuer-accent);
}

.shop-checkout-payments strong,
.shop-checkout-payments small {
  display: block;
}

.shop-checkout-payments strong {
  color: var(--shop-text-color);
  font-weight: 900;
}

.shop-checkout-payments small,
.shop-checkout-payment-empty {
  color: var(--shop-muted-color);
  font-size: 13px;
  line-height: 1.55;
}

.shop-checkout-payment-empty {
  margin: 0;
}

.shop-checkout-terms {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  margin-top: 14px;
  color: var(--shop-muted-color);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.shop-checkout-terms input {
  margin-top: 2px;
  accent-color: var(--liuer-accent);
}

.shop-checkout-card button[type="submit"] {
  width: 100%;
  margin-top: 16px;
  border: 0;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.shop-checkout-card button[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.shop-checkout-notices {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.shop-checkout-notices p {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--shop-radius);
  background: #fff4f2;
  color: #a9231d;
  font-weight: 800;
}

.shop-checkout-notices .is-success {
  background: #eef7f2;
  color: var(--liuer-accent);
}

.shop-order-received {
  display: grid;
  gap: 18px;
  text-align: center;
}

.shop-order-received p {
  margin: 0;
  color: var(--liuer-accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-order-received h1 {
  margin: 0;
  color: var(--shop-heading-color);
  font-size: 24px;
  font-weight: 900;
}

.shop-order-received__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.shop-order-received__meta span {
  padding: 10px 12px;
  border-radius: var(--shop-radius);
  background: #f7faf8;
  color: var(--shop-muted-color);
  font-weight: 800;
}

.shop-order-received__meta strong {
  color: var(--shop-text-color);
}

.shop-order-received a {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--shop-radius);
  background: var(--liuer-accent);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

@keyframes shop-review-spin {
  to {
    transform: rotate(360deg);
  }
}


/* ---------------------------------------------------------------------------
   Commerce pages polish
--------------------------------------------------------------------------- */
.shop-archive-page,
.shop-cart-page,
.shop-checkout-page {
  padding-bottom: 32px;
  background: #ffffff;
}

.shop-breadcrumb {
  margin: 14px 0 10px;
  font-weight: 500;
}

.shop-breadcrumb strong {
  font-weight: 600;
}

.shop-archive-hero,
.shop-cart-hero,
.shop-checkout-hero {
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 0 10px;
  border-bottom: 0;
}

.shop-archive-hero p,
.shop-cart-hero p,
.shop-checkout-hero p {
  display: none;
}

.shop-archive-hero h1,
.shop-cart-hero h1,
.shop-checkout-hero h1 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.shop-archive-hero span,
.shop-cart-hero span,
.shop-checkout-hero span {
  margin-top: 4px;
  font-size: 14px;
}

.shop-cart-hero > a,
.shop-checkout-hero > a {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--shop-accent-border-color);
  border-radius: var(--shop-radius-sm);
  background: #ffffff;
  color: var(--liuer-accent-strong);
  font-size: 14px;
  font-weight: 600;
}

.shop-cart-hero > a:hover,
.shop-checkout-hero > a:hover {
  border-color: var(--liuer-accent-border-hex);
  background: var(--liuer-accent);
  color: #ffffff;
}

.shop-archive-sort label {
  font-weight: 500;
}

.shop-archive-sort select {
  height: 40px;
  border-color: var(--liuer-border);
  border-radius: var(--shop-radius-sm);
  font-weight: 600;
  outline: none;
}

.shop-archive-sort select:focus {
  border-color: var(--liuer-accent-border-hex);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--liuer-accent-shadow-hex) 8%, transparent);
}

.shop-archive-layout {
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.shop-archive-sidebar {
  gap: 12px;
}

.shop-archive-sidebar section,
.shop-cart-summary,
.shop-empty-state,
.shop-checkout-card,
.shop-order-received {
  border-color: var(--liuer-border);
  box-shadow: none;
}

.shop-archive-sidebar section {
  padding: 16px;
}

.shop-archive-sidebar h2,
.shop-cart-summary h2,
.shop-empty-state h2,
.shop-checkout-card h2 {
  font-weight: 700;
}

.shop-archive-sidebar .shop-product-sidebar-contact h2,
.shop-archive-sidebar .shop-product-sidebar-cats h2 {
  font-size: 16px;
  line-height: 1.25;
}

.shop-archive-cats > a {
  min-height: 40px;
  border-radius: var(--shop-radius-sm);
  font-weight: 600;
}

.shop-archive-sidebar small {
  font-weight: 500;
}

.shop-product-sidebar-contact p,
.shop-product-contact-list small {
  font-weight: 500;
}

.shop-product-contact-list strong {
  font-weight: 600;
}

.shop-product-sidebar-cta {
  border-radius: var(--shop-radius-sm);
  background: var(--liuer-accent);
  font-weight: 700;
  text-transform: none;
  box-shadow: none;
}

.shop-product-sidebar-cats ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-product-sidebar-cats li a,
.shop-product-sidebar-cats li > span {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  border-radius: var(--shop-radius-sm);
  color: var(--shop-text-color);
  font-size: 14px;
  font-weight: 600;
}

.shop-product-sidebar-cats li:first-child a,
.shop-product-sidebar-cats li:first-child > span,
.shop-product-sidebar-cats li a:hover {
  background: color-mix(in srgb, var(--liuer-accent) 6%, transparent);
  color: var(--liuer-accent-strong);
}

.shop-product-sidebar-cats .shop-icon,
.shop-product-sidebar-cats .shop-menu-image {
  width: 20px;
  height: 20px;
}

.shop-product-sidebar-cats .shop-icon {
  opacity: 0.78;
}

.shop-product-sidebar-cats .shop-menu-image {
  border-radius: var(--shop-radius-xs);
  object-fit: contain;
}

.shop-archive-grid {
  gap: var(--shop-product-item-gap);
}

.shop-archive-grid .shop-product-card {
  border-color: var(--liuer-border);
  box-shadow: var(--shop-shadow-card);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.shop-archive-grid .shop-product-card:hover {
  transform: translateY(-2px);
  border-color: var(--shop-accent-border-color);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--liuer-shadow-hex) 10%, transparent);
}

.shop-archive-grid .shop-product-card__sale {
  border-radius: var(--shop-radius-sm);
  font-weight: 700;
  box-shadow: none;
}

.shop-archive-grid .shop-product-card h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.shop-archive-grid .shop-price strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}

.shop-archive-grid .shop-add-cart {
  border-radius: var(--shop-radius-sm);
  background: var(--liuer-accent);
  box-shadow: 0 4px 10px color-mix(in srgb, var(--liuer-accent-shadow-hex) 20%, transparent);
}

.shop-pagination .page-numbers {
  border-color: var(--liuer-border);
  border-radius: var(--shop-radius-sm);
  font-weight: 600;
}

.shop-empty-state {
  padding: 28px 20px;
}

.shop-empty-state a,
.shop-cart-summary > a {
  border-radius: var(--shop-radius-sm);
  background: var(--liuer-accent);
  font-weight: 700;
}

/* Cart */
.shop-cart-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
}

.shop-cart-list {
  gap: 10px;
}

.shop-cart-item {
  grid-template-columns: 88px minmax(0, 1fr) 112px 140px 122px;
  gap: 12px;
  padding: 12px;
  border-color: var(--liuer-border);
  box-shadow: none;
}

.shop-cart-item__media {
  border: 1px solid var(--shop-card-border-color);
  border-radius: var(--shop-radius-sm);
  background: #f7f9f8;
}

.shop-cart-item__body h2 {
  font-size: 15px;
  font-weight: 700;
}

.shop-cart-item__body li {
  padding: 3px 7px;
  border-radius: var(--shop-radius-sm);
  font-size: 12px;
}

.shop-cart-item__remove {
  font-weight: 600;
}

.shop-cart-item__price span,
.shop-cart-item__total span,
.shop-cart-qty > span {
  font-weight: 500;
}

.shop-cart-item__price strong,
.shop-cart-item__total strong {
  font-weight: 700;
}

.shop-cart-qty div {
  grid-template-columns: 36px 50px 36px;
  border-color: var(--liuer-border);
  border-radius: var(--shop-radius-sm);
}

.shop-cart-qty button,
.shop-cart-qty input {
  height: 38px;
  font-weight: 600;
}

.shop-cart-list__actions a,
.shop-cart-list__actions button {
  min-height: 40px;
  border-radius: var(--shop-radius-sm);
  font-weight: 600;
}

.shop-cart-list__actions a {
  padding: 0 13px;
  border: 1px solid var(--shop-accent-border-color);
  background: #ffffff;
}

.shop-cart-list__actions button {
  background: var(--liuer-accent);
}

.shop-cart-summary {
  padding: 16px;
}

.shop-cart-summary > div {
  border-color: var(--liuer-border);
  font-weight: 500;
}

.shop-cart-summary__total strong {
  font-size: 21px;
  font-weight: 700;
}

/* Checkout */
.shop-checkout-form {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 34%);
  gap: 16px;
}

.shop-checkout-fields,
.shop-checkout-summary {
  gap: 12px;
}

.shop-checkout-card {
  padding: 16px;
}

.shop-checkout-card h2 {
  margin-bottom: 14px;
}

.shop-checkout-field-grid {
  gap: 11px 12px;
}

.shop-checkout-field {
  gap: 6px;
}

.shop-checkout-field span {
  font-weight: 600;
}

.shop-checkout-field input,
.shop-checkout-field select,
.shop-checkout-field textarea {
  border-color: var(--liuer-border);
  border-radius: var(--shop-radius-sm);
  font-weight: 500;
}

.shop-checkout-field input,
.shop-checkout-field select {
  height: 44px;
}

.shop-checkout-item {
  grid-template-columns: 54px minmax(0, 1fr) auto;
}

.shop-checkout-item img {
  width: 54px;
  height: 54px;
  border-radius: var(--shop-radius-sm);
  background: #f7f9f8;
}

.shop-checkout-item strong {
  font-weight: 600;
}

.shop-checkout-item small {
  font-weight: 500;
}

.shop-checkout-item em,
.shop-checkout-total-row,
.shop-checkout-payments strong {
  font-weight: 600;
}

.shop-checkout-total-row {
  border-color: var(--liuer-border);
}

.shop-checkout-total-row.is-total strong {
  font-size: 21px;
  font-weight: 700;
}

.shop-checkout-payments label {
  padding: 11px;
  border-color: var(--liuer-border);
  border-radius: var(--shop-radius-sm);
}

.shop-checkout-payments label:has(input:checked) {
  border-color: var(--shop-accent-border-color);
  background: #f2f8f5;
}

.shop-checkout-card button[type="submit"] {
  min-height: 46px;
  border-radius: var(--shop-radius-sm);
  background: var(--liuer-accent);
  font-weight: 700;
}

.shop-order-received {
  padding: 26px 20px;
}

.shop-order-received p,
.shop-order-received h1,
.shop-order-received a {
  font-weight: 700;
}


