/* ICE-IT home (front-page) — pixel-perfect per /png/main.png */

.ice-home { background: #fff; }
.ice-home > section { width: 100%; }

/* Buttons (extensions — .ice-btn--block base lives in tokens.css) */
.ice-btn--lg { padding: 14px 28px; font-size: 1.0625rem; border-radius: 10px; }
.ice-btn--light { background: #fff; color: var(--ice-primary); border-color: #fff; }
.ice-btn--light:hover { background: var(--ice-primary-50); color: var(--ice-primary-600); }

/* Section heads — moved to components.css (shared with static pages). */

/* ============ HERO ============ */
.ice-hero {
  position: relative;
  background: #f3f8ff;
  padding: 34px 0 22px;
  overflow: hidden;
}
.ice-hero__deco {
  display: none;
}
.ice-hero__inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: start;
  gap: 16px;
}
.ice-hero__text {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  position: relative;
  isolation: isolate;
  padding-top: 260px;
}
.ice-hero__text::before {
  content: "";
  position: absolute;
  width: 552px;
  height: 552px;
  left: -78px;
  top: -92px;
  border-radius: 999px;
  opacity: .92;
  background: radial-gradient(circle, rgba(193, 213, 255, .98) 0%, rgba(205, 220, 255, .68) 28%, rgba(210, 223, 255, .18) 58%, rgba(210, 223, 255, 0) 78%);
  filter: blur(2px);
  pointer-events: none;
  z-index: -1;
}
.ice-hero__title {
  max-width: 438px;
  margin: 0 0 12px;
  font: 800 clamp(1.54rem, 1.92vw, 2.28rem)/1.04 var(--ice-font-sans);
  color: var(--ice-ink); letter-spacing: -0.01em;
}
.ice-hero__title span { color: var(--ice-primary); font-weight: 800; }
.ice-hero__lead {
  margin: 0 0 18px;
  font-size: 0.875rem;
  color: #5d6884;
  max-width: 340px;
  line-height: 1.35;
}
.ice-hero__catalog {
  background: #fff;
  border: 1px solid #e8edf6;
  border-radius: 10px;
  padding: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 6px;
  align-items: stretch;
  width: 100%;
  box-shadow: 0 10px 24px rgba(14, 26, 51, .08);
  margin-bottom: 20px;
}
.ice-hero__field {
  position: relative;
  display: flex; align-items: center;
}
.ice-hero__field-ico {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--ice-muted); display: inline-flex;
}
.ice-hero__field-ico svg { width: 14px; height: 14px; }
.ice-hero__field input {
  width: 100%;
  min-height: 34px;
  border: 1px solid #edf0f5;
  border-radius: 7px;
  background: #fff;
  padding: 8px 12px 8px 34px;
  font: 400 0.75rem/1.25 var(--ice-font-sans);
  color: var(--ice-ink); outline: 0;
}
.ice-hero__field input::placeholder { color: var(--ice-muted); }
.ice-hero__catalog button {
  min-height: 34px;
  padding: 0 18px;
  font-size: 0.6875rem;
  border-radius: 7px;
  white-space: nowrap;
 }

@media (min-width: 1440px) {
  .ice-hero__title {
    font-size: 2.16rem;
  }
}

@media (max-width: 1280px) {
  .ice-hero__text::before {
    width: 500px;
    height: 500px;
    left: -56px;
    top: -72px;
  }
  .ice-hero__inner {
    gap: 12px;
  }
  .ice-hero__title { max-width: 410px; }
  .ice-hero__media {
    flex-basis: 500px;
    max-width: 500px;
  }
}

@media (max-width: 1180px) {
  .ice-hero__catalog {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .ice-hero__text::before {
    width: 440px;
    height: 440px;
    left: -34px;
    top: -56px;
  }
  .ice-hero__inner {
    gap: 8px;
  }
  .ice-hero__title { max-width: 372px; }
  .ice-hero__media {
    flex-basis: 430px;
    max-width: 430px;
  }
}

.ice-hero__help { margin-top: 0; }
.ice-hero__help h3 {
  margin: 0 0 2px;
  color: var(--ice-ink);
  font: 700 0.875rem/1.3 var(--ice-font-sans);
}
.ice-hero__help p {
  margin: 0 0 14px;
  color: var(--ice-muted);
  font-size: 0.6875rem;
}
.ice-hero__help .ice-btn--lg {
  min-height: 30px;
  padding: 0 18px;
  font-size: 0.6875rem;
  border-radius: 4px;
}

.ice-hero__media {
  position: relative;
  flex: 0 0 548px;
  width: 100%;
  max-width: 548px;
  margin-left: auto;
  aspect-ratio: 800/1094;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a3858 0%, #0e1a33 100%);
  box-shadow: 0 18px 44px rgba(24, 45, 96, .12);
}
.ice-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.ice-hero__media::after {
  display: none;
}

@media (max-width: 992px) {
  .ice-hero__inner {
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }
  .ice-hero__text {
    flex: none;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .ice-hero__text::before { display: none; }
  .ice-hero__media {
    flex: none;
    max-width: none;
    width: 100%;
    aspect-ratio: 800/1094;
  }
  .ice-hero__title,
  .ice-hero__lead { max-width: 620px; }
  .ice-hero__lead { max-width: none; }
  .ice-hero__catalog {
    grid-template-columns: 1fr;
  }
  .ice-hero__help {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .ice-hero__media { aspect-ratio: 800/1094; }
  .ice-hero__catalog { padding: 8px; }
}

/* ============ HIGHLIGHTS (3 cards under hero) ============ */
.ice-highlights {
  background: #fff;
  padding: 22px 0 22px;
  border-bottom: 1px solid var(--ice-line);
}
.ice-highlights__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ice-highlight {
  display: flex; gap: var(--ice-s-4); align-items: center;
  background: #fff; border: 1px solid var(--ice-line);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: none;
}
.ice-highlight__icon {
  flex: 0 0 32px; width: 32px; height: 32px; border-radius: 9px;
  background: var(--ice-primary-50); color: var(--ice-primary);
  display: grid; place-items: center;
  background-size: 54%;
}
.ice-highlight__title {
  margin: 0 0 4px;
  font: 700 0.875rem/1.25 var(--ice-font-sans);
  color: var(--ice-ink);
}
.ice-highlight__text {
  margin: 0;
  color: var(--ice-muted);
  font-size: 0.6875rem;
  line-height: 1.35;
}
@media (max-width: 992px) { .ice-highlights__grid { grid-template-columns: 1fr; } }

/* ============ QUICK CATEGORIES (Что ищете?) ============ */
.ice-quick-cats {
  background: #fff;
  padding: clamp(48px, 5vw, 72px) 0;
}
.ice-quick-cats__grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: var(--ice-s-4);
}
.ice-quick-cat {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 10px;
  height: 100%;
  padding: 18px 12px 16px;
  background: #fff;
  border: 1px solid var(--ice-line); border-radius: var(--ice-r-3);
  color: var(--ice-ink); text-decoration: none;
  transition: .15s var(--ice-ease);
}
.ice-quick-cat:hover {
  border-color: var(--ice-primary);
  box-shadow: var(--ice-sh-1);
  color: var(--ice-primary);
  transform: translateY(-2px);
}
.ice-quick-cat__icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ice-primary-50); color: var(--ice-primary);
  display: grid; place-items: center;
  background-size: 38%;
}
.ice-quick-cat__name {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 600 0.875rem/1.3 var(--ice-font-sans);
}
.ice-quick-cat__count {
  margin-top: auto;
  font-size: 0.75rem;
  color: var(--ice-muted);
}
@media (max-width: 1100px) { .ice-quick-cats__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .ice-quick-cats__grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ FORM BAND (Ответим на вопросы — синяя полоса) ============ */
.ice-form-band {
  background: var(--ice-primary);
  background-image: linear-gradient(135deg, var(--ice-primary) 0%, var(--ice-primary-600) 100%);
  color: #fff;
  padding: clamp(40px, 5vw, 64px) 0;
}
.ice-form-band__inner {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.ice-form-band__text h2 {
  margin: 0 0 var(--ice-s-3); color: #fff;
  font: 700 clamp(1.4rem, 2vw, 1.875rem)/1.25 var(--ice-font-sans);
}
.ice-form-band__text h2 span { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,.55); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.ice-form-band__text p { margin: 0; color: rgba(255,255,255,.85); font-size: var(--ice-fs-md); }

.ice-form-band__form {
  display: grid; gap: var(--ice-s-3);
  background: #fff; border-radius: var(--ice-r-3);
  padding: var(--ice-s-5);
  box-shadow: var(--ice-sh-2);
}
.ice-form-band__form label { display: block; }
.ice-form-band__form input {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--ice-line); border-radius: var(--ice-r-2);
  font: 400 var(--ice-fs-base)/1.4 var(--ice-font-sans);
  background: #fff; color: var(--ice-ink);
}
.ice-form-band__form input:focus {
  outline: 2px solid var(--ice-primary-50); border-color: var(--ice-primary);
}
.ice-form-band__note {
  margin: 0; font-size: var(--ice-fs-xs); color: var(--ice-muted); text-align: center;
}
.ice-form-band__note a { color: var(--ice-primary); }

@media (max-width: 992px) {
  .ice-form-band__inner { grid-template-columns: 1fr; }
}

/* ============ POPULAR PRODUCTS (Самые популярные запчасти) ============
 * Uses the shared product card (.ice-card.ice-card--product) from components.css.
 * Only the grid column count is home-specific.
 */
.ice-home-products { padding: clamp(48px, 6vw, 80px) 0; background: #fff; }
.ice-home-products .ice-grid--products { grid-template-columns: repeat(4, 1fr); gap: var(--ice-s-5); }
@media (max-width: 1100px) { .ice-home-products .ice-grid--products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .ice-home-products .ice-grid--products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .ice-home-products .ice-grid--products { grid-template-columns: 1fr; } }
.ice-home-products__more { display: flex; justify-content: center; margin-top: var(--ice-s-6); }

/* ============ ADVANTAGES (6-card features grid) ============ */
.ice-advantages {
  background: var(--ice-soft);
  padding: clamp(40px, 5vw, 64px) 0;
}
.ice-advantages__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--ice-s-4);
}
.ice-advantage {
  display: flex; gap: var(--ice-s-4); align-items: flex-start;
  background: #fff; border: 1px solid var(--ice-line);
  border-radius: var(--ice-r-3);
  padding: var(--ice-s-5);
}
.ice-advantage__icon {
  flex: 0 0 36px; width: 36px; height: 36px; border-radius: 10px;
  background: var(--ice-primary-50); color: var(--ice-primary);
  display: grid; place-items: center;
  background-size: 50%;
}
.ice-advantage__body h3 {
  margin: 0 0 4px;
  font: 600 var(--ice-fs-base)/1.3 var(--ice-font-sans);
  color: var(--ice-ink);
}
.ice-advantage__body p {
  margin: 0; color: var(--ice-muted); font-size: var(--ice-fs-sm); line-height: 1.45;
}
@media (max-width: 992px) { .ice-advantages__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ice-advantages__grid { grid-template-columns: 1fr; } }

/* ============ NEWS (Свежие новости) ============ */
.ice-news { background: #fff; padding: clamp(48px, 6vw, 80px) 0; }
.ice-news__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--ice-s-5);
}
@media (max-width: 1100px) { .ice-news__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .ice-news__grid { grid-template-columns: 1fr; } }
.ice-news-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--ice-line);
  border-radius: var(--ice-r-3); overflow: hidden;
  transition: .15s var(--ice-ease);
}
.ice-news-card:hover { box-shadow: var(--ice-sh-2); transform: translateY(-2px); }
.ice-news-card__media {
  display: block; aspect-ratio: 4/3; background: var(--ice-soft);
  overflow: hidden;
}
.ice-news-card__media img { width: 100%; height: 100%; object-fit: cover; }
.ice-news-card__placeholder {
  display: block; width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a2a55 0%, #0e1a33 100%);
}
.ice-news-card__body { padding: var(--ice-s-4); display: flex; flex-direction: column; gap: var(--ice-s-2); }
.ice-news-card__meta {
  font-size: var(--ice-fs-xs); color: var(--ice-muted);
  display: flex; align-items: center; gap: 6px;
}
.ice-news-card__cat { color: var(--ice-primary); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.ice-news-card__title {
  margin: 0;
  font: 600 var(--ice-fs-base)/1.35 var(--ice-font-sans);
  color: var(--ice-ink);
}
.ice-news-card__title a { color: inherit; }
.ice-news-card__title a:hover { color: var(--ice-primary); }
.ice-news__more { display: flex; justify-content: center; margin-top: var(--ice-s-6); }

/* ============ MAP + CONTACTS (Как нас найти) ============ */
.ice-map { padding: clamp(48px, 6vw, 80px) 0; background: #fff; }
.ice-map .ice-section-head--center { margin-bottom: var(--ice-s-6); }
.ice-map__grid {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--ice-s-5);
}
@media (max-width: 992px) { .ice-map__grid { grid-template-columns: 1fr; } }
.ice-map__frame {
  border-radius: var(--ice-r-3); overflow: hidden; background: var(--ice-soft);
  min-height: 460px; box-shadow: var(--ice-sh-1);
}
.ice-map__frame iframe { display: block; width: 100%; height: 100%; min-height: 460px; border: 0; }
.ice-map__contacts {
  display: flex; flex-direction: column; gap: var(--ice-s-3);
}

.ice-contact-card {
  display: flex; gap: var(--ice-s-4); align-items: flex-start;
  background: #fff; border: 1px solid var(--ice-line);
  border-radius: var(--ice-r-3);
  padding: var(--ice-s-4) var(--ice-s-5);
  box-shadow: var(--ice-sh-1);
}
.ice-contact-card__icon {
  flex: 0 0 40px; width: 40px; height: 40px; border-radius: 10px;
  background: var(--ice-primary-50); color: var(--ice-primary);
  display: grid; place-items: center;
}
.ice-contact-card__label {
  font-size: var(--ice-fs-xs); color: var(--ice-muted);
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px;
}
.ice-contact-card__value {
  font-size: var(--ice-fs-base); color: var(--ice-ink); line-height: 1.45;
}
.ice-contact-card__row {
  font-size: var(--ice-fs-base); color: var(--ice-ink); line-height: 1.5;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.ice-contact-card__row a { color: var(--ice-ink); }
.ice-contact-card__row a:hover { color: var(--ice-primary); }
.ice-contact-card__hint { color: var(--ice-muted); font-size: var(--ice-fs-sm); }

/* ============ HOME CTA (Не нашли нужную запчасть?) ============ */
.ice-home-cta {
  background: var(--ice-primary);
  background-image: linear-gradient(135deg, var(--ice-primary) 0%, var(--ice-primary-600) 100%);
  color: #fff;
  padding: clamp(40px, 5vw, 64px) 0;
}
.ice-home-cta__inner {
  display: flex; flex-direction: column; gap: var(--ice-s-3); align-items: center;
  text-align: center;
}
.ice-home-cta h2 { margin: 0; color: #fff; font: 700 clamp(1.4rem, 2.2vw, 2rem)/1.2 var(--ice-font-sans); }
.ice-home-cta p { margin: 0; color: rgba(255,255,255,.9); max-width: 640px; }
.ice-home-cta .ice-btn { margin-top: var(--ice-s-2); }

/* ============ Inline SVG icons (background-image) ============ */
.ice-ico {
  display: inline-block;
  background-repeat: no-repeat; background-position: center; background-size: 48%;
}
.ice-ico--truck     { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231f48e8' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='7' width='11' height='8' rx='1.5'/><path d='M13 10h4l3 3v2h-7z'/><circle cx='7' cy='17' r='1.75'/><circle cx='18' cy='17' r='1.75'/></svg>"); }
.ice-ico--box       { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231f48e8' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3 5 7v10l7 4 7-4V7l-7-4Z'/><path d='M5 7l7 4 7-4'/><path d='M12 11v10'/></svg>"); }
.ice-ico--check     { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231f48e8' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='8.5'/><path d='m8.6 12.3 2.2 2.2 4.6-4.8'/></svg>"); }
.ice-ico--percent   { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231f48e8' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><line x1='18' y1='6' x2='6' y2='18'/><circle cx='7.5' cy='7.5' r='2.1'/><circle cx='16.5' cy='16.5' r='2.1'/></svg>"); }
.ice-ico--shield    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231f48e8' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3.2 18.5 6v5.1c0 4.1-2.7 7.4-6.5 8.7-3.8-1.3-6.5-4.6-6.5-8.7V6L12 3.2Z'/><path d='m9.2 11.7 1.9 1.9 3.7-3.9'/></svg>"); }
.ice-ico--clock     { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231f48e8' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='8.5'/><path d='M12 7.8v4.6l3.3 1.9'/></svg>"); }
.ice-ico--doc       { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231f48e8' stroke-width='1.85' stroke-linecap='round' stroke-linejoin='round'><rect x='4.5' y='7.5' width='15' height='10' rx='2'/><path d='M9 7.5V6.4A1.9 1.9 0 0 1 10.9 4.5h2.2A1.9 1.9 0 0 1 15 6.4v1.1'/><path d='M4.5 11.2h15'/></svg>"); }
.ice-ico--badge     { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231f48e8' stroke-width='1.85' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='9' r='3.6'/><path d='M9.3 12.2 7.8 18l4.2-2.3 4.2 2.3-1.5-5.8'/></svg>"); }
.ice-ico--medal     { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231f48e8' stroke-width='1.85' stroke-linecap='round' stroke-linejoin='round'><path d='M9 4.5h6l-1.4 4.1h-3.2L9 4.5Z'/><circle cx='12' cy='14.3' r='4.2'/><path d='m10.4 14.2 1.1 1.1 2.2-2.3'/></svg>"); }
.ice-ico--support   { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231f48e8' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><path d='M12 18.5c3.9 0 7-2.7 7-6.1s-3.1-6.1-7-6.1-7 2.7-7 6.1c0 1.3.5 2.5 1.4 3.5L5.5 19l3.4-1.5c.9.6 2 .9 3.1.9Z'/></svg>"); }
.ice-ico--pin       { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231f48e8' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><path d='M12 20s5.8-5.2 5.8-9.5A5.8 5.8 0 1 0 6.2 10.5C6.2 14.8 12 20 12 20Z'/><circle cx='12' cy='10.2' r='2.1'/></svg>"); }
.ice-ico--phone     { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231f48e8' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><path d='M18.6 15.6v2.1a1.8 1.8 0 0 1-2 1.8 13.8 13.8 0 0 1-6-2.1 13.5 13.5 0 0 1-4.2-4.2 13.8 13.8 0 0 1-2.1-6 1.8 1.8 0 0 1 1.8-2h2.1a1.8 1.8 0 0 1 1.7 1.5c.1.8.3 1.6.6 2.2a1.8 1.8 0 0 1-.4 1.8l-.9 1a11 11 0 0 0 4.2 4.2l1-.9a1.8 1.8 0 0 1 1.8-.4c.7.3 1.4.5 2.2.6a1.8 1.8 0 0 1 1.5 1.7Z'/></svg>"); }
.ice-ico--mail      { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231f48e8' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='6.2' width='16' height='11.6' rx='1.8'/><path d='m20 8-8 5-8-5'/></svg>"); }
.ice-ico--drop      { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231f48e8' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><path d='M12 4.2c2.9 4.2 5.1 6.7 5.1 9.5A5.1 5.1 0 0 1 12 18.8a5.1 5.1 0 0 1-5.1-5.1c0-2.8 2.2-5.3 5.1-9.5Z'/></svg>"); }
.ice-ico--pulse     { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231f48e8' stroke-width='1.85' stroke-linecap='round' stroke-linejoin='round'><path d='M8 15.5a4 4 0 1 1 8 0'/><path d='M12 11.5v2.5'/><circle cx='12' cy='15.5' r='1.15'/></svg>"); }
.ice-ico--filter    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231f48e8' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><path d='M5 6h14l-5.4 6.2v4.5l-3.2 1.5v-6Z'/></svg>"); }
.ice-ico--gear      { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231f48e8' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3.6 5.6 7.1v9.8l6.4 3.5 6.4-3.5V7.1L12 3.6Z'/><path d='M5.6 7.1 12 10.7l6.4-3.6'/><path d='M12 10.7v9.7'/></svg>"); }
.ice-ico--rubber    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231f48e8' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='5.8'/><circle cx='12' cy='12' r='2.4'/></svg>"); }
.ice-ico--pump      { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231f48e8' stroke-width='1.85' stroke-linecap='round' stroke-linejoin='round'><path d='M5.5 9h8.8'/><path d='M5.5 12h11.8'/><path d='M5.5 15h8.8'/><path d='m13.6 9 3 3-3 3'/></svg>"); }
