:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5d6b7c;
  --line: #d9e4ef;
  --paper: #f7fbff;
  --surface: #ffffff;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --soft-blue: #eff6ff;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.shipping-box{display:grid;gap:10px;padding:12px;border:1px solid var(--line);border-radius:8px;background:#f8fbff}.shipping-box>div:first-child{display:flex;align-items:center;justify-content:space-between;gap:12px}.shipping-box span{color:var(--muted);font-size:.82rem;font-weight:800}.shipping-box strong{font-size:.95rem}.shipping-options{display:grid;gap:8px}.shipping-options button{display:flex;align-items:center;justify-content:space-between;gap:10px;min-height:44px;padding:9px 11px;border:1px solid var(--line);border-radius:7px;background:#fff;color:var(--ink);font-weight:800;text-align:left}.shipping-options button:hover{border-color:#2563eb}.shipping-options button span{font-size:.78rem;font-weight:700}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: linear-gradient(180deg, #f2f8ff 0%, #ffffff 42%, #f7fbff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

button,
input,
select {
  font: inherit;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 12px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
}

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

.brand strong {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1;
  font-weight: 900;
}

.brand small {
  max-width: 250px;
  color: #4b5563;
  font-size: 0.72rem;
  line-height: 1.15;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #1f2937;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--accent);
}

.cart-button,
.icon-button {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
}

.cart-button {
  grid-template-columns: 22px auto;
  gap: 8px;
  min-width: 72px;
  height: 44px;
  padding: 0 14px;
  border-radius: 8px;
  font-weight: 800;
}

.cart-icon {
  position: relative;
  width: 20px;
  height: 17px;
  border: 2px solid currentColor;
  border-top: 0;
}

.cart-icon::before {
  content: "";
  position: absolute;
  left: 1px;
  top: -7px;
  width: 14px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  transform: skewX(-18deg);
}

.cart-icon::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -7px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
}

.install-banner {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: min(430px, calc(100vw - 28px));
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(191, 219, 254, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(14px);
}

.install-banner[hidden] {
  display: none;
}

.install-banner strong,
.install-banner span {
  display: block;
}

.install-banner strong {
  font-size: 0.92rem;
  line-height: 1.15;
}

.install-banner span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.3;
}

.install-banner button {
  flex: 0 0 auto;
  min-height: 36px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 12px;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font-weight: 850;
}

.install-banner .install-close {
  width: 36px;
  min-width: 36px;
  padding: 0;
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(2, 6, 23, 0.72);
  overflow-y: auto;
}

.promo-popup.is-open {
  display: flex;
}

.promo-popup-card {
  position: relative;
  width: min(500px, 100%);
  max-height: calc(100dvh - 36px);
  border-radius: 10px;
  background: #020617;
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.38);
  overflow: auto;
}

.promo-popup-card a,
.promo-popup-card img {
  display: block;
}

.promo-popup-card img {
  width: 100%;
  height: auto;
}

.promo-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.78);
  color: #ffffff;
  font-weight: 900;
}

main {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.topbar {
  display: none;
}

.shop-campaign {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 8px 18px;
  background: linear-gradient(90deg, #16a34a, #facc15, #2563eb);
  color: #082f49;
  text-align: center;
  font-weight: 900;
}

.market-header {
  position: sticky;
  top: 0;
  z-index: 25;
  display: grid;
  grid-template-columns: 220px minmax(220px, 1fr) minmax(150px, 190px) auto auto;
  gap: 14px;
  align-items: center;
  padding: 18px clamp(18px, 5vw, 64px);
  background: linear-gradient(90deg, #f97316, #2563eb);
  color: #fff;
}

.market-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.market-brand img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 3px 8px rgba(15, 23, 42, 0.25));
}

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

.market-brand strong {
  font-size: 1.8rem;
  line-height: 1;
}

.market-brand small {
  font-size: 0.78rem;
}

.market-search {
  display: grid;
  grid-template-columns: 1fr 46px;
  min-height: 52px;
  border-radius: 9px;
  background: #fff;
  overflow: hidden;
}

.market-sort {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 12px;
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
}

.market-sort span {
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 850;
}

.market-sort select {
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
}

.catalog-hidden-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.market-search input {
  min-width: 0;
  border: 0;
  padding: 0 18px;
  color: var(--ink);
  outline: 0;
}

.market-search span {
  display: grid;
  place-items: center;
  color: #f97316;
  font-size: 1.7rem;
  font-weight: 900;
}

.market-account,
.market-cart {
  display: inline-grid;
  gap: 7px;
  align-items: center;
  min-height: 48px;
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 900;
}

.market-account {
  grid-template-columns: auto;
  min-width: 94px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 9px;
  text-align: left;
}

.market-account span {
  font-size: 0.74rem;
  line-height: 1;
  opacity: 0.86;
}

.market-account strong {
  font-size: 0.92rem;
  line-height: 1;
}

.market-cart {
  grid-template-columns: auto auto;
  font-size: 1.4rem;
}

.department-strip {
  position: sticky;
  top: 84px;
  z-index: 24;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  padding: 7px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: #fff;
  overflow-anchor: none;
}

.department-strip button {
  border: 0;
  background: transparent;
  color: #475569;
  cursor: pointer;
  font-weight: 850;
  font-size: 0.76rem;
  line-height: 1.15;
  text-transform: uppercase;
}

#departmentToggle {
  color: #f97316;
}

#brandToggle {
  color: var(--accent-dark);
}

#departmentLinks {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  overflow: hidden;
  white-space: nowrap;
}

.department-kit-button {
  min-height: 32px;
  padding: 7px 13px;
  border-radius: 6px!important;
  background: #2563eb!important;
  color: #fff!important;
  white-space: nowrap;
}

.department-about-button {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 6px;
  color: #475569;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.department-about-button:hover {
  background: #f1f5f9;
  color: var(--accent-dark);
}

.department-kit-button:hover {
  background: #1d4ed8!important;
}

.mega-departments {
  position: fixed;
  z-index: 35;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px 22px;
  max-height: min(68vh, 560px);
  padding: 18px clamp(18px, 4vw, 54px);
  border: 1px solid var(--line);
  border-top: 0;
  background: #fff;
  box-shadow: var(--shadow);
  overflow-y: auto;
  overscroll-behavior: contain;
  overflow-anchor: none;
}

.brand-menu {
  position: fixed;
  z-index: 35;
  display: grid;
  gap: 14px;
  max-height: min(54vh, 430px);
  padding: 18px clamp(18px, 4vw, 54px);
  border: 1px solid var(--line);
  border-top: 0;
  background: #fff;
  box-shadow: var(--shadow);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.brand-menu[hidden] {
  display: none;
}

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

.brand-menu-head strong {
  color: var(--ink);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.brand-menu-head span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.brand-menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-menu-grid button {
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fbff;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 850;
}

.brand-menu-grid button:hover {
  border-color: var(--accent);
  background: #eff6ff;
  color: var(--accent-dark);
}

.mega-departments[hidden] {
  display: none;
}

.mega-departments strong,
.mega-departments button {
  display: block;
  margin-bottom: 6px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.mega-departments strong,
.product-card h3,
.section-heading h2 {
  text-transform: uppercase;
}

.mega-departments button {
  color: #475569;
  cursor: pointer;
  font-size: 0.78rem;
  line-height: 1.2;
}

.mega-brands {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.mega-brands strong {
  width: 100%;
}

.mega-brands button {
  margin: 0;
  color: var(--accent-dark);
  font-weight: 850;
}

.catalog-section {
  order: 1;
  padding-top: 30px;
}

.department-showcase {
  order: 2;
}

.promo-band {
  order: 3;
}

.hero {
  order: 4;
}

.quick-stats {
  order: 5;
}

.services {
  order: 6;
}

.contact {
  order: 7;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 64px) 28px;
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.2rem, 5.2vw, 4.55rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.7vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 610px;
  color: #374151;
  font-size: 1.06rem;
  line-height: 1.65;
}

.hero-copy h1 + p + p + p {
  display: none;
}

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

.primary-action,
.secondary-action,
.checkout-button,
.product-card button,
.contact button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
}

.primary-action,
.checkout-button,
.product-card button {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.18);
}

.primary-action,
.secondary-action {
  padding: 0 18px;
}

.primary-action:hover,
.checkout-button:hover,
.product-card button:hover {
  background: var(--accent-dark);
}

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

.hero-media {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: clamp(320px, 47vw, 560px);
  object-fit: cover;
  object-position: center;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 64px) clamp(38px, 5vw, 74px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.quick-stats div {
  min-height: 104px;
  padding: 22px;
  background: #ffffff;
}

.quick-stats strong,
.quick-stats span {
  display: block;
}

.quick-stats strong {
  margin-bottom: 6px;
}

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

.department-showcase {
  padding: 0 clamp(18px, 5vw, 64px) clamp(38px, 5vw, 70px);
}

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

.department-cards button {
  display: grid;
  gap: 9px;
  min-height: 176px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.department-cards img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 7px;
  background: #f8fafc;
  object-fit: contain;
}

.department-cards button:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.department-cards span {
  width: max-content;
  padding: 3px 8px;
  border-radius: 999px;
  background: #e8f7ef;
  color: #147a42;
  font-size: 0.78rem;
  font-weight: 900;
}

.department-cards strong {
  font-size: 1.05rem;
}

.department-cards small {
  color: var(--muted);
  line-height: 1.45;
}

.catalog-section,
.services,
.contact {
  padding: clamp(36px, 6vw, 76px) clamp(18px, 5vw, 64px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-heading > span {
  color: var(--muted);
  font-weight: 750;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(170px, 0.28fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}

.search-box,
.sort-box {
  display: flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.search-box {
  gap: 10px;
  padding: 0 14px;
}

.search-box span {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid #8190a4;
  border-radius: 50%;
}

.search-box span::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -5px;
  width: 8px;
  height: 2px;
  background: #8190a4;
  transform: rotate(45deg);
}

.search-box input,
.sort-box select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.sort-box {
  gap: 8px;
  padding: 0 12px;
}

.sort-box span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.category-menu {
  display: none;
  position: relative;
}

.category-menu-toggle {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #1f2937;
  cursor: pointer;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.category-menu-toggle strong {
  color: var(--accent);
  font-size: 0.9rem;
  text-align: right;
}

.category-panel {
  position: static;
  margin-top: 8px;
  max-height: min(620px, 72vh);
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  overflow: auto;
}

.category-tabs {
  display: grid;
  gap: 8px;
}

.category-group {
  display: grid;
  gap: 8px;
}

.category-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  width: 100%;
  min-height: 50px;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  border: 1px solid #e5edf6;
  border-radius: 8px;
  background: #f8fbff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.category-row small {
  color: var(--muted);
  font-size: 0.78rem;
}

.category-row em {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent);
  font-style: normal;
  font-weight: 900;
}

.category-row[aria-selected="true"] {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.category-row[aria-selected="true"] small {
  color: rgba(255, 255, 255, 0.82);
}

.category-row[aria-selected="true"] em {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.subcategory-list {
  display: grid;
  gap: 6px;
  padding: 0 0 10px 14px;
}

.subcategory-list button {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: flex-start;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #334155;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 760;
}

.subcategory-list button[aria-pressed="true"] {
  border-color: #111827;
  background: #111827;
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 318px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  cursor: pointer;
}

.product-visual {
  display: block;
  min-height: 116px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(96, 165, 250, 0.14)),
    #f2f8ff;
}

.product-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-symbol {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 2px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  color: var(--accent);
  font-size: 1.12rem;
  font-weight: 900;
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 10px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: #e8f1ff;
  color: var(--accent-dark);
  font-size: 0.66rem;
  font-weight: 850;
}

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

.subcategory-label {
  display: inline-flex;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
}

.product-brand {
  display: block;
  margin-bottom: 4px;
  color: #475569;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: -2px 0 6px;
  color: #f59e0b;
  font-size: 0.78rem;
  font-weight: 900;
}

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

.product-card p {
  display: -webkit-box;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.25;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  margin-top: auto;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.product-card button {
  width: 100%;
  min-height: 36px;
  font-size: 0.78rem;
}

.product-card h3 {
  display: -webkit-box;
  margin-bottom: 6px;
  font-size: 0.78rem;
  line-height: 1.18;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.promo-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 24px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 64px);
  padding: clamp(28px, 4.8vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 52%, #ffffff 100%);
  color: var(--ink);
  overflow: hidden;
}

.promo-band p:not(.eyebrow) {
  max-width: 640px;
  color: #4b5563;
  line-height: 1.62;
}

.promo-band .primary-action {
  margin-top: 8px;
  border: 0;
  cursor: pointer;
}

.promo-band img {
  width: 100%;
  height: clamp(260px, 28vw, 360px);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.16);
}

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

.service-grid article {
  position: relative;
  min-height: 280px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #020617;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}

.service-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(2, 6, 23, 0.86) 0%, rgba(2, 6, 23, 0.62) 43%, rgba(37, 99, 235, 0.16) 100%);
}

.service-grid article img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-grid article > div {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #ffffff;
}

.service-grid span {
  display: inline-flex;
  width: max-content;
  margin-bottom: 16px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.92);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
}

.service-grid h3 {
  max-width: 320px;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.32rem;
}

.service-grid p,
.contact p {
  color: #dbeafe;
}

.contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 310px;
  margin: 0 clamp(18px, 5vw, 64px) clamp(36px, 5vw, 70px);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(15, 23, 42, 0.78) 42%, rgba(37, 99, 235, 0.22) 100%),
    url("./assets/brand/atendimento-loja-ordep.png") center right / cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.contact > div {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.contact h2,
.contact .eyebrow {
  color: #ffffff;
}

.contact .eyebrow {
  color: #93c5fd;
}

.contact .primary-action {
  position: relative;
  z-index: 1;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.3);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  justify-content: flex-end;
  background: rgba(15, 23, 42, 0.48);
  overflow: hidden;
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(15, 23, 42, 0.48);
  overflow-y: auto;
}

.order-modal.is-open {
  display: flex;
}

.order-form {
  width: min(520px, 100%);
  max-height: calc(100dvh - 36px);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: auto;
}

.account-panel {
  width: min(620px, 100%);
  max-height: calc(100dvh - 36px);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: auto;
}

.account-button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 850;
}

.account-tabs {
  display: flex;
  gap: 8px;
  padding: 0 22px 16px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}

.account-tabs button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 850;
}

.account-tabs button.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.account-section {
  min-height: 170px;
}

.account-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 22px;
}

.account-form label {
  display: grid;
  gap: 7px;
}

.account-form .wide {
  grid-column: span 2;
}

.account-form button.wide {
  width: 100%;
}

.account-form input[readonly] {
  background: #f1f5f9;
  color: var(--muted);
}

.account-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 22px 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.account-summary strong,
.account-summary span {
  display: block;
}

.account-summary button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 800;
}

.account-orders {
  display: grid;
  gap: 10px;
  padding: 18px 22px 22px;
}

.account-order {
  display: grid;
  gap: 8px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.account-order-head,
.account-order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.account-order span {
  color: var(--accent);
  font-weight: 900;
}

.account-order small {
  color: var(--muted);
  line-height: 1.35;
}

.account-order-meta {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.account-order-total a {
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 8px;
  background: #16a34a;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 850;
}

.checkout-review {
  width: min(640px, 100%);
  max-height: calc(100dvh - 36px);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: auto;
}

.checkout-review-body {
  display: grid;
  gap: 12px;
  padding: 0 22px 18px;
}

.checkout-review-block,
.checkout-review-list,
.checkout-review-summary {
  display: grid;
  gap: 8px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.checkout-review-block span,
.checkout-review-block small {
  color: var(--muted);
}

.checkout-review-list {
  background: #ffffff;
}

.checkout-review-row,
.checkout-review-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.checkout-review-row span,
.checkout-review-summary span {
  color: var(--muted);
}

.checkout-review-summary div:last-child {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.checkout-review-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 22px 22px;
  border-top: 1px solid var(--line);
}

.payment-link[hidden] {
  display: none;
}

.success-review .checkout-review-body {
  padding-top: 4px;
}

.success-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.order-form label {
  display: grid;
  gap: 7px;
  padding: 0 22px 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(90px, 0.45fr);
  column-gap: 12px;
}

.form-grid label:nth-child(3),
.form-grid label:nth-child(4) {
  grid-column: span 1;
}

.order-form label span {
  color: var(--ink);
  font-weight: 800;
}

.order-form input,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  outline: 0;
  resize: vertical;
}

.form-grid label {
  padding-bottom: 16px;
}

.order-form input:focus,
.order-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.order-note {
  margin: 0;
  padding: 0 22px 14px;
  color: var(--muted);
  font-weight: 750;
}

.order-form .checkout-button {
  width: calc(100% - 44px);
  margin: 0 22px 22px;
}

.quantity-form {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(320px, 1fr);
  gap: 30px;
  width: min(960px, calc(100% - 28px));
  max-height: calc(100dvh - 36px);
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: auto;
}

.quantity-form > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: contain;
  background: var(--soft-blue);
}

.quantity-details {
  min-width: 0;
  padding: 6px 38px 2px 0;
}

.quantity-details h2 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.quantity-description {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.quantity-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.quantity-price {
  display: block;
  margin: 18px 0 22px;
  font-size: 1.65rem;
}

.upsell-offer {
  display: grid;
  gap: 5px;
  margin: -5px 0 18px;
  padding: 12px;
  border: 1px solid #bfdbfe;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: #eff6ff;
}

.upsell-offer[hidden] {
  display: none;
}

.upsell-offer span,
.upsell-offer small {
  color: #475569;
}

.upsell-offer span {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.upsell-offer button {
  justify-self: start;
  margin-top: 3px;
  border: 0;
  background: transparent;
  color: var(--accent-dark);
  cursor: pointer;
  font-weight: 900;
}

.kit-builder {
  display: flex;
  width: min(1180px, 100%);
  height: min(820px, calc(100dvh - 36px));
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.kit-builder-head h2,
.kit-choice-heading h3 {
  margin: 0;
}

.kit-builder-head span,
.kit-choice-heading p {
  color: var(--muted);
}

.kit-builder-body {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  min-height: 0;
  flex: 1;
}

.kit-steps {
  padding: 14px;
  border-right: 1px solid var(--line);
  background: #f8fafc;
  overflow-y: auto;
}

.kit-steps button {
  display: grid;
  grid-template-columns: 28px 1fr;
  width: 100%;
  gap: 2px 8px;
  margin-bottom: 5px;
  padding: 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.kit-steps button > span {
  grid-row: 1 / 3;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #e2e8f0;
  font-weight: 900;
}

.kit-steps button small {
  color: var(--muted);
}

.kit-steps button.active {
  border-color: #93c5fd;
  background: #eff6ff;
}

.kit-steps button.done > span {
  background: #16a34a;
  color: #fff;
}

.kit-choice-area {
  min-width: 0;
  padding: 18px;
  overflow-y: auto;
}

.kit-choice-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

#skipKitStep[hidden] {
  display: none;
}

.kit-choice-heading > div > span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.kit-choice-heading p {
  margin: 5px 0 0;
}

.kit-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.kit-product {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.kit-product:hover,
.kit-product.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px #dbeafe;
}

.kit-product img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.kit-product span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.kit-product small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
}

.kit-product strong {
  font-size: 0.8rem;
  line-height: 1.25;
}

.kit-product b {
  color: var(--accent-dark);
}

.kit-empty {
  grid-column: 1 / -1;
  display: grid;
  gap: 5px;
  padding: 28px;
  border: 1px dashed #94a3b8;
  border-radius: 7px;
  color: var(--muted);
  text-align: center;
}

.kit-builder-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  background: #f8fafc;
}

.kit-builder-footer > div {
  display: grid;
  gap: 2px;
}

.kit-builder-footer span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.kit-builder-footer strong {
  font-size: 1.35rem;
}

.quantity-control {
  display: block;
  margin-bottom: 16px;
}

.quantity-control > span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-weight: 800;
}

.quantity-control > div {
  display: grid;
  grid-template-columns: 46px 90px 46px;
  gap: 5px;
}

.quantity-control button,
.quantity-control input {
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.cart-drawer.is-open {
  display: flex;
}

.cart-panel {
  display: flex;
  width: min(440px, 100%);
  height: 100dvh;
  max-height: 100dvh;
  flex-direction: column;
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  flex: 0 0 auto;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  font-size: 1.2rem;
  line-height: 1;
}

.cart-items {
  display: grid;
  flex: 1 1 auto;
  gap: 12px;
  min-height: 0;
  padding: 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-line strong,
.cart-line span {
  display: block;
}

.cart-line span {
  color: var(--muted);
  font-size: 0.9rem;
}

.qty-controls {
  display: grid;
  grid-template-columns: 34px 34px 34px;
  align-items: center;
  gap: 4px;
}

.qty-controls button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
  font-weight: 900;
}

.qty-controls span {
  color: var(--ink);
  text-align: center;
  font-weight: 850;
}

.cart-empty {
  display: grid;
  place-items: center;
  gap: 6px;
  min-height: 220px;
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

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

.cart-footer {
  flex: 0 0 auto;
  margin-top: auto;
  padding: 18px;
  border-top: 1px solid var(--line);
  background: #f8fbff;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.cart-total span {
  color: var(--muted);
  font-weight: 750;
}

.cart-total strong {
  font-size: 1.35rem;
}

.checkout-button {
  width: 100%;
}

.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  max-width: min(360px, calc(100vw - 36px));
  padding: 13px 16px;
  border-radius: 8px;
  background: #111827;
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: 180ms ease;
  pointer-events: none;
}

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

@media (max-width: 1060px) {
  .hero,
  .promo-band {
    grid-template-columns: 1fr;
  }

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

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

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

@media (max-width: 740px) {
  .install-banner {
    right: 10px;
    left: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    width: auto;
    align-items: stretch;
    gap: 8px;
    padding: 10px;
  }

  .install-banner > div {
    min-width: 0;
  }

  .install-banner strong {
    font-size: 0.86rem;
  }

  .install-banner span {
    display: -webkit-box;
    font-size: 0.74rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .install-banner button {
    min-height: 34px;
    padding-inline: 10px;
    font-size: 0.78rem;
  }

  .install-banner .install-close {
    width: 34px;
    min-width: 34px;
  }

  .shop-campaign {
    flex-direction: column;
    gap: 2px;
    min-height: 54px;
  }

  .market-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
    padding: 12px;
  }

  .market-brand strong {
    font-size: 1.22rem;
  }

  .market-brand small {
    max-width: 150px;
    font-size: 0.68rem;
    line-height: 1.1;
  }

  .market-brand img {
    width: 42px;
    height: 42px;
  }

  .market-search {
    grid-column: 1 / -1;
    order: 4;
    min-height: 46px;
  }

  .market-sort {
    grid-column: 1 / -1;
    order: 5;
    min-height: 44px;
  }

  .market-account {
    min-width: 78px;
    min-height: 42px;
    padding: 0 8px;
    order: 2;
  }

  .market-cart {
    min-height: 42px;
    font-size: 1rem;
    order: 3;
  }

  .account-form {
    grid-template-columns: 1fr;
  }

  .account-form .wide {
    grid-column: auto;
  }

  .department-strip {
    top: 130px;
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    gap: 7px;
    padding: 7px 10px;
  }

  .department-strip button,
  .department-about-button,
  .department-kit-button {
    font-size: 0.68rem;
  }

  #departmentLinks {
    grid-column: 1 / -1;
    gap: 12px;
  }

  .department-about-button {
    justify-content: center;
    padding: 7px 9px;
  }

  .mega-departments {
    grid-template-columns: 1fr 1fr;
    max-height: 60vh;
    padding: 18px 14px;
  }

  .mega-brands {
    grid-column: 1 / -1;
  }

  .topbar {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 92px);
  }

  .brand small {
    max-width: 210px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-media img {
    height: 310px;
  }

  .quick-stats,
  .service-grid,
  .department-cards {
    grid-template-columns: 1fr;
  }

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

  .section-heading,
  .contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact .primary-action {
    width: 100%;
  }

  .cart-panel {
    width: 100%;
  }

  .cart-head {
    padding: 18px;
  }

  .cart-head h2 {
    font-size: 2rem;
    line-height: 1.05;
  }

  .cart-items {
    align-content: start;
    padding: 14px;
  }

  .cart-line {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 12px;
  }

  .cart-footer {
    padding: 14px;
  }

  .order-modal {
    align-items: flex-start;
    padding: 10px;
  }

  .order-form {
    max-height: calc(100dvh - 20px);
  }

  .checkout-review {
    max-height: calc(100dvh - 20px);
  }

  .checkout-review-actions,
  .account-order-total {
    flex-direction: column;
    align-items: stretch;
  }

  .quantity-form {
    grid-template-columns: 1fr;
    gap: 14px;
    width: min(560px, 100%);
    max-height: calc(100dvh - 20px);
    padding: 16px;
    overflow: auto;
  }

  .quantity-form > img {
    width: min(240px, 72vw);
    max-height: 230px;
    margin: 0 auto;
  }

  .quantity-details {
    padding: 0;
  }

  .quantity-details h2 {
    padding-right: 42px;
    font-size: 1.65rem;
  }

  .quantity-description {
    margin-top: 9px;
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .quantity-price {
    margin: 12px 0 14px;
    font-size: 1.4rem;
  }

  .kit-builder {
    height: calc(100dvh - 20px);
  }

  .kit-builder-head {
    padding: 14px;
  }

  .kit-builder-body {
    grid-template-columns: 1fr;
  }

  .kit-steps {
    display: flex;
    gap: 5px;
    padding: 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
  }

  .kit-steps button {
    flex: 0 0 126px;
    margin: 0;
  }

  .kit-choice-area {
    padding: 12px;
  }

  .kit-choice-heading {
    display: grid;
  }

  .kit-products {
    grid-template-columns: 1fr;
  }

  .kit-builder-footer {
    padding: 10px 12px;
  }

  .kit-builder-footer .checkout-button {
    width: auto;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.35rem;
  }

  .hero-actions a,
  .contact .primary-action {
    width: 100%;
  }

  .category-panel {
    max-height: 66vh;
  }

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

  .category-row small {
    display: none;
  }

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