:root {
  color-scheme: light;
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --color-text: #111111;
  --color-muted: #707070;
  --color-border: #e5e5e5;
  --color-border-strong: #d4d4d4;
  --color-background: #ffffff;
  --color-surface: #f7f7f7;
  --color-surface-alt: #f0f0f0;
  --color-accent: #111111;
  --max-width: 1200px;
  --transition: 0.2s ease;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
}

img,
svg,
video {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  opacity: 0.7;
  text-decoration: none;
}

main {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 2.25rem 0 4rem;
  flex: 1;
}

.catalog-page {
  width: min(100% - 32px, var(--max-width));
  padding: 1.5rem 0 4rem;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

h1 {
  font-size: clamp(1.65rem, 2.4vw, 2.3rem);
}

h2 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
}

p {
  margin: 0 0 1.5rem;
  line-height: 1.75;
  max-width: 68ch;
}

ul,
ol {
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
}

button,
.button {
  appearance: none;
  border: 1px solid var(--color-text);
  background: var(--color-text);
  color: #ffffff;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  min-height: 44px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

button,
input,
select,
textarea {
  min-height: 44px;
}

button:hover,
.button:hover,
button:focus-visible,
.button:focus-visible {
  background: transparent;
  color: var(--color-text);
}

.button--ghost {
  background: transparent;
  color: var(--color-text);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: var(--color-text);
  color: #ffffff;
}

input[type='text'],
input[type='email'],
input[type='number'],
input[type='tel'],
input[type='search'],
input[type='password'],
input[type='url'],
select,
textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 0;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  background: #ffffff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

input[type='text']:focus,
input[type='email']:focus,
input[type='number']:focus,
input[type='tel']:focus,
input[type='search']:focus,
input[type='password']:focus,
input[type='url']:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #111111;
  box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.08);
}

label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
}

input[type='checkbox'] {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 0;
  border: 1px solid var(--color-border);
  background: #ffffff;
  accent-color: var(--color-text);
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--color-text);
}

.checkbox-label span {
  line-height: 1.4;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(6px);
}

.site-header__inner {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 0;
  gap: clamp(1rem, 3vw, 3.5rem);
  position: relative;
}

.brand {
  margin: 0;
  line-height: 0;
  flex: 0 0 auto;
}

.brand a {
  display: inline-flex;
  text-decoration: none;
}

.brand__logo {
  display: block;
  width: clamp(96px, 9vw, 128px);
  height: auto;
}

.brand__text {
  display: inline-block;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1;
  text-transform: uppercase;
}

.brand__text--serif {
  font-family: "Old English Text MT", "UnifrakturMaguntia", "Pirata One", "Blackletter", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand__text--sans {
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.site-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-left: auto;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 0;
  border: 1px solid var(--color-border);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: var(--color-text);
  background: var(--color-surface);
}

.site-nav {
  border-top: 0;
  flex: 1;
}

.site-nav__inner {
  display: flex;
  justify-content: flex-start;
  gap: clamp(1rem, 2.1vw, 2rem);
  padding: 0;
}

.site-nav__link {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--color-text);
}

.search-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  z-index: 25;
  width: min(320px, calc(100vw - 2rem));
  margin: 0;
  background: #ffffff;
}

.search-panel input[type='search'] {
  border-color: var(--color-text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 0.7rem 0.8rem;
}

.dev-tools {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: flex;
  gap: 0.4rem;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.dev-tools__button {
  border: 0;
  background: #111111;
  color: #ffffff;
  padding: 0.5rem 0.6rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.dev-tools__button:hover,
.dev-tools__button:focus-visible {
  background: #ffffff;
  color: #111111;
}

.nav-toggle {
  border: none;
  background: none;
  font-size: 1.1rem;
  padding: 0.25rem 0;
  cursor: pointer;
  display: none;
  color: var(--color-text);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 4px;
}

.drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: grid;
  place-items: stretch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 40;
}

.drawer__panel {
  width: min(85vw, 320px);
  background: #ffffff;
  padding: 2rem 1.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer.open .drawer__panel {
  transform: translateX(0);
}

.drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer__header .brand__logo {
  width: 118px;
}

.drawer__header .brand__text {
  font-size: 1.5rem;
}

.drawer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.drawer__group {
  display: grid;
  gap: 0.5rem;
}

.drawer__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  color: var(--color-text);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
}

.drawer__toggle::after {
  content: '+';
  font-size: 1rem;
  margin-left: 0.5rem;
}

.drawer__group.open .drawer__toggle::after {
  content: '−';
}

.drawer__submenu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.2rem;
  gap: 0.4rem;
}

.drawer__submenu a {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.drawer__group.open .drawer__submenu {
  display: grid;
}

.drawer__links a {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.hero {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: 0;
  overflow: hidden;
  display: grid;
  min-height: clamp(320px, 55vh, 520px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24, 24, 24, 0.72), rgba(24, 24, 24, 0.2)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), transparent 70%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d9d9d9, #f3f3f3);
  background-size: cover;
  background-position: center;
  filter: saturate(90%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem;
  color: #ffffff;
  max-width: 420px;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.hero__description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.intro {
  margin: 3rem 0 1.5rem;
  display: grid;
  gap: 0.75rem;
  max-width: 62ch;
}

.intro p {
  color: var(--color-muted);
  margin: 0;
}

.section {
  margin-top: 2.25rem;
}

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section__description {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 60ch;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.35rem;
  border-radius: 0;
  border: 1px solid var(--color-border);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--color-muted);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.pill:hover,
.pill:focus-visible,
.pill.is-active {
  border-color: var(--color-text);
  color: var(--color-text);
  background: var(--color-surface);
  text-decoration: none;
}

.product-grid {
  display: grid;
  gap: 1.15rem 0.35rem;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  align-items: start;
}

.product-card {
  min-width: 0;
}

.product-card,
.product-card__link,
.product-card__image,
.product-summary,
.card,
.grid-two > *,
.section__header > *,
.site-actions,
.site-nav,
.site-nav__inner,
.table-wrapper {
  min-width: 0;
}

.product-card__link {
  display: block;
  color: var(--color-text);
}

.product-card__link:hover,
.product-card__link:focus-visible {
  opacity: 1;
  text-decoration: none;
}

.product-card__image {
  display: block;
  position: relative;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-surface);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-card__caption {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--color-muted);
}

.breadcrumb a:hover {
  color: var(--color-text);
}

.product-detail {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.product-gallery {
  border: 1px solid var(--color-border);
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-surface);
}

.product-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-summary {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-summary__actions {
  border: 1px solid var(--color-border-strong);
  background: linear-gradient(180deg, #ffffff, #fafafa);
  padding: 1rem;
  gap: 0.85rem;
}

.product-summary__actions .button {
  width: 100%;
}

.product-summary__price {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.spec-list li {
  letter-spacing: 0.04em;
}

.alert {
  border-radius: 0;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

.alert-success {
  border-color: #c4e2c4;
  background: #f5faf5;
  color: #165216;
}

.alert-error {
  border-color: #f4c8c8;
  background: #fff5f5;
  color: #821a1a;
}

.table-wrapper {
  border: 1px solid var(--color-border);
  border-radius: 0;
  overflow-x: auto;
  background: #ffffff;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.table th,
.table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  letter-spacing: 0.02em;
}

.table th {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--color-muted);
}

.table tfoot td {
  font-weight: 600;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.25rem;
  border-radius: 0;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.status-pill[data-status='paid'] {
  border-color: #c4e2c4;
  background: #f5faf5;
  color: #246524;
}

.status-pill[data-status='shipped'] {
  border-color: #c9dff5;
  background: #f5f9ff;
  color: #1a4c84;
}

.status-pill[data-status='delivered'] {
  border-color: #f1d591;
  background: #fff9eb;
  color: #785312;
}

.event-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 0;
  overflow: hidden;
}

.event-item {
  padding: 1.1rem 1.35rem;
  border-bottom: 1px solid var(--color-border);
}

.event-item:last-child {
  border-bottom: none;
}

.event-item__title {
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: 0.04em;
}

.event-item__payload {
  background: var(--color-surface);
  border-radius: 0;
  margin: 0;
  padding: 0.85rem;
  font-size: 0.8rem;
  white-space: pre-wrap;
  line-height: 1.5;
  color: var(--color-muted);
}

.order-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.order-list__item {
  border: 1px solid var(--color-border);
  border-radius: 0;
  padding: 1rem;
  display: grid;
  gap: 0.5rem;
}

.order-list__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.order-list__actions {
  display: flex;
  justify-content: flex-end;
}

.stack {
  display: grid;
  gap: 1.25rem;
}

.grid-two {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.grid-two--center {
  align-items: center;
}

.checkout-layout__grid {
  align-items: start;
}

.checkout-sidebar {
  min-width: 0;
}

.checkout-step {
  position: relative;
}

.checkout-step__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.85rem;
}

.checkout-step__header h2 {
  margin-bottom: 0;
}

.checkout-step__eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.newsletter {
  margin-top: 4.5rem;
  border: 1px solid var(--color-border);
  border-radius: 0;
  padding: clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
}

.newsletter h2 {
  margin-bottom: 1rem;
}

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

.newsletter form {
  display: grid;
  gap: 1rem;
  max-width: 420px;
}

.site-footer {
  margin-top: 4rem;
  background: #ffffff;
  border-top: 0;
  padding: 2.5rem clamp(1rem, 3.3vw, 4rem) 3rem;
}

.site-footer__inner {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.68rem;
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 0;
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.footer-bottom {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card {
  border: 1px solid var(--color-border);
  border-radius: 0;
  padding: clamp(1.75rem, 2.5vw, 2.5rem);
  background: #ffffff;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.measure-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.measure-table th,
.measure-table td {
  border: 1px solid var(--color-border);
  padding: 0.75rem;
  text-align: center;
}

.archive-grid {
  display: grid;
  gap: 2rem;
}

.archive-entry {
  display: grid;
  gap: 1rem;
}

.archive-entry__code {
  font-family: var(--font-display);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.archive-entry img {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 0;
}

@media (min-width: 820px) {
  .product-detail {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  }

  .product-summary {
    max-width: 520px;
  }
}

@media (min-width: 1100px) {
  .product-detail {
    gap: 4rem;
  }

  .product-summary {
    position: sticky;
    top: 6rem;
    align-self: start;
  }

  .checkout-layout__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: 2.25rem;
  }

  .checkout-sidebar {
    position: sticky;
    top: 6rem;
    align-self: start;
  }
}

@media (max-width: 960px) {
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header__inner {
    padding: 1rem 0;
  }

  .hero__content {
    padding: 2.75rem;
  }
}

@media (max-width: 720px) {
  main {
    padding: 2.5rem 0 4rem;
  }

  .hero {
    min-height: 360px;
  }

  .hero__content {
    padding: 2.25rem;
  }

  .site-footer__inner {
    gap: 1.75rem;
  }

  .footer-links {
    gap: 1rem;
  }

  .section__header,
  .hero__actions,
  .order-list__header,
  .order-list__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  button {
    width: 100%;
  }

  .icon-button,
  .nav-toggle,
  .drawer__toggle {
    width: auto;
  }
}

@media (max-width: 560px) {
  .hero__content {
    padding: 2rem;
  }

  .hero__title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }

  .site-actions {
    gap: 0.5rem;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .brand__logo {
    width: 96px;
  }

  .breadcrumb {
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .checkout-table-wrapper {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .checkout-table,
  .checkout-table thead,
  .checkout-table tbody,
  .checkout-table tfoot,
  .checkout-table tr,
  .checkout-table th,
  .checkout-table td {
    display: block;
    width: 100%;
  }

  .checkout-table thead {
    display: none;
  }

  .checkout-table tbody {
    display: grid;
    gap: 0.75rem;
  }

  .checkout-table tbody tr,
  .checkout-table tfoot tr {
    border: 1px solid var(--color-border);
    background: #ffffff;
  }

  .checkout-table td {
    display: grid;
    grid-template-columns: minmax(96px, 38%) minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--color-border);
  }

  .checkout-table td::before {
    content: attr(data-label);
    color: var(--color-muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .checkout-table td:last-child {
    border-bottom: 0;
  }

  .checkout-table tfoot {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.75rem;
  }

  .checkout-table tfoot td[colspan] {
    display: none;
  }

  .checkout-table input[type='number'] {
    width: 100%;
    text-align: left;
  }
}
