﻿* Checkout page styles extracted from styles.css. */



.contact-type {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}



.contact-type button {
  min-height: 38px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: #64748b;
  font-size: 15px;
  font-weight: 850;
  transition:
    transform 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    background 180ms var(--ease-out),
    color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}



.contact-type button:hover {
  transform: translateY(-1px);
  border-color: rgba(22, 119, 255, 0.28);
}



.contact-type button.is-selected {
  border-color: rgba(22, 119, 255, 0.56);
  background:
    linear-gradient(145deg, rgba(238, 245, 255, 0.94), rgba(255, 255, 255, 0.72)),
    rgba(238, 245, 255, 0.74);
  box-shadow:
    inset 0 0 0 1px rgba(22, 119, 255, 0.16),
    0 10px 24px rgba(22, 119, 255, 0.08);
  color: #0f172a;
}



.checkout-panel {
  display: grid;
  gap: 18px;
  width: min(480px, 100%);
  margin: 28px auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px;
}



.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}



.flow-steps span {
  display: grid;
  place-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}



.flow-steps span.is-active {
  border-color: #bfdbfe;
  background: #eef5ff;
  color: var(--accent-strong);
}



.flow-steps--order {
  margin: 18px 0 12px;
}



.quick-form {
  display: grid;
  gap: 14px;
}



.price-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #f8fafc;
}



.price-strip span {
  color: var(--muted);
  font-size: 14px;
}



.price-strip strong {
  color: var(--price);
  font-size: 24px;
}



.pay-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
}



.pay-box__main,
.status-box,
.notice-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px;
}



.pay-box__main p {
  color: var(--muted);
}



.payment-notice {
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  background: #f0fdf4;
  padding: 14px;
  color: #047857;
  font-weight: 800;
}



@media (min-width: 1040px) {
  .pay-box {
    grid-template-columns: minmax(0, 1fr) 340px;
  }
}



.flow-steps {
  position: relative;
}



.flow-steps::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
  background: var(--line);
  transform: translateY(-50%);
}



.flow-steps span {
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}



.flow-steps span.is-active {
  box-shadow: 0 10px 28px rgba(22, 119, 255, 0.14);
}



.field span,
.price-strip span,
.status-box h2,
.section__head h2 {
  letter-spacing: 0;
}



.price-strip strong,
.price-line {
  font-variant-numeric: tabular-nums;
}



.pay-box__main {
  position: relative;
  overflow: hidden;
}



.pay-box__main::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), transparent 36%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.34), transparent 34%);
  pointer-events: none;
}



.pay-box__main > * {
  position: relative;
  z-index: 1;
}



.pay-box {
  gap: 14px;
}



.pay-box__main {
  padding: clamp(22px, 5vw, 34px);
}



@media (max-width: 640px) {
  main {
    width: min(100% - 22px, 560px);
  }

  .order-layout {
    padding-top: 18px;
  }

  .pay-box__main,
  .status-box {
    padding: 20px;
  }

  .order-layout h1 {
    font-size: clamp(32px, 8.6vw, 40px);
  }

  #orderMeta {
    font-size: 15px;
  }

  .qr-wrap {
    width: min(100%, 356px);
  }
}


.cashier-shell {
  width: min(100%, 390px);
  margin: 28px auto 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 24px 68px rgba(15, 23, 42, 0.13);
  backdrop-filter: blur(24px) saturate(1.25);
  padding: 16px;
}



.cashier-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}



.cashier-topline span {
  color: #475569;
  font-size: 14px;
  font-weight: 900;
}



.cashier-topline b {
  color: var(--price);
  font-size: 24px;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}



.cashier-shell .qr-wrap {
  width: 230px;
  margin: 18px auto 10px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 18px 42px rgba(15, 23, 42, 0.12);
}



.cashier-shell .qr-wrap::before {
  inset: 14px;
  background:
    linear-gradient(#1677ff, #1677ff) left top / 22px 3px no-repeat,
    linear-gradient(#1677ff, #1677ff) left top / 3px 22px no-repeat,
    linear-gradient(#1677ff, #1677ff) right top / 22px 3px no-repeat,
    linear-gradient(#1677ff, #1677ff) right top / 3px 22px no-repeat,
    linear-gradient(#1677ff, #1677ff) left bottom / 22px 3px no-repeat,
    linear-gradient(#1677ff, #1677ff) left bottom / 3px 22px no-repeat,
    linear-gradient(#1677ff, #1677ff) right bottom / 22px 3px no-repeat,
    linear-gradient(#1677ff, #1677ff) right bottom / 3px 22px no-repeat;
}



.cashier-shell .qr-wrap::after {
  left: 34px;
  right: 34px;
}



.cashier-shell .qr-wrap img {
  width: 166px;
  height: 166px;
}



.cashier-shell .qr-caption {
  margin-bottom: 12px;
}



.cashier-shell .qr-actions {
  width: 100%;
  margin-bottom: 0;
}



.cashier-shell .qr-actions .primary {
  min-height: 48px;
  font-size: 16px;
  font-weight: 950;
}



@media (max-width: 640px) {
  .cashier-shell {
    width: 100%;
    margin-top: 24px;
    padding: 14px;
  }

  .cashier-shell .qr-wrap {
    width: 216px;
  }

  .cashier-shell .qr-wrap img {
    width: 156px;
    height: 156px;
  }
}



.trust-strip span,
.checkout-trust,
.deal-guarantee {
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.3)),
    rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 14px 38px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px) saturate(1.12);
}



.checkout-trust,
.deal-guarantee {
  display: grid;
  gap: 5px;
  padding: 14px;
}



.checkout-trust strong,
.deal-guarantee strong {
  color: #0f172a;
  font-size: 15px;
  font-weight: 950;
}



.checkout-trust span,
.deal-guarantee span,
.field-hint {
  color: #64748b;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.55;
}


.checkout-panel .checkout-trust {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid rgba(22, 119, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(238, 245, 255, 0.92), rgba(255, 255, 255, 0.56)),
    rgba(238, 245, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 14px 34px rgba(22, 119, 255, 0.1);
  padding: 12px 14px;
  text-align: center;
}



.checkout-panel .checkout-trust strong {
  color: #0f172a;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 950;
}



.series-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 16px 42px rgba(15, 23, 42, 0.06);
  padding: 14px;
  color: #0f172a;
  text-align: left;
  transition:
    transform 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}



.series-card:hover {
  border-color: rgba(22, 119, 255, 0.3);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 22px 58px rgba(15, 23, 42, 0.1);
}



.series-card.is-selected {
  border-color: rgba(22, 119, 255, 0.62);
  box-shadow:
    inset 0 0 0 1px rgba(22, 119, 255, 0.32),
    0 22px 58px rgba(22, 119, 255, 0.12);
}



.series-card:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}



.series-card__media {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}



.series-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.series-card__media b {
  color: var(--accent-strong);
  font-size: 24px;
  font-weight: 950;
}



.series-card__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}



.series-card__copy b {
  overflow: hidden;
  color: #0f172a;
  font-size: 20px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}



.series-card__copy em {
  overflow: hidden;
  color: #64748b;
  font-size: 13px;
  font-style: normal;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}



.series-card__copy small {
  color: #526176;
  font-size: 12px;
  font-weight: 850;
}



.series-card > strong {
  color: var(--price);
  font-size: 18px;
  font-weight: 950;
}



.series-card--loading {
  min-height: 96px;
}

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



.product-picker.is-detail-mode > .field-title,
.product-picker.is-series-mode > .product-line-list,
.product-picker.is-detail-mode > .series-list {
  display: none;
}



.product-picker:not(.is-series-mode):not(.is-detail-mode) > #seriesOptions {
  display: none;
}



.checkout-panel {
  width: min(600px, 100%);
  min-height: 390px;
  align-content: start;
  gap: 20px;
  padding: 22px;
}



.checkout-panel .quick-form {
  min-height: 206px;
}



.product-picker {
  min-height: 190px;
}



.field-title > span,
.checkout-panel .checkout-trust strong,
.series-card__copy b,
.product-panel__head span {
  font-family: "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  letter-spacing: 0;
}



.checkout-panel .checkout-trust strong {
  font-size: 18px;
  font-weight: 850;
}



.series-card {
  min-height: 118px;
  padding: 18px;
}



.series-card__media {
  width: 76px;
  height: 76px;
}



.series-card__copy b {
  font-size: 25px;
  line-height: 1.12;
  font-weight: 880;
}



.series-card__copy em {
  font-size: 16px;
}



.series-card__copy small {
  font-size: 15px;
}



.series-card > strong {
  font-size: 22px;
}



@media (max-width: 640px) {
  .series-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .series-card > strong {
    grid-column: 2;
    justify-self: start;
    font-size: 20px;
  }

  .series-card__media {
    width: 58px;
    height: 58px;
  }

  .product-panel__head {
    align-items: stretch;
    flex-direction: column;
  }

  .product-panel__head div {
    text-align: left;
  }
}


.checkout-panel {
  width: min(760px, 100%);
  min-height: 0;
  align-content: start;
  gap: 18px;
  margin: 28px auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}



.checkout-panel .quick-form {
  display: grid;
  gap: 18px;
  min-height: 0;
}



.checkout-panel > .flow-steps {
  padding: 0;
}



.checkout-panel > .checkout-trust,
.checkout-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 52px rgba(31, 41, 55, 0.08);
  backdrop-filter: blur(22px) saturate(1.24);
}



.checkout-card {
  margin: 0;
  padding: 28px;
}



.product-picker {
  min-height: 246px;
}



.series-card {
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
}



.series-card__copy {
  gap: 2px;
}



.series-card__copy b {
  font-size: 22px;
}



.series-card__copy em {
  display: none;
}



.series-card__copy small {
  color: #64748b;
  font-size: 13px;
}



.series-card > strong {
  grid-column: 2;
  justify-self: start;
  font-size: 21px;
  line-height: 1.05;
  white-space: nowrap;
}



@media (min-width: 700px) {
  .series-card {
    grid-template-columns: 76px minmax(0, 1fr) auto;
  }

  .series-card > strong {
    grid-column: 3;
    justify-self: end;
  }
}



.checkout-details {
  gap: 16px;
}



.checkout-panel .checkout-trust strong,
.field-title > span,
.series-card__copy b,
.product-panel__head span {
  color: rgba(48, 84, 132, 0.82);
}



.checkout-panel .checkout-trust strong {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.62);
}



.field-title > span,
.series-card__copy b {
  color: rgba(15, 23, 42, 0.78);
}



.series-card__copy b {
  font-size: 20px;
  font-weight: 820;
}



@media (max-width: 640px) {
  .checkout-panel {
    width: min(100% - 22px, 560px);
    margin-top: 18px;
  }

  .checkout-card {
    padding: 18px;
  }

  .series-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .series-card > strong {
    grid-column: 2;
    justify-self: start;
    font-size: 18px;
  }
}



.buy-cta,
.hero--brand .hero-link.buy-cta,
.cashier-shell .qr-actions .buy-cta,
.qr-actions .buy-cta,
.quick-form .buy-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  border: none;
  border-radius: 0;
  background: none;
  color: #000;
  box-shadow: none;
  padding: 0;
  transform: none;
}



.buy-cta:hover,
.hero--brand .hero-link.buy-cta:hover,
.cashier-shell .qr-actions .buy-cta:hover,
.qr-actions .buy-cta:hover,
.quick-form .buy-cta:hover {
  background: none;
  box-shadow: none;
  color: #000;
  transform: none;
}



.buy-cta:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}



.buy-cta:disabled svg {
  transform: translateX(-8px);
}



.buy-cta:disabled .hover-underline-animation:after {
  transform: scaleX(0);
}



.hero--brand .hero__actions,
.checkout-details .buy-cta,
.qr-actions .buy-cta {
  justify-self: center;
}



@media (max-width: 640px) {
  .quick-form .buy-cta,
  .hero-link.buy-cta,
  .qr-actions .buy-cta {
    width: fit-content;
  }
}



.series-card {
  box-sizing: border-box;
  width: 190px;
  height: 254px;
  min-height: 254px;
  background: rgba(217, 217, 217, 0.58);
  border: 1px solid white;
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 17px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  user-select: none;
  font-weight: bolder;
  color: black;
  padding: 18px;
  gap: 12px;
}



.series-card:hover {
  border: 1px solid black;
  transform: scale(1.05);
}



.series-card:active {
  transform: scale(0.95) rotateZ(1.7deg);
}



.series-card.is-selected {
  border: 1px solid black;
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
}



.series-card:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}



.series-card__media {
  width: 70px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: none;
}



.series-card__copy {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-width: 0;
  width: 100%;
}



.series-card__copy b {
  width: 100%;
  color: black;
  font-size: 18px;
  font-weight: bolder;
  text-align: center;
}



.series-card__copy small {
  color: rgba(15, 23, 42, 0.62);
  font-size: 13px;
  font-weight: bolder;
}



.series-card > strong {
  grid-column: auto;
  justify-self: center;
  color: #000000;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0;
  white-space: nowrap;
}



.series-card--loading span,
.series-card--loading div {
  border-radius: 10px;
}



@media (max-width: 640px) {
  .series-list {
    min-height: 236px;
  }

  .series-card {
    width: min(100%, 190px);
    height: 236px;
    min-height: 236px;
  }
}


.product-picker.is-series-mode,
.product-picker.is-detail-mode {
  display: grid;
  gap: 16px;
}



.series-nav:not(.hidden) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  padding: 8px 10px;
}



.series-nav > div,
.product-panel__head > div {
  display: grid;
  gap: 2px;
  min-width: 0;
}



.series-nav span,
.product-panel__head span {
  color: rgba(15, 23, 42, 0.82);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 850;
}



.series-nav small,
.product-panel__head small {
  color: rgba(71, 85, 105, 0.72);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
}



.product-picker.is-series-mode > #seriesOptions {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  min-height: 0;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scroll-snap-type: x proximity;
}



.spec-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
  color: #0f172a;
  padding: 14px;
  text-align: left;
}



.spec-item:hover {
  border-color: rgba(59, 130, 246, 0.28);
  transform: none;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}



.spec-item.is-selected {
  border-color: rgba(37, 99, 235, 0.48);
  background: rgba(239, 246, 255, 0.82);
}



.spec-item:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}



.spec-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}



.spec-copy b {
  overflow: hidden;
  color: rgba(15, 23, 42, 0.9);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}



.spec-copy small {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(71, 85, 105, 0.72);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 650;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}



.spec-meta {
  display: grid;
  justify-items: end;
  gap: 4px;
  min-width: 76px;
}



.spec-meta strong {
  color: #0f172a;
  font-size: 18px;
  line-height: 1;
  font-weight: 850;
  white-space: nowrap;
}



.spec-meta small {
  color: rgba(71, 85, 105, 0.7);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
}



.spec-item.is-selected .spec-action {
  background: #ffffff;
  color: #0f172a;
}



@media (max-width: 640px) {
  .series-nav:not(.hidden),
  .product-panel__head {
    align-items: stretch;
    flex-direction: column;
  }

  .product-picker.is-series-mode > #seriesOptions {
    margin-right: -18px;
    padding-right: 18px;
  }

  .spec-item {
    grid-template-columns: minmax(0, 1fr) auto;
  }

.spec-action {
  grid-column: 1 / -1;
  justify-self: stretch;
}
}


.checkout-panel .product-picker.is-detail-mode {
  gap: 18px;
}



.checkout-panel .product-picker.is-detail-mode .product-panel__head {
  align-items: flex-start;
  min-height: 0;
  border: 0;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: none;
  padding: 20px 24px;
}



.checkout-panel .product-picker.is-detail-mode .product-panel__head > div {
  display: grid;
  gap: 4px;
  text-align: left;
}



.checkout-panel .product-picker.is-detail-mode .product-panel__head span {
  color: #4b5563;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}



.checkout-panel .product-picker.is-detail-mode .product-panel__head small {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}



.checkout-panel .product-picker.is-detail-mode #productOptions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}



.checkout-panel .product-picker.is-detail-mode .spec-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px 16px;
  min-height: 154px;
  border: 0;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: none;
  padding: 24px;
}



.checkout-panel .product-picker.is-detail-mode .spec-item:hover {
  border: 0;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}



.checkout-panel .product-picker.is-detail-mode .spec-item.is-selected {
  border: 0;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}



.checkout-panel .product-picker.is-detail-mode .spec-copy {
  gap: 10px;
}



.checkout-panel .product-picker.is-detail-mode .spec-copy b {
  color: #4b5563;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 500;
}



.checkout-panel .product-picker.is-detail-mode .spec-copy small {
  display: block;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}



.checkout-panel .product-picker.is-detail-mode .spec-meta {
  justify-items: end;
  gap: 6px;
  min-width: 104px;
}



.checkout-panel .product-picker.is-detail-mode .spec-meta strong {
  color: #000000;
  font-size: 34px;
  line-height: 1;
  font-weight: 300;
}



.checkout-panel .product-picker.is-detail-mode .spec-meta small {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}



.checkout-panel .product-picker.is-detail-mode .spec-action {
  grid-column: 1 / -1;
  justify-self: stretch;
  min-height: 42px;
  border: 2px solid #000000;
  border-radius: 9999px;
  background: #000000;
  color: #ffffff;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 500;
}



.checkout-panel .product-picker.is-detail-mode .spec-item:hover .spec-action,
.checkout-panel .product-picker.is-detail-mode .spec-item.is-selected .spec-action {
  background: transparent;
  color: #000000;
}



@media (max-width: 640px) {
  .checkout-panel .product-picker.is-detail-mode .product-panel__head,
  .checkout-panel .product-picker.is-detail-mode .spec-item {
    padding: 18px;
  }

  .checkout-panel .product-picker.is-detail-mode .spec-item {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 146px;
  }

  .checkout-panel .product-picker.is-detail-mode .spec-copy b {
    font-size: 22px;
  }

  .checkout-panel .product-picker.is-detail-mode .spec-meta strong {
    font-size: 30px;
  }
}


.checkout-panel .product-line-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  min-height: 254px;
}



.checkout-panel .product-picker .product-line-card {
  width: 190px;
  height: 254px;
  min-height: 254px;
  border: 1px solid white;
  border-radius: 17px;
  background: rgba(217, 217, 217, 0.58);
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  padding: 18px;
  gap: 12px;
  transition: all 0.5s;
}



.checkout-panel .product-picker .product-line-card:hover {
  border: 1px solid black;
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  transform: scale(1.05);
}



.checkout-panel .product-picker .product-line-card:active {
  transform: scale(0.95) rotateZ(1.7deg);
}



.checkout-panel .product-picker .product-line-card .series-card__media {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.36);
}



.checkout-panel .product-picker .product-line-card .series-card__copy b {
  color: black;
  font-size: 22px;
  line-height: 1.18;
  font-weight: bolder;
}



.checkout-panel .product-picker .product-line-card .series-card__copy small {
  min-height: 0;
  color: rgba(15, 23, 42, 0.62);
  font-size: 13px;
  font-weight: bolder;
}



.checkout-panel .product-picker .product-line-card > strong {
  border-radius: 0;
  background: transparent;
  color: #000000;
  padding: 0;
  font-size: 17px;
  font-weight: 300;
}



.checkout-panel .product-picker.is-detail-mode .product-panel__head {
  align-items: flex-start;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}



.checkout-panel .product-picker.is-detail-mode .product-panel__head > div {
  display: grid;
  gap: 2px;
  text-align: left;
}



.checkout-panel .product-picker.is-detail-mode .product-panel__head span {
  color: #1f2937;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 900;
}



.checkout-panel .product-picker.is-detail-mode .product-panel__head small {
  color: #64748b;
  font-size: 12px;
  font-weight: 750;
}



.checkout-panel .product-picker.is-detail-mode #productOptions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}



.checkout-panel .product-picker.is-detail-mode .spec-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  min-height: 118px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
  padding: 16px;
}



.checkout-panel .product-picker.is-detail-mode .spec-copy {
  gap: 7px;
}



.checkout-panel .product-picker.is-detail-mode .spec-copy b {
  color: #1f2937;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 900;
}



.checkout-panel .product-picker.is-detail-mode .spec-copy small {
  display: block;
  color: #64748b;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}



.checkout-panel .product-picker.is-detail-mode .spec-meta {
  justify-items: end;
  min-width: 86px;
}



.checkout-panel .product-picker.is-detail-mode .spec-meta strong {
  color: #1f2937;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}



.checkout-panel .product-picker.is-detail-mode .spec-meta small {
  color: #64748b;
  font-size: 13px;
  font-weight: 750;
}



.checkout-panel .product-picker.is-detail-mode .spec-action {
  grid-column: 1 / -1;
  justify-self: stretch;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: #20283a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
}



.checkout-panel .product-picker.is-detail-mode .spec-item.is-selected {
  border-color: rgba(37, 99, 235, 0.42);
  background: rgba(239, 246, 255, 0.88);
}



@media (max-width: 640px) {
  .checkout-panel .product-line-list {
    min-height: 236px;
  }

  .checkout-panel .product-picker .product-line-card {
    width: min(100%, 190px);
    height: 236px;
    min-height: 236px;
  }
}



.checkout-details {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  gap: 18px;
}



.checkout-details .price-strip {
  min-height: auto;
  border: 0;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
  padding: 24px;
}



.checkout-details .price-strip span,
.checkout-details .field > span {
  color: #4b5563;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.05em;
}



.checkout-details .price-strip strong {
  color: #000000;
  font-size: clamp(34px, 8vw, 48px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.025em;
}



.checkout-details .field {
  gap: 12px;
  margin: 0;
  color: #4b5563;
  font-weight: 500;
}



.checkout-details .contact-type {
  gap: 10px;
}



.checkout-details .contact-type button {
  min-height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 1rem;
  background: #ffffff;
  color: #6b7280;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.025em;
  box-shadow: none;
}



.checkout-details .contact-type button:hover {
  transform: none;
  border-color: rgba(0, 0, 0, 0.32);
}



.checkout-details .contact-type button.is-selected {
  border-color: #000000;
  background: #ffffff;
  box-shadow: none;
  color: #000000;
}



.checkout-details .field input {
  height: 54px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 1rem;
  background: #ffffff;
  color: #000000;
  padding: 0 16px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.025em;
}



.checkout-details .field input::placeholder {
  color: rgba(75, 85, 99, 0.62);
}



.checkout-details .field input:focus {
  border-color: #000000;
  box-shadow: none;
}


.pay-box {
  grid-template-columns: 1fr;
}



.pay-box__main {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}



.cashier-shell {
  width: min(100%, 390px);
  border: 0;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
  padding: 24px;
}



.cashier-status {
  display: grid;
  gap: 8px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}



.cashier-status > span,
.cashier-topline span {
  color: #4b5563;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.05em;
}



.cashier-status > strong {
  color: #000000;
  font-size: clamp(34px, 8vw, 48px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.025em;
}



.cashier-status > small {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
}



.cashier-status .expiry-row {
  min-height: 44px;
  margin: 2px 0 8px;
}



.cashier-status .expiry-text {
  color: #6b7280 !important;
  font-size: 16px !important;
  line-height: 1.25;
  font-weight: 500 !important;
  letter-spacing: -0.025em;
}



.cashier-status #refreshOrderBtn {
  width: 100%;
  min-height: 42px;
  border: 2px solid #000000;
  border-radius: 9999px;
  background: #000000;
  color: #ffffff;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: none;
}



.cashier-status #refreshOrderBtn:hover {
  background: transparent;
  color: #000000;
  transform: none;
}



.cashier-topline {
  min-height: 0;
  margin: 22px 0 18px;
  border-bottom: 0;
}



.cashier-topline b {
  color: #000000;
  font-size: clamp(34px, 8vw, 48px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.025em;
}



.cashier-shell .qr-wrap {
  width: 100%;
  margin: 0 auto 14px;
  border: 0;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}



.cashier-shell .qr-wrap img {
  width: min(62vw, 230px);
  height: min(62vw, 230px);
}



.cashier-shell .qr-caption,
.cashier-shell .qr-actions small {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}



body.order-delivered-view .pay-box {
  gap: clamp(18px, 4vw, 34px);
}



body.order-delivered-view .pay-box__main {
  width: min(100%, 760px);
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  text-align: center;
}



body.order-delivered-view .pay-box__main h1 {
  margin-bottom: 6px;
  color: rgba(15, 23, 42, 0.72);
  font-size: clamp(24px, 5vw, 38px);
  font-weight: 400;
  letter-spacing: 0;
}



body.order-delivered-view .payment-notice {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: rgba(15, 23, 42, 0.58);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
}



body.order-delivered-view .cashier-shell {
  width: min(100%, 520px);
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  padding: 12px 18px;
}



body.order-delivered-view .cashier-status,
body.order-delivered-view .cashier-shell .qr-wrap,
body.order-delivered-view .cashier-shell .qr-caption,
body.order-delivered-view .cashier-shell .qr-actions,
body.order-delivered-view #mockPaidBtn {
  display: none !important;
}



body.order-delivered-view .cashier-topline {
  display: flex;
  justify-content: center;
  gap: 12px;
  min-height: 0;
  margin: 0;
}



body.order-delivered-view .cashier-topline span,
body.order-delivered-view .cashier-topline b {
  color: rgba(15, 23, 42, 0.62);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
}


.checkout-panel .product-line-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  min-height: 254px;
}



.checkout-panel .product-picker .product-line-card {
  width: 190px;
  height: 254px;
  min-height: 254px;
  border: 1px solid white;
  border-radius: 17px;
  background: rgba(217, 217, 217, 0.58);
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  padding: 18px;
  gap: 12px;
  transition: all 0.5s;
}



.checkout-panel .product-picker .product-line-card:hover {
  border: 1px solid black;
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  transform: scale(1.05);
}



.checkout-panel .product-picker .product-line-card:active {
  transform: scale(0.95) rotateZ(1.7deg);
}



.checkout-panel .product-picker .product-line-card .series-card__media {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.36);
}



.checkout-panel .product-picker .product-line-card .series-card__copy b {
  color: black;
  font-size: 22px;
  line-height: 1.18;
  font-weight: bolder;
}



.checkout-panel .product-picker .product-line-card .series-card__copy small {
  min-height: 0;
  color: rgba(15, 23, 42, 0.62);
  font-size: 13px;
  font-weight: bolder;
}



.checkout-panel .product-picker .product-line-card > strong {
  border-radius: 0;
  background: transparent;
  color: #000000;
  padding: 0;
  font-size: 17px;
  font-weight: 300;
}



.checkout-panel .product-picker.is-detail-mode .product-panel__head {
  align-items: flex-start;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}



.checkout-panel .product-picker.is-detail-mode .product-panel__head > div {
  display: grid;
  gap: 2px;
  text-align: left;
}



.checkout-panel .product-picker.is-detail-mode .product-panel__head span {
  color: #1f2937;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 900;
}



.checkout-panel .product-picker.is-detail-mode .product-panel__head small {
  color: #64748b;
  font-size: 12px;
  font-weight: 750;
}



.checkout-panel .product-picker.is-detail-mode #productOptions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}



.checkout-panel .product-picker.is-detail-mode .spec-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  min-height: 118px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
  padding: 16px;
}



.checkout-panel .product-picker.is-detail-mode .spec-copy {
  gap: 7px;
}



.checkout-panel .product-picker.is-detail-mode .spec-copy b {
  color: #1f2937;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 900;
}



.checkout-panel .product-picker.is-detail-mode .spec-copy small {
  display: block;
  color: #64748b;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}



.checkout-panel .product-picker.is-detail-mode .spec-meta {
  justify-items: end;
  min-width: 86px;
}



.checkout-panel .product-picker.is-detail-mode .spec-meta strong {
  color: #1f2937;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}



.checkout-panel .product-picker.is-detail-mode .spec-meta small {
  color: #64748b;
  font-size: 13px;
  font-weight: 750;
}



.checkout-panel .product-picker.is-detail-mode .spec-action {
  grid-column: 1 / -1;
  justify-self: stretch;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: #20283a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
}



.checkout-panel .product-picker.is-detail-mode .spec-item.is-selected {
  border-color: rgba(37, 99, 235, 0.42);
  background: rgba(239, 246, 255, 0.88);
}



@media (max-width: 640px) {
  .checkout-panel .product-line-list {
    min-height: 236px;
  }

  .checkout-panel .product-picker .product-line-card {
    width: min(100%, 190px);
    height: 236px;
    min-height: 236px;
  }
}


.product-line-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  min-height: 254px;
}



.product-picker .product-line-card {
  width: 190px;
  height: 254px;
  min-height: 254px;
  border: 1px solid white;
  border-radius: 17px;
  background: rgba(217, 217, 217, 0.58);
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  padding: 18px;
  gap: 12px;
  transition: all 0.5s;
}



.product-picker .product-line-card:hover {
  border: 1px solid black;
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  transform: scale(1.05);
}



.product-picker .product-line-card:active {
  transform: scale(0.95) rotateZ(1.7deg);
}



.product-picker .product-line-card .series-card__media {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.36);
}



.product-picker .product-line-card .series-card__media b {
  color: #1d5fd3;
  font-size: 26px;
  font-weight: 900;
}



.product-picker .product-line-card .series-card__copy b {
  color: black;
  font-size: 22px;
  line-height: 1.18;
  font-weight: bolder;
}



.product-picker .product-line-card .series-card__copy small {
  min-height: 0;
  color: rgba(15, 23, 42, 0.62);
  font-size: 13px;
  font-weight: bolder;
}



.product-picker .product-line-card > strong {
  border-radius: 0;
  background: transparent;
  color: #000000;
  padding: 0;
  font-size: 17px;
  font-weight: 300;
}


.product-picker.is-detail-mode .product-panel__head {
  align-items: flex-start;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}



.product-picker.is-detail-mode .product-panel__head .compact-btn {
  min-height: 34px;
  border-radius: 999px;
}



.product-picker.is-detail-mode .product-panel__head > div {
  display: grid;
  gap: 2px;
  text-align: left;
}



.product-picker.is-detail-mode .product-panel__head span {
  color: #1f2937;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 900;
}



.product-picker.is-detail-mode .product-panel__head small {
  color: #64748b;
  font-size: 12px;
  font-weight: 750;
}



.product-picker.is-detail-mode #productOptions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}



.product-picker.is-detail-mode .spec-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  min-height: 118px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
  padding: 16px;
}



.product-picker.is-detail-mode .spec-copy {
  gap: 7px;
}



.product-picker.is-detail-mode .spec-copy b {
  color: #1f2937;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 900;
}



.product-picker.is-detail-mode .spec-copy small {
  display: block;
  color: #64748b;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}



.product-picker.is-detail-mode .spec-meta {
  justify-items: end;
  min-width: 86px;
}



.product-picker.is-detail-mode .spec-meta strong {
  color: #1f2937;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}



.product-picker.is-detail-mode .spec-meta small {
  color: #64748b;
  font-size: 13px;
  font-weight: 750;
}



.product-picker.is-detail-mode .spec-action {
  grid-column: 1 / -1;
  justify-self: stretch;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: #20283a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
}



.product-picker.is-detail-mode .spec-item.is-selected {
  border-color: rgba(37, 99, 235, 0.42);
  background: rgba(239, 246, 255, 0.88);
}



@media (max-width: 640px) {
  .product-line-list {
    min-height: 236px;
  }

  .product-picker .product-line-card {
    width: min(100%, 190px);
    height: 236px;
    min-height: 236px;
  }
}


.checkout-panel {
  width: min(100% - 28px, 720px);
  margin: 24px auto 42px;
}



.checkout-panel > .checkout-trust,
.checkout-card {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 10px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 255, 0.66)),
    rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 50px rgba(52, 78, 112, 0.12);
  backdrop-filter: blur(18px) saturate(1.15);
}



.checkout-card {
  padding: 22px;
}



.checkout-panel .checkout-trust {
  min-height: 42px;
  padding: 10px 14px;
}



.checkout-panel .checkout-trust strong {
  color: rgba(37, 74, 122, 0.82);
  font-size: 17px;
  font-weight: 850;
}



.checkout-entry {
  display: grid;
  gap: 6px;
}



.checkout-entry__eyebrow {
  color: rgba(29, 78, 216, 0.78);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}



.checkout-entry strong {
  color: #0f172a;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}



.checkout-entry small {
  color: rgba(71, 85, 105, 0.78);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
}



.product-line-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  align-items: stretch;
  justify-content: stretch;
  min-height: 0;
  gap: 14px;
}



.product-picker .product-line-card {
  width: 190px;
  height: 254px;
  min-height: 254px;
  border: 1px solid white;
  border-radius: 17px;
  background: rgba(217, 217, 217, 0.58);
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  padding: 18px;
  gap: 12px;
  transition: all 0.5s;
}



.product-picker .product-line-card:hover {
  border: 1px solid black;
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  transform: scale(1.05);
}



.product-picker .product-line-card:active {
  transform: scale(0.95) rotateZ(1.7deg);
}



.product-picker .product-line-card .series-card__media {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.36);
}



.product-picker .product-line-card .series-card__media b {
  color: #1d5fd3;
  font-size: 26px;
  font-weight: 900;
}



.product-picker .product-line-card .series-card__copy b {
  color: black;
  font-size: 22px;
  line-height: 1.18;
  font-weight: bolder;
}



.product-picker .product-line-card .series-card__copy small {
  min-height: 0;
  color: rgba(15, 23, 42, 0.62);
  font-size: 13px;
  font-weight: bolder;
}



.product-picker .product-line-card > strong {
  border-radius: 0;
  background: transparent;
  color: #000000;
  padding: 0;
  font-size: 17px;
  font-weight: 300;
}



.product-picker.is-series-mode,
.product-picker.is-detail-mode {
  gap: 14px;
}



.series-nav:not(.hidden),
.product-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
  padding: 8px 10px;
}



.series-nav .compact-btn,
.product-panel__head .compact-btn {
  min-height: 36px;
  border-radius: 999px;
  padding: 0 14px;
}



.series-nav > div,
.product-panel__head > div {
  display: grid;
  gap: 2px;
  min-width: 0;
  text-align: right;
}



.series-nav span,
.product-panel__head span {
  color: rgba(15, 23, 42, 0.86);
  font-size: 17px;
  font-weight: 850;
}



.series-nav small,
.product-panel__head small {
  color: rgba(71, 85, 105, 0.68);
  font-size: 12px;
  font-weight: 700;
}



.product-picker.is-series-mode > #seriesOptions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  min-height: 0;
  overflow: visible;
  gap: 14px;
  padding: 0;
}



.spec-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px 16px;
  min-height: 154px;
  border: 1px solid rgba(226, 232, 240, 0.82);
  border-radius: 1.5rem;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92)),
    #f8fafc;
  box-shadow: 0 14px 32px rgba(51, 65, 85, 0.06);
  padding: 18px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}



.spec-item:hover {
  border-color: rgba(148, 163, 184, 0.5);
  box-shadow: 0 18px 36px rgba(51, 65, 85, 0.1);
  transform: translateY(-2px);
}



.spec-item.is-selected {
  border-color: rgba(37, 99, 235, 0.3);
  background:
    linear-gradient(160deg, rgba(247, 250, 255, 0.98), rgba(236, 245, 255, 0.92)),
    rgba(247, 250, 255, 0.96);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.12);
}



.spec-copy {
  display: grid;
  gap: 9px;
}



.spec-copy b {
  color: #0f172a;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 850;
}



.spec-copy small,
.spec-desc {
  display: block;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}



.spec-meta {
  display: grid;
  justify-items: end;
  gap: 6px;
  min-width: 108px;
}



.spec-meta strong {
  color: #0f172a;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}



.spec-meta small,
.spec-meta-hint {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
  overflow-wrap: anywhere;
}



.spec-item:hover .spec-action,
.spec-item.is-selected .spec-action {
  border-color: rgba(37, 99, 235, 0.18);
  background: rgba(239, 246, 255, 0.9);
  color: #1d4ed8;
}



.checkout-details .price-strip,
.selected-product-info,
.checkout-details .contact-type button,
.checkout-details .field input {
  border-radius: 10px;
}



.series-card__copy small,
.series-tab__copy small,
.spec-desc,
.selected-product-info p {
  white-space: pre-line;
  overflow-wrap: anywhere;
  word-break: break-word;
}



.spec-action,
.product-picker.is-detail-mode .spec-action,
.checkout-panel .product-picker.is-detail-mode .spec-action {
  display: inline-grid;
  place-items: center;
  box-sizing: border-box;
  width: 100%;
  min-width: 132px;
  min-height: 42px;
  height: 42px;
  max-height: 42px;
  padding: 0 18px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}



.series-nav .compact-btn,
.product-panel__head .compact-btn {
  flex: 0 0 auto;
  min-width: 88px;
  height: 36px;
  max-height: 36px;
  white-space: nowrap;
}



.checkout-panel .series-nav .compact-btn,
.checkout-panel .product-panel__head .compact-btn,
.checkout-details .contact-type button {
  display: inline-grid;
  place-items: center;
  box-sizing: border-box;
  min-height: 40px;
  height: 40px;
  max-height: 40px;
  padding: 0 16px;
  line-height: 1.1;
  white-space: nowrap;
}



.checkout-details .contact-type button {
  min-width: 88px;
}



.checkout-details .buy-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 156px;
  min-height: 46px;
  height: 46px;
  max-height: 46px;
  padding: 0 18px;
  line-height: 1.1;
  white-space: nowrap;
}



.checkout-details .buy-cta .hover-underline-animation {
  padding-bottom: 0;
}



.checkout-details .buy-cta span {
  padding: 0 12px 0 0;
  letter-spacing: 0;
}



@media (max-width: 640px) {
  .checkout-panel {
    width: min(100% - 18px, 560px);
    margin-top: 14px;
  }

  .checkout-card {
    padding: 16px;
  }

  .product-line-list {
    grid-template-columns: 1fr;
  }

  .product-picker .product-line-card {
    min-height: 168px;
  }

  .series-nav:not(.hidden),
  .product-panel__head {
    align-items: stretch;
    flex-direction: column;
  }

  .series-nav > div,
  .product-panel__head > div {
    text-align: left;
  }

  .selected-product-summary {
    grid-template-columns: 1fr;
  }

  .product-picker.is-series-mode > #seriesOptions {
    grid-template-columns: 1fr;
  }

  .spec-item {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .spec-action {
    grid-column: 1 / -1;
    justify-self: stretch;
  }
}

 .order-next-actions { display: grid; gap: 8px; margin: 14px 0; border: 1px solid rgba(22, 119, 255, 0.16); border-radius: 14px; background: rgba(239, 246, 255, 0.72); padding: 14px; color: #334155; }
 .order-next-actions strong { color: #0f172a; }
 .order-next-actions span { color: #64748b; font-size: 14px; }
 .order-next-actions__links { display: flex; flex-wrap: wrap; gap: 8px; }
