.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 18px;
  color: var(--qiche-muted);
  font-size: 14px;
}

.catalog-main {
  padding: 34px 0 88px;
  background:
    linear-gradient(180deg, rgba(15, 124, 207, 0.06), rgba(15, 124, 207, 0) 260px),
    var(--qiche-bg);
}

.catalog-hero {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  margin-bottom: 24px;
  background: #fff;
  border: 1px solid var(--qiche-border);
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(16, 32, 51, calc(var(--qiche-shadow-alpha) * 0.42));
}

.catalog-hero h1 {
  margin-top: 8px;
  font-size: 46px;
}

.catalog-hero__description {
  max-width: 760px;
  margin-top: 12px;
  color: var(--qiche-muted);
  font-size: 16px;
}

.catalog-hero__description p + p {
  margin-top: 8px;
}

.catalog-hero__stats {
  display: grid;
  min-width: 238px;
  align-content: center;
  gap: 7px;
  padding: 20px;
  color: #fff;
  background: #0b2036;
  border-radius: 8px;
}

.catalog-hero__stats span,
.catalog-hero__stats small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.catalog-hero__stats strong {
  font-size: 26px;
  line-height: 1.05;
}

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

.catalog-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
}

.catalog-filter-card {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--qiche-border);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(16, 32, 51, calc(var(--qiche-shadow-alpha) * 0.24));
}

.catalog-filter-card h2 {
  margin-bottom: 13px;
  color: #122033;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.catalog-vehicle-card {
  color: #fff;
  background: #2f3a46;
  border-color: #2f3a46;
}

.catalog-vehicle-card h2 {
  color: #fff;
}

.catalog-vehicle-form,
.catalog-search-form {
  display: grid;
  gap: 10px;
}

.catalog-vehicle-form label,
.catalog-search-form label {
  display: grid;
  gap: 5px;
}

.catalog-vehicle-form span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.catalog-vehicle-form select,
.catalog-search-form input {
  width: 100%;
  min-height: 42px;
  padding: 0 11px;
  color: var(--qiche-text);
  background: #fff;
  border: 1px solid var(--qiche-border);
  border-radius: 8px;
}

.catalog-search-form {
  grid-template-columns: minmax(0, 1fr) auto;
}

.catalog-search-form input {
  grid-column: 1 / -1;
}

.catalog-category-tree nav,
.catalog-filter-links {
  display: grid;
  gap: 4px;
}

.catalog-category-tree--mobile {
  display: none;
}

.catalog-tree-group {
  display: grid;
  gap: 4px;
}

.catalog-tree-link,
.catalog-filter-links a,
.catalog-clear-filters {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  color: var(--qiche-text);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.catalog-tree-link small {
  min-width: 28px;
  color: var(--qiche-muted);
  font-size: 12px;
  text-align: right;
}

.catalog-tree-group.is-active > .catalog-tree-link,
.catalog-filter-links a.is-active {
  color: #fff;
  background: var(--qiche-primary);
}

.catalog-tree-group.is-active > .catalog-tree-link small,
.catalog-filter-links a.is-active small {
  color: rgba(255, 255, 255, 0.78);
}

.catalog-tree-link:hover,
.catalog-filter-links a:hover,
.catalog-clear-filters:hover {
  color: var(--qiche-primary);
  background: #eef6fd;
}

.catalog-tree-group ul {
  display: grid;
  gap: 2px;
  padding: 0 0 8px 10px;
  margin: 0;
  list-style: none;
  border-left: 2px solid #dbeafe;
}

.catalog-tree-group li a {
  display: block;
  padding: 7px 9px;
  color: var(--qiche-muted);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
}

.catalog-tree-group li a:hover,
.catalog-tree-group li a.is-active {
  color: var(--qiche-primary);
  background: #eef6fd;
}

.catalog-clear-filters {
  justify-content: center;
  margin-top: 10px;
  color: var(--qiche-danger);
  background: #fff1f2;
}

.catalog-results {
  min-width: 0;
}

.catalog-subcategories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.catalog-subcategory-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 94px;
  padding: 10px;
  color: var(--qiche-text);
  background: #fff;
  border: 1px solid var(--qiche-border);
  border-radius: 8px;
}

.catalog-subcategory-card:hover {
  color: var(--qiche-primary);
  border-color: rgba(15, 124, 207, 0.42);
  box-shadow: 0 14px 28px rgba(15, 124, 207, 0.12);
  transform: translateY(-1px);
}

.catalog-subcategory-card img {
  grid-row: 1 / 3;
  width: 76px;
  height: 74px;
  object-fit: cover;
  background: #f8fafc;
  border-radius: 7px;
}

.catalog-subcategory-card span,
.catalog-subcategory-card small {
  grid-column: 2;
  min-width: 0;
}

.catalog-subcategory-card span {
  align-self: end;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.18;
}

.catalog-subcategory-card small {
  align-self: start;
  margin-top: 3px;
  color: var(--qiche-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.catalog-toolbar {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid var(--qiche-border);
  border-radius: 8px;
}

.catalog-view-toggle {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.catalog-view-toggle span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: #f8fafc;
  border: 1px solid var(--qiche-border);
  border-radius: 7px;
}

.catalog-view-toggle span::before {
  width: 14px;
  height: 14px;
  content: "";
  background:
    linear-gradient(currentColor 0 0) left top / 5px 5px no-repeat,
    linear-gradient(currentColor 0 0) right top / 5px 5px no-repeat,
    linear-gradient(currentColor 0 0) left bottom / 5px 5px no-repeat,
    linear-gradient(currentColor 0 0) right bottom / 5px 5px no-repeat;
}

.catalog-view-toggle span + span::before {
  width: 16px;
  height: 12px;
  background:
    linear-gradient(currentColor 0 0) left top / 16px 3px no-repeat,
    linear-gradient(currentColor 0 0) left center / 16px 3px no-repeat,
    linear-gradient(currentColor 0 0) left bottom / 16px 3px no-repeat;
}

.catalog-view-toggle .is-active {
  color: #fff;
  background: var(--qiche-primary);
  border-color: var(--qiche-primary);
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 0;
}

.woocommerce .woocommerce-ordering select {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--qiche-border);
  border-radius: 8px;
  background: #fff;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.woocommerce .catalog-results ul.products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  display: flex;
  height: 100%;
  min-height: 100%;
  flex-direction: column;
  float: none;
  width: auto;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--qiche-border);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(16, 32, 51, calc(var(--qiche-shadow-alpha) * 0.55));
}

.woocommerce .catalog-results ul.products li.product,
.woocommerce-page .catalog-results ul.products li.product {
  width: auto !important;
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link,
.woocommerce ul.products li.product .woocommerce-loop-product__link {
  display: flex;
  min-height: 0;
  flex: 1 1 auto;
  flex-direction: column;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1.62;
  flex: 0 0 auto;
  object-fit: contain;
  padding: 8px;
  margin: 0;
  background: #f8fafc;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  display: -webkit-box;
  height: 44px;
  padding: 11px 14px 0;
  overflow: hidden;
  color: var(--qiche-text);
  font-size: 16px;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.qiche-product-meta {
  display: grid;
  gap: 2px;
  height: 44px;
  padding: 6px 14px 0;
  align-content: start;
  overflow: hidden;
}

.qiche-product-meta span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--qiche-primary);
  font-size: 13px;
  font-weight: 900;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.qiche-product-meta small {
  overflow: hidden;
  color: var(--qiche-muted);
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.woocommerce ul.products li.product .price {
  display: block;
  padding: 6px 14px 0;
  color: var(--qiche-muted);
  font-weight: 800;
}

.qiche-quote-price {
  display: inline-flex;
  width: fit-content;
  padding: 5px 8px;
  color: #0f5132;
  background: #dcfce7;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 900;
}

.woocommerce ul.products li.product .button {
  align-self: flex-start;
  margin: 10px 14px 14px;
  margin-top: auto;
}

.product-sourcing-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 7px;
  color: #073b2b;
  background: #bff4dd;
  font-size: 12px;
  font-weight: 900;
}

.woocommerce ul.products li.product {
  position: relative;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 46px;
  align-items: start;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none;
  width: auto;
}

.woocommerce div.product div.images img {
  border: 1px solid var(--qiche-border);
  border-radius: 8px;
  background: #fff;
}

.woocommerce div.product .product_title {
  font-size: 46px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--qiche-primary);
  font-size: 22px;
  font-weight: 900;
}

.single-quote-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  margin-top: 18px;
  background: #f6f8fb;
  border: 1px solid var(--qiche-border);
  border-radius: 8px;
}

.single-quote-panel p {
  color: var(--qiche-muted);
}

.woocommerce-tabs {
  grid-column: 1 / -1;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  margin: 42px 0 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-radius: 8px 8px 0 0;
  border-color: var(--qiche-border);
}

.woocommerce div.product .woocommerce-tabs .panel {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--qiche-border);
  border-radius: 0 8px 8px 8px;
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  border-top-color: var(--qiche-primary);
  border-radius: 8px;
}

.catalog-empty-state {
  display: grid;
  gap: 18px;
  justify-items: start;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--qiche-border);
  border-radius: 8px;
}

.catalog-hero,
.catalog-filter-card,
.catalog-subcategory-card,
.catalog-toolbar,
.catalog-empty-state,
.single-quote-panel,
.single-fitment-panel,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background:
    linear-gradient(145deg, rgba(16, 29, 41, 0.94), rgba(7, 11, 17, 0.94));
  border-color: rgba(125, 231, 255, 0.14);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.catalog-hero {
  position: relative;
  overflow: hidden;
}

.catalog-hero::after {
  position: absolute;
  inset: auto 24px 0 auto;
  width: 220px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(118, 242, 202, 0.8));
}

.catalog-hero h1,
.catalog-filter-card h2,
.catalog-subcategory-card span,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product .product_title,
.woocommerce div.product .woocommerce-tabs .panel h2,
.related.products > h2 {
  color: #f4fbff;
}

.catalog-hero__description,
.catalog-subcategory-card small,
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering,
.woocommerce div.product .woocommerce-tabs .panel,
.single-quote-panel p,
.single-fitment-panel {
  color: var(--qiche-muted);
}

.catalog-hero__stats,
.catalog-vehicle-card {
  background:
    linear-gradient(145deg, rgba(14, 30, 44, 0.96), rgba(8, 13, 20, 0.96)),
    radial-gradient(circle at 88% 0%, rgba(55, 200, 255, 0.18), transparent 180px);
  border: 1px solid rgba(118, 242, 202, 0.16);
}

.catalog-filter-card h2 {
  margin-bottom: 14px;
}

.catalog-vehicle-form .qiche-vehicle-fitment-picker {
  display: grid;
  gap: 10px;
}

.catalog-vehicle-form .qiche-vehicle-fitment-picker label {
  display: grid;
  gap: 5px;
}

.catalog-vehicle-form .qiche-vehicle-fitment-picker label span,
.catalog-vehicle-form span {
  color: #9fd4e9;
}

.catalog-vehicle-form select,
.catalog-search-form input,
.woocommerce .woocommerce-ordering select {
  color: #eef7ff;
  color-scheme: dark;
  background: #121922;
  border-color: rgba(125, 231, 255, 0.16);
}

.catalog-vehicle-form select option,
.woocommerce .woocommerce-ordering select option {
  color: #eef7ff;
  background: #0b1118;
}

.catalog-vehicle-form select option:checked,
.woocommerce .woocommerce-ordering select option:checked {
  color: #fff;
  background: #123248;
}

.catalog-active-fitment {
  display: grid;
  gap: 3px;
  padding: 10px;
  margin-top: 12px;
  color: var(--qiche-muted);
  background: rgba(118, 242, 202, 0.08);
  border: 1px solid rgba(118, 242, 202, 0.2);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.catalog-active-fitment strong {
  color: #fff;
}

.catalog-tree-link,
.catalog-filter-links a,
.catalog-clear-filters {
  color: #dcebf7;
}

.catalog-tree-link:hover,
.catalog-filter-links a:hover,
.catalog-clear-filters:hover,
.catalog-tree-group li a:hover,
.catalog-tree-group li a.is-active {
  color: #76f2ca;
  background: rgba(118, 242, 202, 0.08);
}

.catalog-tree-group.is-active > .catalog-tree-link,
.catalog-filter-links a.is-active {
  color: #07111f;
  background: #76f2ca;
}

.catalog-tree-group ul {
  border-left-color: rgba(125, 231, 255, 0.16);
}

.catalog-view-toggle span {
  color: #9fd4e9;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(125, 231, 255, 0.14);
}

.catalog-view-toggle .is-active {
  color: #07111f;
  background: #76f2ca;
  border-color: #76f2ca;
}

.catalog-subcategory-card:hover,
.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  border-color: rgba(118, 242, 202, 0.46);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
  transform: translateY(-2px);
}

.catalog-subcategory-card img {
  background: rgba(255, 255, 255, 0.045);
}

.woocommerce ul.products li.product a img {
  background:
    radial-gradient(circle at 50% 0%, rgba(118, 242, 202, 0.13), transparent 42%),
    linear-gradient(180deg, rgba(14, 30, 44, 0.88), rgba(6, 10, 16, 0.98));
}

.woocommerce ul.products li.product .button {
  width: calc(100% - 28px);
}

.qiche-quote-price {
  color: #07111f;
  background: #7ee2bc;
}

.product-sourcing-badge {
  color: #06251c;
  background: #7ee2bc;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.woocommerce div.product div.images img {
  background:
    radial-gradient(circle at 50% 10%, rgba(55, 200, 255, 0.14), transparent 48%),
    #081019;
}

.woocommerce div.product div.summary {
  color: var(--qiche-muted);
}

.single-quote-panel,
.single-fitment-panel {
  border-color: rgba(125, 231, 255, 0.14);
}

.single-fitment-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  margin-top: 14px;
  border: 1px solid rgba(125, 231, 255, 0.14);
  border-radius: 8px;
}

.single-fitment-panel strong {
  color: #f4fbff;
}

.single-fitment-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.single-fitment-panel span {
  display: inline-flex;
  padding: 5px 8px;
  color: #07111f;
  background: #7ee2bc;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 900;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-bottom-color: rgba(125, 231, 255, 0.14);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(125, 231, 255, 0.16);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: #dcebf7;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: #0b1118;
  border-bottom-color: #0b1118;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #fff;
}

.woocommerce div.product .woocommerce-tabs .panel {
  background:
    linear-gradient(145deg, rgba(16, 29, 41, 0.94), rgba(7, 11, 17, 0.94));
  border-color: rgba(125, 231, 255, 0.14);
}

.woocommerce div.product .woocommerce-tabs .panel p {
  color: #c7d9ea;
}

.related.products {
  grid-column: 1 / -1;
  margin-top: 50px;
}

.related.products > h2 {
  margin-bottom: 18px;
  font-size: 30px;
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  color: #dcebf7;
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(125, 231, 255, 0.14);
  border-top-color: #76f2ca;
}

@media (max-width: 1180px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .catalog-subcategories,
  .woocommerce .catalog-results ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .woocommerce .woocommerce-breadcrumb {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.35;
  }

  .catalog-main {
    padding: 14px 0 58px;
  }

  .catalog-hero {
    display: grid;
    gap: 13px;
    padding: 17px;
    margin-bottom: 14px;
  }

  .catalog-hero::after {
    right: 16px;
    width: 128px;
  }

  .catalog-hero .eyebrow {
    font-size: 12px;
  }

  .catalog-hero h1 {
    margin-top: 6px;
    font-size: 32px;
    line-height: 1;
  }

  .catalog-hero__description {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.52;
  }

  .catalog-hero__stats {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 12px;
  }

  .catalog-hero__stats span {
    max-width: 95px;
    font-size: 11px;
    line-height: 1.25;
  }

  .catalog-hero__stats strong {
    font-size: 20px;
    white-space: nowrap;
  }

  .catalog-hero__stats small {
    display: none;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .catalog-sidebar {
    position: static;
    gap: 10px;
  }

  .catalog-category-tree--desktop {
    display: none;
  }

  .catalog-category-tree--mobile {
    display: block;
  }

  .catalog-category-tree--mobile nav {
    gap: 6px;
  }

  .catalog-category-tree--mobile .catalog-tree-link {
    min-height: 44px;
  }

  .catalog-filter-card {
    padding: 13px;
  }

  .catalog-filter-card h2 {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .catalog-vehicle-form,
  .catalog-search-form {
    gap: 8px;
  }

  .catalog-vehicle-form .qiche-vehicle-fitment-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .catalog-vehicle-form .qiche-vehicle-fitment-picker label {
    gap: 4px;
  }

  .catalog-vehicle-form .qiche-vehicle-fitment-picker label span,
  .catalog-vehicle-form span {
    font-size: 11px;
  }

  .catalog-vehicle-form select,
  .catalog-search-form input {
    min-height: 40px;
    padding-inline: 10px;
  }

  .catalog-vehicle-form .qiche-vehicle-submit {
    grid-column: 1 / -1;
    min-height: 40px;
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-results > .catalog-subcategories {
    display: none;
  }

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

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

  .woocommerce div.product .product_title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .woocommerce .woocommerce-breadcrumb {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .catalog-main > .container {
    width: min(calc(100% - 28px), var(--qiche-container));
  }

  .catalog-hero {
    padding: 14px;
  }

  .catalog-hero h1 {
    font-size: 29px;
  }

  .catalog-hero__description {
    font-size: 14px;
  }

  .catalog-hero__stats {
    padding: 9px 10px;
  }

  .catalog-hero__stats strong {
    font-size: 18px;
  }

  .woocommerce .catalog-results ul.products,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

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

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    display: flex;
  }

  .woocommerce ul.products li.product .woocommerce-LoopProduct-link,
  .woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: flex;
  }

  .woocommerce ul.products li.product a img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.28;
    object-fit: contain;
    padding: 7px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    height: 56px;
    padding: 9px 10px 0;
    font-size: 13px;
    line-height: 1.2;
    -webkit-line-clamp: 3;
  }

  .woocommerce ul.products li.product .qiche-product-meta {
    height: 58px;
    padding: 6px 10px 0;
  }

  .woocommerce ul.products li.product .price:empty {
    display: none;
  }

  .woocommerce ul.products li.product .qiche-product-meta span {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }

  .woocommerce ul.products li.product .qiche-product-meta small {
    font-size: 11px;
    line-height: 1.25;
  }

  .woocommerce ul.products li.product .button {
    align-self: stretch;
    width: calc(100% - 20px);
    min-height: 38px;
    margin: 9px 10px 12px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .woocommerce ul.products li.product .product-sourcing-badge {
    top: 8px;
    left: 8px;
    padding: 4px 7px;
    font-size: 10px;
  }
}
