/*
 * iCelo visual shell
 * Isolated under .template-icelo so Imisu and Celo retain their existing UI.
 */

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  scroll-behavior: smooth;
}

body.template-icelo {
  --icelo-ink: #111113;
  --icelo-muted: #60636b;
  --icelo-soft: #888b94;
  --icelo-line: #e7e7ea;
  --icelo-faint: #f7f7f8;
  --icelo-card: #fff;
  --icelo-red: #ef171c;
  --icelo-red-dark: #cf1015;
  --icelo-red-wash: #fff2f2;
  --icelo-green: #0c9b43;
  --icelo-green-wash: #eefaf2;
  --icelo-shadow: 0 18px 50px rgba(20, 20, 27, .08);
  --icelo-tight: -.052em;
  min-width: 320px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  background: #fff;
  color: var(--icelo-ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@supports (overflow: clip) {
  html,
  body.template-icelo {
    overflow-x: clip;
  }
}

body.template-icelo *,
body.template-icelo *::before,
body.template-icelo *::after {
  box-sizing: border-box;
}

body.template-icelo a {
  color: inherit;
  text-decoration: none;
}

body.template-icelo button,
body.template-icelo input {
  font: inherit;
}

body.template-icelo button {
  color: inherit;
}

body.template-icelo img {
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icelo-container {
  width: min(100% - 48px, 1360px);
  margin: 0 auto;
}

.icelo-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2147483600;
  padding: 10px 13px;
  border-radius: 10px;
  background: var(--icelo-ink);
  color: #fff;
  font-weight: 800;
  transform: translateY(-150%);
}

.icelo-skip-link:focus {
  transform: translateY(0);
}

.template-icelo :focus-visible {
  outline: 3px solid rgba(239, 23, 28, .42);
  outline-offset: 3px;
}

/* Header */
.icelo-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--icelo-line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.template-preview-active .icelo-header {
  top: var(--frontend-template-preview-height, 52px);
}

.icelo-assurance {
  min-height: 36px;
  border-bottom: 1px solid #ededee;
  background: #fff;
}

.icelo-assurance__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 14px;
  min-height: 36px;
}

.icelo-assurance span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #454750;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.icelo-assurance strong {
  color: var(--icelo-ink);
  font-weight: 850;
}

.icelo-assurance svg {
  width: 15px;
  height: 15px;
  color: var(--icelo-green);
  flex: 0 0 auto;
}

.icelo-header__main {
  background: #fff;
}

.icelo-header__main-inner {
  display: grid;
  grid-template-columns: minmax(160px, .78fr) minmax(280px, 1.8fr) minmax(330px, .95fr);
  align-items: center;
  gap: 28px;
  min-height: 76px;
}

.icelo-logo {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: #070709;
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -.09em;
  line-height: 1;
}

.icelo-logo__image {
  display: block;
  width: auto;
  height: 36px;
  object-fit: contain;
}

.icelo-search {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 43px;
  overflow: hidden;
  border: 1px solid #e2e3e7;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(20, 20, 28, .02);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.icelo-search:focus-within {
  border-color: #b8b8be;
  box-shadow: 0 0 0 4px rgba(17, 17, 19, .06);
}

.icelo-search input {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0 6px 0 18px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--icelo-ink);
  font-size: 13px;
}

.icelo-search input:focus-visible,
.icelo-search button:focus-visible {
  outline: 0;
}

.icelo-search input::placeholder {
  color: #8b8e96;
}

.icelo-search button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.icelo-search button svg {
  width: 20px;
  height: 20px;
}

.icelo-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.icelo-header-action {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 3px;
  color: #202127;
  font-size: 10px;
  font-weight: 720;
  line-height: 1.1;
  white-space: nowrap;
}

.icelo-header-action svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.75;
}

.icelo-header-action:hover,
.icelo-nav a:hover {
  color: var(--icelo-red);
}

.icelo-cart-action em {
  position: absolute;
  top: -7px;
  right: -9px;
  display: grid;
  min-width: 17px;
  height: 17px;
  place-items: center;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--icelo-red);
  color: #fff;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.icelo-mobile-toggle {
  display: none;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 1px solid var(--icelo-line);
  border-radius: 12px;
  background: #fff;
}

.icelo-mobile-toggle svg {
  width: 22px;
  height: 22px;
}

.icelo-nav {
  border-top: 1px solid #f0f0f1;
  background: #fff;
}

.icelo-nav__inner {
  display: flex;
  align-items: center;
  min-height: 40px;
  gap: clamp(17px, 2.2vw, 37px);
}

.icelo-nav a,
body.template-icelo .icelo-nav .icelo-nav-menu__toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #17181c;
  font-family: inherit !important;
  font-size: 12px !important;
  font-weight: 760 !important;
  line-height: normal !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  white-space: nowrap;
  transition: color .16s ease;
}

.icelo-nav a svg {
  width: 14px;
  height: 14px;
}

.icelo-nav-menu {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}

.icelo-nav-menu__toggle {
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.icelo-nav-menu__toggle svg {
  width: 14px;
  height: 14px;
  transition: transform .18s ease;
}

.icelo-nav-menu__panel {
  position: absolute;
  z-index: 120;
  top: calc(100% - 1px);
  left: -18px;
  display: none;
  min-width: 205px;
  padding: 8px;
  border: 1px solid var(--icelo-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(20,20,25,.14);
}

.icelo-nav-menu__panel a {
  display: flex;
  min-height: 40px;
  padding: 0 11px;
  border-radius: 9px;
}

.icelo-nav-menu__panel a:hover,
.icelo-nav-menu__panel a:focus-visible {
  background: #fff1f1;
  color: var(--icelo-red);
}

.icelo-nav-menu:hover .icelo-nav-menu__panel,
.icelo-nav-menu:focus-within .icelo-nav-menu__panel,
.icelo-nav-menu.is-open .icelo-nav-menu__panel {
  display: block;
}

.icelo-nav-menu.is-open .icelo-nav-menu__toggle svg {
  transform: rotate(180deg);
}

.icelo-nav__apple {
  color: #050507 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Symbol", sans-serif;
  font-size: 20px !important;
}

.icelo-nav__cart {
  display: none !important;
}

.icelo-nav__offers b {
  padding: 2px 4px;
  border-radius: 4px;
  background: var(--icelo-red);
  color: #fff;
  font-size: 8px;
  letter-spacing: .04em;
}

/* Hero */
.icelo-main {
  overflow: hidden;
}

.icelo-hero {
  padding: 20px 0;
  background:
    radial-gradient(circle at 83% 36%, rgba(112, 119, 132, .055), transparent 20%),
    radial-gradient(circle at 13% 0%, rgba(19, 119, 210, .055), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fcfcfc 100%);
}

/* Contact modal */
.icelo-contact-dialog{width:min(920px,calc(100% - 32px));max-height:min(780px,calc(100vh - 32px));padding:0;overflow:auto;border:0;border-radius:26px;background:#fff;color:var(--icelo-ink);box-shadow:0 30px 90px rgba(14,15,20,.28)}
.icelo-contact-dialog::backdrop{background:rgba(14,15,20,.58);backdrop-filter:blur(5px)}
.icelo-contact-dialog__head{position:sticky;top:0;z-index:2;display:flex;align-items:flex-start;justify-content:space-between;gap:20px;padding:26px 28px 20px;border-bottom:1px solid var(--icelo-line);background:rgba(255,255,255,.96);backdrop-filter:blur(10px)}
.icelo-contact-dialog__head p{margin:0 0 5px;color:var(--icelo-red);font-size:10px;font-weight:950;letter-spacing:.1em}.icelo-contact-dialog__head h2{margin:0;font-size:28px;letter-spacing:-.04em}.icelo-contact-dialog__close{display:grid;width:42px;height:42px;flex:0 0 42px;place-items:center;border:1px solid var(--icelo-line);border-radius:50%;background:#fff;color:var(--icelo-ink);font-size:24px;cursor:pointer}.icelo-contact-dialog__body{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;padding:24px 28px 28px}.icelo-contact-card{display:flex;min-width:0;flex-direction:column;gap:7px;padding:19px;border:1px solid var(--icelo-line);border-radius:18px;background:#f8f8f9}.icelo-contact-card--wide{grid-column:1/-1}.icelo-contact-card small{color:var(--icelo-muted);font-size:10px;font-weight:850;text-transform:uppercase;letter-spacing:.06em}.icelo-contact-card strong{font-size:17px}.icelo-contact-card a{color:var(--icelo-red);font-weight:900;overflow-wrap:anywhere}.icelo-contact-card p{margin:0;color:var(--icelo-muted);font-size:12px;line-height:1.55}.icelo-contact-socials{display:flex;flex-wrap:wrap;gap:8px}.icelo-contact-socials a{padding:8px 11px;border-radius:999px;background:#fff}.icelo-contact-dialog__page{display:inline-flex;align-items:center;gap:7px;margin-top:5px;font-size:11px}.icelo-contact-dialog__page svg{width:15px;height:15px}
@media(max-width:680px){.icelo-contact-dialog{width:calc(100% - 18px);max-height:calc(100vh - 18px);border-radius:20px}.icelo-contact-dialog__head{padding:20px 18px 16px}.icelo-contact-dialog__head h2{font-size:24px}.icelo-contact-dialog__body{grid-template-columns:1fr;padding:16px 18px 20px}.icelo-contact-card--wide{grid-column:auto}}

.icelo-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(450px, .82fr);
  align-items: center;
  min-height: 462px;
  overflow: hidden;
  border: 1px solid #ededee;
  border-radius: 26px;
  background:
    radial-gradient(circle at 6% 4%, rgba(255,255,255,.96) 0 28%, transparent 52%),
    linear-gradient(115deg, #f9fafb 0%, #fff 46%, #f7f7f8 100%);
  box-shadow: var(--icelo-shadow);
}

.icelo-hero__copy {
  position: relative;
  z-index: 3;
  padding: clamp(38px, 5vw, 74px);
}

.icelo-eyebrow,
.icelo-section-kicker {
  margin: 0;
  color: var(--icelo-red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.icelo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid #f4dcdc;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #aa1519;
  letter-spacing: .02em;
  text-transform: none;
}

.icelo-eyebrow span,
.icelo-eyebrow svg {
  width: 14px;
  height: 14px;
  color: var(--icelo-green);
}

.icelo-hero h1,
.icelo-section-heading h2,
.icelo-promises__intro h2 {
  margin: 15px 0 0;
  color: #111113;
  font-size: clamp(39px, 5.3vw, 69px);
  font-weight: 900;
  letter-spacing: var(--icelo-tight);
  line-height: .98;
}

.icelo-hero h1 em {
  color: var(--icelo-red);
  font-style: normal;
}

.icelo-hero__lead {
  max-width: 560px;
  margin: 22px 0 0;
  color: #555860;
  font-size: 16px;
  line-height: 1.65;
}

.icelo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
}

.icelo-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 17px;
  border: 1px solid var(--icelo-red);
  border-radius: 10px;
  background: var(--icelo-red);
  color: #fff !important;
  box-shadow: 0 10px 18px rgba(239, 23, 28, .16);
  font-size: 13px;
  font-weight: 850;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.icelo-button:hover {
  border-color: var(--icelo-red-dark);
  background: var(--icelo-red-dark);
  box-shadow: 0 14px 22px rgba(239, 23, 28, .23);
  transform: translateY(-1px);
}

.icelo-button svg {
  width: 17px;
  height: 17px;
}

.icelo-button--secondary {
  border-color: #d9dade;
  background: #fff;
  color: #18191d !important;
  box-shadow: none;
}

.icelo-button--secondary:hover {
  border-color: #bfc0c5;
  background: #f9f9fa;
  box-shadow: none;
}

.icelo-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 29px 0 0;
  list-style: none;
}

.icelo-hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4c4e55;
  font-size: 12px;
  font-weight: 720;
}

.icelo-hero__proof svg {
  width: 16px;
  height: 16px;
  color: var(--icelo-green);
}

.icelo-hero__visual {
  --icelo-hero-surface:
    radial-gradient(circle at 57% 39%, rgba(255,255,255,.98), rgba(255,255,255,0) 43%),
    linear-gradient(132deg, #e9e9eb, #f6f6f7 45%, #ececef);
  position: relative;
  align-self: stretch;
  min-height: 462px;
  overflow: hidden;
  background: var(--icelo-hero-surface);
}

.icelo-hero__visual::before,
.icelo-hero-slide::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  opacity: .52;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent, #000 32%, #000 70%, transparent);
}

.icelo-hero-carousel {
  touch-action: pan-y;
}

.icelo-hero-carousel__slides {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.icelo-hero-slide {
  position: absolute;
  inset: 0;
  background: var(--icelo-hero-surface);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(5%, 0, 0) scale(.985);
  transition: opacity .48s ease, transform .62s cubic-bezier(.22, .75, .2, 1), visibility 0s linear .62s;
  visibility: hidden;
  will-change: opacity, transform;
}

.icelo-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0s;
  visibility: visible;
}

.icelo-hero-carousel__controls {
  position: absolute;
  z-index: 9;
  top: 28px;
  left: 28px;
  display: flex;
  min-height: 32px;
  align-items: center;
  gap: 7px;
  padding: 5px 7px;
  border: 1px solid rgba(232, 232, 235, .92);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 26px rgba(19, 19, 25, .09);
  backdrop-filter: blur(14px);
}

.icelo-hero-carousel__arrow {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #34363c;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.icelo-hero-carousel__arrow:hover,
.icelo-hero-carousel__arrow:focus-visible {
  background: var(--icelo-red);
  color: #fff;
  outline: 0;
  transform: scale(1.06);
}

.icelo-hero-carousel__arrow.is-prev svg { transform: rotate(180deg); }
.icelo-hero-carousel__arrow svg { width: 13px; height: 13px; }

.icelo-hero-carousel__dots {
  display: flex;
  align-items: center;
  gap: 4px;
}

.icelo-hero-carousel__dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c9cbd0;
  cursor: pointer;
  transition: width .22s ease, background .22s ease;
}

.icelo-hero-carousel__dots button.is-active {
  width: 18px;
  background: var(--icelo-red);
}

.icelo-hero-carousel__dots button:focus-visible {
  outline: 2px solid rgba(239, 23, 28, .35);
  outline-offset: 2px;
}

.icelo-hero-carousel__count {
  min-width: 25px;
  color: #777981;
  font-size: 9px;
  font-weight: 750;
  text-align: center;
}

.icelo-hero-carousel__count b {
  color: var(--icelo-ink);
  font-weight: 950;
}

.icelo-hero-product {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--icelo-ink);
  text-decoration: none;
}

.icelo-hero-product__halo {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.92) 0 34%, rgba(224,227,232,.52) 55%, transparent 74%);
  transform: translate(-50%, -50%);
}

.icelo-hero-product img {
  position: relative;
  display: block;
  width: min(92%, 500px);
  height: 430px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .35s ease;
}

.icelo-hero-product:hover img {
  transform: translateY(-5px) scale(1.015);
}

.icelo-hero-product__name {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 20px;
  display: grid;
  max-width: min(70%, 290px);
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 34px rgba(24,24,30,.11);
  backdrop-filter: blur(12px);
}

.icelo-hero-product__name small {
  color: var(--icelo-green);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.icelo-hero-product__name strong {
  margin-top: 3px;
  color: var(--icelo-ink);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
}

.icelo-hero-product__name em {
  margin-top: 2px;
  color: var(--icelo-muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.icelo-hero-product__name b {
  display: grid;
  margin-top: 7px;
  color: var(--icelo-ink);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: -.03em;
  line-height: 1.05;
}

.icelo-hero-product__name b span {
  margin-bottom: 2px;
  color: var(--icelo-muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0;
}

.icelo-hero__halo {
  position: absolute;
  top: 50%;
  left: 49%;
  width: 348px;
  height: 348px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #f7d0d0 0%, #f8dddd 35%, rgba(253, 245, 245, .18) 66%, transparent 68%);
  transform: translate(-50%, -50%);
}

.icelo-device-shadow {
  position: absolute;
  z-index: 1;
  bottom: 65px;
  left: 50%;
  width: 313px;
  height: 43px;
  border-radius: 50%;
  background: rgba(21, 21, 25, .25);
  filter: blur(18px);
  transform: translateX(-48%) rotate(-8deg);
}

.icelo-device {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 6px solid #26262a;
  border-radius: 37px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22), 19px 22px 38px rgba(16, 16, 19, .28);
}

.icelo-device--back {
  top: 70px;
  left: 38%;
  width: 197px;
  height: 338px;
  background: linear-gradient(139deg, #9a9ca0, #333438 55%, #18191d);
  transform: rotate(-15deg);
}

.icelo-device--back::after {
  position: absolute;
  right: -10px;
  bottom: -20px;
  width: 160px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at 20% 10%, rgba(255,255,255,.23), transparent 33%);
  content: "";
}

.icelo-device__camera {
  position: absolute;
  z-index: 2;
  top: 19px;
  left: 19px;
  display: grid;
  width: 79px;
  height: 79px;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding: 8px;
  border-radius: 22px;
  background: rgba(10, 10, 12, .72);
  box-shadow: 0 2px 5px rgba(0,0,0,.38);
}

.icelo-device__camera i {
  width: 25px;
  height: 25px;
  border: 3px solid #36383c;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, #657989, #202a34 45%, #060709 48% 68%, #162b3c 70%);
}

.icelo-device__camera i:nth-child(3) {
  grid-column: 1;
}

.icelo-device__mark {
  position: absolute;
  z-index: 1;
  top: 46%;
  left: 45%;
  color: rgba(8, 8, 10, .52);
  font-size: 47px;
  transform: rotate(15deg);
}

.icelo-device--front {
  top: 56px;
  left: 55%;
  width: 202px;
  height: 351px;
  background: linear-gradient(163deg, #101217 4%, #6b1728 40%, #ef6d84 71%, #f9cbcf 100%);
  transform: rotate(9deg);
}

.icelo-device--front::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 67% 25%, #ffdbe0 0 6%, transparent 25%),
    radial-gradient(circle at 28% 72%, rgba(74, 2, 37, .8) 0 11%, transparent 31%),
    linear-gradient(143deg, rgba(255,255,255,.25), transparent 40%);
  content: "";
}

.icelo-device__island {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 50%;
  width: 74px;
  height: 21px;
  border-radius: 999px;
  background: #09090b;
  transform: translateX(-50%);
}

.icelo-device__glow {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 30px;
  width: 80px;
  height: 142px;
  border-radius: 50%;
  background: rgba(255,255,255,.24);
  filter: blur(12px);
  transform: rotate(24deg);
}

.icelo-hero__photo-chip,
.icelo-hero__condition-card,
.icelo-hero__battery-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(232, 232, 235, .92);
  background: rgba(255,255,255,.89);
  box-shadow: 0 16px 28px rgba(19, 19, 25, .10);
  backdrop-filter: blur(14px);
}

.icelo-hero__photo-chip {
  top: 31px;
  right: 29px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #42444a;
  font-size: 11px;
  font-weight: 800;
}

.icelo-hero__photo-chip svg {
  width: 17px;
  height: 17px;
  color: var(--icelo-green);
}

.icelo-hero__condition-card {
  right: 28px;
  bottom: 132px;
  padding: 10px 13px;
  border-radius: 13px;
}

.icelo-hero__condition-card > span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 9px;
  background: var(--icelo-green-wash);
  color: var(--icelo-green);
}

.icelo-hero__condition-card svg {
  width: 18px;
  height: 18px;
}

.icelo-hero__condition-card strong,
.icelo-hero__battery-card strong {
  display: block;
  color: #24252b;
  font-size: 11px;
  font-weight: 900;
}

.icelo-hero__condition-card small,
.icelo-hero__battery-card small {
  display: block;
  margin-top: 1px;
  color: #777981;
  font-size: 10px;
  font-weight: 650;
}

.icelo-hero__battery-card {
  bottom: 28px;
  left: 29px;
  padding: 10px 13px;
  border-radius: 13px;
}

.icelo-battery-icon {
  display: block;
  width: 27px;
  height: 14px;
  border: 2px solid var(--icelo-green);
  border-radius: 4px;
  background: linear-gradient(90deg, var(--icelo-green) 0 82%, transparent 82%);
}

.icelo-battery-icon::after {
  display: block;
  width: 3px;
  height: 6px;
  margin: 2px 0 0 25px;
  border-radius: 0 2px 2px 0;
  background: var(--icelo-green);
  content: "";
}

/* Finder */
.icelo-finder {
  position: relative;
  z-index: 5;
  padding: 16px 0 34px;
  background: #fff;
}

.icelo-finder__panel {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--icelo-line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(20, 20, 25, .04);
}

.icelo-finder__title h2 {
  margin: 2px 0 0;
  font-size: 20px;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.icelo-finder__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.icelo-finder__links > a:not(.icelo-finder__all) {
  display: grid;
  min-height: 68px;
  grid-template-columns: 32px 1fr;
  column-gap: 9px;
  align-items: center;
  padding: 10px;
  border: 1px solid #ececef;
  border-radius: 12px;
  background: #fff;
  transition: border-color .17s ease, box-shadow .17s ease, transform .17s ease;
}

.icelo-finder__links > a:not(.icelo-finder__all):hover {
  border-color: #d9d9de;
  box-shadow: 0 10px 18px rgba(18, 18, 25, .07);
  transform: translateY(-2px);
}

.icelo-finder__links > a > span {
  display: grid;
  width: 32px;
  height: 32px;
  grid-row: span 2;
  place-items: center;
  border-radius: 9px;
  background: #f7f7f8;
}

.icelo-finder__links svg {
  width: 18px;
  height: 18px;
}

.icelo-finder__links b {
  align-self: end;
  font-size: 12px;
  font-weight: 850;
}

.icelo-finder__links small {
  align-self: start;
  color: #777a82;
  font-size: 10px;
  line-height: 1.25;
}

.icelo-finder__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 68px;
  padding: 10px;
  border-radius: 12px;
  background: #1d1e23;
  color: #fff !important;
  font-size: 12px;
  font-weight: 850;
}

.icelo-finder__all:hover {
  background: var(--icelo-red);
}

.icelo-finder__all svg {
  width: 17px;
  height: 17px;
}

/* Safe catalogue state */
.icelo-catalog {
  padding: 44px 0 68px;
  background: linear-gradient(180deg, #fff, #fbfbfc);
}

.icelo-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.icelo-section-heading h2,
.icelo-promises__intro h2 {
  margin-top: 7px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.03;
}

.icelo-section-heading--center {
  justify-content: center;
  text-align: center;
}

.icelo-section-heading--center p:last-child {
  max-width: 600px;
  margin: 11px auto 0;
  color: var(--icelo-muted);
  font-size: 14px;
  line-height: 1.6;
}

.icelo-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid #d7ecde;
  border-radius: 999px;
  background: var(--icelo-green-wash);
  color: #23723e;
  font-size: 11px;
  font-weight: 820;
  white-space: nowrap;
}

.icelo-live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--icelo-green);
  box-shadow: 0 0 0 4px rgba(12, 155, 67, .12);
}

.icelo-live-pill.is-live {
  border-color: #bde8ca;
  background: #edfbf1;
  color: #166b35;
}

/* Exact-device cards. The ERP is the only source for these fields. */
.icelo-category-catalog {
  display: grid;
  gap: 42px;
}

.icelo-category-row {
  min-width: 0;
}

.icelo-category-row__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.icelo-category-row__heading p {
  margin: 0 0 4px;
  color: var(--icelo-red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.icelo-category-row__heading h3 {
  margin: 0;
  color: var(--icelo-ink);
  font-size: 25px;
  font-weight: 950;
  letter-spacing: -.045em;
}

.icelo-category-carousel {
  min-width: 0;
  overflow: hidden;
}

.icelo-category-carousel__track {
  --icelo-carousel-shadow-gutter: 24px;
  display: grid;
  grid-auto-columns: calc((100% - 52px) / 5);
  grid-auto-flow: column;
  gap: 13px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 1px var(--icelo-carousel-shadow-gutter) 38px;
  scroll-behavior: smooth;
  scroll-padding-inline: var(--icelo-carousel-shadow-gutter);
  scroll-snap-type: x mandatory;
  scrollbar-color: #d5d6da transparent;
  scrollbar-width: thin;
  touch-action: pan-x pan-y;
}

.icelo-category-carousel__track .icelo-unit-card {
  scroll-snap-align: start;
}

.icelo-category-carousel__controls {
  display: flex;
  gap: 7px;
}

.icelo-category-carousel__controls button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  border: 1px solid #dedee2;
  border-radius: 50%;
  background: #fff;
  color: var(--icelo-ink);
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, color .16s ease;
}

.icelo-category-carousel__controls button:hover,
.icelo-category-carousel__controls button:focus-visible {
  border-color: var(--icelo-red);
  background: var(--icelo-red);
  color: #fff;
  outline: 0;
}

.icelo-category-carousel__controls button:disabled {
  border-color: #ededf0;
  background: #f7f7f8;
  color: #bbbcc2;
  cursor: default;
}

.icelo-category-carousel__controls button svg {
  width: 15px;
  height: 15px;
}

.icelo-category-carousel__controls .is-prev svg {
  transform: rotate(180deg);
}

.icelo-category-row__empty {
  margin: 0;
  padding: 22px;
  border: 1px dashed #dfe0e4;
  border-radius: 14px;
  background: #fafafb;
  color: var(--icelo-muted);
  font-size: 12px;
}

.icelo-unit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 13px;
}

.icelo-unit-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e5e5e8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(239, 23, 28, .09);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.icelo-unit-card:hover {
  border-color: #f0c4c6;
  box-shadow: 0 16px 30px rgba(239, 23, 28, .18);
  transform: none;
}

.icelo-unit-card__image {
  position: relative;
  display: grid;
  min-height: 214px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid #f0f0f1;
  background:
    radial-gradient(circle at 50% 42%, rgba(239, 23, 28, .07), transparent 38%),
    linear-gradient(145deg, #fafafa, #f3f3f5);
}

.icelo-unit-card__image img {
  width: 100%;
  height: 214px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .24s ease;
}

.icelo-unit-card:hover .icelo-unit-card__image img {
  transform: none;
}

.icelo-unit-card__image-placeholder {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid #e1e1e4;
  border-radius: 15px;
  background: #fff;
  color: #7b7e86;
}

.icelo-unit-card__image-placeholder svg { width: 24px; height: 24px; }

.icelo-unit-card__real-photo,
.icelo-unit-card__battery {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 22px;
  padding: 4px 7px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 4px 12px rgba(20,20,26,.08);
  color: #4b4e55;
  font-size: 9px;
  font-weight: 850;
}

.icelo-unit-card__real-photo { top: 9px; left: 9px; }
.icelo-unit-card__real-photo svg { width: 12px; height: 12px; color: var(--icelo-green); }
.icelo-unit-card__real-photo--unavailable { color: #6b7280; }
.icelo-unit-card__real-photo--unavailable svg { color: #6b7280; }
.icelo-unit-card__battery { right: 9px; bottom: 9px; color: #176b37; }

.icelo-unit-card__body {
  display: flex;
  min-height: 181px;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 14px;
}

.icelo-unit-card__eyebrow {
  margin: 0;
  color: #15803d;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.25;
}

.icelo-unit-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 5px 0 0;
  color: #17181c;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.icelo-unit-card__meta {
  overflow: hidden;
  margin: 4px 0 0;
  color: #73767f;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.icelo-unit-card__facts {
  display: grid;
  gap: 4px;
  margin-top: 12px;
}

.icelo-unit-card__facts span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #4d5057;
  font-size: 10px;
  font-weight: 680;
}

.icelo-unit-card__facts svg {
  width: 13px;
  height: 13px;
  color: var(--icelo-green);
}

.icelo-unit-card__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 9px;
  margin-top: auto;
  padding-top: 13px;
}

.icelo-unit-card__bottom small {
  display: block;
  color: #7a7c84;
  font-size: 9px;
  font-weight: 650;
}

.icelo-unit-card__bottom strong {
  display: block;
  margin-top: 2px;
  color: #16171b;
  font-size: 18px;
  font-weight: 920;
  letter-spacing: -.045em;
  line-height: 1.05;
  white-space: nowrap;
}

.icelo-unit-card__photos {
  color: #777a82;
  font-size: 9px;
  font-weight: 750;
  text-align: right;
}

.icelo-catalog__empty {
  position: relative;
  display: grid;
  min-height: 273px;
  grid-template-columns: minmax(295px, .72fr) minmax(0, 1.08fr);
  gap: 22px;
  overflow: hidden;
  border: 1px solid #e7e7ea;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 13px 30px rgba(20, 20, 25, .05);
}

.icelo-catalog__illustration {
  position: relative;
  min-height: 273px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 43%, rgba(239, 23, 28, .15), transparent 28%),
    linear-gradient(132deg, #f7f7f8, #f0f0f2);
}

.icelo-mini-device {
  position: absolute;
  bottom: -15px;
  width: 116px;
  height: 211px;
  border: 5px solid #24252a;
  border-radius: 24px;
  box-shadow: 10px 17px 22px rgba(0,0,0,.17);
}

.icelo-mini-device::before {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 45px;
  height: 13px;
  border-radius: 999px;
  background: #101014;
  content: "";
  transform: translateX(-50%);
}

.icelo-mini-device--one {
  left: 17%;
  background: linear-gradient(154deg, #9dd5f3, #344b6e 52%, #1d2435);
  transform: rotate(-18deg);
}

.icelo-mini-device--two {
  left: 42%;
  z-index: 2;
  background: linear-gradient(155deg, #ffced0, #e8202b 49%, #661017);
  transform: rotate(4deg);
}

.icelo-mini-device--three {
  right: 13%;
  background: linear-gradient(153deg, #c9cabf, #6a6c69 58%, #363734);
  transform: rotate(17deg);
}

.icelo-catalog__spark {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--icelo-red);
  box-shadow: 0 9px 15px rgba(20,20,25,.1);
  font-size: 21px;
  font-weight: 300;
}

.icelo-catalog__spark--one { top: 35px; left: 16%; }
.icelo-catalog__spark--two { right: 16%; bottom: 42px; }

.icelo-catalog__empty-copy {
  align-self: center;
  max-width: 665px;
  padding: 36px 48px 36px 16px;
}

.icelo-empty-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--icelo-red-wash);
  color: var(--icelo-red);
}

.icelo-empty-icon svg { width: 21px; height: 21px; }

.icelo-catalog__empty-copy h3 {
  margin: 15px 0 0;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.1;
}

.icelo-catalog__empty-copy p {
  margin: 11px 0 0;
  color: var(--icelo-muted);
  font-size: 13px;
  line-height: 1.62;
}

.icelo-empty-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin-top: 18px;
}

.icelo-empty-points span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #3e4147;
  font-size: 11px;
  font-weight: 800;
}

.icelo-empty-points svg {
  width: 15px;
  height: 15px;
  color: var(--icelo-green);
}

/* Verification */
.icelo-how {
  padding: 72px 0;
  border-top: 1px solid #eeeeef;
  border-bottom: 1px solid #eeeeef;
  background: #fff;
}

.icelo-check-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 41px 0 0;
  list-style: none;
}

.icelo-check-steps li {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-width: 0;
  padding: 0 12px;
  text-align: center;
}

.icelo-check-steps li:not(:last-child)::after {
  position: absolute;
  top: 26px;
  right: calc(-50% + 35px);
  left: calc(50% + 35px);
  border-top: 1px dashed #d7d7da;
  content: "";
}

.icelo-check-steps li > span {
  position: absolute;
  top: -5px;
  left: calc(50% + 17px);
  color: #b8b9bf;
  font-size: 10px;
  font-weight: 800;
}

.icelo-check-steps i {
  display: grid;
  width: 53px;
  height: 53px;
  place-items: center;
  border: 1px solid #f2d1d2;
  border-radius: 17px;
  background: #fff6f6;
  color: var(--icelo-red);
}

.icelo-check-steps i svg { width: 24px; height: 24px; }

.icelo-check-steps strong {
  display: block;
  margin-top: 15px;
  color: #1d1e22;
  font-size: 13px;
  font-weight: 900;
}

.icelo-check-steps p {
  max-width: 150px;
  margin: 5px auto 0;
  color: #777981;
  font-size: 11px;
  line-height: 1.45;
}

/* Promises */
.icelo-promises {
  padding: 70px 0 76px;
  background:
    radial-gradient(circle at 10% 88%, rgba(239,23,28,.04), transparent 25%),
    #fafafa;
}

.icelo-promises__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.icelo-promises__intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.icelo-promises__intro h2 {
  font-size: 31px;
}

.icelo-promises__intro > p:last-child {
  max-width: 650px;
  margin: 13px auto 0;
  color: var(--icelo-muted);
  font-size: 13px;
  line-height: 1.62;
}

.icelo-promises article {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 166px;
  padding: 23px;
  border: 1px solid #e9e9eb;
  border-radius: 19px;
  background: #fff;
  text-align: center;
  transition: box-shadow .18s ease, transform .18s ease;
}

.icelo-promises article:hover {
  box-shadow: var(--icelo-shadow);
  transform: translateY(-2px);
}

.icelo-promises article > span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 12px;
  background: var(--icelo-green-wash);
  color: var(--icelo-green);
}

.icelo-promises article:nth-of-type(2) > span { background: var(--icelo-red-wash); color: var(--icelo-red); }
.icelo-promises article:nth-of-type(3) > span { background: #f4f4f5; color: #35363b; }
.icelo-promises article:nth-of-type(4) > span { background: #f1f6fd; color: #3477bd; }
.icelo-promises article:nth-of-type(5) > span { background: #fff6e8; color: #b56b00; }
.icelo-promises article:nth-of-type(6) > span { background: #f3efff; color: #7454bd; }

.icelo-promises article svg { width: 21px; height: 21px; }

.icelo-promises article h3 {
  margin: 13px 0 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.icelo-promises article p {
  margin: 6px 0 0;
  color: #74767e;
  font-size: 11px;
  line-height: 1.5;
}

/* Produse vizualizate recent */
.icelo-recently-viewed[hidden] { display: none; }

.icelo-recently-viewed {
  position: relative;
  z-index: 2;
  padding: 32px 0 28px;
  border-top: 1px solid var(--icelo-line);
  background: linear-gradient(180deg, #fbfbfc 0%, #f5f5f7 100%);
}

.icelo-recently-viewed__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 17px;
  min-height: 48px;
  text-align: center;
}

.icelo-recently-viewed__head p {
  margin: 0 0 4px;
  color: var(--icelo-red);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .11em;
}

.icelo-recently-viewed__head h2 {
  margin: 0;
  color: var(--icelo-ink);
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -.025em;
}

.icelo-recently-viewed__clear {
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid #dedfe3;
  border-radius: 50%;
  background: #fff;
  color: var(--icelo-muted);
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}

.icelo-recently-viewed__clear svg { width: 18px; height: 18px; }

.icelo-recently-viewed__clear::after {
  position: absolute;
  right: 0;
  bottom: calc(100% + 9px);
  width: max-content;
  max-width: 210px;
  padding: 7px 9px;
  border-radius: 8px;
  background: #1c1c21;
  color: #fff;
  content: attr(data-label);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity .16s ease, transform .16s ease;
}

.icelo-recently-viewed__clear:hover,
.icelo-recently-viewed__clear:focus-visible {
  border-color: var(--icelo-red);
  background: var(--icelo-red);
  box-shadow: 0 8px 18px rgba(239, 23, 28, .2);
  color: #fff;
  outline: 0;
  transform: translateY(-50%) scale(1.05);
}

.icelo-recently-viewed__clear:hover::after,
.icelo-recently-viewed__clear:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.icelo-recently-viewed__grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 92px));
  gap: 11px;
  align-items: start;
  justify-content: center;
}

.icelo-recently-viewed__item {
  position: relative;
  min-width: 0;
  color: var(--icelo-ink);
  text-align: center;
}

.icelo-recently-viewed__thumb {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid #e0e1e5;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(20, 20, 27, .045);
  transition: border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}

.icelo-recently-viewed__thumb img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  mix-blend-mode: multiply;
}

.icelo-recently-viewed__empty {
  color: #92949c;
  font-size: 11px;
  font-weight: 900;
}

.icelo-recently-viewed__label {
  display: block;
  overflow: hidden;
  margin-top: 7px;
  color: #3f4149;
  font-size: 9px;
  font-weight: 850;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.icelo-recently-viewed__tooltip {
  position: absolute;
  z-index: 20;
  bottom: calc(100% + 13px);
  left: 50%;
  display: grid;
  width: 220px;
  gap: 7px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 13px;
  background: rgba(18, 18, 22, .96);
  box-shadow: 0 18px 40px rgba(14, 14, 18, .24);
  color: #fff;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 7px) scale(.96);
  transition: opacity .15s ease, transform .15s ease;
}

.icelo-recently-viewed__tooltip::after {
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 13px;
  height: 13px;
  border-right: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  background: rgba(18, 18, 22, .96);
  content: '';
  transform: translateX(-50%) rotate(45deg);
}

.icelo-recently-viewed__tooltip > strong {
  overflow: hidden;
  font-size: 12px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.icelo-recently-viewed__tooltip > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #d0d1d6;
  font-size: 10px;
}

.icelo-recently-viewed__tooltip small { color: #999ba4; font-size: 9px; }
.icelo-recently-viewed__tooltip b { color: #fff; font-size: 10px; font-weight: 900; }

.icelo-recently-viewed__item:hover,
.icelo-recently-viewed__item:focus-visible { z-index: 21; color: var(--icelo-ink); }
.icelo-recently-viewed__item:hover .icelo-recently-viewed__thumb,
.icelo-recently-viewed__item:focus-visible .icelo-recently-viewed__thumb {
  border-color: var(--icelo-red);
  box-shadow: 0 10px 22px rgba(239, 23, 28, .12);
  transform: translateY(-2px);
}
.icelo-recently-viewed__item:hover .icelo-recently-viewed__tooltip,
.icelo-recently-viewed__item:focus-visible .icelo-recently-viewed__tooltip {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

/* Exemplar indisponibil */
.icelo-exact-page--unavailable {
  min-height: 620px;
  padding: 56px 0 78px;
  background:
    radial-gradient(circle at 50% 4%, rgba(239, 23, 28, .075), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f8f8fa 100%);
}

.icelo-exact-page--unavailable .icelo-exact-empty {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #e6e6e9;
  border-radius: 28px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 70px rgba(20, 20, 27, .08);
}

.icelo-exact-page--unavailable .icelo-exact-empty::before,
.icelo-exact-page--unavailable .icelo-exact-empty::after {
  position: absolute;
  border-radius: 50%;
  content: '';
  pointer-events: none;
}

.icelo-exact-page--unavailable .icelo-exact-empty::before {
  top: -110px;
  left: -95px;
  width: 245px;
  height: 245px;
  background: rgba(239, 23, 28, .045);
}

.icelo-exact-page--unavailable .icelo-exact-empty::after {
  top: 105px;
  right: -70px;
  width: 170px;
  height: 170px;
  border: 28px solid rgba(29, 167, 83, .045);
}

.icelo-exact-empty__hero {
  position: relative;
  z-index: 1;
  padding: 50px 44px 38px;
  text-align: center;
}

.icelo-exact-empty__status {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  margin-bottom: 17px;
  padding: 5px 10px;
  border: 1px solid #bfe8cc;
  border-radius: 999px;
  background: #f0fbf4;
  color: #14813b;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .1em;
}

.icelo-exact-empty__icon {
  display: grid;
  width: 70px;
  height: 70px;
  max-width: 70px;
  max-height: 70px;
  place-items: center;
  margin: 0 auto 18px;
  overflow: hidden;
  border-radius: 23px;
  background: var(--icelo-red-wash);
  box-shadow: 0 14px 30px rgba(239, 23, 28, .11);
  color: var(--icelo-red);
}

.icelo-exact-empty__icon svg {
  display: block !important;
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  flex: 0 0 32px !important;
}

.icelo-exact-page--unavailable .icelo-section-kicker { margin: 0; }

.icelo-exact-page--unavailable h1 {
  max-width: 680px;
  margin: 9px auto 0;
  color: var(--icelo-ink);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.icelo-exact-empty__lead {
  max-width: 650px;
  margin: 17px auto 0;
  color: var(--icelo-muted);
  font-size: 14px;
  line-height: 1.65;
}

.icelo-exact-empty__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.icelo-exact-empty__secondary {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  border: 1px solid var(--icelo-line);
  border-radius: 11px;
  background: #fff;
  color: var(--icelo-ink);
  font-size: 11px;
  font-weight: 900;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.icelo-exact-empty__secondary:hover,
.icelo-exact-empty__secondary:focus-visible {
  border-color: #bcbec5;
  box-shadow: 0 8px 20px rgba(20, 20, 27, .08);
  color: var(--icelo-ink);
  outline: 0;
  transform: translateY(-1px);
}

.icelo-exact-empty__suggestions {
  position: relative;
  z-index: 1;
  padding: 30px 34px 34px;
  border-top: 1px solid var(--icelo-line);
  background: #fbfbfc;
  text-align: center;
}

.icelo-exact-empty__suggestions > p {
  margin: 0;
  color: var(--icelo-red);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .11em;
}

.icelo-exact-empty__suggestions h2 {
  margin: 7px 0 0;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.035em;
}

.icelo-exact-empty__categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-top: 20px;
}

.icelo-exact-empty__categories a {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 13px;
  border: 1px solid #e1e2e6;
  border-radius: 14px;
  background: #fff;
  color: var(--icelo-ink);
  text-align: left;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.icelo-exact-empty__categories a:hover,
.icelo-exact-empty__categories a:focus-visible {
  border-color: #f0a8aa;
  box-shadow: 0 9px 22px rgba(239, 23, 28, .09);
  color: var(--icelo-ink);
  outline: 0;
  transform: translateY(-2px);
}

.icelo-exact-empty__categories span,
.icelo-exact-empty__categories strong,
.icelo-exact-empty__categories small { display: block; min-width: 0; }
.icelo-exact-empty__categories strong { font-size: 13px; font-weight: 950; }
.icelo-exact-empty__categories small { margin-top: 3px; color: var(--icelo-muted); font-size: 9px; }
.icelo-exact-empty__categories svg { width: 17px; height: 17px; flex: 0 0 17px; color: var(--icelo-red); }

.icelo-exact-empty__trust {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--icelo-line);
  background: #fff;
}

.icelo-exact-empty__trust span {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #4f525a;
  font-size: 10px;
  font-weight: 850;
}

.icelo-exact-empty__trust span + span { border-left: 1px solid var(--icelo-line); }
.icelo-exact-empty__trust svg { width: 16px; height: 16px; color: var(--icelo-green); }

@media (max-width: 700px) {
  .icelo-exact-page--unavailable { min-height: 0; padding: 24px 0 46px; }
  .icelo-exact-page--unavailable .icelo-exact-empty { border-radius: 21px; }
  .icelo-exact-empty__hero { padding: 35px 20px 29px; }
  .icelo-exact-empty__icon { width: 60px; height: 60px; border-radius: 19px; }
  .icelo-exact-empty__icon svg { width: 28px !important; height: 28px !important; max-width: 28px !important; max-height: 28px !important; }
  .icelo-exact-page--unavailable h1 { font-size: 34px; }
  .icelo-exact-empty__lead { font-size: 12px; }
  .icelo-exact-empty__actions { align-items: stretch; flex-direction: column; }
  .icelo-exact-empty__actions > a { width: 100%; }
  .icelo-exact-empty__suggestions { padding: 27px 16px 20px; }
  .icelo-exact-empty__suggestions h2 { font-size: 20px; }
  .icelo-exact-empty__categories { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .icelo-exact-empty__trust { grid-template-columns: 1fr; padding: 5px 17px; }
  .icelo-exact-empty__trust span { min-height: 41px; justify-content: flex-start; }
  .icelo-exact-empty__trust span + span { border-top: 1px solid var(--icelo-line); border-left: 0; }
}

/* Footer */
.icelo-footer {
  padding: 44px 0 20px;
  background: #121216;
  color: #fff;
}

.icelo-footer__help {
  display: grid;
  grid-template-columns: 47px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 17px;
  background: linear-gradient(100deg, #1e1e24, #17171c);
}

.icelo-footer__help-icon {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border-radius: 14px;
  background: rgba(239,23,28,.15);
  color: #ff6d70;
}

.icelo-footer__help-icon svg { width: 24px; height: 24px; }

.icelo-footer__help h2 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.025em;
}

.icelo-footer__help p {
  margin: 4px 0 0;
  color: #b5b5bd;
  font-size: 12px;
}

.icelo-footer__help .icelo-button {
  min-height: 40px;
  padding: 9px 13px;
  border-color: rgba(255,255,255,.23);
  background: transparent;
  color: #fff !important;
  box-shadow: none;
}

.icelo-footer__help .icelo-button:hover {
  border-color: #fff;
  background: #fff;
  color: #17171c !important;
}

.icelo-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(120px, .6fr));
  gap: 32px;
  padding: 47px 0 37px;
}

.icelo-logo--footer {
  color: #fff;
  font-size: 31px;
}

.icelo-logo--footer .icelo-logo__image {
  height: 34px;
}

.icelo-logo--footer.is-custom {
  padding: 7px 10px;
  border-radius: 9px;
  background: #fff;
}

.icelo-footer__brand > p {
  max-width: 335px;
  margin: 15px 0 0;
  color: #acacb5;
  font-size: 12px;
  line-height: 1.65;
}

.icelo-footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 15px;
  margin-top: 16px;
}

.icelo-footer__contact a {
  color: #fff;
  font-size: 12px;
  font-weight: 750;
}

.icelo-footer__contact a:hover,
.icelo-footer__column a:hover { color: #ff7d80; }

.icelo-footer__column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.icelo-footer__column h3 {
  margin: 0 0 3px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.icelo-footer__column a {
  color: #acacb4;
  font-size: 12px;
  transition: color .15s ease;
}

.icelo-footer__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.icelo-footer__trust span {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #d8d8dc;
  font-size: 11px;
  font-weight: 760;
}

.icelo-footer__trust span + span { border-left: 1px solid rgba(255,255,255,.12); }
.icelo-footer__trust svg { width: 19px; height: 19px; color: #62d98d; }

.icelo-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.icelo-footer__legal-copy {
  display: grid;
  gap: 4px;
}

.icelo-footer__legal-copy strong {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.icelo-footer__legal-copy span {
  color: #8f8f98;
  font-size: 10px;
}

.icelo-footer__legal-links {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 10px;
}

.icelo-footer__legal-links > a {
  display: grid;
  min-width: 142px;
  min-height: 58px;
  place-items: center;
  overflow: hidden;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: #fff;
  transition: border-color .16s ease, transform .16s ease;
}

.icelo-footer__legal-links > a:hover {
  border-color: rgba(255,255,255,.55);
  transform: translateY(-1px);
}

.icelo-footer__legal-links img {
  display: block;
  width: auto;
  max-width: 190px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

.icelo-footer__legal-fallback {
  color: #22232a;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .01em;
}

.icelo-footer__legal-fallback b {
  color: var(--icelo-red);
  font-weight: 950;
}

.icelo-footer__company {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 13px;
  padding-top: 17px;
  color: #85858e;
  font-size: 10px;
  line-height: 1.5;
}

.icelo-footer__company strong { color: #b9b9c0; }

.icelo-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 19px;
  color: #85858e;
  font-size: 10px;
}

/* Cookie consent retains the platform logic, styled as part of this tenant. */
.template-icelo .cookie-consent-card {
  border-color: #e8e8eb;
  border-radius: 16px;
}

.template-icelo .cookie-btn.primary {
  border-color: var(--icelo-red);
  background: var(--icelo-red);
}

.template-icelo .cookie-btn.primary:hover {
  background: var(--icelo-red-dark);
}

@media (max-width: 1130px) {
  .icelo-header__main-inner {
    grid-template-columns: minmax(140px, .65fr) minmax(245px, 1.4fr) auto;
    gap: 18px;
  }

  .icelo-header-actions { gap: 13px; }
  .icelo-header-action--desktop { display: none; }
  .icelo-nav__inner { gap: 19px; }
  .icelo-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .76fr); }
  .icelo-hero__copy { padding: 42px; }
  .icelo-device--back { left: 30%; }
  .icelo-device--front { left: 52%; }
  .icelo-finder__panel { grid-template-columns: 175px minmax(0, 1fr); }
  .icelo-finder__links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .icelo-finder__all { min-height: 54px; }
  .icelo-category-carousel__track { grid-auto-columns: calc((100% - 26px) / 3); }
  .icelo-unit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .icelo-promises__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .icelo-container { width: min(100% - 34px, 1360px); }
  .icelo-assurance__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 7px 0; }
  .icelo-assurance span { justify-content: flex-start; font-size: 10px; }
  .icelo-header__main-inner { grid-template-columns: auto minmax(0, 1fr) auto; min-height: 67px; }
  .icelo-header-actions { gap: 12px; }
  .icelo-header-action span { display: none; }
  .icelo-header-action svg { width: 22px; height: 22px; }
  .icelo-cart-action em { top: -8px; right: -8px; }
  .icelo-nav__inner { overflow-x: auto; gap: 24px; scrollbar-width: none; }
  .icelo-nav__inner::-webkit-scrollbar { display: none; }
  .icelo-hero__grid { grid-template-columns: 1fr; }
  .icelo-hero__visual { min-height: 380px; }
  .icelo-hero-product img { width: min(86%, 460px); height: 340px; }
  .icelo-hero__copy { padding: 50px 44px 39px; }
  .icelo-hero h1 { font-size: clamp(41px, 8vw, 62px); }
  .icelo-device--back { top: 34px; left: 35%; }
  .icelo-device--front { top: 22px; left: 51%; }
  .icelo-hero__photo-chip { top: 25px; right: 25px; }
  .icelo-finder__panel { grid-template-columns: 1fr; gap: 15px; }
  .icelo-finder__links { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .icelo-category-catalog { gap: 34px; }
  .icelo-unit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .icelo-catalog__empty { grid-template-columns: minmax(245px, .6fr) minmax(0, 1fr); }
  .icelo-catalog__empty-copy { padding: 30px; }
  .icelo-check-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 31px; }
  .icelo-check-steps li:nth-child(3)::after { display: none; }
  .icelo-promises__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .icelo-footer__grid { grid-template-columns: 1.4fr repeat(2, minmax(120px, 1fr)); }
  .icelo-footer__column:last-child { grid-column: 2; }
}

@media (max-width: 640px) {
  .icelo-container { width: min(100% - 28px, 1360px); }
  .icelo-assurance { min-height: 32px; }
  .icelo-assurance__inner { display: flex; min-height: 32px; padding: 0; overflow: hidden; }
  .icelo-assurance span { min-width: 100%; justify-content: center; }
  .icelo-assurance span:not(:first-child) { display: none; }
  .icelo-header__main-inner { grid-template-columns: auto 1fr auto; gap: 11px; min-height: 63px; }
  .icelo-logo__image { height: 30px; }
  .icelo-search { min-height: 39px; }
  .icelo-search input { height: 38px; padding-left: 13px; font-size: 11px; }
  .icelo-search button { width: 37px; height: 38px; flex-basis: 37px; }
  .icelo-search button svg { width: 18px; height: 18px; }
  .icelo-header-actions { display: none; }
  .icelo-mobile-toggle { display: grid; place-items: center; }
  .icelo-nav { display: none; border-top: 0; }
  .icelo-nav.is-open { display: block; position: absolute; top: 100%; right: 0; left: 0; border-top: 1px solid var(--icelo-line); box-shadow: 0 16px 30px rgba(20,20,25,.10); }
  .icelo-nav__inner { display: grid; gap: 0; padding: 8px 0 12px; overflow: visible; }
  .icelo-nav a,
  body.template-icelo .icelo-nav .icelo-nav-menu__toggle {
    min-height: 39px;
    font-size: 13px !important;
  }
  .icelo-nav a { padding: 0 1px; }
  .icelo-nav-menu { display: block; align-self: auto; }
  .icelo-nav-menu__toggle { width: 100%; justify-content: space-between; }
  .icelo-nav-menu__panel { position: static; min-width: 0; margin: 0 0 5px; padding: 3px 0 3px 13px; border: 0; border-radius: 0; box-shadow: none; }
  .icelo-nav-menu__panel a { min-height: 36px; padding: 0 10px; color: #555b66; }
  .icelo-nav__apple { display: none; }
  .icelo-nav__cart { display: inline-flex !important; color: var(--icelo-red) !important; }
  body.icelo-menu-open { overflow: hidden; }
  .icelo-hero { padding-top: 18px; }
  .icelo-hero__grid { min-height: 0; border-radius: 20px; }
  .icelo-hero__copy { padding: 31px 24px 27px; }
  .icelo-eyebrow { font-size: 10px; }
  .icelo-hero h1 { margin-top: 13px; font-size: 40px; }
  .icelo-hero__lead { margin-top: 17px; font-size: 14px; }
  .icelo-hero__actions { margin-top: 21px; }
  .icelo-button { min-height: 43px; padding: 9px 13px; font-size: 12px; }
  .icelo-hero__proof { gap: 8px 12px; margin-top: 22px; }
  .icelo-hero__proof li { font-size: 10px; }
  .icelo-hero__visual { min-height: 304px; }
  .icelo-hero-product__halo { width: 255px; height: 255px; }
  .icelo-hero-product img { width: 84%; height: 272px; }
  .icelo-hero-product__name { right: 12px; bottom: 12px; max-width: 68%; padding: 9px 10px; }
  .icelo-hero-product__name strong { font-size: 10px; }
  .icelo-hero-product__name em { font-size: 8px; }
  .icelo-hero-product__name b { margin-top: 5px; font-size: 12px; }
  .icelo-hero-product__name b span { font-size: 7px; }
  .icelo-hero__halo { width: 235px; height: 235px; }
  .icelo-device { border-width: 4px; border-radius: 25px; }
  .icelo-device--back { top: 30px; left: 25%; width: 139px; height: 238px; }
  .icelo-device--front { top: 22px; left: 49%; width: 142px; height: 245px; }
  .icelo-device__camera { top: 12px; left: 12px; width: 57px; height: 57px; gap: 4px; padding: 6px; border-radius: 16px; }
  .icelo-device__camera i { width: 18px; height: 18px; border-width: 2px; }
  .icelo-device__mark { font-size: 35px; }
  .icelo-device__island { top: 8px; width: 52px; height: 14px; }
  .icelo-hero__photo-chip { top: 15px; right: 14px; padding: 6px 8px; font-size: 9px; }
  .icelo-hero-carousel__controls { top: 14px; left: 14px; gap: 5px; padding: 4px 5px; }
  .icelo-hero-carousel__arrow { width: 22px; height: 22px; }
  .icelo-hero-carousel__dots { gap: 3px; }
  .icelo-hero-carousel__dots button { width: 5px; height: 5px; }
  .icelo-hero-carousel__dots button.is-active { width: 13px; }
  .icelo-hero-carousel__count { display: none; }
  .icelo-hero__photo-chip svg { width: 13px; height: 13px; }
  .icelo-hero__condition-card { right: 13px; bottom: 108px; padding: 7px 9px; }
  .icelo-hero__battery-card { bottom: 13px; left: 13px; max-width: 40%; padding: 7px 9px; }
  .icelo-hero__battery-card > div { min-width: 0; }
  .icelo-hero__condition-card > span { width: 24px; height: 24px; }
  .icelo-hero__condition-card strong, .icelo-hero__battery-card strong { font-size: 9px; }
  .icelo-hero__condition-card small, .icelo-hero__battery-card small { max-width: 120px; font-size: 8px; }
  .icelo-battery-icon { width: 22px; height: 12px; }
  .icelo-battery-icon::after { margin-left: 20px; }
  .icelo-finder { padding: 13px 0 31px; }
  .icelo-finder__panel { padding: 16px; border-radius: 15px; }
  .icelo-finder__links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .icelo-finder__links > a:not(.icelo-finder__all) { min-height: 62px; }
  .icelo-finder__all { min-height: 44px; grid-column: span 2; }
  .icelo-catalog { padding: 36px 0 49px; }
  .icelo-section-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .icelo-section-heading h2, .icelo-promises__intro h2 { font-size: 28px; }
  .icelo-category-catalog { gap: 30px; }
  .icelo-category-row__heading { align-items: center; }
  .icelo-category-row__heading h3 { font-size: 22px; }
  .icelo-category-carousel__track {
    --icelo-carousel-shadow-gutter: 18px;
    grid-auto-columns: 90%;
    gap: 10px;
    padding-bottom: 34px;
  }
  .icelo-category-carousel__controls button { width: 34px; height: 34px; }
  .icelo-unit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .icelo-unit-card__image, .icelo-unit-card__image img { height: 180px; min-height: 180px; }
  .icelo-unit-card__body { min-height: 166px; padding: 12px; }
  .icelo-unit-card h3 { font-size: 14px; }
  .icelo-unit-card__bottom strong { font-size: 16px; }
  .icelo-catalog__empty { grid-template-columns: 1fr; border-radius: 17px; }
  .icelo-catalog__illustration { min-height: 179px; }
  .icelo-mini-device { width: 86px; height: 155px; border-radius: 19px; }
  .icelo-mini-device--one { left: 20%; }
  .icelo-mini-device--two { left: 41%; }
  .icelo-mini-device--three { right: 16%; }
  .icelo-catalog__empty-copy { padding: 24px; }
  .icelo-catalog__empty-copy h3 { font-size: 20px; }
  .icelo-catalog__empty-copy p { font-size: 12px; }
  .icelo-how { padding: 51px 0; }
  .icelo-check-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 14px; margin-top: 32px; }
  .icelo-check-steps li { display: flex; align-items: center; flex-direction: column; padding: 0; text-align: center; }
  .icelo-check-steps li::after { display: none; }
  .icelo-check-steps li > span { left: calc(50% + 17px); }
  .icelo-check-steps i { width: 47px; height: 47px; border-radius: 14px; }
  .icelo-check-steps strong { margin-top: 11px; font-size: 12px; }
  .icelo-check-steps p { max-width: 145px; margin-right: auto; margin-left: auto; }
  .icelo-promises { padding: 49px 0; }
  .icelo-promises__grid { grid-template-columns: 1fr; }
  .icelo-promises article { min-height: 135px; padding: 19px; }
  .icelo-footer { padding-top: 29px; }
  .icelo-recently-viewed { padding: 25px 0 22px; }
  .icelo-recently-viewed__head { padding: 0 48px; }
  .icelo-recently-viewed__clear { right: 0; }
  .icelo-recently-viewed__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 9px; }
  .icelo-recently-viewed__label { font-size: 8px; }
  .icelo-recently-viewed__tooltip { width: min(210px, 82vw); }
  .icelo-footer__help { grid-template-columns: 42px 1fr; padding: 15px; }
  .icelo-footer__help-icon { width: 42px; height: 42px; }
  .icelo-footer__help .icelo-button { grid-column: span 2; width: 100%; }
  .icelo-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 27px 19px; padding: 33px 0; }
  .icelo-footer__brand { grid-column: span 2; }
  .icelo-footer__column:last-child { grid-column: auto; }
  .icelo-footer__trust { grid-template-columns: repeat(2, 1fr); }
  .icelo-footer__trust span { min-height: 56px; justify-content: flex-start; padding-left: 6px; font-size: 10px; }
  .icelo-footer__trust span:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .icelo-footer__trust span:nth-child(4) { border-top: 1px solid rgba(255,255,255,.12); }
  .icelo-footer__legal { align-items: flex-start; flex-direction: column; gap: 15px; }
  .icelo-footer__legal-links { width: 100%; justify-content: flex-start; }
  .icelo-footer__legal-links > a { min-width: 0; flex: 1 1 0; }
  .icelo-footer__legal-links img { max-width: 100%; }
  .icelo-footer__company { flex-direction: column; gap: 3px; }
  .icelo-footer__bottom { flex-direction: column; gap: 5px; padding-top: 15px; }
  .template-icelo .cookie-consent { right: 10px; bottom: 10px; left: 10px; }
  .template-icelo .cookie-consent-card { grid-template-columns: 1fr; gap: 12px; padding: 15px; }
  .template-icelo .cookie-consent-actions { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .template-icelo *, .template-icelo *::before, .template-icelo *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
