/* Explicit product information card. No product, cart or catalogue selectors. */
.cs-product-toner-notice {
  --notice-ink: #183b52;
  --notice-accent: #126c9c;
  --notice-line: #b7d9ec;
  --notice-soft: #edf7fc;
  box-sizing: border-box;
  margin: 24px 0;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--notice-line);
  border-left: 5px solid var(--notice-accent);
  border-radius: 16px;
  background: var(--notice-soft);
  color: var(--notice-ink);
  font: 400 15px/1.6 system-ui, sans-serif;
  box-shadow: 0 4px 16px rgb(20 50 70 / 5%);
  scroll-margin-top: 100px;
  overflow-wrap: anywhere;
}
.cs-public-kittoner .cs-product-toner-notice {
  --notice-ink: #293c1b;
  --notice-accent: #527516;
  --notice-line: #c7db9f;
  --notice-soft: #f4fae9;
}
.cs-public-encros .cs-product-toner-notice {
  /* The existing sticky Encros header occupies about 207px on desktop. */
  scroll-margin-top: 240px;
}
.cs-product-toner-notice > h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  padding: 0;
  color: var(--notice-ink);
  font: 750 clamp(18px, 2vw, 22px)/1.3 system-ui, sans-serif;
  text-transform: none;
  border: 0;
}
.cs-product-toner-notice > h3::before {
  content: "i";
  flex: 0 0 30px;
  height: 30px;
  text-align: center;
  border-radius: 50%;
  background: var(--notice-accent);
  color: #fff;
  font: 700 20px/30px Georgia, serif;
}
.cs-product-toner-notice p { margin: 10px 0; color: inherit; font: inherit; }
.cs-product-toner-notice strong { color: inherit; font-weight: 750; }
.cs-product-toner-notice > ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 18px 0;
  list-style: none;
}
.cs-product-toner-notice > ul > li {
  box-sizing: border-box;
  padding: 14px;
  margin: 0;
  border: 1px solid var(--notice-line);
  border-radius: 10px;
  background: #fff;
  color: var(--notice-ink);
  font: inherit;
}
.cs-product-toner-notice > ul strong { display: block; margin-bottom: 5px; }
.cs-product-toner-notice > p:last-child { margin-bottom: 0; }
.cs-toner-condition-link { text-decoration: underline; text-underline-offset: 3px; font-weight: 650; }
.cs-toner-condition-link:focus-visible { outline: 3px solid #126c9c; outline-offset: 3px; }
@media (max-width: 700px) {
  .cs-product-toner-notice > ul { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .cs-product-toner-notice > ul > li { padding: 12px; }
}
@media print {
  .cs-product-toner-notice { box-shadow: none; break-inside: avoid; border: 1px solid #777; }
}
