:root {
  color-scheme: light;
  --ink: #171513;
  --ink-soft: #595149;
  --paper: #f4efe6;
  --paper-deep: #e5dacb;
  --white: #fffaf2;
  --charcoal: #181816;
  --charcoal-soft: #24231f;
  --green: #26382d;
  --green-soft: #dce4d9;
  --wine: #5b3032;
  --clay: #8d6f5a;
  --metal: #b99b62;
  --line: rgba(23, 21, 19, 0.14);
  --line-dark: rgba(255, 250, 242, 0.14);
  --shadow: 0 26px 80px rgba(23, 21, 19, 0.18);
  --radius: 8px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

a,
button {
  color: inherit;
}

a {
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 18px 36px;
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(24, 24, 22, 0.94);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 600;
}

.brand-mark {
  display: inline-grid;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}

.main-nav a {
  opacity: 0.84;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  opacity: 1;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.icon-button,
.cart-button,
.ghost-button,
.secondary-action {
  min-height: 42px;
  border: 1px solid rgba(255, 250, 242, 0.34);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.08);
  color: var(--white);
  padding: 0 15px;
  font-weight: 700;
  font-size: 13px;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cart-button span {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--metal);
  color: var(--ink);
  font-size: 12px;
}

.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 128px 36px 76px;
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.8) 0%, rgba(10, 10, 9, 0.54) 43%, rgba(10, 10, 9, 0.08) 100%),
    url("assets/images/northvale-hero.png") center / cover no-repeat;
  color: var(--white);
}

.hero-copy {
  width: 100%;
  max-width: 620px;
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--metal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.hero h1,
.section-heading h2,
.contact-section h2,
.checkout-dialog h2,
.drawer-head h2,
.review-dialog h2 {
  margin: 0;
  font-weight: 500;
  line-height: 1.04;
}

.hero h1 {
  max-width: 13ch;
  font-size: 72px;
}

.hero-text {
  max-width: 570px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.84);
  font-size: 18px;
}

.hero-actions,
.drawer-actions,
.checkout-buttons,
.product-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 34px;
}

.primary-link,
.secondary-link,
.add-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 800;
}

.primary-link,
.add-button {
  border: 1px solid var(--metal);
  background: var(--metal);
  color: var(--ink);
}

.secondary-link,
.button-link {
  border: 1px solid rgba(255, 250, 242, 0.42);
  background: transparent;
  color: var(--white);
}

.button-link {
  appearance: none;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--charcoal);
  color: var(--white);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.trust-strip div {
  min-height: 106px;
  padding: 24px 30px;
  border-right: 1px solid var(--line-dark);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
}

.trust-strip span {
  margin-top: 7px;
  color: rgba(255, 250, 242, 0.66);
  font-size: 13px;
}

.section,
.workflow-band,
.contact-section {
  padding: 92px 36px;
}

.section-light {
  background: var(--paper);
}

.product-section {
  background: var(--white);
}

.section-heading,
.collection-grid,
.shop-controls,
.product-grid,
.workflow-grid,
.review-grid,
.contact-section,
.site-footer,
.shop-topline {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading.flush {
  margin: 0;
}

.section-heading h2,
.contact-section h2,
.checkout-dialog h2 {
  max-width: 780px;
  font-size: 46px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.collection-tile {
  position: relative;
  min-height: 292px;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--charcoal);
  color: var(--white);
}

.collection-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72)),
    var(--collection-image) center / cover no-repeat;
  transform: scale(1.02);
}

.collection-tile > * {
  position: relative;
}

.collection-tile span {
  color: var(--metal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.collection-tile strong {
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.12;
}

.collection-tile small {
  margin-top: 12px;
  color: rgba(255, 250, 242, 0.72);
}

.shop-topline {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.catalog-stat {
  min-width: 156px;
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.catalog-stat strong,
.catalog-stat span {
  display: block;
}

.catalog-stat strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 500;
}

.catalog-stat span {
  color: var(--ink-soft);
  font-size: 13px;
}

.shop-controls {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 190px auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 28px;
}

.search-box,
.select-box,
.contact-form label,
.checkout-form label,
.review-form label,
.line-option label,
.detail-option label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  outline: none;
}

input,
select {
  height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 118px;
  resize: vertical;
  padding: 13px 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--metal);
  box-shadow: 0 0 0 3px rgba(185, 155, 98, 0.16);
}

.filter-group {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.filter {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.filter.is-active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 42px rgba(23, 21, 19, 0.07);
}

.product-image-button {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--paper-deep);
}

.product-image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-card:hover .product-image-button img {
  transform: scale(1.035);
}

.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(255, 250, 242, 0.86);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.product-card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.product-kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.product-card h3 {
  min-height: 58px;
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.16;
}

.product-card p {
  min-height: 64px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.product-meta {
  display: grid;
  gap: 6px;
  min-height: 50px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.product-meta span {
  color: var(--ink-soft);
  font-weight: 700;
}

.secondary-action {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.add-button,
.secondary-action {
  flex: 1 1 120px;
}

.workflow-band {
  background: var(--charcoal);
  color: var(--white);
}

.workflow-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.workflow-grid article,
.review-card {
  min-height: 248px;
  border: 1px solid rgba(255, 250, 242, 0.15);
  border-radius: var(--radius);
  padding: 26px;
}

.workflow-grid span {
  color: var(--metal);
  font-weight: 900;
}

.workflow-grid h3,
.review-card h3 {
  margin: 34px 0 12px;
  font-size: 25px;
  font-weight: 500;
}

.workflow-grid p,
.review-card p {
  margin: 0;
  color: rgba(255, 250, 242, 0.68);
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  min-height: 230px;
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.review-card .stars {
  color: var(--metal);
  font-weight: 900;
}

.review-card h3 {
  margin-top: 22px;
}

.review-card p {
  color: var(--ink-soft);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  background: var(--paper);
}

.contact-section > div p {
  max-width: 450px;
  color: var(--ink-soft);
  font-size: 17px;
}

.contact-form,
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.full-field,
.form-submit {
  grid-column: 1 / -1;
}

.form-submit {
  width: fit-content;
  border: 0;
}

.drawer,
.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.drawer {
  display: flex;
  justify-content: flex-end;
  background: rgba(10, 10, 9, 0.46);
}

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

.drawer-panel {
  width: min(460px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.drawer-head h2 {
  font-size: 32px;
}

.drawer-head .eyebrow {
  margin-bottom: 4px;
}

.ghost-button {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.cart-lines,
.order-list {
  flex: 1;
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px 0;
}

.cart-line,
.order-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 12px;
}

.cart-line {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
}

.cart-line img {
  width: 74px;
  height: 86px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-line h3,
.order-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}

.cart-line p,
.order-card p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.line-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: end;
  margin-top: 10px;
}

.line-controls input {
  height: 40px;
}

.line-controls button,
.small-action {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  padding: 0 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.cart-summary {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 7px 0;
}

.summary-row.total {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 900;
}

.empty-state {
  margin: 0;
  color: var(--ink-soft);
}

.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 9, 0.58);
}

.product-dialog,
.checkout-dialog,
.review-dialog {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-height: min(92vh, 980px);
  overflow: auto;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.review-dialog {
  width: min(560px, 100%);
  padding: 30px;
}

.modal-close {
  position: sticky;
  top: 18px;
  z-index: 3;
  float: right;
  margin: 18px 18px 0 0;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.86);
  color: var(--ink);
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
}

.product-detail {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  padding: 30px;
}

.detail-gallery {
  display: grid;
  gap: 12px;
}

.detail-main-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-deep);
}

.detail-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.thumb-row button {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  padding: 0;
}

.thumb-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-copy h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.08;
}

.detail-subtitle {
  color: var(--ink-soft);
  margin: 12px 0 18px;
}

.detail-specs,
.price-table,
.review-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 18px 0;
}

.spec-row,
.price-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.price-row {
  grid-template-columns: repeat(3, 1fr);
}

.spec-row:last-child,
.price-row:last-child {
  border-bottom: 0;
}

.spec-row span:first-child,
.price-row span {
  color: var(--ink-soft);
}

.price-row:first-child {
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.price-row:first-child span {
  color: var(--white);
}

.detail-options {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.detail-option {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.detail-option.full {
  grid-template-columns: 1fr;
}

.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.detail-actions .primary-link,
.detail-actions .secondary-action {
  flex: 1 1 180px;
}

.review-list {
  display: grid;
}

.review-item {
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.review-item:last-child {
  border-bottom: 0;
}

.review-item strong {
  display: block;
}

.stars {
  color: var(--metal);
}

.checkout-dialog {
  width: min(1120px, 100%);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 30px;
  padding: 32px;
}

.checkout-steps {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
}

.checkout-steps li {
  border-left: 3px solid var(--line);
  padding: 8px 0 8px 12px;
  color: var(--ink-soft);
  font-weight: 800;
}

.checkout-steps li.is-active {
  border-color: var(--metal);
  color: var(--ink);
}

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

.checkout-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  background: var(--paper);
}

.checkout-item img {
  width: 52px;
  height: 58px;
  object-fit: cover;
  border-radius: 6px;
}

.checkout-stage {
  display: none;
}

.checkout-stage.is-active {
  display: block;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.payment-options label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--ink);
}

.payment-options input {
  width: auto;
  height: auto;
}

.secure-note {
  color: var(--ink-soft);
  font-size: 13px;
}

.confirmation-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 24px;
}

.confirmation-panel h3 {
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 500;
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.95fr;
  gap: 48px;
  padding: 54px 36px 64px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 430px;
  color: var(--ink-soft);
}

.site-footer div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.site-footer button {
  width: fit-content;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
}

@media (max-width: 1120px) {
  .product-grid,
  .workflow-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .shop-controls {
    grid-template-columns: 1fr 180px;
  }

  .filter-group {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .product-detail,
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 15px 20px;
    max-width: 100vw;
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .main-nav {
    justify-self: start;
    width: 100%;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .header-actions {
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 40;
  }

  .icon-button {
    display: none;
  }

  .hero {
    min-height: 78vh;
    align-items: flex-end;
    padding: 138px 20px 52px;
    background-position: 67% center;
    overflow: hidden;
  }

  .hero-copy {
    max-width: calc(100vw - 40px);
  }

  .hero-text {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero h1 {
    font-size: 46px;
  }

  .trust-strip,
  .collection-grid,
  .product-grid,
  .workflow-grid,
  .review-grid,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section,
  .workflow-band,
  .contact-section {
    padding: 68px 20px;
  }

  .section-heading h2,
  .contact-section h2,
  .checkout-dialog h2 {
    font-size: 36px;
  }

  .shop-topline {
    align-items: start;
    flex-direction: column;
  }

  .catalog-stat {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 16px 0 0;
  }

  .shop-controls,
  .contact-form,
  .form-grid,
  .detail-option,
  .payment-options {
    grid-template-columns: 1fr;
  }

  .product-card h3,
  .product-card p {
    min-height: auto;
  }

  .product-dialog,
  .checkout-dialog {
    max-height: 94vh;
  }

  .product-detail,
  .checkout-layout {
    padding: 22px;
  }

  .detail-copy h2 {
    font-size: 32px;
  }

  .thumb-row {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-right: 92px;
    width: 100vw;
    overflow: hidden;
  }

  .cart-button {
    display: none;
    min-width: 48px;
    width: 48px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .hero {
    min-height: 74vh;
    width: 100vw;
    max-width: 100vw;
  }

  .hero-copy,
  .hero-text,
  .hero-actions {
    width: 320px;
    max-width: 100%;
    margin-left: 0;
  }

  .hero h1 {
    font-size: 38px;
    width: 320px;
    max-width: 100%;
  }

  .hero-actions,
  .drawer-actions,
  .checkout-buttons {
    align-items: stretch;
    width: 100%;
  }

  .primary-link,
  .secondary-link,
  .button-link,
  .secondary-action,
  .add-button {
    width: 100%;
  }

  .modal {
    padding: 10px;
  }

  .cart-line {
    grid-template-columns: 62px 1fr;
  }

  .cart-line img {
    width: 62px;
    height: 72px;
  }
}
