:root {
  --itc-blue: #001b66;
  --itc-blue-2: #003d90;
  --itc-red: #e40035;
  --itc-ink: #172033;
  --itc-line: #dfe6f2;
}

.itc-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  width: 100%;
}

.itc-header-search {
  position: relative;
  align-items: center;
  width: min(310px, 100%);
  height: 42px;
  border: 1px solid rgba(0, 27, 102, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(0, 27, 102, 0.08);
  overflow: visible;
}

.itc-header-search input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: none;
  padding: 0 4px 0 18px;
  color: var(--itc-ink);
  font-size: 13px;
  font-weight: 600;
  background: transparent;
}

.itc-header-search input::placeholder {
  color: #7d8799;
}

.itc-header-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  color: #fff;
  background: var(--itc-blue);
  cursor: pointer;
  border-radius: 0 999px 999px 0;
  transition: background-color .2s ease, transform .2s ease;
}

.itc-header-search button:hover {
  background: var(--itc-red);
}

.itc-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--itc-blue);
  box-shadow: 0 10px 24px rgba(0, 27, 102, 0.18);
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}

.itc-cart-link:hover {
  color: #fff;
  background: var(--itc-red);
  transform: translateY(-1px);
}

.itc-cart-widget {
  position: relative;
}

.itc-cart-toggle {
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.itc-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: var(--itc-red);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.itc-cart-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 1300;
  width: min(340px, calc(100vw - 32px));
  max-height: min(620px, calc(100dvh - 110px));
  display: flex;
  flex-direction: column;
  border: 2px solid var(--itc-blue);
  border-top: 4px solid var(--itc-red);
  background: #fff;
  box-shadow: 0 22px 52px rgba(0, 27, 102, 0.18);
}

.itc-cart-panel[hidden] {
  display: none;
}

.itc-cart-panel::before {
  content: "";
  position: absolute;
  top: -10px;
  right: var(--cart-arrow-right, 18px);
  width: 16px;
  height: 16px;
  border-left: 2px solid var(--itc-blue);
  border-top: 2px solid var(--itc-red);
  background: #fff;
  transform: rotate(45deg);
}

.itc-cart-panel__header,
.itc-cart-panel__footer {
  padding: 18px 22px;
}

.itc-cart-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--itc-line);
  color: var(--itc-ink);
  font-weight: 800;
}

.itc-cart-panel__header strong {
  color: var(--itc-red);
  font-size: 12px;
  text-transform: uppercase;
}

.itc-cart-panel__body {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 8px 18px;
}

.itc-cart-panel__header,
.itc-cart-panel__footer {
  flex-shrink: 0;
}

.itc-cart-panel__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--itc-line);
  color: var(--itc-ink);
}

.itc-cart-panel__item:last-child { border-bottom: 0; }
.itc-cart-panel__item.is-added { background: #f2f6ff; }
.itc-cart-panel__image { flex: 0 0 64px; }

.itc-cart-panel__image img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  border: 1px solid var(--itc-line);
  border-radius: 8px;
  background: #fff;
}

.itc-cart-panel__details { min-width: 0; flex: 1; }
.itc-cart-panel__name {
  display: block;
  color: var(--itc-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.itc-cart-panel__meta,
.itc-cart-panel__price,
.itc-cart-panel__unavailable {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.itc-cart-panel__meta { color: #596b83; }
.itc-cart-panel__unavailable { color: #a12b3a; }
.itc-cart-panel__total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--itc-ink);
  font-size: 13px;
}
.itc-cart-panel__total strong { white-space: nowrap; }
.itc-product-quote__feedback {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #eaf5ee;
  color: #1b6040;
  font-size: 14px;
  line-height: 1.5;
}
.itc-product-quote__feedback.is-error { color: #8e2c38; background: #fff0f2; }
.itc-product-quote__feedback:empty { margin: 0; padding: 0; }
.itc-product-quote__submit:disabled { opacity: .65; cursor: wait; }

.itc-cart-panel__empty {
  display: flex;
  min-height: 220px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  border-bottom: 1px solid var(--itc-line);
  color: #4b5563;
  text-align: center;
}

.itc-cart-panel__empty .fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  background: var(--itc-blue);
  font-size: 20px;
}

.itc-cart-panel__empty span {
  margin: 0;
  color: var(--itc-ink);
  font-size: 16px;
  font-weight: 600;
}

.itc-cart-panel__checkout {
  width: 100%;
  border-color: var(--itc-blue);
  color: #fff;
  background: var(--itc-blue);
}

.itc-cart-panel__checkout:hover {
  border-color: var(--itc-red);
  background: var(--itc-red);
}

.itc-mobile-menu-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 28px 0 18px;
  border: 1px solid var(--itc-line);
  border-radius: 999px;
  background: #fff;
  overflow: visible;
}

.itc-mobile-menu-search input {
  flex: 1;
  min-width: 0;
  height: 44px;
  border: 0;
  outline: none;
  padding: 0 16px;
  color: var(--itc-ink);
  font-size: 14px;
}

.itc-mobile-menu-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 44px;
  border: 0;
  color: #fff;
  background: var(--itc-blue);
  border-radius: 0 999px 999px 0;
}

.itc-product-search .itc-search-suggestions {
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  right: auto;
  z-index: 1200;
  width: min(420px, calc(100vw - 28px));
  max-height: 340px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid rgba(0, 27, 102, 0.12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 27, 102, 0.16);
  overscroll-behavior: contain;
}

.itc-header-search .itc-search-suggestions {
  left: auto;
  right: 0;
}

.itc-mobile-menu-search .itc-search-suggestions {
  left: 0;
  right: 0;
  width: 100%;
}

.itc-product-search .itc-search-suggestions[hidden] {
  display: none;
}

.itc-product-search .itc-search-suggestions > .itc-search-suggestion {
  display: flex !important;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  min-height: 70px;
  margin: 0;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  color: var(--itc-ink);
  background: #fff;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  font-size: 14px;
  line-height: 1.2;
  text-align: left;
  text-decoration: none;
  text-transform: none;
  cursor: pointer;
  overflow: hidden;
  white-space: normal;
}

.itc-product-search .itc-search-suggestions > .itc-search-suggestion::before {
  display: none !important;
  content: none !important;
}

.itc-product-search .itc-search-suggestion__icon {
  display: none !important;
}

.itc-product-search .itc-search-suggestion__image {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  overflow: hidden;
  border: 1px solid var(--itc-line);
  border-radius: 10px;
  background: #fff;
}

.itc-product-search .itc-search-suggestion__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.itc-product-search .itc-search-suggestion__content {
  display: flex !important;
  flex: 1 1 auto;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.itc-product-search .itc-search-suggestion__name,
.itc-product-search .itc-search-suggestion__brand {
  max-width: 100%;
  overflow: hidden;
}

.itc-product-search .itc-search-suggestion__name {
  display: -webkit-box;
  color: var(--itc-ink);
  font-weight: 800;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}

.itc-product-search .itc-search-suggestion__brand {
  display: block;
  color: var(--itc-blue-2);
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.itc-product-search .itc-search-suggestions > .itc-search-suggestion:hover,
.itc-product-search .itc-search-suggestions > .itc-search-suggestion.is-active {
  color: var(--itc-ink);
  background: #f1f5fb;
  text-decoration: none;
}

.itc-product-search .itc-search-suggestion strong {
  color: var(--itc-blue);
  font-weight: 800;
}

.itc-product-search .itc-search-suggestion-empty {
  padding: 10px 12px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
}

.itc-floating-socials {
  position: fixed;
  right: 28px;
  bottom: 30px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.itc-floating-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: var(--itc-blue);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.itc-floating-social:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.itc-floating-social .icon {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.itc-floating-social .fa {
  font-size: 23px;
}

.itc-social-youtube,
.itc-social-instagram {
  background: var(--itc-red);
}

.itc-social-facebook,
.itc-social-linkedin,
.itc-social-twitter {
  background: var(--itc-blue);
}

.itc-social-whatsapp {
  background: #25d366;
}

.itc-social-whatsapp .itc-whatsapp-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.itc-cart-hero .hero-block__layout {
  background-image: linear-gradient(90deg, rgba(0, 27, 102, 0.94) 0%, rgba(206, 0, 44, 0.78) 52%, rgba(0, 0, 0, 0.18) 100%);
}

.itc-cart-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.itc-cart-hero__text {
  max-width: 540px;
  margin: 18px 0 30px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 500;
}

.itc-cart-section {
  background: #fff;
}

.itc-cart-section .heading__pre-title {
  color: var(--itc-red);
}

.itc-cart-section .cart__heading {
  color: var(--itc-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.itc-cart-empty-row {
  color: var(--itc-ink);
}

.itc-cart-empty-row__img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--itc-blue);
  font-size: 28px;
}

.itc-cart-empty-row .cart-item__product-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: auto;
  max-width: 320px;
}

.itc-cart-empty-row .cart-item__product-name strong {
  color: var(--itc-ink);
}

.itc-cart-empty-row .cart-item__product-name span {
  color: #687385;
  font-size: 14px;
  font-weight: 500;
}

.itc-cart-empty-row__count {
  color: #6b7280;
  background: #f5f7fb;
  font-weight: 800;
}

.itc-cart-help {
  padding: 34px;
  border: 1px solid var(--itc-line);
  background: #f7f9fc;
}

.itc-cart-help h5,
.itc-cart-totals h5 {
  margin-bottom: 12px;
  color: var(--itc-ink);
}

.itc-cart-help p {
  margin-bottom: 18px;
  color: #5f6978;
}

.itc-cart-help__list li {
  display: flex;
  gap: 12px;
  color: #414a53;
  font-weight: 600;
}

.itc-cart-help__list li:not(:last-child) {
  margin-bottom: 12px;
}

.itc-cart-help__list .fa {
  width: 22px;
  color: var(--itc-blue);
  line-height: 1.6;
}

.itc-cart-section .cart-totals {
  margin-top: 0;
  padding: 34px;
  border: 1px solid var(--itc-line);
  background: #fff;
  box-shadow: 0 16px 38px rgba(0, 27, 102, 0.08);
}

.itc-cart-section .cart-totals .button {
  border-color: var(--itc-blue);
  color: #fff;
  background: var(--itc-blue);
}

.itc-cart-section .cart-totals .button:hover {
  border-color: var(--itc-red);
  background: var(--itc-red);
}

.itc-category-tree__item {
  margin-bottom: 14px;
}

.itc-category-tree__brands {
  margin: 10px 0 2px 12px;
  padding: 4px 0 2px 12px;
  border-left: 1px solid rgba(0, 27, 102, 0.12);
}

.itc-category-tree__brand {
  margin: 0;
}

.itc-category-tree__brand + .itc-category-tree__brand {
  margin-top: 7px;
}

.itc-category-tree__brand a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 8px;
  color: #4c5566;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease;
}

.itc-category-tree__brand a:hover,
.itc-category-tree__brand.item--active a {
  color: var(--itc-blue);
  background: rgba(0, 61, 144, 0.08);
}

.itc-category-tree__brand.item--active a {
  color: var(--itc-red);
}

.itc-category-tree__brand small {
  min-width: 24px;
  padding: 2px 7px;
  border-radius: 999px;
  color: var(--itc-blue);
  background: #eef3fb;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.itc-category-tree__brand.item--active small {
  color: #fff;
  background: var(--itc-red);
}

.itc-blog-article {
  padding: 110px 0 90px;
  background: #fff;
}

.itc-blog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 980px;
  margin: 0 auto 42px;
  color: #7a8495;
  font-size: 12px;
  font-weight: 700;
}

.itc-blog-breadcrumb a {
  color: var(--itc-red);
  text-decoration: none;
}

.itc-blog-breadcrumb a:hover {
  color: var(--itc-blue);
}

.itc-blog-article__shell {
  max-width: 980px;
  margin: 0 auto;
}

.itc-blog-article__hero {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(320px, 1.05fr);
  gap: 44px;
  align-items: center;
  margin-bottom: 58px;
}

.itc-blog-article__headline {
  max-width: 840px;
  margin: 0 auto 54px;
  text-align: center;
}

.itc-blog-article__headline h1 {
  margin: 0;
  color: var(--itc-ink);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 900;
}

.itc-blog-article__headline p {
  max-width: 720px;
  margin: 20px auto 0;
  color: #4c5566;
  font-size: 17px;
  line-height: 1.7;
}

.itc-blog-article__media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #eef3fb;
  box-shadow: 0 18px 48px rgba(0, 27, 102, 0.1);
}

.itc-blog-article__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.itc-blog-article__intro {
  color: var(--itc-ink);
}

.itc-blog-article__category {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--itc-red);
  color: var(--itc-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.itc-blog-article__intro h1 {
  margin: 0;
  color: var(--itc-ink);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 900;
}

.itc-blog-article__intro p {
  margin: 22px 0 0;
  color: #4c5566;
  font-size: 17px;
  line-height: 1.75;
}

.itc-blog-article__meta {
  margin-top: 20px;
  color: #7b8494;
  font-size: 13px;
  font-weight: 800;
}

.itc-blog-article__content {
  max-width: 760px;
  margin: 0 auto;
  color: #2f3848;
  font-size: 17px;
  line-height: 1.78;
}

.itc-blog-article__lead {
  max-width: 760px;
  margin: 0 auto 62px;
  color: #2f3848;
  font-size: 17px;
  line-height: 1.78;
}

.itc-blog-article__lead > *:first-child {
  margin-top: 0;
}

.itc-blog-article__lead > *:last-child {
  margin-bottom: 0;
}

.itc-blog-article__sections {
  display: grid;
  gap: 76px;
}

.itc-blog-section {
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(320px, 1.05fr);
  gap: 54px;
  align-items: center;
}

.itc-blog-section:nth-child(even) .itc-blog-section__media {
  order: 2;
}

.itc-blog-section--text-only {
  display: block;
  max-width: 760px;
  margin: 0 auto;
}

.itc-blog-section__media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #eef3fb;
  box-shadow: 0 18px 48px rgba(0, 27, 102, 0.1);
}

.itc-blog-section__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.itc-blog-section__content {
  color: #2f3848;
  font-size: 17px;
  line-height: 1.78;
}

.itc-blog-section__content > *:first-child {
  margin-top: 0;
}

.itc-blog-section__content > *:last-child {
  margin-bottom: 0;
}

.itc-blog-section__content h2 {
  margin: 0 0 18px;
  color: var(--itc-ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
  font-weight: 900;
}

.itc-blog-section__content h3,
.itc-blog-section__content h4 {
  color: var(--itc-ink);
  line-height: 1.2;
  font-weight: 900;
}

.itc-blog-section__content p {
  margin: 0 0 18px;
}

.itc-blog-section__content ul,
.itc-blog-section__content ol {
  margin: 18px 0 22px;
  padding-left: 26px;
}

.itc-blog-section__content strong,
.itc-blog-section__content b {
  color: var(--itc-ink);
  font-weight: 900;
}

.itc-blog-article__content > *:first-child {
  margin-top: 0;
}

.itc-blog-article__content h1,
.itc-blog-article__content h2,
.itc-blog-article__content h3,
.itc-blog-article__content h4 {
  margin: 42px 0 16px;
  color: var(--itc-ink);
  line-height: 1.2;
  font-weight: 900;
}

.itc-blog-article__content h2 {
  font-size: 30px;
}

.itc-blog-article__content h3 {
  font-size: 24px;
}

.itc-blog-article__content h4 {
  font-size: 20px;
}

.itc-blog-article__content p {
  margin: 0 0 18px;
}

.itc-blog-article__content ul,
.itc-blog-article__content ol {
  margin: 18px 0 24px;
  padding-left: 26px;
}

.itc-blog-article__content li {
  margin-bottom: 9px;
}

.itc-blog-article__content strong,
.itc-blog-article__content b {
  color: var(--itc-ink);
  font-weight: 900;
}

.itc-blog-article__content a {
  color: var(--itc-red);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.itc-blog-article__content img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 34px auto;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 27, 102, 0.1);
}

.itc-blog-article__content blockquote {
  margin: 34px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--itc-red);
  border-radius: 0 8px 8px 0;
  color: #3c4658;
  background: #f4f7fc;
}

.itc-blog-article__content table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  font-size: 15px;
}

.itc-blog-article__content th,
.itc-blog-article__content td {
  padding: 12px 14px;
  border: 1px solid var(--itc-line);
  text-align: left;
  vertical-align: top;
}

.itc-blog-article__content th {
  color: var(--itc-blue);
  background: #eef3fb;
  font-weight: 900;
}

.itc-blog-article__gallery {
  max-width: 980px;
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.itc-blog-article__gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #eef3fb;
}

.itc-blog-article__gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .25s ease;
}

.itc-blog-article__gallery figure:hover img {
  transform: scale(1.025);
}

.itc-blog-article__cta {
  max-width: 760px;
  margin: 42px auto 0;
}

.itc-blog-article__footer {
  max-width: 760px;
  margin: 46px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--itc-line);
}

.itc-blog-article__footer a {
  color: var(--itc-blue);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.itc-blog-article__footer a:hover {
  color: var(--itc-red);
}

.itc-announcement-open {
  overflow: hidden;
}

.itc-announcement-modal[hidden] {
  display: none !important;
}

.itc-announcement-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.itc-announcement-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 16, 58, 0.66);
  backdrop-filter: blur(7px);
}

.itc-announcement-modal__dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: min(86vh, 720px);
  display: grid;
  grid-template-columns: minmax(320px, 1.12fr) minmax(300px, .88fr);
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 16, 58, 0.38);
}

.itc-announcement-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: var(--itc-blue);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(0, 16, 58, 0.18);
  cursor: pointer;
}

.itc-announcement-modal__close span {
  display: block;
  margin-top: -2px;
  font-size: 28px;
  line-height: 1;
}

.itc-announcement-modal__media {
  min-height: 390px;
  background: #eef3fb;
}

.itc-announcement-modal__media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  object-fit: cover;
}

.itc-announcement-modal__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 44px 46px;
}

.itc-announcement-modal__eyebrow {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--itc-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.itc-announcement-modal__body h2 {
  margin: 0;
  color: var(--itc-blue);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.02;
  font-weight: 900;
}

.itc-announcement-modal__body p {
  margin: 16px 0 0;
  color: #4c5566;
  font-size: 17px;
  line-height: 1.55;
}

.itc-announcement-modal__link {
  width: fit-content;
  margin-top: 28px;
  border-color: var(--itc-blue) !important;
  color: #fff !important;
  background: var(--itc-blue) !important;
}

.itc-announcement-modal__link:hover {
  border-color: var(--itc-red) !important;
  background: var(--itc-red) !important;
}

.itc-eus-toy-counter {
  display: inline-flex;
  align-items: stretch;
  gap: 8px;
  margin-top: 26px;
  padding: 8px;
  border-radius: 6px;
  background: #08245d;
  box-shadow: 0 14px 28px rgba(8, 36, 93, .18);
}

.itc-eus-toy-counter__goal {
  position: relative;
  min-width: 160px;
  overflow: hidden;
  padding: 13px 14px 15px;
  border-radius: 5px;
  background: #ef1741;
  color: #fff;
}

.itc-eus-toy-counter__goal strong {
  display: block;
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.itc-eus-toy-counter__goal span,
.itc-eus-toy-counter__meta span {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 9px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.itc-eus-toy-counter__goal i {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  max-width: 100%;
  background: rgba(255, 255, 255, .78);
}

.itc-eus-toy-counter__meta {
  display: grid;
  gap: 6px;
  min-width: 76px;
}

.itc-eus-toy-counter__meta div {
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 7px 10px;
  border-radius: 4px;
  background: #fff;
  color: #08245d;
  text-align: center;
}

.itc-eus-toy-counter__meta strong {
  display: block;
  color: #08245d;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.itc-eus-toy-counter__meta span {
  color: #08245d;
}

.itc-eus-toy-counter--home {
  position: fixed;
  left: clamp(12px, 2vw, 24px);
  top: auto;
  bottom: 24px;
  z-index: 1002;
  width: min(260px, calc(100vw - 32px));
  margin: 0;
  box-sizing: border-box;
  transform: none;
}

@media (max-width: 991px) {
  .itc-blog-article {
    padding: 84px 0 74px;
  }

  .itc-blog-breadcrumb,
  .itc-blog-article__shell {
    max-width: calc(100% - 40px);
  }

  .itc-blog-article__hero {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 42px;
  }

  .itc-blog-article__headline {
    max-width: calc(100% - 40px);
    margin-bottom: 42px;
  }

  .itc-blog-article__lead {
    max-width: calc(100% - 40px);
    margin-bottom: 42px;
  }

  .itc-blog-article__sections {
    gap: 46px;
  }

  .itc-blog-section {
    max-width: calc(100% - 40px);
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .itc-blog-section:nth-child(even) .itc-blog-section__media {
    order: initial;
  }

  .itc-blog-article__intro h1 {
    font-size: 38px;
  }

  .itc-blog-article__content,
  .itc-blog-article__cta,
  .itc-blog-article__footer {
    max-width: calc(100% - 40px);
  }

  .itc-blog-article__gallery {
    max-width: calc(100% - 40px);
    grid-template-columns: 1fr;
  }

  .itc-header-actions {
    gap: 16px;
  }

  .itc-cart-link {
    width: 40px;
    height: 40px;
  }

  .itc-cart-panel {
    right: -8px;
  }

  .itc-announcement-modal__dialog {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .itc-announcement-modal__media,
  .itc-announcement-modal__media img {
    min-height: 260px;
    max-height: 42vh;
  }

  .itc-announcement-modal__body {
    padding: 32px 28px 30px;
  }

  .itc-cart-empty-row .cart-item__product-name {
    width: 100%;
    max-width: none;
  }

  .itc-eus-toy-counter {
    display: flex;
    width: 100%;
    max-width: 360px;
  }

  .itc-eus-toy-counter__goal {
    flex: 1 1 auto;
  }

  .itc-eus-toy-counter--home {
    left: 14px;
    top: auto;
    bottom: 18px;
    width: 250px;
    max-width: calc(100vw - 28px);
  }
}

@media (max-width: 575px) {
  .itc-blog-article {
    padding: 62px 0 58px;
  }

  .itc-blog-breadcrumb {
    margin-bottom: 24px;
    flex-wrap: wrap;
  }

  .itc-blog-article__media,
  .itc-blog-article__gallery figure,
  .itc-blog-article__content img {
    border-radius: 6px;
  }

  .itc-blog-article__intro h1 {
    font-size: 30px;
  }

  .itc-blog-article__headline h1 {
    font-size: 30px;
  }

  .itc-blog-article__intro p,
  .itc-blog-article__headline p,
  .itc-blog-article__content,
  .itc-blog-article__lead,
  .itc-blog-section__content {
    font-size: 16px;
    line-height: 1.68;
  }

  .itc-blog-article__content h2 {
    font-size: 25px;
  }

  .itc-blog-article__content h3 {
    font-size: 21px;
  }

  .itc-floating-socials {
    right: 16px;
    bottom: 18px;
    gap: 8px;
  }

  .itc-floating-social {
    width: 44px;
    height: 44px;
  }

  .itc-cart-hero__text {
    font-size: 16px;
  }

  .itc-cart-help,
  .itc-cart-section .cart-totals {
    padding: 24px;
  }

  .itc-announcement-modal {
    padding: 14px;
  }

  .itc-announcement-modal__dialog {
    border-radius: 14px;
  }

  .itc-announcement-modal__body h2 {
    font-size: 28px;
  }

  .itc-announcement-modal__body p {
    font-size: 15px;
  }

  .itc-eus-toy-counter--home {
    position: fixed;
    left: 10px;
    top: auto;
    bottom: 16px;
    width: 222px;
    max-width: calc(100vw - 20px);
    margin: 0;
    transform: none;
  }

  .itc-eus-toy-counter__goal {
    min-width: 132px;
    padding: 11px 10px 13px;
  }

  .itc-eus-toy-counter__goal strong {
    font-size: 21px;
  }

  .itc-eus-toy-counter__meta {
    min-width: 58px;
  }

  .itc-eus-toy-counter__meta div {
    min-height: 39px;
    padding: 6px 7px;
  }

  .itc-eus-toy-counter__meta strong {
    font-size: 16px;
  }

  .itc-eus-toy-counter__goal span,
  .itc-eus-toy-counter__meta span {
    font-size: 8px;
  }
}

/* Public unit price follows the selected inventory variant. */
.itc-product-price { display:flex; flex-direction:column; gap:5px; margin:18px 0 8px; color:var(--itc-ink); }
.itc-product-price__label { color:#536789; font-size:13px; font-weight:600; }
.itc-product-price__value { display:flex; flex-wrap:wrap; align-items:baseline; gap:9px; line-height:1.25; }
.itc-product-price__value strong { font-size:clamp(26px,3vw,36px); font-weight:750; letter-spacing:-.025em; }
.itc-product-price__value span { font-size:14px; font-weight:700; }
.itc-product-price__tax { color:#536789; font-size:12px; }
.itc-product-price__variant { color:var(--itc-ink); font-size:13px; overflow-wrap:anywhere; }
.itc-product-price [hidden] { display:none !important; }

/* Sale prices use the previous price of the same product or inventory variant. */
.shop-item .shop-item__badge.badge--discount,
.itc-discount-badge {
  color: #fff;
  background: #c62828;
  padding: 5px 9px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.4;
  letter-spacing: .025em;
}
.shop-item .shop-item__badge.badge--discount {
  left: auto;
  right: 10px;
  top: 15px;
  height: auto;
  min-width: 0;
}
.shop-item:has(.badge--discount) .badge--new {
  left: 10px;
  min-width: 54px;
  font-size: 12px;
}
.itc-discount-badge { align-self: flex-start; margin-bottom: 4px; }
.shop-item .shop-item__price--discount {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 4px 10px;
  padding: 0 12px;
}
.shop-item .shop-item__price--discount span,
.itc-product-price--discount .itc-product-price__value {
  color: #c62828;
  font-weight: 750;
}
.shop-item .shop-item__price--discount s,
.itc-product-price__previous {
  color: #69717d;
  font-size: 13px;
  font-weight: 400;
  margin: 0;
}
.itc-product-price__previous { font-size: 16px; }

/* Product quotation controls */
.itc-product-quote {
  margin: 22px 0 0;
  padding: 24px;
  border: 1px solid var(--itc-line);
  border-radius: 16px;
  background: #f6f8fc;
}

.itc-product-quote .itc-product-quote__title {
  margin: 0 0 20px;
  color: var(--itc-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.itc-product-quote__field {
  min-width: 0;
}

.itc-product-quote__field label {
  display: block;
  margin: 0 0 8px;
  color: var(--itc-ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.itc-product-quote__select-wrap {
  position: relative;
}

.itc-product-quote__select {
  display: block;
  width: 100%;
  min-width: 0;
  height: 50px;
  padding: 0 44px 0 16px;
  border: 1px solid #cbd5e5;
  border-radius: 9px;
  color: var(--itc-ink);
  background: #fff;
  font: inherit;
  font-size: 14px;
  text-overflow: ellipsis;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.itc-product-quote__select:invalid {
  color: #667085;
}

.itc-product-quote__select option {
  color: var(--itc-ink);
  background: #fff;
}

.itc-product-quote__select-wrap svg {
  position: absolute;
  top: 15px;
  right: 16px;
  width: 20px;
  height: 20px;
  color: var(--itc-blue);
  pointer-events: none;
}

.itc-product-quote__order {
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr);
  align-items: end;
  gap: 16px;
  margin-top: 20px;
}

.itc-product-quote__title + .itc-product-quote__order {
  margin-top: 0;
}

.itc-quantity {
  display: flex;
  align-items: stretch;
  height: 50px;
  border: 1px solid #cbd5e5;
  border-radius: 9px;
  background: #fff;
}

.itc-quantity__button {
  display: inline-flex;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: var(--itc-blue);
  background: transparent;
  font: inherit;
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color .2s ease, color .2s ease;
}

.itc-quantity__button[hidden] {
  display: none;
}

.itc-quantity__button:hover:not(:disabled) {
  background: #e9eef8;
}

.itc-quantity__button:disabled {
  color: #a6afbf;
  cursor: not-allowed;
}

.itc-quantity__input {
  width: 100%;
  min-width: 0;
  padding: 0 2px;
  border: 0;
  border-radius: 8px;
  color: var(--itc-ink);
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.itc-quantity.is-enhanced .itc-quantity__input {
  -moz-appearance: textfield;
  appearance: textfield;
}

.itc-quantity.is-enhanced .itc-quantity__input::-webkit-inner-spin-button,
.itc-quantity.is-enhanced .itc-quantity__input::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.itc-product-quote__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid var(--itc-blue);
  border-radius: 9px;
  color: #fff;
  background: var(--itc-blue);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease;
}

.itc-product-quote__submit:hover {
  border-color: var(--itc-blue-2);
  background: var(--itc-blue-2);
}

.itc-product-quote__submit .fa {
  font-size: 18px;
}

.itc-product-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 14px;
  border-radius: 6px;
  color: var(--itc-blue);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.itc-product-contact__icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.itc-product-contact:hover {
  color: var(--itc-blue-2);
  text-decoration: underline;
}

.itc-product-quote__select:focus-visible,
.itc-quantity__input:focus-visible,
.itc-quantity__button:focus-visible,
.itc-product-quote__submit:focus-visible,
.itc-product-contact:focus-visible {
  outline: 3px solid #829dd8;
  outline-offset: 3px;
}

.itc-product-quote__select:focus,
.itc-quantity:focus-within {
  border-color: var(--itc-blue-2);
  box-shadow: 0 0 0 3px rgba(0, 61, 144, .08);
}

@media (max-width: 575px) {
  .itc-product-quote {
    padding: 20px;
  }

  .itc-product-quote__select {
    font-size: 16px;
  }

  .itc-product-quote__order {
    grid-template-columns: minmax(0, 1fr);
  }

  .itc-quantity {
    width: 154px;
  }

  .itc-product-quote__submit {
    width: 100%;
  }
}