:root {
  --bg: #f4f7f6;
  --ink: #10201f;
  --muted: #61706e;
  --line: #dbe4e1;
  --green: #74c947;
  --green-deep: #2f8e45;
  --teal: #1b7c7b;
  --graphite: #17201f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(22, 42, 40, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(244, 247, 246, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219, 228, 225, .78);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
}
.brand span span { color: var(--green-deep); }
.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: conic-gradient(from 230deg, var(--green), var(--teal), #b7f05b, var(--green));
  box-shadow: inset 0 0 0 6px rgba(255,255,255,.65);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #31413f;
}
.nav a {
  padding: 9px 12px;
  border-radius: 999px;
}
.nav a:hover, .nav-cta {
  background: var(--ink);
  color: white;
}
.nav .active-link {
  background: white;
  box-shadow: inset 0 0 0 1px var(--line);
}
.cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font: inherit;
  cursor: pointer;
}
.cart-toggle span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  font-weight: 900;
}

.hero {
  min-height: calc(100vh - 60px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  padding: clamp(44px, 7vw, 88px) clamp(18px, 5vw, 72px) clamp(52px, 8vw, 96px);
  overflow: hidden;
}

.hero-copy h1 {
  max-width: 860px;
  margin: 12px 0 18px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: .94;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0;
  color: var(--green-deep);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}
.button.primary { background: var(--ink); color: white; }
.button.secondary { background: white; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.button.buy {
  width: 100%;
  margin-top: 18px;
  background: var(--green);
  color: var(--ink);
}
.button.buy.light {
  background: white;
  color: var(--ink);
}
.button.disabled {
  pointer-events: none;
  opacity: .45;
}
.inline-qty {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid #b7d9c4;
  border-radius: 8px;
  background: #eff8f1;
}
.inline-qty button {
  height: 48px;
  border: 0;
  background: var(--green);
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
}
.inline-qty output {
  text-align: center;
  font-size: 18px;
  font-weight: 900;
}
.inline-actions {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(120px, .75fr);
  gap: 10px;
  align-items: end;
  margin-top: 18px;
}
.inline-actions .inline-qty {
  margin-top: 0;
}
.cart-jump {
  min-height: 48px;
  padding: 10px 12px;
  font-size: 13px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 34px;
}
.hero-metrics div {
  min-height: 94px;
  padding: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.hero-metrics strong {
  display: block;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}
.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}
.hero-visual:before {
  content: "";
  position: absolute;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(27, 124, 123, .24);
  background:
    radial-gradient(circle at 50% 50%, rgba(116, 201, 71, .22), transparent 52%),
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,255,255,.28));
}
.orbital {
  position: relative;
  width: min(560px, 90%);
  padding: 26px;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}
.orbital img {
  border-radius: 6px;
}
.hero-card {
  position: absolute;
  right: 6%;
  bottom: 8%;
  width: 190px;
  padding: 18px;
  border-radius: 8px;
  background: var(--graphite);
  color: white;
  box-shadow: var(--shadow);
}
.hero-card span, .hero-card small {
  display: block;
  color: rgba(255,255,255,.68);
}
.hero-card strong {
  display: block;
  margin: 6px 0;
  font-size: 34px;
}

.band, .section, .request {
  padding: clamp(54px, 7vw, 94px) clamp(18px, 5vw, 72px);
}
.intro {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.intro h2, .section-head h2, .request h2 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}
.intro p, .section-head p, .request p {
  color: var(--muted);
  line-height: 1.65;
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.intro-grid a {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf9;
}
.intro-grid span {
  color: var(--green-deep);
  font-weight: 900;
}
.intro-grid strong {
  display: block;
  margin: 34px 0 8px;
  font-size: 22px;
}
.intro-grid small { color: var(--muted); }

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.product-card {
  overflow: hidden;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(22,42,40,.06);
}
.product-card.accent {
  grid-row: span 2;
}
.product-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  background: white;
}
.product-card.accent img {
  aspect-ratio: 1;
}
.product-body {
  padding: 20px;
}
.product-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
}
.product-body h3, .washer-card h3, .feature-row h3 {
  margin: 14px 0 8px;
  font-size: 25px;
  line-height: 1.05;
}
.product-body p, .washer-card p, .feature-row p {
  color: var(--muted);
  line-height: 1.55;
}
dl {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
}
dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
dt { color: var(--muted); }
dd { margin: 0; font-weight: 800; }

.feature-row {
  display: grid;
  grid-template-columns: 1fr .8fr 240px;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  border-radius: 8px;
  background: #eaf3ef;
  border: 1px solid #d6e7df;
}
.feature-row img {
  border-radius: 8px;
  background: white;
}
.price-panel {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
}
.price-panel span { color: rgba(255,255,255,.68); }
.price-panel strong { font-size: 28px; }

.page-hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(255,255,255,.92), rgba(255,255,255,.52)),
    radial-gradient(circle at 82% 18%, rgba(116,201,71,.28), transparent 36%),
    #eef5f2;
}
.page-hero h1 {
  max-width: 880px;
  margin: 12px 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96;
}
.page-hero-panel {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}
.page-hero-panel strong {
  font-size: 32px;
  line-height: 1;
}
.page-hero-panel span {
  color: rgba(255,255,255,.68);
}
.catalog-section {
  background: white;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.catalog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #f8fbfa;
  box-shadow: 0 14px 38px rgba(22,42,40,.06);
}
.catalog-card img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: contain;
  padding: 10px;
  background: white;
}
.catalog-link {
  display: block;
  background: white;
}
.catalog-card h3 a:hover {
  color: var(--green-deep);
}
.catalog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}
.catalog-card h3 {
  margin: 14px 0 8px;
  font-size: 26px;
  line-height: 1.05;
}
.catalog-card p {
  color: var(--muted);
  line-height: 1.55;
}
.catalog-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.catalog-card li {
  padding: 7px 9px;
  border-radius: 999px;
  background: #eaf3ef;
  color: #304340;
  font-size: 13px;
  font-weight: 800;
}
.catalog-card [data-product-actions] {
  margin-top: auto;
  padding-top: 18px;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(10, 20, 19, .38);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  width: min(430px, 100vw);
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 16px;
  padding: 20px;
  background: white;
  box-shadow: -24px 0 70px rgba(22,42,40,.22);
  transform: translateX(105%);
  transition: transform .22s ease;
}
.cart-open .cart-backdrop {
  opacity: 1;
  pointer-events: auto;
}
.cart-open .cart-drawer {
  transform: translateX(0);
}
.cart-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.cart-head span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}
.cart-head strong {
  display: block;
  margin-top: 2px;
  font-size: 26px;
}
.icon-button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #f8fbfa;
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
}
.cart-list {
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 12px;
  padding-right: 4px;
}
.cart-empty {
  align-self: start;
  padding: 18px;
  border-radius: 8px;
  background: #f1f7f4;
  color: var(--muted);
  line-height: 1.5;
}
.cart-empty[hidden] {
  display: none;
}
.cart-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
}
.cart-item img {
  width: 86px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  background: white;
}
.cart-item strong,
.cart-item span {
  display: block;
}
.cart-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}
.qty {
  display: inline-grid;
  grid-template-columns: 30px 36px 30px;
  align-items: center;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.qty button {
  height: 30px;
  border: 0;
  background: #edf5f1;
  cursor: pointer;
}
.qty output {
  text-align: center;
  font-weight: 900;
}
.cart-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.cart-summary span {
  color: var(--muted);
}
.cart-summary strong {
  font-size: 24px;
}
.cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.button.disabled {
  opacity: .48;
  pointer-events: none;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background: white;
}
.product-detail-media {
  display: grid;
  place-items: center;
  min-height: 520px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #f8fbfa;
}
.product-detail-media img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
}
.product-detail-copy h1 {
  margin: 12px 0 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: .98;
}
.detail-price {
  display: block;
  margin: 20px 0 4px;
  font-size: 34px;
}
.detail-back {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-deep);
  font-weight: 900;
}
.detail-specs {
  background: #f4f7f6;
}
.detail-graph {
  background: #f4f7f6;
  padding-top: 40px;
  padding-bottom: 40px;
}
.detail-graph img {
  width: min(980px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 38px rgba(22,42,40,.06);
}
.spec-table {
  max-width: 920px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}
.spec-table div {
  display: grid;
  grid-template-columns: minmax(180px, .48fr) 1fr;
  gap: 18px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}
.spec-table div:first-child {
  border-top: 0;
}
.spec-table dt {
  color: var(--muted);
}
.spec-table dd {
  margin: 0;
  font-weight: 900;
}

.dark {
  background: var(--graphite);
  color: white;
}
.dark .section-head p { color: rgba(255,255,255,.66); }
.dark .eyebrow { color: #9deb6f; }
.washer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.washer-card {
  overflow: hidden;
  border-radius: 8px;
  background: #22302f;
  border: 1px solid rgba(255,255,255,.1);
}
.washer-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}
.washer-card div { padding: 20px; }
.washer-card p { color: rgba(255,255,255,.68); }
.washer-card strong {
  display: block;
  margin-top: 18px;
  font-size: 24px;
  color: #9deb6f;
}
.tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(157,235,111,.13);
  color: #b9ff88;
  font-weight: 800;
  font-size: 12px;
}

.compact { background: white; }
.request {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  background:
    linear-gradient(135deg, rgba(116,201,71,.16), transparent 42%),
    #eef5f2;
}
.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.request-form label {
  display: grid;
  gap: 8px;
  color: #465552;
  font-size: 13px;
  font-weight: 800;
}
.request-form label:nth-child(4),
.request-form button {
  grid-column: 1 / -1;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #f9fbfa;
}
textarea { resize: vertical; }

.checkout-page {
  background: white;
}
.checkout-page h1 {
  margin: 8px 0 12px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
}
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
  gap: 22px;
  align-items: start;
}
.checkout-list,
.checkout-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfa;
}
.checkout-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.checkout-item img {
  width: 84px;
  height: 68px;
  object-fit: contain;
  background: white;
}
.checkout-item strong,
.checkout-item span {
  display: block;
}
.checkout-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}
.checkout-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 4px 0;
  border-top: 1px solid var(--line);
}
.checkout-total strong {
  font-size: 28px;
}
.checkout-form label {
  display: grid;
  gap: 8px;
  color: #465552;
  font-size: 13px;
  font-weight: 800;
}
.payment-methods {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.payment-methods legend {
  padding: 0 6px;
  color: var(--green-deep);
  font-weight: 900;
}
.payment-methods label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.payment-methods input {
  width: auto;
}
.payment-box {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 8px;
  background: #eaf3ef;
  color: #304340;
  line-height: 1.5;
}
.delivery-box {
  padding: 12px 14px;
  border: 1px solid #d6e7df;
  border-radius: 8px;
  background: #eef8f2;
  color: #304340;
  font-weight: 800;
  line-height: 1.45;
}
.checkout-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.muted-total {
  color: var(--muted);
}
.grand-total {
  color: var(--green-deep);
}
.accessory-note {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(260px, .75fr);
  gap: 28px;
  align-items: center;
  background: #f4f7f6;
}
.accessory-note img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255,255,255,.72);
}
footer a { color: white; }

@media (max-width: 980px) {
  .hero, .intro, .request, .feature-row, .product-detail, .checkout-layout, .accessory-note {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-visual { min-height: 420px; }
  .product-grid, .washer-grid, .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-hero { grid-template-columns: 1fr; min-height: auto; }
  .product-detail-media { min-height: 380px; }
  .product-card.accent { grid-row: auto; }
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .nav {
    width: 100%;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 0;
  }
  .nav a,
  .cart-toggle {
    min-height: 38px;
  }
  .hero-metrics, .intro-grid, .product-grid, .washer-grid, .request-form, .catalog-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy h1 {
    font-size: 42px;
  }
  .hero-visual {
    min-height: 330px;
  }
  .hero-card {
    right: 0;
    bottom: 0;
  }
  .band, .section, .request {
    padding-left: 16px;
    padding-right: 16px;
  }
  footer {
    flex-direction: column;
  }
  .cart-actions {
    grid-template-columns: 1fr;
  }
  .spec-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 18px;
  }
  .nav {
    gap: 6px;
    font-size: 13px;
  }
  .nav a,
  .cart-toggle {
    padding: 8px 10px;
  }
  .hero {
    padding-top: 34px;
  }
  .hero-copy h1,
  .page-hero h1 {
    font-size: 36px;
    line-height: 1;
  }
  .lead {
    font-size: 16px;
  }
  .hero-visual {
    min-height: 280px;
  }
  .orbital {
    width: 100%;
    padding: 14px;
  }
  .hero-card {
    width: 166px;
    padding: 14px;
  }
  .hero-card strong {
    font-size: 28px;
  }
  .page-hero {
    padding-top: 38px;
  }
  .page-hero-panel strong {
    font-size: 26px;
  }
  .catalog-card img,
  .washer-card img {
    aspect-ratio: 1.18;
    padding: 8px;
    object-fit: contain;
  }
  .catalog-card-body,
  .washer-card div,
  .product-body {
    padding: 16px;
  }
  .cart-drawer {
    width: 100vw;
    padding: 16px;
  }
  .cart-item {
    grid-template-columns: 76px 1fr;
  }
  .cart-item img {
    width: 76px;
    height: 64px;
  }
  .product-detail {
    padding-top: 34px;
  }
  .product-detail-media {
    min-height: 280px;
  }
  .product-detail-copy h1 {
    font-size: 34px;
  }
  .checkout-item {
    grid-template-columns: 70px 1fr;
  }
  .checkout-item b {
    grid-column: 2;
  }
  .checkout-actions {
    grid-template-columns: 1fr;
  }
  .inline-actions {
    grid-template-columns: 1fr;
  }
}
