:root {
  color-scheme: light;
  --bg: #f6f8f7;
  --surface: #ffffff;
  --surface-2: #eef5f2;
  --ink: #172326;
  --muted: #66777c;
  --line: #d9e2df;
  --brand: #047c91;
  --brand-deep: #075466;
  --coral: #ff6b4a;
  --lime: #b9d76a;
  --amber: #f2b84b;
  --graphite: #263238;
  --shadow: 0 14px 34px rgba(23, 35, 38, 0.12);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(4, 124, 145, 0.07), transparent 26rem),
    var(--bg);
  color: var(--ink);
}

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

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

.app-shell {
  min-height: 100vh;
  padding-bottom: 86px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(220px, 310px) minmax(240px, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid rgba(217, 226, 223, 0.88);
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0;
  text-align: start;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--brand);
  color: white;
}

.brand-mark svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.1;
}

.brand-copy strong {
  overflow: hidden;
  font-size: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
}

.search-field {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 8px;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.search-field svg {
  width: 20px;
  height: 20px;
  color: var(--muted);
}

.search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.top-actions,
.desktop-tabs,
.hero-actions,
.section-actions,
.product-actions,
.cart-line-actions,
.quick-row,
.bottom-nav {
  display: flex;
  align-items: center;
}

.top-actions {
  gap: 8px;
}

.icon-button,
.cart-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.icon-button:hover,
.cart-button:hover,
.product-card:hover {
  transform: translateY(-1px);
}

.icon-button svg,
.cart-button svg,
.desktop-tabs svg,
.bottom-nav svg,
.button svg {
  width: 20px;
  height: 20px;
}

.cart-button {
  position: relative;
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

#cartCount {
  position: absolute;
  top: -7px;
  inset-inline-end: -7px;
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--coral);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
}

.desktop-tabs {
  position: sticky;
  top: 73px;
  z-index: 24;
  gap: 8px;
  padding: 10px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 248, 247, 0.94);
  backdrop-filter: blur(18px);
}

.desktop-tabs button,
.bottom-nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-weight: 750;
}

.desktop-tabs button {
  height: 38px;
  padding: 0 14px;
}

.desktop-tabs button.is-active,
.bottom-nav button.is-active {
  background: var(--surface);
  color: var(--brand-deep);
  box-shadow: inset 0 0 0 1px var(--line);
}

main {
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: 24px clamp(16px, 4vw, 48px) 44px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  isolation: isolate;
  background: var(--graphite);
  color: white;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(15, 27, 30, 0.76), rgba(15, 27, 30, 0.15) 54%, rgba(15, 27, 30, 0.5)),
    linear-gradient(0deg, rgba(15, 27, 30, 0.42), transparent 50%);
}

.hero-content {
  align-self: end;
  width: min(640px, 100%);
  padding: clamp(26px, 5vw, 54px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #dff7f8;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kicker::before {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--lime);
  content: "";
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero p {
  max-width: 52ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--brand);
  color: white;
  font-weight: 850;
  text-decoration: none;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.13);
  color: white;
  border-color: rgba(255, 255, 255, 0.36);
}

.button.ghost {
  background: var(--surface);
  color: var(--brand-deep);
  border-color: var(--line);
}

.button.coral {
  background: var(--coral);
  color: white;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.14);
}

.hero-strip div {
  padding: 15px clamp(14px, 3vw, 24px);
  background: rgba(7, 84, 102, 0.44);
}

.hero-strip strong,
.stat strong,
.metric strong,
.total-row strong {
  display: block;
}

.hero-strip span,
.stat span,
.metric span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
}

.market-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 24px;
  margin-top: 24px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 136px;
  display: grid;
  gap: 16px;
}

.filter-panel {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.filter-title,
.section-eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.category-list {
  display: grid;
  gap: 7px;
}

.category-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  text-align: start;
}

.category-list button > span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
}

.category-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.category-list button.is-active {
  background: var(--surface-2);
  color: var(--brand-deep);
  font-weight: 850;
}

.mini-stats {
  display: grid;
  gap: 10px;
}

.stat {
  padding: 12px;
  border-radius: 8px;
  background: var(--graphite);
  color: white;
}

.product-section,
.page-section {
  min-width: 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 3px 0 16px;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-header p {
  margin: 7px 0 0;
  color: var(--muted);
}

.section-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.select-field {
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  padding: 0 12px;
}

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

.product-card {
  display: grid;
  grid-template-rows: 180px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(23, 35, 38, 0.07);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.85), transparent 28%),
    linear-gradient(135deg, var(--card-a), var(--card-b));
}

.product-media::after {
  position: absolute;
  inset: auto 16px 14px;
  height: 9px;
  border-radius: 50%;
  background: rgba(23, 35, 38, 0.14);
  filter: blur(7px);
  content: "";
}

.product-visual {
  position: relative;
  z-index: 1;
  width: 78%;
  height: 78%;
  color: var(--visual);
}

.product-visual svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge {
  position: absolute;
  top: 10px;
  inset-inline-start: 10px;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 8px;
  background: var(--coral);
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
}

.favorite {
  position: absolute;
  top: 8px;
  inset-inline-end: 8px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.77);
  color: var(--graphite);
}

.favorite.is-active {
  color: var(--coral);
}

.product-info {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #9b6c0e;
}

.rating svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.product-info h3 {
  min-height: 46px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.product-info p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.price {
  color: var(--brand-deep);
  font-size: 1.3rem;
  font-weight: 900;
}

.old-price {
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: line-through;
}

.stock {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-actions {
  gap: 8px;
}

.product-actions .button {
  flex: 1;
  min-width: 0;
}

.product-actions .icon-button {
  flex: 0 0 44px;
}

.empty-state {
  display: grid;
  min-height: 280px;
  place-items: center;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.empty-state svg {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  color: var(--muted);
}

.empty-state h3 {
  margin: 0;
}

.empty-state p {
  margin: 7px auto 0;
  max-width: 42ch;
  color: var(--muted);
}

.drawer,
.modal {
  position: fixed;
  z-index: 60;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.drawer {
  top: 0;
  inset-inline-end: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(430px, 100vw);
  height: 100vh;
  transform: translateX(105%);
  transition: transform 220ms ease;
}

[dir="rtl"] .drawer {
  transform: translateX(-105%);
}

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

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

.drawer-header strong {
  display: block;
  font-size: 1.15rem;
}

.drawer-header small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.drawer-body {
  min-height: 0;
  overflow: auto;
  padding: 16px;
}

.cart-lines {
  display: grid;
  gap: 12px;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.cart-thumb {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--card-a), var(--card-b));
  color: var(--visual);
}

.cart-thumb svg {
  width: 52px;
  height: 52px;
}

.cart-line h4 {
  margin: 0;
  font-size: 0.95rem;
}

.cart-line p {
  margin: 5px 0 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.cart-line-actions {
  justify-content: space-between;
  gap: 10px;
}

.stepper {
  display: inline-grid;
  grid-template-columns: 32px 34px 32px;
  align-items: center;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.stepper button {
  display: grid;
  height: 32px;
  place-items: center;
  border: 0;
  background: var(--surface-2);
  color: var(--ink);
}

.stepper span {
  text-align: center;
  font-weight: 850;
}

.totals {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 14px;
  border-radius: 8px;
  background: var(--surface-2);
}

.total-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.checkout-form,
.chat-form {
  display: grid;
  gap: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.field input,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  padding: 11px 12px;
}

.field textarea {
  min-height: 82px;
  resize: vertical;
}

.chat-body {
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 12px;
}

.messages {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 330px;
}

.message {
  max-width: 84%;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--ink);
  line-height: 1.45;
}

.message.agent {
  border-start-start-radius: 2px;
}

.message.user {
  justify-self: end;
  border-end-end-radius: 2px;
  background: var(--brand);
  color: white;
}

.quick-row {
  flex-wrap: wrap;
  gap: 8px;
}

.quick-row button {
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--brand-deep);
  font-weight: 800;
}

.chat-form {
  grid-template-columns: 1fr 44px;
}

.chat-form input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
}

.chat-form button {
  width: 44px;
  height: 44px;
}

.modal {
  top: 50%;
  left: 50%;
  display: none;
  width: min(860px, calc(100vw - 28px));
  max-height: min(760px, calc(100vh - 28px));
  overflow: auto;
  border-radius: 8px;
  transform: translate(-50%, -50%);
}

.modal.is-open {
  display: block;
}

.modal-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1fr);
}

.modal-media {
  min-height: 420px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.85), transparent 28%),
    linear-gradient(135deg, var(--card-a), var(--card-b));
  color: var(--visual);
}

.modal-media svg {
  width: 76%;
  height: 76%;
}

.modal-copy {
  display: grid;
  gap: 15px;
  padding: 22px;
}

.modal-copy h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1;
}

.modal-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.spec-list li {
  padding: 7px 9px;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--graphite);
  font-size: 0.84rem;
  font-weight: 800;
}

.modal-close {
  position: absolute;
  top: 10px;
  inset-inline-end: 10px;
  z-index: 2;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(23, 35, 38, 0.46);
}

.toast {
  position: fixed;
  z-index: 80;
  inset-inline: 16px;
  bottom: 90px;
  width: min(460px, calc(100vw - 32px));
  margin-inline: auto;
  padding: 13px 15px;
  border-radius: 8px;
  background: var(--graphite);
  color: white;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.deal-band,
.guide-band,
.orders-band {
  display: grid;
  gap: 20px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metric {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.metric span {
  color: var(--muted);
}

.guide-list,
.order-list {
  display: grid;
  gap: 12px;
}

.guide-item,
.order-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.guide-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--brand-deep);
}

.guide-icon svg {
  width: 24px;
  height: 24px;
}

.guide-item h3,
.order-item h3 {
  margin: 0;
}

.guide-item p,
.order-item p {
  margin: 5px 0 0;
  color: var(--muted);
}

.bottom-nav {
  position: fixed;
  z-index: 34;
  inset-inline: 0;
  bottom: 0;
  display: none;
  justify-content: space-around;
  gap: 4px;
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.bottom-nav button {
  flex: 1;
  min-width: 0;
  height: 54px;
  flex-direction: column;
  gap: 3px;
  font-size: 0.76rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-layout {
    grid-template-columns: 210px minmax(0, 1fr);
  }
}

@media (max-width: 880px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .search-field {
    grid-column: 1 / -1;
    order: 3;
  }

  .desktop-tabs {
    display: none;
  }

  main {
    padding-top: 16px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-content {
    padding: 24px;
  }

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

  .market-layout {
    display: block;
  }

  .filters {
    position: static;
    margin-bottom: 16px;
  }

  .filter-panel {
    padding: 12px;
  }

  .category-list {
    display: flex;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .category-list button {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
  }

  .mini-stats {
    display: none;
  }

  .section-header {
    display: grid;
    align-items: start;
  }

  .section-actions {
    justify-content: stretch;
  }

  .section-actions .select-field,
  .section-actions .button {
    flex: 1;
  }

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

  .guide-item,
  .order-item {
    grid-template-columns: auto 1fr;
  }

  .guide-item .button,
  .order-item .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .bottom-nav {
    display: flex;
  }
}

@media (max-width: 620px) {
  .app-shell {
    padding-bottom: 78px;
  }

  .topbar {
    gap: 12px;
    padding: 12px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy small {
    display: none;
  }

  .icon-button,
  .cart-button {
    width: 40px;
    height: 40px;
  }

  main {
    padding-inline: 12px;
  }

  .hero {
    min-height: 520px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 14vw, 4.4rem);
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .product-card {
    grid-template-rows: 170px 1fr;
  }

  .form-grid,
  .metric-row,
  .modal-grid {
    grid-template-columns: 1fr;
  }

  .modal-media {
    min-height: 270px;
  }

  .drawer {
    width: 100vw;
  }
}
