.sale-filters {
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) minmax(170px, .7fr) minmax(170px, .7fr) auto auto;
  gap: 10px;
  margin-top: 64px;
  padding: 16px;
  background: #f1f2f3;
}
.sale-filters input,
.sale-filters select,
.sale-filters button {
  width: 100%;
  min-height: 58px;
  border: 1px solid #d7dadd;
  border-radius: 0;
  background: #fff;
  color: #101315;
  font: inherit;
}
.sale-filters input,
.sale-filters select { padding: 0 18px; }
.sale-search { position: relative; }
.sale-search span { position: absolute; top: 15px; left: 18px; z-index: 1; font-size: 24px; }
.sale-search input { padding-left: 52px; }
.sale-filters button { padding: 0 28px; border-color: #ef2b21; background: #ef2b21; color: #fff; font-weight: 750; cursor: pointer; }
.sale-filters #sale-reset { border-color: #d7dadd; background: transparent; color: #5e656a; }
.sale-catalog-meta { display: flex; justify-content: space-between; margin: 28px 0 18px; color: #777e83; font-size: 9px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.sale-product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.sale-product-card { min-width: 0; display: flex; flex-direction: column; border: 1px solid #dfe2e4; background: #fff; transition: transform .25s, box-shadow .25s; }
.sale-product-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px #10131516; }
.sale-product-image { position: relative; height: 310px; overflow: hidden; background: #101315; }
.sale-product-image img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; transition: transform .35s; }
.sale-product-card:hover .sale-product-image img { transform: scale(1.035); }
.sale-product-image > span { position: absolute; left: 16px; bottom: 16px; padding: 9px 12px; background: #101315; color: #fff; font-size: 8px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.sale-product-body { display: flex; flex: 1; flex-direction: column; padding: 25px 24px 22px; }
.sale-product-label { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; color: #ef2b21; font-size: 13px; font-weight: 850; letter-spacing: .08em; line-height: 1.2; text-transform: uppercase; }
.sale-product-label span { padding: 8px 10px; border: 1px solid #f3c5c2; background: #fff6f5; }
.sale-product-body h3.sale-product-part { margin: 28px 0 10px; font-size: clamp(30px, 2.3vw, 42px); font-weight: 650; line-height: 1; letter-spacing: -.045em; overflow-wrap: anywhere; }
.sale-product-body .sale-product-name { min-height: 38px; margin: 0 0 18px; color: #656d72; font-size: 12px; font-weight: 600; line-height: 1.5; letter-spacing: .015em; text-transform: uppercase; }
.sale-product-body .sale-product-description { margin: auto 0 0; padding-top: 8px; color: #7c8387; font-size: 11px; line-height: 1.65; }
.sale-product-footer { display: flex; justify-content: space-between; align-items: center; gap: 15px; padding: 20px 24px; border-top: 1px solid #e1e3e5; }
.sale-product-footer div { display: grid; gap: 3px; }
.sale-product-footer b { font-size: 18px; }
.sale-product-footer del { color: #9aa0a4; font-size: 11px; }
.sale-product-footer .sale-request { min-height: 45px; padding: 0 16px; border: 0; background: #ef2b21; color: #fff; font: inherit; font-size: 10px; font-weight: 750; cursor: pointer; }
.sale-product-footer .sale-request i { margin-left: 12px; font-family: Arial, sans-serif; font-style: normal; }
.sale-empty,.sale-loading { grid-column: 1 / -1; padding: 70px 30px; border: 1px solid #e0e2e4; text-align: center; color: #777e83; }
.sale-empty b { color: #101315; font-size: 28px; font-weight: 550; }
.sale-empty p { margin: 10px 0 0; }
@media (max-width: 980px) {
  .sale-filters { grid-template-columns: 1fr 1fr; }
  .sale-search { grid-column: span 2; }
  .sale-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .sale-filters { grid-template-columns: 1fr; margin-top: 40px; padding: 10px; }
  .sale-search { grid-column: auto; }
  .sale-filters input,.sale-filters select,.sale-filters button { min-height: 52px; font-size: 16px; }
  .sale-product-grid { grid-template-columns: 1fr; gap: 12px; }
  .sale-product-image { height: 280px; }
  .sale-product-label { font-size: 12px; }
  .sale-product-card:hover { transform: none; }
  .sale-product-body h3.sale-product-part { font-size: 34px; }
}
