:root {
  --ink: #071018;
  --ink-soft: #102434;
  --panel: #102838;
  --panel-light: #17384a;
  --line: rgba(255, 255, 255, 0.14);
  --text: #f8fafc;
  --muted: #a9b8c4;
  --yellow: #ffc43d;
  --orange: #ff6b2c;
  --cyan: #35d0ba;
  --paper: #f5f7f6;
  --dark-text: #10202b;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 58px);
  background: rgba(7, 16, 24, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  width: 252px;
  min-width: 252px;
}

.brand-wordmark {
  display: grid;
  gap: 3px;
  line-height: 1;
}

.brand-wordmark strong {
  color: var(--yellow);
  font-size: 38px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-wordmark small {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.62em;
}

.brand-wordmark i {
  display: block;
  width: 220px;
  height: 3px;
  margin: 4px 0 3px;
  background: linear-gradient(90deg, var(--yellow), rgba(255, 196, 61, 0));
}

.brand-wordmark em {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 8.5px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  color: #d4dee5;
  font-size: 14px;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button,
.product-card button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.nav-cta {
  padding: 0 18px;
  background: var(--yellow);
  color: var(--dark-text);
}

.button {
  padding: 0 22px;
}

.button.primary {
  background: var(--yellow);
  color: var(--dark-text);
  box-shadow: 0 16px 30px rgba(255, 196, 61, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  color: var(--text);
}

.nav-cta:hover,
.button:hover,
.product-card button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  align-items: center;
  overflow: hidden;
  background: #05080c;
  padding: 120px clamp(22px, 6vw, 76px) 56px;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 12, 0.99) 0%, rgba(5, 8, 12, 0.94) 42%, rgba(5, 8, 12, 0.34) 100%),
    radial-gradient(circle at 16% 22%, rgba(255, 196, 61, 0.12), transparent 26%),
    radial-gradient(circle at 82% 54%, rgba(255, 196, 61, 0.06), transparent 34%);
  content: "";
}

.hero-art {
  position: absolute;
  right: max(-170px, -9vw);
  bottom: 12px;
  width: min(78vw, 1180px);
  min-width: 850px;
  opacity: 0.98;
  filter: drop-shadow(0 34px 88px rgba(0, 0, 0, 0.5));
}

.hero-wordmark {
  position: absolute;
  z-index: 1;
  right: clamp(12px, 4vw, 70px);
  bottom: clamp(66px, 10vh, 118px);
  width: min(64vw, 1030px);
  color: var(--text);
  filter: drop-shadow(0 34px 88px rgba(0, 0, 0, 0.5));
}

.hero-wordmark strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(104px, 12.2vw, 220px);
  font-weight: 950;
  line-height: 0.78;
}

.hero-wordmark span {
  display: block;
  margin-top: clamp(28px, 3.2vw, 48px);
  color: #f7f7f7;
  font-size: clamp(48px, 6vw, 106px);
  font-weight: 500;
  line-height: 0.9;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.22);
}

.hero-wordmark i {
  display: block;
  width: 100%;
  height: clamp(4px, 0.5vw, 7px);
  margin: clamp(28px, 3.2vw, 48px) 0 clamp(24px, 2.6vw, 38px);
  background: linear-gradient(90deg, var(--yellow), rgba(255, 196, 61, 0));
}

.hero-wordmark small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(30px, 3.8vw, 66px);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
}

.hero-shade {
  position: absolute;
  right: -160px;
  bottom: -180px;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.34);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

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

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

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
}

.hero-copy {
  max-width: 610px;
  color: #c9d5dd;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

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

.hero-stats {
  display: grid;
  max-width: 680px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 46px 0 0;
}

.hero-stats div {
  min-height: 82px;
  padding: 16px;
  background: rgba(16, 40, 56, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-stats dt {
  color: var(--yellow);
  font-size: 18px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.section {
  padding: 84px clamp(22px, 6vw, 76px);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.intro-item {
  padding: 34px clamp(18px, 3vw, 34px);
  background: var(--paper);
  color: var(--dark-text);
}

.intro-item span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.intro-item h2 {
  margin: 12px 0 8px;
  font-size: 22px;
}

.intro-item p {
  margin: 0;
  color: #566570;
  line-height: 1.5;
}

.catalog-section,
.trust-section {
  background: var(--paper);
  color: var(--dark-text);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.wholesale-copy h2,
.contact-section h2 {
  margin-bottom: 14px;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.02;
}

.section-heading p:not(.eyebrow),
.wholesale-copy p,
.contact-section p {
  color: #586873;
  font-size: 17px;
  line-height: 1.55;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: #40515d;
  font-weight: 800;
}

.contact-details a {
  color: var(--orange);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.search-box {
  display: grid;
  gap: 8px;
  color: #40515d;
  font-size: 13px;
  font-weight: 900;
}

.search-box input {
  min-height: 46px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid #cdd7dc;
  border-radius: 8px;
  color: var(--dark-text);
}

.catalog-count {
  margin: 0 0 22px;
  color: #667784;
  font-size: 14px;
  font-weight: 800;
}

.filter {
  min-height: 40px;
  padding: 0 16px;
  background: transparent;
  border: 1px solid #cdd7dc;
  border-radius: 8px;
  color: var(--dark-text);
  cursor: pointer;
  font-weight: 800;
}

.filter.active {
  background: var(--dark-text);
  border-color: var(--dark-text);
  color: var(--text);
}

.product-grid,
.category-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 22px;
}

.product-card,
.category-card {
  min-height: 405px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #dce4e8;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(16, 32, 43, 0.08);
}

.category-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  cursor: pointer;
  color: var(--text);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.category-card.category-llantas {
  grid-row: span 2;
  min-height: 620px;
}

.category-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 16, 24, 0.04) 0%, rgba(7, 16, 24, 0.42) 42%, rgba(7, 16, 24, 0.92) 100%),
    radial-gradient(circle at 78% 12%, rgba(255, 196, 61, 0.18), transparent 32%);
  content: "";
}

.category-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 24px 60px rgba(16, 32, 43, 0.14);
  transform: translateY(-4px);
}

.product-card.is-hidden {
  display: none;
}

.product-visual,
.category-visual {
  position: relative;
  height: 120px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #eef3f5;
  border-radius: 8px;
}

.category-card .category-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: auto;
  margin: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 196, 61, 0.34), transparent 32%),
    linear-gradient(135deg, #102838, #071018);
  border-radius: 0;
}

.category-card.category-llantas .category-visual {
  background:
    linear-gradient(180deg, rgba(7, 16, 24, 0.02) 0%, rgba(7, 16, 24, 0.1) 34%, rgba(7, 16, 24, 0.9) 100%),
    url("assets/llantas-yayog-card.jpg?v=20260602-2058") center 38% / cover no-repeat;
}

.category-card:nth-child(2) .category-visual {
  background:
    radial-gradient(circle at 38% 38%, rgba(255, 107, 44, 0.34), transparent 34%),
    linear-gradient(135deg, #122a38, #071018);
}

.category-card:nth-child(3) .category-visual {
  background:
    radial-gradient(circle at 50% 36%, rgba(53, 208, 186, 0.34), transparent 34%),
    linear-gradient(135deg, #102838, #071018);
}

.tire-mini::before,
.tire-mini::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.tire-mini::before {
  top: 15px;
  left: 50%;
  width: 94px;
  height: 94px;
  background: #101d25;
  border: 10px solid var(--yellow);
  transform: translateX(-50%);
}

.tire-mini::after {
  top: 47px;
  left: 50%;
  width: 30px;
  height: 30px;
  background: #eef3f5;
  transform: translateX(-50%);
}

.category-card .tire-mini::before {
  top: 50%;
  width: 230px;
  height: 230px;
  border-width: 24px;
  opacity: 0.9;
  transform: translate(-50%, -58%);
}

.category-card.category-llantas .tire-mini::before,
.category-card.category-llantas .tire-mini::after {
  display: none;
}

.category-card .tire-mini::after {
  top: 50%;
  width: 72px;
  height: 72px;
  background: rgba(7, 16, 24, 0.86);
  opacity: 0.96;
  transform: translate(-50%, -58%);
}

.tire-mini.orange::before {
  border-color: var(--orange);
}

.tire-mini.cyan::before {
  border-color: var(--cyan);
}

.part-mini::before,
.part-mini::after {
  position: absolute;
  content: "";
}

.part-mini.chain::before {
  top: 33px;
  left: 36px;
  width: 158px;
  height: 44px;
  border: 10px dotted var(--orange);
  border-radius: 30px;
}

.category-card .part-mini.chain::before {
  top: 33%;
  left: 50%;
  width: 260px;
  height: 82px;
  border-width: 16px;
  border-color: var(--orange);
  opacity: 0.9;
  transform: translateX(-50%);
}

.part-mini.brake::before {
  top: 26px;
  left: 50%;
  width: 82px;
  height: 82px;
  background: var(--yellow);
  border-radius: 50%;
  transform: translateX(-50%);
}

.part-mini.brake::after {
  top: 48px;
  left: 50%;
  width: 38px;
  height: 38px;
  background: #eef3f5;
  border-radius: 50%;
  transform: translateX(-50%);
}

.part-mini.helmet::before {
  top: 30px;
  left: 58px;
  width: 116px;
  height: 72px;
  background: var(--cyan);
  border-radius: 72px 72px 24px 24px;
}

.part-mini.helmet::after {
  top: 60px;
  left: 116px;
  width: 62px;
  height: 24px;
  background: var(--ink);
  border-radius: 24px;
}

.category-card .part-mini.helmet::before {
  top: 19%;
  left: 50%;
  width: 230px;
  height: 146px;
  border-radius: 130px 130px 44px 44px;
  opacity: 0.9;
  transform: translateX(-50%);
}

.category-card .part-mini.helmet::after {
  top: 31%;
  left: 54%;
  width: 126px;
  height: 44px;
  background: rgba(7, 16, 24, 0.94);
  transform: translateX(-50%);
}

.tube-mini::before {
  position: absolute;
  top: 36px;
  left: 50%;
  width: 150px;
  height: 48px;
  border: 18px solid var(--cyan);
  border-radius: 999px;
  content: "";
  transform: translateX(-50%);
}

.tube-mini::after {
  position: absolute;
  top: 48px;
  left: 50%;
  width: 96px;
  height: 24px;
  background: #eef3f5;
  border-radius: 999px;
  content: "";
  transform: translateX(-50%);
}

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

.tag {
  display: inline-flex;
  padding: 6px 9px;
  background: #f0f4f6;
  border-radius: 6px;
  color: #50616d;
  font-size: 12px;
  font-weight: 900;
}

.code {
  color: #6a7a86;
  font-size: 12px;
  font-weight: 900;
}

.product-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.product-card p,
.category-card p {
  min-height: 72px;
  color: #5c6c77;
  line-height: 1.5;
}

.category-card span {
  display: inline-flex;
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.category-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: 0.04em;
}

.category-card button {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 46px;
  background: var(--yellow);
  border: 0;
  border-radius: 8px;
  color: var(--dark-text);
  cursor: pointer;
  font-weight: 900;
}

.category-card p {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.45;
}

.category-message {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin: 0 0 24px;
  padding: 18px;
  background: var(--dark-text);
  border-left: 7px solid var(--yellow);
  border-radius: 8px;
  color: var(--text);
  box-shadow: 0 18px 50px rgba(16, 32, 43, 0.14);
}

.category-message strong {
  color: var(--yellow);
  font-size: 18px;
}

.category-message span {
  color: #d6e0e6;
  line-height: 1.4;
}

.category-message-actions {
  display: flex;
  gap: 10px;
}

.category-message button {
  min-height: 42px;
  padding: 0 16px;
  background: var(--yellow);
  border: 0;
  border-radius: 8px;
  color: var(--dark-text);
  cursor: pointer;
  font-weight: 900;
}

.category-message .email-action {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--text);
}

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

.product-specs div {
  padding: 10px;
  background: #f0f4f6;
  border-radius: 8px;
}

.product-specs dt {
  color: #71828c;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-specs dd {
  margin: 4px 0 0;
  color: var(--dark-text);
  font-size: 13px;
  font-weight: 900;
}

.product-card button {
  width: 100%;
  background: var(--dark-text);
  color: var(--text);
}

.wholesale-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 94px clamp(22px, 6vw, 76px);
  background:
    radial-gradient(circle at 85% 28%, rgba(255, 196, 61, 0.18), transparent 26%),
    linear-gradient(135deg, #071018, #102434);
}

.wholesale-copy {
  max-width: 660px;
}

.wholesale-copy p:not(.eyebrow) {
  color: #c6d2da;
}

.wholesale-panel {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.wholesale-panel h3 {
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 28px;
}

.wholesale-panel ul {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.wholesale-panel li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #d8e2e8;
}

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

.trust-grid article,
.company-grid article {
  min-height: 150px;
  padding: 24px;
  background: #ffffff;
  border-left: 6px solid var(--yellow);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(16, 32, 43, 0.07);
}

.company-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.company-grid .about-card {
  grid-row: span 3;
  min-height: 100%;
  padding: clamp(26px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(7, 16, 24, 0.94), rgba(16, 40, 56, 0.94)),
    radial-gradient(circle at 82% 16%, rgba(255, 196, 61, 0.18), transparent 28%);
  color: var(--text);
}

.company-grid article:nth-child(3) {
  border-left-color: var(--cyan);
}

.company-grid article:nth-child(4) {
  border-left-color: var(--orange);
}

.trust-grid strong,
.company-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-grid .about-card span {
  color: var(--yellow);
}

.company-grid h3 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

.trust-grid strong {
  font-size: 20px;
}

.trust-grid p,
.company-grid p {
  margin: 0;
  color: #5c6c77;
  line-height: 1.5;
}

.company-grid .about-card p {
  color: #d4dee5;
  font-size: 17px;
  line-height: 1.62;
}

.company-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #5c6c77;
  line-height: 1.45;
  list-style: none;
}

.company-grid li {
  position: relative;
  padding-left: 20px;
}

.company-grid li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 94px clamp(22px, 6vw, 76px);
  background: #fff;
  color: var(--dark-text);
}

.quick-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: #f0f4f6;
  border-radius: 8px;
}

.quick-form label {
  display: grid;
  gap: 8px;
  color: #40515d;
  font-size: 13px;
  font-weight: 900;
}

.quick-form input,
.quick-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid #ced8dd;
  border-radius: 8px;
  color: var(--dark-text);
}

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

.quick-form .email-button {
  background: #fff;
  border-color: #ced8dd;
  color: var(--dark-text);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(22px, 6vw, 76px);
  background: var(--ink);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--yellow);
  font-weight: 900;
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }

  .hero-wordmark {
    right: -18vw;
    bottom: 72px;
    width: 74vw;
    opacity: 0.34;
  }

  .hero-stats,
  .intro-band,
  .product-grid,
  .category-grid,
  .trust-grid,
  .company-grid,
  .wholesale-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .category-card.category-llantas {
    grid-row: auto;
    min-height: 520px;
  }

  .company-grid .about-card {
    grid-row: auto;
  }

  .wholesale-section,
  .contact-section {
    padding-top: 74px;
    padding-bottom: 74px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    width: 160px;
    min-width: 160px;
  }

  .brand-wordmark strong {
    font-size: 25px;
  }

  .brand-wordmark small {
    font-size: 10px;
    letter-spacing: 0.45em;
  }

  .brand-wordmark em {
    display: none;
  }

  .brand-wordmark i {
    width: 138px;
    height: 2px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

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

  h1 {
    font-size: 42px;
    line-height: 1;
  }

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

  .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

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

  .catalog-tools {
    grid-template-columns: 1fr;
  }

  .category-message {
    grid-template-columns: 1fr;
  }

  .category-message-actions,
  .form-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .wholesale-panel,
  .quick-form {
    padding: 20px;
  }

  .site-footer {
    flex-direction: column;
  }
}
