.sc-products {
  --sc-blue: #4d79bc;
  --sc-ink: #252329;
  --sc-muted: #747178;
  --sc-line: #e9e5e9;
  margin: 0;
  padding: clamp(54px, 7vw, 88px) 24px;
  color: var(--sc-ink);
  background: #fff;
}
.sc-products * { box-sizing: border-box; }
.sc-products__inner { width: min(1180px, 100%); margin: 0 auto; }
.sc-products__heading { margin-bottom: 34px; text-align: center; }
.sc-products h2 { margin: 0 0 18px; font-size: clamp(32px, 4vw, 42px); font-weight: 450; line-height: 1.15; letter-spacing: -.025em; }
.sc-products__tabs { display: flex; justify-content: center; gap: 30px; overflow-x: auto; }
.sc-products__tabs button { padding: 8px 0; color: #68666a; border: 0; border-bottom: 2px solid transparent; background: transparent; font: inherit; font-size: 14px; cursor: pointer; }
.sc-products__tabs button.is-active { color: #252329; border-bottom-color: var(--sc-blue); }
.sc-products__grid { display: grid; grid-template-columns: repeat(var(--sc-columns), minmax(0, 1fr)); gap: 24px; }
.sc-product-card { overflow: hidden; min-width: 0; border: 1px solid #e5e5e5; border-radius: 0; background: white; box-shadow: 0 2px 8px rgba(0, 0, 0, .045); transition: transform .2s ease, box-shadow .2s ease; }
.sc-product-card[hidden] { display: none; }
.sc-product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(70, 33, 66, .12); }
.sc-product-card__visual { position: relative; }
.sc-product-card__image { display: block; overflow: hidden; aspect-ratio: 1 / 1; padding: 0; background: #f4f6f8; }
.sc-product-card__image img { width: 100%; height: 100%; margin: 0; object-fit: contain; transition: transform .3s ease; }
.sc-product-card:hover .sc-product-card__image img { transform: scale(1.025); }
.sc-product-card__placeholder { display: grid; place-items: center; align-content: center; width: 100%; height: 100%; color: white; background: linear-gradient(145deg, #69a4e1, #23589d); }
.sc-product-card__placeholder b { font-size: 74px; font-weight: 500; line-height: 1; }
.sc-product-card__placeholder small { margin-top: 12px; font-size: 10px; font-weight: 800; letter-spacing: .2em; }
.sc-product-card__sale { position: absolute; z-index: 2; top: 12px; left: 0; padding: 6px 11px; color: white; background: var(--sc-blue); font-size: 11px; font-weight: 700; }
.sc-product-card__tools { position: absolute; right: 10px; bottom: 10px; left: 10px; display: flex; justify-content: center; gap: 7px; opacity: 0; transform: translateY(8px); transition: .2s; }
.sc-product-card:hover .sc-product-card__tools { opacity: 1; transform: none; }
.sc-product-card__tools button { min-height: 34px; padding: 7px 11px; color: white; border: 0; background: #292929; font-size: 10px; font-weight: 700; cursor: pointer; }
.sc-product-card__tools button:last-child { min-width: 36px; color: #292929; background: white; }
.sc-product-card__tools button.is-saved { color: white; background: var(--sc-blue); }
.sc-product-card__body { padding: 16px 20px 22px; border-top: 1px solid #ededed; }
.sc-product-card__category { min-height: 20px; margin-bottom: 6px; font-size: 11px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.sc-product-card__category a { color: #777; text-decoration: none; }
.sc-product-card h3 { min-height: 48px; margin: 0 0 12px; font-size: 16px; line-height: 1.45; }
.sc-product-card h3 a { color: var(--sc-ink); text-decoration: none; }
.sc-product-card__rating { min-height: 17px; margin: -4px 0 5px; color: #eebd31; font-size: 12px; }
.sc-product-card__rating .star-rating { float: none; margin: 0; }
.sc-product-card__price { color: var(--sc-blue); font-size: 17px; font-weight: 700; }
.sc-product-card__price del { margin-right: 6px; color: #9d9aa0; font-size: 13px; font-weight: 500; }
.sc-products__empty { padding: 48px; color: var(--sc-muted); text-align: center; border: 1px dashed #d3cdd3; border-radius: 8px; background: white; }
.sc-products__footer { margin-top: 34px; text-align: center; }
.sc-products__footer a { display: inline-block; padding: 12px 22px; color: white; background: #292929; font-size: 12px; font-weight: 750; letter-spacing: .08em; text-decoration: none; }
.sc-wishlist__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.sc-wishlist__grid article { padding-bottom: 20px; border: 1px solid #e5e5e5; }
.sc-wishlist__grid h3, .sc-wishlist__grid .sc-product-card__price, .sc-wishlist__grid button { margin-right: 18px; margin-left: 18px; }
.sc-wishlist__image { display: block; aspect-ratio: 1; margin-bottom: 15px; background: #f4f6f8; }
.sc-wishlist__image img { width: 100%; height: 100%; object-fit: contain; }
.sc-wishlist__grid button { margin-top: 14px; padding: 8px 12px; border: 1px solid #333; background: white; cursor: pointer; }
@media (max-width: 960px) { .sc-products__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) {
  .sc-products { padding-inline: 16px; }
  .sc-products__tabs { justify-content: start; gap: 20px; }
  .sc-products__grid { grid-template-columns: 1fr; gap: 18px; }
  .sc-wishlist__grid { grid-template-columns: 1fr; }
}
