:root {
  color-scheme: light;
  --ink: #241f1b;
  --muted: #746b63;
  --line: #e6ded2;
  --paper: #fffdf8;
  --soft: #f5efe4;
  --gold: #c9942e;
  --green: #0f8f62;
  --red: #b44437;
  --shadow: 0 18px 45px rgba(36, 31, 27, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 148, 46, 0.07), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 143, 98, 0.06), transparent 22%),
    linear-gradient(180deg, #fffdf8 0%, #fffaf0 100%);
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(230, 222, 210, 0.9);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(14px);
}

.nav,
main,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand > span:last-child {
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 20px;
}

.brand small {
  margin-top: 2px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-whatsapp,
.primary-btn,
.secondary-btn,
.card-btn,
.result-bar button,
.chip {
  border-radius: 8px;
}

.nav-whatsapp,
.primary-btn,
.card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.nav-whatsapp {
  min-height: 42px;
  padding: 0 18px;
}

.hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding: 68px 0 44px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 22px 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 148, 46, 0.45), transparent);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 12px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(36, 31, 27, 0.12), transparent);
}

.hero-copy {
  max-width: 760px;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

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

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 72px;
  line-height: 0.96;
}

h2 {
  font-size: 32px;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.trust-strip span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  width: min(660px, 100%);
  margin-top: 28px;
  border: 1px solid rgba(230, 222, 210, 0.9);
  border-radius: 8px;
  background: var(--line);
}

.hero-flow span {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: end;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.hero-flow span::before {
  content: "0" counter(flow-step);
  counter-increment: flow-step;
  position: absolute;
  left: 14px;
  top: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.hero-flow {
  counter-reset: flow-step;
}

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

.primary-btn,
.secondary-btn {
  min-height: 48px;
  padding: 0 24px;
  font-weight: 900;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
}

.hero-visual {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(230, 222, 210, 0.9);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 240, 0.92)),
    radial-gradient(circle at top right, rgba(201, 148, 46, 0.1), transparent 28%);
  box-shadow: 0 26px 60px rgba(36, 31, 27, 0.12);
}

.hero-visual-top {
  padding: 4px 4px 2px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.hero-visual-top h2 {
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.12;
}

.hero-visual-top p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.hero-visual-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(230, 222, 210, 0.9);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 242, 231, 0.92)),
    linear-gradient(90deg, rgba(201, 148, 46, 0.07), transparent);
  aspect-ratio: 16 / 10;
}

.hero-visual-image img {
  position: absolute;
  object-fit: contain;
}

.hero-product-main {
  inset: 8% auto auto 8%;
  width: 100%;
  max-width: 56%;
  height: 80%;
  filter: drop-shadow(0 20px 24px rgba(36, 31, 27, 0.12));
}

.hero-product-side {
  width: 34%;
  height: 42%;
  padding: 10px;
  border: 1px solid rgba(230, 222, 210, 0.9);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(36, 31, 27, 0.08);
}

.side-one {
  right: 8%;
  top: 12%;
}

.side-two {
  right: 13%;
  bottom: 10%;
}

.hero-visual-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 54px;
  background: linear-gradient(180deg, transparent, rgba(36, 31, 27, 0.08));
}

.hero-visual-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(36, 31, 27, 0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-stats div {
  position: relative;
  overflow: hidden;
  min-height: 104px;
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
}

.hero-stats div::after {
  content: "";
  position: absolute;
  inset: auto -14px -20px auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 148, 46, 0.16), rgba(201, 148, 46, 0));
}

.hero-stats span {
  display: block;
  font-size: 32px;
  font-weight: 900;
}

.hero-stats small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.showroom-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 2px 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.showroom-band div {
  position: relative;
  min-height: 118px;
  padding: 22px;
  background: #fff;
}

.service-index {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.showroom-band strong,
.showroom-band span {
  display: block;
}

.showroom-band strong {
  margin-bottom: 8px;
  font-size: 15px;
}

.showroom-band span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 16px;
  border-top: 1px solid var(--line);
}

.search-box {
  width: min(430px, 100%);
}

.search-box span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.filters {
  display: grid;
  gap: 10px;
  padding-bottom: 16px;
}

.filter-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.chip {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.chip.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.subfilters {
  min-height: 42px;
}

.result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.result-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.result-bar button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.result-bar button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 80px;
}

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(36, 31, 27, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 148, 46, 0.32);
  box-shadow: 0 18px 40px rgba(36, 31, 27, 0.1);
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  background: var(--soft);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.clickable-image {
  cursor: zoom-in;
}

.badge {
  position: absolute;
  left: 10px;
  top: 10px;
  max-width: calc(100% - 20px);
  padding: 6px 8px;
  border-radius: 6px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.badge.stock {
  background: var(--green);
}

.badge.limited {
  background: var(--gold);
}

.badge.preorder {
  background: var(--red);
}

.gallery-tag {
  position: absolute;
  right: 10px;
  bottom: 10px;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(36, 31, 27, 0.78);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 13px;
}

.meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.meta span:first-child {
  flex: 0 0 auto;
  padding: 4px 6px;
  border-radius: 6px;
  background: rgba(201, 148, 46, 0.1);
  color: var(--gold);
}

.meta span:last-child {
  min-width: 0;
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card h3 {
  min-height: 56px;
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 14px;
  line-height: 1.32;
}

.detail-box {
  display: grid;
  gap: 7px;
  margin-top: auto;
  padding: 10px;
  border-radius: 8px;
  background: var(--soft);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.detail-row strong {
  min-width: 0;
  color: var(--ink);
  text-align: right;
  overflow-wrap: anywhere;
}

.card-actions {
  display: grid;
  gap: 8px;
}

.card-btn {
  width: 100%;
  min-height: 40px;
  margin-top: 2px;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.card-btn:active,
.result-bar button:active,
.icon-btn:active {
  transform: translateY(1px);
}

.secondary-card-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.secondary-card-btn.selected {
  border-color: rgba(15, 143, 98, 0.35);
  background: rgba(15, 143, 98, 0.08);
  color: var(--green);
}

.secondary-card-btn:hover {
  border-color: rgba(201, 148, 46, 0.45);
}

.empty {
  grid-column: 1 / -1;
  padding: 80px 20px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer strong {
  color: var(--ink);
}

.quote-drawer {
  position: fixed;
  inset: 0;
  display: none;
  align-items: end;
  justify-content: end;
  padding: 20px;
  background: rgba(36, 31, 27, 0.38);
  backdrop-filter: blur(5px);
  z-index: 40;
}

.quote-drawer.open {
  display: flex;
}

.quote-drawer-panel {
  width: min(440px, 100%);
  max-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(230, 222, 210, 0.9);
  border-radius: 14px;
  background: #fffdf8;
  box-shadow: 0 28px 70px rgba(36, 31, 27, 0.22);
}

.quote-drawer-head,
.quote-drawer-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 16px;
}

.quote-drawer-head {
  border-bottom: 1px solid var(--line);
}

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

.icon-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
}

.quote-drawer-body {
  padding: 16px 18px;
  overflow: auto;
}

.quote-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.quote-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.quote-summary div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.quote-summary span,
.quote-summary small {
  display: block;
}

.quote-summary span {
  font-size: 24px;
  font-weight: 900;
}

.quote-summary small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

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

.quote-form label,
.quote-form span {
  display: block;
}

.quote-form span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form select,
.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.quote-form select,
.quote-form input {
  min-height: 40px;
  padding: 0 12px;
}

.quote-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 16px) 17px, calc(100% - 11px) 17px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 34px;
}

.quote-form textarea {
  resize: vertical;
  min-height: 82px;
  padding: 10px 12px;
  line-height: 1.45;
}

.map-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 148, 46, 0.32);
  border-radius: 8px;
  background: rgba(201, 148, 46, 0.08);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.quote-list {
  display: grid;
  gap: 10px;
}

.quote-empty {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
}

.quote-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  padding: 12px 12px 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.quote-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.quote-item span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.quote-item-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.quote-item-controls input {
  width: 54px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  font-weight: 800;
}

.quote-item-controls button {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.quote-item-controls .qty-btn {
  font-weight: 900;
  color: var(--ink);
}

.quote-item-controls .remove-btn {
  color: var(--red);
}

.quote-drawer-foot {
  border-top: 1px solid var(--line);
  background: #fff;
}

.quote-drawer-foot .primary-btn,
.quote-drawer-foot .secondary-btn {
  flex: 1;
}

body.quote-open {
  overflow: hidden;
}

body.gallery-open {
  overflow: hidden;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(20, 18, 16, 0.78);
}

.gallery-modal.open {
  display: flex;
}

.gallery-panel {
  width: min(1000px, 100%);
  max-height: calc(100vh - 36px);
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(230, 222, 210, 0.35);
  background: rgba(250, 247, 241, 0.98);
}

.gallery-title,
.gallery-index {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.gallery-index {
  color: var(--muted);
}

.gallery-stage {
  position: relative;
  min-height: min(68vh, 680px);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-close,
.gallery-nav {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.gallery-close {
  justify-self: end;
  width: 36px;
  height: 36px;
  font-size: 24px;
  line-height: 1;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
}

.gallery-nav.prev {
  left: 12px;
}

.gallery-nav.next {
  right: 12px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 56px;
  }

  .hero-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .showroom-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav,
  main,
  .footer {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero-visual-image {
    aspect-ratio: 4 / 3;
  }

  .toolbar,
  .footer {
    grid-template-columns: 1fr;
  }

  .toolbar,
  .footer {
    display: grid;
    align-items: start;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-whatsapp {
    padding: 0 12px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 9px;
  }

  .result-bar {
    align-items: start;
  }

  .result-actions {
    width: 100%;
    justify-content: space-between;
  }

  .quote-drawer {
    padding: 12px;
  }

  .quote-drawer-panel {
    max-height: calc(100vh - 24px);
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 40px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-flow {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .quote-item {
    grid-template-columns: 1fr;
  }

  .address-grid {
    grid-template-columns: 1fr;
  }

  .quote-item-controls {
    justify-content: space-between;
  }

  .quote-drawer-foot {
    display: grid;
    grid-template-columns: 1fr;
  }

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