.ve-category-section {
  clear: both;
  background: #fff;
  padding: 34px max(24px, calc((100vw - 1568px) / 2));
  border-bottom: 1px solid #e8edf2;
}

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

.ve-category-heading h2 {
  margin: 3px 0 0;
  color: #071f3d;
  font-size: clamp(25px, 2.2vw, 36px);
  line-height: 1.15;
  font-weight: 700;
}

.ve-eyebrow {
  color: #ba5a00;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.ve-category-heading > a {
  color: #071f3d;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

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

.ve-category-card {
  min-height: 84px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 14px;
  align-items: center;
  gap: 10px;
  padding: 14px 13px;
  color: #102844;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ve-category-card:hover,
.ve-category-card:focus-visible {
  color: #071f3d;
  border-color: #e5a900;
  box-shadow: 0 9px 24px rgba(7, 31, 61, .11);
  transform: translateY(-2px);
  outline: none;
}

.ve-category-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #8a4300;
  background: #fff2c2;
  border-radius: 10px;
  font-size: 21px;
  font-family: Arial, sans-serif;
}

.ve-category-name {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
}

.ve-category-arrow {
  color: #c98300;
  font-size: 23px;
  line-height: 1;
}

.ve-category-grid-ready .products-category {
  display: none !important;
}

@media (max-width: 1200px) {
  .ve-category-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .ve-category-section { padding: 26px 15px; }
  .ve-category-heading { align-items: flex-start; }
  .ve-category-heading > a { display: none; }
  .ve-category-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .ve-category-card { min-height: 76px; grid-template-columns: 36px minmax(0, 1fr); padding: 11px 10px; }
  .ve-category-icon { width: 36px; height: 36px; font-size: 18px; }
  .ve-category-name { font-size: 12.5px; }
  .ve-category-arrow { display: none; }
}

@media (max-width: 370px) {
  .ve-category-cards { grid-template-columns: 1fr; }
}
