

/* Start:/local/tools/dc-light-b2b/style.css?178938130722591*/
.dc-b2b {
  --dc-accent: #f6b83f;
  --dc-accent-strong: #9a6100;
  --dc-ink: var(--white_text_black, #171717);
  --dc-muted: #65676c;
  --dc-surface: var(--white_bg_black, #fff);
  --dc-soft: var(--darkerblack_bg_black, #f5f4f0);
  --dc-line: rgba(0, 0, 0, 0.08);
  --dc-dark: #171717;
  --dc-radius: 24px;
  --dc-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.055),
    0 1px 2px -1px rgba(0, 0, 0, 0.06),
    0 12px 32px -18px rgba(0, 0, 0, 0.18);
  --dc-shadow-hover:
    0 0 0 1px rgba(0, 0, 0, 0.09),
    0 2px 5px -2px rgba(0, 0, 0, 0.1),
    0 20px 44px -20px rgba(0, 0, 0, 0.22);
  color: var(--dc-ink);
  margin: 0 0 72px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.dc-b2b,
.dc-b2b * {
  box-sizing: border-box;
}

html:has(.dc-b2b),
body:has(.dc-b2b) {
  overflow-x: clip;
}

.dc-b2b h1,
.dc-b2b h2,
.dc-b2b h3 {
  color: inherit;
  font-family: var(--theme-font-title-family, Arial, sans-serif);
  text-wrap: balance;
}

.dc-b2b p,
.dc-b2b li,
.dc-b2b small {
  text-wrap: pretty;
}

.dc-b2b a:focus-visible,
.dc-b2b button:focus-visible {
  outline: 3px solid #9a6100;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(246, 184, 63, 0.32);
}

.dc-b2b__breadcrumbs {
  min-height: 28px;
  margin: 0 0 18px;
}

.dc-b2b__breadcrumbs .breadcrumbs {
  margin: 0;
  padding: 0;
}

.dc-b2b__hero {
  isolation: isolate;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.65fr);
  gap: 42px;
  min-height: 520px;
  overflow: hidden;
  padding: clamp(36px, 6vw, 76px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 8%, rgba(246, 184, 63, 0.24), transparent 32%),
    radial-gradient(circle at 48% 118%, rgba(246, 184, 63, 0.12), transparent 44%),
    var(--dc-dark);
  color: #fff;
  box-shadow: 0 28px 70px -38px rgba(0, 0, 0, 0.55);
}

.dc-b2b__hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0, #000 48%, #000 100%);
}

.dc-b2b__hero-copy {
  align-self: center;
  max-width: 820px;
}

.dc-b2b__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0 0 16px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(246, 184, 63, 0.14);
  color: #a66300;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.dc-b2b__eyebrow--dark {
  background: rgba(246, 184, 63, 0.13);
  box-shadow: inset 0 0 0 1px rgba(246, 184, 63, 0.22);
  color: #ffd989;
}

.dc-b2b__title {
  max-width: 880px;
  margin: 0;
  color: #fff !important;
  font-size: clamp(38px, 5.1vw, 68px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.99;
}

.dc-b2b__hero-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
}

.dc-b2b__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.dc-b2b__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 16px 12px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none !important;
  touch-action: manipulation;
  transition-property: transform, background-color, box-shadow, color;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.dc-b2b__button:active {
  transform: scale(0.96);
}

.dc-b2b__button--primary {
  background: var(--dc-accent);
  box-shadow: 0 10px 24px -14px rgba(246, 184, 63, 0.8);
  color: #171717 !important;
}

.dc-b2b__button--primary:hover {
  background: #ffc95f;
  box-shadow: 0 14px 30px -15px rgba(246, 184, 63, 0.9);
}

.dc-b2b__button--secondary {
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  color: #fff !important;
}

.dc-b2b__button--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.dc-b2b__hero-facts {
  align-self: end;
  margin: 0;
  padding: 0;
}

.dc-b2b__hero-facts > div {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.dc-b2b__hero-facts dt {
  margin: 0 0 6px;
  color: #fff;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.25;
}

.dc-b2b__hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  line-height: 1.45;
}

.dc-b2b__section {
  margin-top: clamp(56px, 7vw, 88px);
  scroll-margin-top: 96px;
}

.dc-b2b__section > h2,
.dc-b2b__split-main > h2,
.dc-b2b__case-copy > h2,
.dc-b2b__cta h2,
.dc-b2b__notice h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(29px, 3.4vw, 44px);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.09;
}

.dc-b2b__section-lead {
  max-width: 820px;
  margin: 16px 0 0;
  color: var(--dc-muted);
  font-size: 17px;
  line-height: 1.62;
}

.dc-b2b__cards {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.dc-b2b__cards--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dc-b2b__cards--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dc-b2b__card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--dc-radius);
  background: var(--dc-surface);
  box-shadow: var(--dc-shadow);
  color: inherit !important;
  text-decoration: none !important;
  touch-action: manipulation;
  transition-property: transform, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.dc-b2b__card--link:hover {
  transform: translateY(-3px);
  box-shadow: var(--dc-shadow-hover);
}

.dc-b2b__card--link:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--dc-shadow-hover), 0 0 0 6px rgba(246, 184, 63, 0.32);
}

.dc-b2b__card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dc-b2b__card-index,
.dc-b2b__step-number {
  color: var(--dc-accent-strong);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: 0;
}

.dc-b2b__status {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--dc-soft);
  color: var(--dc-muted);
  font-size: 11px;
  font-weight: 700;
}

.dc-b2b__card h3 {
  margin: 34px 0 0;
  font-size: 23px;
  font-weight: 730;
  letter-spacing: 0;
  line-height: 1.18;
}

.dc-b2b__card p {
  margin: 13px 0 0;
  color: var(--dc-muted);
  font-size: 16px;
  line-height: 1.6;
}

.dc-b2b__card-link {
  margin-top: auto;
  padding-top: 24px;
  color: var(--dc-accent-strong);
  font-size: 14px;
  font-weight: 750;
}

.dc-b2b__section--soft {
  padding: clamp(30px, 4vw, 54px);
  border-radius: 28px;
  background: var(--dc-soft);
}

.dc-b2b__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.dc-b2b__steps li {
  position: relative;
  min-width: 0;
  padding: 0 26px;
}

.dc-b2b__steps li:first-child {
  padding-left: 0;
}

.dc-b2b__steps li:last-child {
  padding-right: 0;
}

.dc-b2b__steps li + li::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.09);
}

.dc-b2b__steps h3 {
  margin: 17px 0 0;
  font-size: 18px;
  font-weight: 730;
  line-height: 1.25;
}

.dc-b2b__steps p {
  margin: 9px 0 0;
  color: var(--dc-muted);
  font-size: 16px;
  line-height: 1.55;
}

.dc-b2b__checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.dc-b2b__checklist li {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 58px;
  padding: 12px 16px;
  border-radius: 15px;
  background: var(--dc-surface);
  box-shadow: var(--dc-shadow);
  font-size: 15px;
  line-height: 1.45;
}

.dc-b2b__checklist li > span:first-child {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(246, 184, 63, 0.18);
  color: #9a6100;
  font-size: 13px;
  font-weight: 800;
}

.dc-b2b__split,
.dc-b2b__case {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 22px;
}

.dc-b2b__split-main,
.dc-b2b__aside,
.dc-b2b__case-copy,
.dc-b2b__case-media {
  border-radius: var(--dc-radius);
}

.dc-b2b__split-main,
.dc-b2b__case-copy {
  padding: clamp(30px, 4vw, 50px);
  background: var(--dc-surface);
  box-shadow: var(--dc-shadow);
}

.dc-b2b__split-main > p,
.dc-b2b__case-copy > p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--dc-muted);
  font-size: 16px;
  line-height: 1.66;
}

.dc-b2b__aside {
  padding: 32px;
  background: var(--dc-dark);
  color: #fff;
}

.dc-b2b__aside h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 730;
}

.dc-b2b__aside ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.dc-b2b__aside li {
  position: relative;
  padding: 14px 0 14px 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.45;
}

.dc-b2b__aside li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dc-accent);
}

.dc-b2b__inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 26px;
}

.dc-b2b__inline-links a,
.dc-b2b__text-link,
.dc-b2b__text-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #a86400 !important;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none !important;
}

.dc-b2b__text-action {
  gap: 8px;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(246, 184, 63, 0.14);
  box-shadow: inset 0 0 0 1px rgba(231, 154, 0, 0.18);
  transition-property: transform, background-color, box-shadow;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
  touch-action: manipulation;
}

.dc-b2b__text-action:hover {
  background: rgba(246, 184, 63, 0.22);
  box-shadow: inset 0 0 0 1px rgba(231, 154, 0, 0.28);
  transform: translateY(-2px);
}

.dc-b2b__text-action:active {
  transform: scale(0.96);
}

.dc-b2b__case {
  align-items: start;
}

.dc-b2b__case-media {
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  background: var(--dc-soft);
  box-shadow: var(--dc-shadow);
}

.dc-b2b__case-scope {
  padding-left: 14px;
  border-left: 3px solid var(--dc-accent);
  color: var(--dc-ink) !important;
  font-weight: 720;
}

.dc-b2b__case-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  visibility: visible;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.dc-b2b__case-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.dc-b2b__case-facts li {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--dc-soft);
  color: var(--dc-muted);
  font-size: 12px;
  font-weight: 680;
}

.dc-b2b__case-placeholder {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--dc-radius);
  background: var(--dc-dark);
}

.dc-b2b__case-placeholder span {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.16);
  font-size: 104px;
  font-weight: 800;
  transform: translate(-50%, -50%);
}

.dc-b2b__case-placeholder i {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(246, 184, 63, 0.35);
  border-radius: 50%;
}

.dc-b2b__case-placeholder i:nth-child(2) { top: -80px; right: -60px; }
.dc-b2b__case-placeholder i:nth-child(3) { right: 20%; bottom: -150px; }
.dc-b2b__case-placeholder i:nth-child(4) { top: 36%; left: -150px; }

.dc-b2b__link-grid {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.dc-b2b__link-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dc-b2b__link-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dc-b2b__link-grid--3.dc-b2b__link-grid--balanced {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.dc-b2b__link-grid--3.dc-b2b__link-grid--balanced > a {
  grid-column: span 2;
}

.dc-b2b__link-grid--3.dc-b2b__link-grid--balanced > a:nth-last-child(2) {
  grid-column: 2 / span 2;
}

.dc-b2b__link-grid--3.dc-b2b__link-grid--balanced > a:last-child {
  grid-column: 4 / span 2;
}

.dc-b2b__link-grid > a {
  display: flex;
  min-height: 210px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 17px;
  background: var(--dc-surface);
  box-shadow: var(--dc-shadow);
  color: inherit !important;
  text-decoration: none !important;
  touch-action: manipulation;
  transition-property: transform, box-shadow;
  transition-duration: 170ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.dc-b2b__link-grid > a:hover {
  transform: translateY(-2px);
  box-shadow: var(--dc-shadow-hover);
}

.dc-b2b__link-grid > a:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--dc-shadow-hover), 0 0 0 6px rgba(246, 184, 63, 0.32);
}

.dc-b2b__link-grid-copy {
  display: flex;
  min-width: 0;
  align-self: stretch;
  flex-direction: column;
}

.dc-b2b__link-grid h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 730;
  line-height: 1.28;
}

.dc-b2b__link-grid p {
  margin: 7px 0 0;
  color: var(--dc-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.dc-b2b__link-grid-action {
  margin-top: auto;
  padding-top: 20px;
  color: #9a6100;
  font-size: 14px;
  font-weight: 760;
}

.dc-b2b__link-grid b {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(246, 184, 63, 0.17);
  color: #9a6100;
  font-size: 18px;
  font-weight: 500;
}

.dc-b2b__products .catalog-viewed-list,
.dc-b2b__products .catalog-block {
  margin-top: 30px;
}

.dc-b2b__product-fallback {
  margin-top: 26px;
  padding: 20px;
  border-radius: 15px;
  background: var(--dc-soft);
  color: var(--dc-muted);
  font-size: 14px;
  line-height: 1.55;
}

.dc-b2b__faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 22px;
  align-items: start;
}

.dc-b2b__faq-layout--solo {
  grid-template-columns: minmax(0, 1fr);
}

.dc-b2b__faq-main > h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(29px, 3.4vw, 44px);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.09;
}

.dc-b2b__faq {
  margin-top: 28px;
}

.dc-b2b__faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dc-b2b__faq-item h3 {
  margin: 0;
}

.dc-b2b__faq-item button {
  display: flex;
  width: 100%;
  min-height: 72px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 14px 4px;
  border: 0;
  background: transparent;
  color: var(--dc-ink);
  font: inherit;
  font-size: 17px;
  font-weight: 720;
  line-height: 1.4;
  text-align: left;
  touch-action: manipulation;
}

.dc-b2b__faq-item button b {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: var(--dc-soft);
}

.dc-b2b__faq-item button:hover b {
  background: rgba(246, 184, 63, 0.2);
  color: #7d4b00;
}

.dc-b2b__faq-item button b::before,
.dc-b2b__faq-item button b::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition-property: transform, opacity;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.dc-b2b__faq-item button b::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.dc-b2b__faq-item button[aria-expanded="true"] b::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.dc-b2b__faq-answer {
  max-width: 820px;
  padding: 0 58px 22px 4px;
}

.dc-b2b__faq-answer[hidden] {
  display: none;
}

.dc-b2b__faq-answer p {
  margin: 0;
  color: var(--dc-muted);
  font-size: 16px;
  line-height: 1.65;
}

.dc-b2b__faq-aside {
  padding: 32px;
  border-radius: var(--dc-radius);
  background: var(--dc-dark);
  color: #fff;
  box-shadow: 0 24px 54px -34px rgba(0, 0, 0, 0.62);
}

.dc-b2b__faq-aside h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 730;
  line-height: 1.25;
}

.dc-b2b__faq-aside ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.dc-b2b__faq-aside li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.5;
}

.dc-b2b__faq-aside li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dc-accent);
}

.dc-b2b__faq-aside p {
  margin: 22px 0 0;
  padding: 15px 16px;
  border-radius: 14px;
  background: rgba(246, 184, 63, 0.14);
  color: #ffe3a8;
  font-size: 16px;
  line-height: 1.55;
}

.dc-b2b__notice {
  display: flex;
  gap: 18px;
  padding: 26px;
  border-radius: 20px;
  background: #fff7e3;
  box-shadow: inset 0 0 0 1px rgba(231, 154, 0, 0.16);
}

.dc-b2b__notice-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--dc-accent);
  color: #2c220f;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
}

.dc-b2b__notice h2 {
  font-size: clamp(21px, 2.5vw, 28px);
  letter-spacing: 0;
}

.dc-b2b__notice p {
  max-width: 940px;
  margin: 10px 0 0;
  color: #655b49;
  font-size: 15px;
  line-height: 1.6;
}

.dc-b2b__cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
  padding: clamp(34px, 5vw, 62px);
  border-radius: 28px;
  background: var(--dc-dark);
  color: #fff;
  box-shadow: 0 28px 70px -38px rgba(0, 0, 0, 0.55);
}

.dc-b2b__cta h2 {
  max-width: 780px;
  color: #fff;
}

.dc-b2b__cta p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.6;
}

.dc-b2b__cta .dc-b2b__actions {
  justify-content: flex-end;
  margin: 0;
}

@media (max-width: 1279px) {
  .dc-b2b__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 0;
  }

  .dc-b2b__steps li:nth-child(3) {
    padding-left: 0;
  }

  .dc-b2b__steps li:nth-child(3)::before {
    display: none;
  }
}

@media (max-width: 1199px) {
  .dc-b2b__link-grid--3,
  .dc-b2b__link-grid--3.dc-b2b__link-grid--balanced {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dc-b2b__link-grid--3.dc-b2b__link-grid--balanced > a,
  .dc-b2b__link-grid--3.dc-b2b__link-grid--balanced > a:nth-last-child(2) {
    grid-column: auto;
  }

  .dc-b2b__link-grid--3.dc-b2b__link-grid--balanced > a:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 6px);
    justify-self: center;
  }

  .dc-b2b__faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .dc-b2b__hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .dc-b2b__hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dc-b2b__hero-facts > div {
    padding: 18px 18px 0 0;
  }

  .dc-b2b__cards--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dc-b2b__cards--3.dc-b2b__cards--balanced > :last-child {
    grid-column: 1 / -1;
    width: calc(50% - 9px);
    justify-self: center;
  }

  .dc-b2b__split,
  .dc-b2b__case,
  .dc-b2b__cta {
    grid-template-columns: 1fr;
  }

  .dc-b2b__cta .dc-b2b__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .dc-b2b {
    margin-bottom: 48px;
  }

  .dc-b2b__hero {
    gap: 28px;
    padding: 30px 22px;
    border-radius: 22px;
  }

  .dc-b2b__title {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1.02;
  }

  .dc-b2b__hero-lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .dc-b2b__actions,
  .dc-b2b__cta .dc-b2b__actions {
    width: 100%;
  }

  .dc-b2b__button {
    width: 100%;
  }

  .dc-b2b__hero-facts {
    grid-template-columns: 1fr;
  }

  .dc-b2b__hero-facts > div {
    padding: 15px 0;
  }

  .dc-b2b__cards--2,
  .dc-b2b__cards--3,
  .dc-b2b__steps,
  .dc-b2b__checklist,
  .dc-b2b__link-grid,
  .dc-b2b__link-grid--2,
  .dc-b2b__link-grid--3,
  .dc-b2b__link-grid--3.dc-b2b__link-grid--balanced {
    grid-template-columns: 1fr;
  }

  .dc-b2b__cards--3.dc-b2b__cards--balanced > :last-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }

  .dc-b2b__link-grid--3.dc-b2b__link-grid--balanced > a,
  .dc-b2b__link-grid--3.dc-b2b__link-grid--balanced > a:nth-last-child(2),
  .dc-b2b__link-grid--3.dc-b2b__link-grid--balanced > a:last-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }

  .dc-b2b__card {
    min-height: 220px;
    padding: 23px;
    border-radius: 20px;
  }

  .dc-b2b__section--soft {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .dc-b2b__steps {
    gap: 0;
  }

  .dc-b2b__steps li,
  .dc-b2b__steps li:first-child,
  .dc-b2b__steps li:last-child,
  .dc-b2b__steps li:nth-child(3) {
    padding: 20px 0;
  }

  .dc-b2b__steps li + li::before,
  .dc-b2b__steps li:nth-child(3)::before {
    display: block;
    top: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }

  .dc-b2b__split-main,
  .dc-b2b__aside,
  .dc-b2b__case-copy {
    padding: 26px 22px;
    border-radius: 20px;
  }

  .dc-b2b__case-media,
  .dc-b2b__case-placeholder {
    border-radius: 20px;
  }

  .dc-b2b__case-media {
    min-height: 0;
  }

  .dc-b2b__case-placeholder {
    min-height: 270px;
  }

  .dc-b2b__link-grid > a {
    min-height: 100px;
    padding: 18px;
  }

  .dc-b2b__notice {
    padding: 22px 18px;
  }

  .dc-b2b__cta {
    gap: 28px;
    padding: 30px 22px;
    border-radius: 22px;
  }

  .dc-b2b__faq-aside {
    padding: 26px 22px;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dc-b2b__button,
  .dc-b2b__card,
  .dc-b2b__link-grid > a,
  .dc-b2b__text-action,
  .dc-b2b__faq-item button b::before,
  .dc-b2b__faq-item button b::after {
    transition-duration: 0.01ms;
  }
}

/* End */


/* Start:/local/tools/dc-light-b2b/horeca/style.css?178938130722148*/
/* DC-Light HoReCa solution. Every rule is scoped to the route root. */
.dhr-page {
  --dhr-accent: var(--theme-base-color, #ffb400);
  --dhr-ink: var(--white_text_black, #242424);
  --dhr-muted: var(--lite_basic_text_black, #666);
  --dhr-line: var(--stroke_black, #e7e7e7);
  --dhr-soft: #f5f6f2;
  --dhr-tint: #fff8e5;
  --dhr-dark: #262826;
  --dhr-offset: 112px;
  width: 100%;
  min-width: 0;
  color: var(--dhr-ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.65;
  container: dhr / inline-size;
}

.dhr-page *,
.dhr-page *::before,
.dhr-page *::after { box-sizing: border-box; }
.dhr-page :where(h1, h2, h3, p, figure, ul, ol) { margin: 0; padding: 0; }
.dhr-page :where(h1, h2, h3) { color: inherit; font-family: inherit; font-weight: 600; text-transform: none; }
.dhr-page :where(ul, ol) { list-style: none; }
.dhr-page a { color: inherit; text-decoration: none; }
.dhr-page img { display: block; width: 100%; max-width: 100%; height: auto; }
.dhr-page :where(section, article, figure, nav, div) { min-width: 0; }
.dhr-page :where(section, article)[id] { scroll-margin-top: var(--dhr-offset); }
.dhr-page :where(a, button, input, textarea, select, summary):focus-visible { outline: 3px solid #a97400; outline-offset: 4px; }
.dhr-page ::selection { background: #ffe39b; color: #222; }

.dhr-page .dhr-breadcrumbs { padding: 25px 0 34px; color: #888; font-size: 12px; line-height: 1.7; }
.dhr-page .dhr-breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; }
.dhr-page .dhr-breadcrumbs li { display: flex; align-items: center; min-height: 20px; }
.dhr-page .dhr-breadcrumbs li + li::before { content: "/"; margin: 0 12px; color: #aaa; }
.dhr-page .dhr-breadcrumbs a:hover { color: var(--dhr-ink); text-decoration: underline; }

.dhr-page h2 { font-size: clamp(30px, 3cqw, 42px); line-height: 1.16; letter-spacing: -.035em; text-wrap: balance; }
.dhr-page h3 { font-size: 21px; line-height: 1.3; letter-spacing: -.02em; }
.dhr-page .dhr-kicker { display: flex; align-items: center; gap: 9px; margin-bottom: 16px; color: var(--dhr-muted); font-size: 11px; font-weight: 700; line-height: 1.5; letter-spacing: .09em; text-transform: uppercase; }
.dhr-page .dhr-kicker::before { content: ""; width: 6px; height: 6px; flex: 0 0 6px; border-radius: 50%; background: var(--dhr-accent); }
.dhr-page .dhr-lead { max-width: 620px; margin-bottom: 14px; font-size: 18px; line-height: 1.6; }
.dhr-page .dhr-intro { max-width: 640px; margin-bottom: 25px; color: var(--dhr-muted); font-size: 15px; line-height: 1.75; }
.dhr-page .dhr-micro { max-width: 560px; margin-top: 14px; color: var(--dhr-muted); font-size: 12px; line-height: 1.65; }
.dhr-page .dhr-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.dhr-page .dhr-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; max-width: 100%; padding: 14px 21px; border: 1px solid transparent; border-radius: 6px; font-size: 14px; font-weight: 600; line-height: 1.4; text-align: center; transition: background-color .18s ease, border-color .18s ease, color .18s ease; }
.dhr-page .dhr-btn--primary { background: var(--dhr-accent); color: #222; }
.dhr-page .dhr-btn--primary:hover { background: #f1aa00; color: #111; }
.dhr-page .dhr-btn--line,
.dhr-page .dhr-btn--max { border-color: #d8d8d8; background: transparent; color: var(--dhr-ink); }
.dhr-page .dhr-btn--line:hover,
.dhr-page .dhr-btn--max:hover { border-color: var(--dhr-accent); background: var(--dhr-tint); }
.dhr-page .dhr-link { display: inline-flex; align-items: center; min-height: 38px; color: inherit; font-size: 13px; font-weight: 600; line-height: 1.5; text-underline-offset: 4px; }
.dhr-page .dhr-link:hover { text-decoration: underline; }

.dhr-page .dhr-hero { padding: 0 0 40px; }
.dhr-page .dhr-hero-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: clamp(40px, 4cqw, 56px); }
.dhr-page .dhr-hero-copy { padding: 8px 0; }
.dhr-page .dhr-hero h1 { margin-bottom: 23px; }
.dhr-page .dhr-hero h1 span { background: linear-gradient(transparent 77%, #ffe3a0 77%, #ffe3a0 94%, transparent 94%); white-space: nowrap; }
.dhr-page .dhr-hero-media { position: relative; isolation: isolate; min-height: 435px; aspect-ratio: 1.3; overflow: hidden; border-radius: 8px; background: #242424; outline: 1px solid rgba(0, 0, 0, .08); outline-offset: -1px; }
.dhr-page .dhr-hero-media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 61% center; }
.dhr-page .dhr-photo-badge { position: absolute; z-index: 2; top: 18px; left: 18px; padding: 7px 11px; border-radius: 4px; background: #fff; color: #333; font-size: 10px; font-weight: 600; line-height: 1.4; }
.dhr-page .dhr-hero-media figcaption { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding: 80px 23px 23px; background: linear-gradient(transparent, rgba(0, 0, 0, .88)); color: #fff; }
.dhr-page .dhr-hero-media figcaption small { display: block; margin-bottom: 5px; color: #e5e5e5; font-size: 11px; }
.dhr-page .dhr-hero-media figcaption strong { display: block; font-size: 23px; line-height: 1.2; }
.dhr-page .dhr-round { display: grid; width: 44px; height: 44px; flex: 0 0 44px; place-items: center; border: 1px solid rgba(255, 255, 255, .5); border-radius: 50%; color: #fff; font-size: 20px; }
.dhr-page .dhr-image-fallback { position: absolute; inset: 0; display: grid; place-items: center; padding: 30px; background: #303030; color: #fff; text-align: center; }
.dhr-page .dhr-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; margin-top: 32px; padding-top: 25px; border-top: 1px solid var(--dhr-line); }
.dhr-page .dhr-proof > div { display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 12px; }
.dhr-page .dhr-proof > div > span { color: #8d6a21; font-size: 12px; font-weight: 700; }
.dhr-page .dhr-proof p { display: grid; gap: 4px; }
.dhr-page .dhr-proof strong { font-size: 15px; line-height: 1.45; }
.dhr-page .dhr-proof small { color: var(--dhr-muted); font-size: 12px; line-height: 1.5; }

.dhr-page .dhr-jump { display: flex; align-items: center; gap: 28px; overflow-x: auto; border-block: 1px solid var(--dhr-line); scrollbar-width: thin; white-space: nowrap; }
.dhr-page .dhr-jump a { display: inline-flex; align-items: center; min-height: 60px; border-bottom: 2px solid transparent; font-size: 12px; }
.dhr-page .dhr-jump a:hover { border-color: var(--dhr-accent); }
.dhr-page .dhr-jump a:last-child { margin-left: auto; font-weight: 600; }

.dhr-page .dhr-section { padding-block: 68px; }
.dhr-page .dhr-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 30px; }
.dhr-page .dhr-section-head > div { max-width: 760px; }
.dhr-page .dhr-section-head > p { max-width: 390px; color: var(--dhr-muted); font-size: 14px; line-height: 1.75; }
.dhr-page .dhr-formats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 25px; margin-bottom: 32px; }
.dhr-page .dhr-formats article { padding-right: 24px; border-right: 1px solid var(--dhr-line); }
.dhr-page .dhr-formats article:last-child { padding-right: 0; border-right: 0; }
.dhr-page .dhr-formats h3 { margin-bottom: 9px; font-size: 19px; }
.dhr-page .dhr-formats p { color: var(--dhr-muted); font-size: 14px; line-height: 1.7; }
.dhr-page .dhr-zones { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.dhr-page .dhr-zone { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 14px; padding: 25px; border: 1px solid var(--dhr-line); border-radius: 8px; background: var(--card_bg_black, #fff); }
.dhr-page .dhr-zone > span { padding-top: 4px; color: #8d6a21; font-size: 12px; font-weight: 700; }
.dhr-page .dhr-zone h3 { margin-bottom: 9px; }
.dhr-page .dhr-zone p { margin-bottom: 7px; color: var(--dhr-muted); font-size: 14px; line-height: 1.75; }
.dhr-page .dhr-note { margin-top: 22px; color: var(--dhr-muted); font-size: 13px; line-height: 1.7; }
.dhr-page .dhr-note a { color: var(--dhr-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.dhr-page .dhr-cases { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 25px; }
.dhr-page .dhr-case { display: flex; overflow: hidden; flex-direction: column; border: 1px solid var(--dhr-line); border-radius: 8px; background: var(--card_bg_black, #fff); }
.dhr-page .dhr-case-media { position: relative; display: block; aspect-ratio: 1.76; overflow: hidden; background: #eee; }
.dhr-page .dhr-case-media img { width: 100%; height: 100%; object-fit: cover; }
.dhr-page .dhr-case-media--chandelier img { object-position: center 32%; }
.dhr-page .dhr-case-media > span { position: absolute; bottom: 16px; left: 16px; padding: 6px 10px; border-radius: 4px; background: #fff; color: #333; font-size: 10px; font-weight: 600; }
.dhr-page .dhr-case-copy { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 24px 25px 22px; }
.dhr-page .dhr-eyebrow { color: #777; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.dhr-page .dhr-case-copy h3 { margin: 8px 0 13px; font-size: 25px; }
.dhr-page .dhr-case-copy > p:not(.dhr-eyebrow) { color: var(--dhr-muted); font-size: 14px; line-height: 1.75; }
.dhr-page .dhr-case-scope { width: 100%; margin: 18px 0; padding: 15px 0; border-block: 1px solid var(--dhr-line); color: var(--dhr-muted); font-size: 13px; line-height: 1.7; }
.dhr-page .dhr-case-scope strong { display: block; margin-bottom: 4px; color: var(--dhr-ink); font-size: 12px; }
.dhr-page .dhr-case-copy .dhr-link { margin-top: auto; }

.dhr-page .dhr-catalog { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 17px; }
.dhr-page .dhr-catalog article { display: flex; min-height: 290px; flex-direction: column; align-items: flex-start; padding: 23px 21px; border: 1px solid var(--dhr-line); border-radius: 8px; }
.dhr-page .dhr-catalog article > span { min-height: 58px; color: #7d6a3d; font-size: 11px; font-weight: 700; }
.dhr-page .dhr-catalog h3 { margin-bottom: 12px; font-size: 20px; }
.dhr-page .dhr-catalog p { margin-bottom: 18px; color: var(--dhr-muted); font-size: 13px; line-height: 1.75; }
.dhr-page .dhr-catalog .dhr-link { margin-top: auto; padding-top: 13px; border-top: 1px solid var(--dhr-line); }
.dhr-page .dhr-kitchen { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 36px; margin-top: 30px; padding: 35px; border-radius: 8px; background: var(--dhr-soft); }
.dhr-page .dhr-kitchen h3 { margin-bottom: 13px; font-size: 27px; }
.dhr-page .dhr-kitchen p { color: var(--dhr-muted); font-size: 14px; line-height: 1.75; }
.dhr-page .dhr-kitchen .dhr-link { margin-top: 14px; }
.dhr-page .dhr-kitchen-list > div { padding: 13px 0; border-bottom: 1px solid var(--dhr-line); }
.dhr-page .dhr-kitchen-list > div:first-child { padding-top: 0; }
.dhr-page .dhr-kitchen-list strong { display: block; margin-bottom: 3px; font-size: 14px; }
.dhr-page .dhr-warning { margin-top: 14px; color: #735c28 !important; font-size: 12px !important; }

.dhr-page .dhr-factory { display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(0, .84fr); align-items: center; gap: clamp(32px, 5cqw, 70px); }
.dhr-page .dhr-factory > div > p:not(.dhr-kicker) { max-width: 750px; margin: 18px 0; color: var(--dhr-muted); }
.dhr-page .dhr-spec-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin: 27px 0; }
.dhr-page .dhr-spec-grid strong { display: block; margin-bottom: 5px; font-size: 14px; }
.dhr-page .dhr-spec-grid span { display: block; color: var(--dhr-muted); font-size: 13px; line-height: 1.7; }
.dhr-page .dhr-factory-media { position: relative; aspect-ratio: 1.03; overflow: hidden; border-radius: 8px; background: #ddd; }
.dhr-page .dhr-factory-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.dhr-page .dhr-factory-media figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 50px 22px 21px; background: linear-gradient(transparent, rgba(0, 0, 0, .84)); color: #fff; font-size: 12px; line-height: 1.6; }

.dhr-page .dhr-project { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr); align-items: start; gap: 35px; }
.dhr-page .dhr-steps { border-top: 1px solid var(--dhr-line); }
.dhr-page .dhr-steps li { display: grid; grid-template-columns: 32px minmax(0, 1fr); gap: 18px; padding: 21px 0; border-bottom: 1px solid var(--dhr-line); }
.dhr-page .dhr-steps li > span { padding-top: 4px; color: #8d6a21; font-size: 12px; font-weight: 700; }
.dhr-page .dhr-steps h3 { margin-bottom: 7px; font-size: 19px; }
.dhr-page .dhr-steps p { color: var(--dhr-muted); font-size: 14px; line-height: 1.7; }
.dhr-page .dhr-steps small { display: block; margin-top: 8px; color: #6d5928; font-size: 12px; line-height: 1.65; }
.dhr-page .dhr-project-asides { display: grid; gap: 18px; }
.dhr-page .dhr-project-asides article { padding: 27px; border-radius: 8px; background: var(--dhr-soft); }
.dhr-page .dhr-project-asides article:last-child { background: var(--dhr-tint); }
.dhr-page .dhr-project-asides h3 { margin-bottom: 12px; font-size: 23px; }
.dhr-page .dhr-project-asides article > p:not(.dhr-kicker) { color: var(--dhr-muted); font-size: 14px; line-height: 1.7; }
.dhr-page .dhr-project-asides .dhr-link { margin-top: 13px; }
.dhr-page .dhr-related { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 30px; }
.dhr-page .dhr-related a { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 86px; padding: 20px; border: 1px solid var(--dhr-line); border-radius: 6px; font-size: 13px; font-weight: 600; line-height: 1.5; }
.dhr-page .dhr-related a:hover { background: var(--dhr-tint); }

.dhr-page .dhr-budget { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 19px; }
.dhr-page .dhr-budget article { padding: 26px; border: 1px solid var(--dhr-line); border-radius: 8px; background: var(--card_bg_black, #fff); }
.dhr-page .dhr-budget h3 { margin-bottom: 12px; font-size: 20px; }
.dhr-page .dhr-budget p { color: var(--dhr-muted); font-size: 14px; line-height: 1.7; }
.dhr-page .dhr-budget small { display: block; margin-top: 16px; padding-top: 13px; border-top: 1px solid var(--dhr-line); color: #785b22; font-size: 12px; line-height: 1.6; }
.dhr-page .dhr-price-cta { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 25px; padding: 23px 27px; border-radius: 8px; background: var(--card_bg_black, #fff); }
.dhr-page .dhr-price-cta p { max-width: 820px; font-size: 14px; line-height: 1.7; }
.dhr-page .dhr-price-cta .dhr-btn { flex: 0 0 auto; }

.dhr-page .dhr-faq-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(30px, 5cqw, 70px); }
.dhr-page .dhr-faq-layout > div:first-child > p:not(.dhr-kicker) { max-width: 350px; margin-top: 18px; color: var(--dhr-muted); font-size: 15px; line-height: 1.7; }
.dhr-page .dhr-faq details { border-bottom: 1px solid var(--dhr-line); }
.dhr-page .dhr-faq details:first-child { border-top: 1px solid var(--dhr-line); }
.dhr-page .dhr-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 0; cursor: pointer; font-size: 15px; font-weight: 600; line-height: 1.5; list-style: none; }
.dhr-page .dhr-faq summary::-webkit-details-marker { display: none; }
.dhr-page .dhr-faq summary::after { content: "+"; width: 24px; flex: 0 0 24px; color: #8d6a21; font-size: 23px; font-weight: 400; text-align: center; }
.dhr-page .dhr-faq details[open] summary::after { content: "−"; }
.dhr-page .dhr-faq details > p { padding: 0 28px 21px 0; color: var(--dhr-muted); font-size: 14px; line-height: 1.8; }

.dhr-page .dhr-request { display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); gap: clamp(34px, 5cqw, 68px); padding-block: 58px; color: #fff; }
.dhr-page .dhr-request .dhr-kicker { color: #ddd; }
.dhr-page .dhr-request-copy > p:not(.dhr-kicker) { max-width: 620px; margin: 18px 0 20px; color: #d0d0d0; }
.dhr-page .dhr-request-copy ul { display: grid; gap: 8px; color: #ddd; font-size: 13px; }
.dhr-page .dhr-request-copy li { position: relative; padding-left: 19px; }
.dhr-page .dhr-request-copy li::before { content: ""; position: absolute; top: .63em; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--dhr-accent); }
.dhr-page .dhr-contact { display: grid; gap: 4px; margin-top: 27px; padding-top: 20px; border-top: 1px solid #505250; }
.dhr-page .dhr-contact a { width: fit-content; font-size: 20px; font-weight: 600; }
.dhr-page .dhr-contact small { margin-top: 5px; color: #bbb; font-size: 12px; }
.dhr-page .dhr-form-card { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 29px; border-radius: 8px; background: #fff; color: #242424; }
.dhr-page .dhr-form-card h3 { max-width: 600px; margin-bottom: 14px; font-size: clamp(27px, 2.4cqw, 36px); line-height: 1.14; }
.dhr-page .dhr-form-card > p:not(.dhr-kicker) { max-width: 630px; color: #666; font-size: 14px; line-height: 1.75; }
.dhr-page .dhr-form-prompt { margin-top: 22px; color: #4a4a4a; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.dhr-page .dhr-form-actions { display: grid; grid-template-columns: 1fr; gap: 10px; width: 100%; margin-top: 10px; }
.dhr-page .dhr-form-actions .dhr-btn { justify-content: space-between; gap: 16px; width: 100%; min-height: 64px; padding: 11px 15px 11px 17px; text-align: left; }
.dhr-page .dhr-action-copy { display: grid; gap: 2px; min-width: 0; }
.dhr-page .dhr-action-copy strong { font: inherit; font-weight: 600; }
.dhr-page .dhr-action-copy small { overflow-wrap: anywhere; font-size: 11px; font-weight: 500; line-height: 1.35; opacity: .72; }
.dhr-page .dhr-action-mark { flex: 0 0 auto; font-size: 18px; font-weight: 500; line-height: 1; }
.dhr-page .dhr-form-card > small { margin-top: 12px; color: #777; font-size: 11px; line-height: 1.6; }
.dhr-page .dhr-form-card .dhr-btn--line,
.dhr-page .dhr-form-card .dhr-btn--max { color: #242424; }
.dhr-page .dhr-bottom-nav { display: flex; justify-content: space-between; gap: 20px; padding-block: 26px; }

.theme-dark .dhr-page { --dhr-soft: #2b2d2b; --dhr-tint: #37342b; --dhr-line: #454745; }
.theme-dark .dhr-page .dhr-photo-badge,
.theme-dark .dhr-page .dhr-case-media > span { background: #fff; color: #242424; }
.theme-dark .dhr-page .dhr-form-card { background: #f7f7f7; color: #242424; }
.theme-dark .dhr-page .dhr-request { color: #fff; }

@container dhr (max-width: 1080px) {
  .dhr-page .dhr-catalog { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dhr-page .dhr-catalog article { min-height: 250px; }
}

@container dhr (max-width: 860px) {
  .dhr-page .dhr-hero-grid,
  .dhr-page .dhr-factory,
  .dhr-page .dhr-project,
  .dhr-page .dhr-faq-layout,
  .dhr-page .dhr-request,
  .dhr-page .dhr-kitchen { grid-template-columns: 1fr; }
  .dhr-page .dhr-hero-media { min-height: 0; aspect-ratio: 1.65; }
  .dhr-page .dhr-section-head { display: block; }
  .dhr-page .dhr-section-head > p { max-width: 640px; margin-top: 16px; }
  .dhr-page .dhr-section { padding-block: 54px; }
  .dhr-page .dhr-factory-media { max-height: 500px; aspect-ratio: 1.7; }
  .dhr-page .dhr-faq-layout > div:first-child > p:not(.dhr-kicker) { max-width: 620px; }
  .dhr-page .dhr-related { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dhr-page .dhr-request { gap: 34px; }
}

@container dhr (max-width: 620px) {
  .dhr-page .dhr-proof { grid-template-columns: 1fr; gap: 18px; }
  .dhr-page .dhr-formats { grid-template-columns: 1fr; gap: 18px; }
  .dhr-page .dhr-formats article { padding: 0 0 17px; border-right: 0; border-bottom: 1px solid var(--dhr-line); }
  .dhr-page .dhr-formats article:last-child { padding-bottom: 0; border-bottom: 0; }
  .dhr-page .dhr-zones,
  .dhr-page .dhr-cases,
  .dhr-page .dhr-catalog,
  .dhr-page .dhr-budget { grid-template-columns: 1fr; }
  .dhr-page .dhr-zone { padding: 21px; }
  .dhr-page .dhr-catalog article { min-height: 0; }
  .dhr-page .dhr-spec-grid { gap: 19px; }
  .dhr-page .dhr-price-cta { align-items: flex-start; flex-direction: column; }
  .dhr-page .dhr-price-cta .dhr-btn { width: 100%; }
}

@container dhr (max-width: 430px) {
  .dhr-page .dhr-breadcrumbs { padding: 20px 0 26px; font-size: 11px; }
  .dhr-page .dhr-hero .dhr-actions { display: grid; grid-template-columns: 1fr; }
  .dhr-page .dhr-hero .dhr-btn { width: 100%; }
  .dhr-page .dhr-hero-media { aspect-ratio: 1.18; }
  .dhr-page .dhr-photo-badge { top: 13px; left: 13px; }
  .dhr-page .dhr-hero-media figcaption { padding: 70px 17px 18px; }
  .dhr-page .dhr-hero-media figcaption strong { font-size: 20px; }
  .dhr-page .dhr-section { padding-block: 46px; }
  .dhr-page .dhr-zone { grid-template-columns: 24px minmax(0, 1fr); gap: 9px; padding: 20px 18px; }
  .dhr-page .dhr-case-copy { padding: 22px 19px; }
  .dhr-page .dhr-kitchen { padding: 24px 20px; }
  .dhr-page .dhr-spec-grid { grid-template-columns: 1fr; }
  .dhr-page .dhr-factory-media { aspect-ratio: 1.1; }
  .dhr-page .dhr-project-asides article,
  .dhr-page .dhr-budget article { padding: 22px 19px; }
  .dhr-page .dhr-related { grid-template-columns: 1fr; gap: 10px; }
  .dhr-page .dhr-related a { min-height: 66px; padding: 16px; }
  .dhr-page .dhr-price-cta { padding: 21px 19px; }
  .dhr-page .dhr-form-card { padding: 24px 19px; }
  .dhr-page .dhr-contact a { font-size: 18px; overflow-wrap: anywhere; }
  .dhr-page .dhr-bottom-nav { align-items: flex-start; flex-direction: column; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .dhr-page * { scroll-behavior: auto !important; transition: none !important; }
}

@media print {
  .dhr-page { container-type: normal; }
  .dhr-page .dhr-jump,
  .dhr-page .dhr-request,
  .dhr-page .dhr-bottom-nav { display: none; }
  .dhr-page .dhr-section { padding-block: 24px; }
}

/* End */


/* Start:/local/tools/dc-light-b2b/horeca/native-layout.css?17893813072081*/
/* DC-Light HoReCa — bridge to the measured native Aspro B2B family. */
.dhr-page.dhr-native {
  --dhr-site-inner-max: calc(1500px - 64px);
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.dhr-page.dhr-native .dhr-layout { width: 100%; max-width: none; min-width: 0; }
.dhr-page.dhr-native .dhr-breadcrumbs { width: 100%; max-width: none; margin-inline: 0; }
.dhr-page.dhr-native .dhr-layout > :is(.dhr-hero, .dhr-jump, .dhr-section, .dhr-request, .dhr-bottom-nav) {
  width: 100%;
  max-width: var(--dhr-site-inner-max);
  margin-inline: auto;
}

.dhr-page.dhr-native :is(.dhr-section--soft, .dhr-section--tint, .dhr-request) {
  position: relative;
  isolation: isolate;
}

.dhr-page.dhr-native :is(.dhr-section--soft, .dhr-section--tint, .dhr-request)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  clip-path: inset(0 -100vmax);
}

.dhr-page.dhr-native .dhr-section--soft { background: var(--dhr-soft); }
.dhr-page.dhr-native .dhr-section--soft::before { background: var(--dhr-soft); box-shadow: 0 0 0 100vmax var(--dhr-soft); }
.dhr-page.dhr-native .dhr-section--tint { background: var(--dhr-tint); }
.dhr-page.dhr-native .dhr-section--tint::before { background: var(--dhr-tint); box-shadow: 0 0 0 100vmax var(--dhr-tint); }
.dhr-page.dhr-native .dhr-request { background: var(--dhr-dark); }
.dhr-page.dhr-native .dhr-request::before { background: var(--dhr-dark); box-shadow: 0 0 0 100vmax var(--dhr-dark); }

.theme-dark .dhr-page.dhr-native .dhr-section--soft { background: var(--dhr-soft); }
.theme-dark .dhr-page.dhr-native .dhr-section--tint { background: var(--dhr-tint); }

@supports not (container-type: inline-size) {
  @media (max-width: 920px) {
    .dhr-page.dhr-native .dhr-hero-grid,
    .dhr-page.dhr-native .dhr-factory,
    .dhr-page.dhr-native .dhr-project,
    .dhr-page.dhr-native .dhr-faq-layout,
    .dhr-page.dhr-native .dhr-request,
    .dhr-page.dhr-native .dhr-kitchen { grid-template-columns: 1fr; }
  }
}

/* End */


/* Start:/local/tools/dc-light-b2b/native-family.css?178938500914196*/
/* DC-Light native B2B family — shared first-screen contract, 14.09.2026.
 * Loaded only on the eight reviewed native routes, after each route stylesheet.
 * The route namespaces and form/content implementations remain independent. */

:is(
  .dch-page.dch-native,
  .dsv-page.dsv-native,
  .dco-page.dco-native,
  .dck-page.dck-native,
  .dcl-calc.dcl-native,
  .ddp-page.ddp-native,
  .dhr-page.dhr-native,
  .dmi-page.dmi-native
) {
  --dc-native-hero-gap: clamp(40px, 4cqw, 56px);
  --dc-native-line: var(--stroke_black, #e8e8e8);
}

:is(
  .dch-page.dch-native .dch-hero h1,
  .dsv-page.dsv-native .dsv-hero h1,
  .dco-page.dco-native .dco-hero h1,
  .dck-page.dck-native .dck-hero h1,
  .dcl-calc.dcl-native .dcl-hero h1,
  .ddp-page.ddp-native .ddp-hero h1,
  .dhr-page.dhr-native .dhr-hero h1,
  .dmi-page.dmi-native .dmi-hero h1
) {
  max-width: 680px;
  margin-bottom: 23px;
  font-size: clamp(38px, 3.5vw, 56px);
  font-weight: 600;
  line-height: 1.09;
  letter-spacing: -.04em;
  text-wrap: balance;
}

:is(
  .dch-page.dch-native .dch-breadcrumbs,
  .dsv-page.dsv-native .dsv-breadcrumbs,
  .dco-page.dco-native .dco-breadcrumb,
  .dck-page.dck-native .dck-breadcrumbs,
  .dcl-calc.dcl-native .dcl-breadcrumbs,
  .ddp-page.ddp-native .ddp-breadcrumbs,
  .dhr-page.dhr-native .dhr-breadcrumbs,
  .dmi-page.dmi-native .dmi-breadcrumbs
) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 0;
  margin: 0;
  padding: 25px 0 34px;
  gap: 0;
  color: #888;
  font-size: 12px;
  line-height: 1.7;
}

.dch-page.dch-native .dch-breadcrumbs ol,
.dsv-page.dsv-native .dsv-breadcrumbs ol,
.dck-page.dck-native .dck-breadcrumbs ol,
.ddp-page.ddp-native .ddp-breadcrumbs ol,
.dhr-page.dhr-native .dhr-breadcrumbs ol,
.dmi-page.dmi-native .dmi-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  min-height: 20.4px;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.dch-page.dch-native .dch-breadcrumbs li,
.dsv-page.dsv-native .dsv-breadcrumbs li,
.dck-page.dck-native .dck-breadcrumbs li,
.ddp-page.ddp-native .ddp-breadcrumbs li,
.dhr-page.dhr-native .dhr-breadcrumbs li,
.dmi-page.dmi-native .dmi-breadcrumbs li,
.dco-page.dco-native .dco-breadcrumb > :is(a, span),
.dcl-calc.dcl-native .dcl-breadcrumbs .breadcrumbs__item {
  display: flex;
  align-items: center;
  min-height: 20.4px;
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  list-style: none;
}

.dch-page.dch-native .dch-breadcrumbs :is(a, [aria-current]),
.dsv-page.dsv-native .dsv-breadcrumbs :is(a, [aria-current]),
.dck-page.dck-native .dck-breadcrumbs :is(a, [aria-current]),
.ddp-page.ddp-native .ddp-breadcrumbs :is(a, [aria-current]),
.dhr-page.dhr-native .dhr-breadcrumbs :is(a, [aria-current]),
.dmi-page.dmi-native .dmi-breadcrumbs :is(a, [aria-current]),
.dco-page.dco-native .dco-breadcrumb > :is(a, span),
.dcl-calc.dcl-native .dcl-breadcrumbs :is(.breadcrumbs__link, .breadcrumbs__item-name) {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.dch-page.dch-native .dch-breadcrumbs li + li::before,
.dsv-page.dsv-native .dsv-breadcrumbs li + li::before,
.dck-page.dck-native .dck-breadcrumbs li + li::before,
.ddp-page.ddp-native .ddp-breadcrumbs li + li::before,
.dhr-page.dhr-native .dhr-breadcrumbs li + li::before,
.dmi-page.dmi-native .dmi-breadcrumbs li + li::before {
  content: "/";
  margin: 0 12px;
  color: #aaa;
  font-weight: 400;
}

.dck-page.dck-native .dck-breadcrumbs li:not(:last-child)::after {
  content: none;
}

.dco-page.dco-native .dco-breadcrumb > .dco-icon {
  display: none;
}

.dco-page.dco-native .dco-breadcrumb > a:not(:first-child)::before,
.dco-page.dco-native .dco-breadcrumb > span::before {
  content: "/";
  margin: 0 12px;
  color: #aaa;
  font-weight: 400;
}

.dcl-calc.dcl-native .dcl-breadcrumbs .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  min-height: 20.4px;
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.dcl-calc.dcl-native .dcl-breadcrumbs .breadcrumbs__separator {
  display: none;
}

.dcl-calc.dcl-native .dcl-breadcrumbs .breadcrumbs__item:not(:first-child)::before {
  content: "/";
  margin: 0 12px;
  color: #aaa;
  font-size: inherit;
  font-weight: 400;
}

:is(
  .dch-page.dch-native .dch-hero,
  .dsv-page.dsv-native .dsv-hero,
  .dco-page.dco-native .dco-hero,
  .dck-page.dck-native .dck-hero,
  .dcl-calc.dcl-native .dcl-hero,
  .ddp-page.ddp-native .ddp-hero,
  .dhr-page.dhr-native .dhr-hero,
  .dmi-page.dmi-native .dmi-hero
) {
  padding-top: 0;
  padding-bottom: 40px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

:is(
  .dch-page.dch-native .dch-hero-grid,
  .dsv-page.dsv-native .dsv-hero-grid,
  .dco-page.dco-native .dco-hero-grid,
  .dck-page.dck-native .dck-hero-grid,
  .dcl-calc.dcl-native .dcl-hero-grid,
  .ddp-page.ddp-native .ddp-hero-grid,
  .dhr-page.dhr-native .dhr-hero-grid,
  .dmi-page.dmi-native .dmi-hero-grid
) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--dc-native-hero-gap);
  align-items: start;
}

:is(
  .dch-page.dch-native .dch-hero-copy,
  .dsv-page.dsv-native .dsv-hero-copy,
  .dco-page.dco-native .dco-hero-copy,
  .dck-page.dck-native .dck-hero-copy,
  .dcl-calc.dcl-native .dcl-hero-copy,
  .ddp-page.ddp-native .ddp-hero-copy,
  .dhr-page.dhr-native .dhr-hero-copy,
  .dmi-page.dmi-native .dmi-hero-copy
) {
  min-width: 0;
  padding: 8px 0;
}

:is(
  .dch-page.dch-native .dch-hero .dch-kicker,
  .dsv-page.dsv-native .dsv-hero .dsv-kicker,
  .dco-page.dco-native .dco-hero .dco-overline,
  .dck-page.dck-native .dck-hero .dck-kicker,
  .dcl-calc.dcl-native .dcl-hero .dcl-eyebrow,
  .ddp-page.ddp-native .ddp-hero .ddp-kicker,
  .dhr-page.dhr-native .dhr-hero .dhr-kicker,
  .dmi-page.dmi-native .dmi-hero .dmi-kicker
) {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 17px;
  color: #666;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .09em;
  text-transform: uppercase;
}

:is(
  .dch-page.dch-native .dch-hero .dch-lead,
  .dsv-page.dsv-native .dsv-hero .dsv-lead,
  .dco-page.dco-native .dco-hero .dco-lead,
  .dck-page.dck-native .dck-hero .dck-lead,
  .dcl-calc.dcl-native .dcl-hero .dcl-hero-lead,
  .ddp-page.ddp-native .ddp-hero .ddp-lead,
  .dhr-page.dhr-native .dhr-hero .dhr-lead,
  .dmi-page.dmi-native .dmi-hero .dmi-lead
) {
  font-size: 18px;
  line-height: 1.6;
}

:is(
  .dch-page.dch-native .dch-hero .dch-actions,
  .dsv-page.dsv-native .dsv-hero .dsv-actions,
  .dco-page.dco-native .dco-hero .dco-actions,
  .dck-page.dck-native .dck-hero .dck-hero-actions,
  .dcl-calc.dcl-native .dcl-hero .dcl-actions,
  .ddp-page.ddp-native .ddp-hero .ddp-actions,
  .dhr-page.dhr-native .dhr-hero .dhr-actions,
  .dmi-page.dmi-native .dmi-hero .dmi-actions
) {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 12px;
}

:is(
  .dch-page.dch-native .dch-hero .dch-btn,
  .dsv-page.dsv-native .dsv-hero .dsv-btn,
  .dco-page.dco-native .dco-hero .dco-btn,
  .dck-page.dck-native .dck-hero .dck-btn,
  .dck-page.dck-native .dck-hero .dck-textlink,
  .dcl-calc.dcl-native .dcl-hero .dcl-button,
  .ddp-page.ddp-native .ddp-hero .ddp-btn,
  .dhr-page.dhr-native .dhr-hero .dhr-btn,
  .dmi-page.dmi-native .dmi-hero .dmi-btn
) {
  min-height: 52px;
  padding: 14px 21px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
}

.dck-page.dck-native .dck-hero .dck-textlink,
.dcl-calc.dcl-native .dcl-hero .dcl-button--text {
  border: 1px solid #d9d9d9;
  background: transparent;
  color: inherit;
  text-decoration: none !important;
}

.dck-page.dck-native .dck-hero .dck-textlink:hover,
.dcl-calc.dcl-native .dcl-hero .dcl-button--text:hover {
  border-color: var(--theme-base-color, #ffb400);
  background: #fff8e5;
}

.dck-page.dck-native .dck-hero-actions .dck-small {
  order: 3;
  flex-basis: 100%;
  margin: 2px 0 0;
}

:is(
  .dch-page.dch-native .dch-hero-media,
  .dsv-page.dsv-native .dsv-hero-media,
  .dco-page.dco-native .dco-hero-visual,
  .dck-page.dck-native .dck-hero-photo,
  .dhr-page.dhr-native .dhr-hero-media,
  .dmi-page.dmi-native .dmi-hero-photo
) {
  width: 100%;
  min-height: 0;
  max-height: none;
  align-self: auto;
  aspect-ratio: 1.42;
  border: 0;
  border-radius: 8px;
  outline: 1px solid rgba(0, 0, 0, .10);
  outline-offset: -1px;
  box-shadow: none;
}

.dcl-calc.dcl-native .dcl-hero-picture img {
  outline: 1px solid rgba(0, 0, 0, .10);
  outline-offset: -1px;
}

:is(
  .dch-page.dch-native .dch-proof-row,
  .dco-page.dco-native .dco-proof-row,
  .dck-page.dck-native .dck-hero-mini,
  .dcl-calc.dcl-native .dcl-hero-facts,
  .ddp-page.ddp-native .ddp-proof-row,
  .dhr-page.dhr-native .dhr-proof,
  .dmi-page.dmi-native .dmi-proof
) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
  padding-top: 27px;
  border-top: 1px solid var(--dc-native-line);
}

.dcl-calc.dcl-native .dcl-hero-facts > div {
  padding-right: 14px;
}

.dcl-calc.dcl-native .dcl-hero-facts {
  width: 100%;
  max-width: var(--dcl-site-inner-max, 1436px);
  margin-inline: auto;
}

.dcl-calc.dcl-native .dcl-hero-facts > div + div {
  padding-left: 0;
  border-left: 0;
}

@media (max-width: 980px) {
  :is(
    .dch-page.dch-native .dch-hero-grid,
    .dsv-page.dsv-native .dsv-hero-grid,
    .dco-page.dco-native .dco-hero-grid,
    .dck-page.dck-native .dck-hero-grid,
    .dcl-calc.dcl-native .dcl-hero-grid,
    .ddp-page.ddp-native .ddp-hero-grid,
    .dhr-page.dhr-native .dhr-hero-grid,
    .dmi-page.dmi-native .dmi-hero-grid
  ) {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  :is(
    .dch-page.dch-native .dch-hero-media,
    .dsv-page.dsv-native .dsv-hero-media,
    .dco-page.dco-native .dco-hero-visual,
    .dck-page.dck-native .dck-hero-photo,
    .dhr-page.dhr-native .dhr-hero-media,
    .dmi-page.dmi-native .dmi-hero-photo
  ) {
    aspect-ratio: 1.75;
  }
}

@media (max-width: 767px) {
  :is(
    .dch-page.dch-native .dch-breadcrumbs,
    .dsv-page.dsv-native .dsv-breadcrumbs,
    .dco-page.dco-native .dco-breadcrumb,
    .dck-page.dck-native .dck-breadcrumbs,
    .dcl-calc.dcl-native .dcl-breadcrumbs,
    .ddp-page.ddp-native .ddp-breadcrumbs,
    .dhr-page.dhr-native .dhr-breadcrumbs,
    .dmi-page.dmi-native .dmi-breadcrumbs
  ) {
    padding: 20px 0 27px;
    font-size: 11px;
  }

  .dch-page.dch-native .dch-breadcrumbs ol,
  .dsv-page.dsv-native .dsv-breadcrumbs ol,
  .dck-page.dck-native .dck-breadcrumbs ol,
  .ddp-page.ddp-native .ddp-breadcrumbs ol,
  .dhr-page.dhr-native .dhr-breadcrumbs ol,
  .dmi-page.dmi-native .dmi-breadcrumbs ol,
  .dch-page.dch-native .dch-breadcrumbs li,
  .dsv-page.dsv-native .dsv-breadcrumbs li,
  .dck-page.dck-native .dck-breadcrumbs li,
  .ddp-page.ddp-native .ddp-breadcrumbs li,
  .dhr-page.dhr-native .dhr-breadcrumbs li,
  .dmi-page.dmi-native .dmi-breadcrumbs li,
  .dco-page.dco-native .dco-breadcrumb > :is(a, span),
  .dcl-calc.dcl-native .dcl-breadcrumbs .breadcrumbs,
  .dcl-calc.dcl-native .dcl-breadcrumbs .breadcrumbs__item {
    min-height: 18.7px;
  }

  :is(
    .dch-page.dch-native .dch-hero .dch-kicker,
    .dsv-page.dsv-native .dsv-hero .dsv-kicker,
    .dco-page.dco-native .dco-hero .dco-overline,
    .dck-page.dck-native .dck-hero .dck-kicker,
    .dcl-calc.dcl-native .dcl-hero .dcl-eyebrow,
    .ddp-page.ddp-native .ddp-hero .ddp-kicker,
    .dhr-page.dhr-native .dhr-hero .dhr-kicker,
    .dmi-page.dmi-native .dmi-hero .dmi-kicker
  ) {
    margin-bottom: 16px;
    font-size: 10px;
  }

  :is(
    .dch-page.dch-native .dch-hero h1,
    .dsv-page.dsv-native .dsv-hero h1,
    .dco-page.dco-native .dco-hero h1,
    .dck-page.dck-native .dck-hero h1,
    .dcl-calc.dcl-native .dcl-hero h1,
    .ddp-page.ddp-native .ddp-hero h1,
    .dhr-page.dhr-native .dhr-hero h1,
    .dmi-page.dmi-native .dmi-hero h1
  ) {
    max-width: 620px;
    font-size: clamp(34px, 9.2vw, 40px);
    line-height: 1.11;
    letter-spacing: -.035em;
  }
}

@media (max-width: 600px) {
  :is(
    .dch-page.dch-native .dch-hero .dch-actions,
    .dsv-page.dsv-native .dsv-hero .dsv-actions,
    .dco-page.dco-native .dco-hero .dco-actions,
    .dck-page.dck-native .dck-hero .dck-hero-actions,
    .dcl-calc.dcl-native .dcl-hero .dcl-actions,
    .ddp-page.ddp-native .ddp-hero .ddp-actions,
    .dhr-page.dhr-native .dhr-hero .dhr-actions,
    .dmi-page.dmi-native .dmi-hero .dmi-actions
  ) {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  :is(
    .dch-page.dch-native .dch-hero .dch-btn,
    .dsv-page.dsv-native .dsv-hero .dsv-btn,
    .dco-page.dco-native .dco-hero .dco-btn,
    .dck-page.dck-native .dck-hero .dck-btn,
    .dck-page.dck-native .dck-hero .dck-textlink,
    .dcl-calc.dcl-native .dcl-hero .dcl-button,
    .ddp-page.ddp-native .ddp-hero .ddp-btn,
    .dhr-page.dhr-native .dhr-hero .dhr-btn,
    .dmi-page.dmi-native .dmi-hero .dmi-btn
  ) {
    width: 100%;
    justify-content: space-between;
  }

  .dck-page.dck-native .dck-hero-actions .dck-small {
    grid-row: 3;
  }

  :is(
    .dch-page.dch-native .dch-hero-media,
    .dsv-page.dsv-native .dsv-hero-media,
    .dco-page.dco-native .dco-hero-visual,
    .dck-page.dck-native .dck-hero-photo,
    .dhr-page.dhr-native .dhr-hero-media,
    .dmi-page.dmi-native .dmi-hero-photo
  ) {
    aspect-ratio: 1.25;
  }

  :is(
    .dch-page.dch-native .dch-proof-row,
    .dco-page.dco-native .dco-proof-row,
    .dck-page.dck-native .dck-hero-mini,
    .dcl-calc.dcl-native .dcl-hero-facts,
    .ddp-page.ddp-native .ddp-proof-row,
    .dhr-page.dhr-native .dhr-proof,
    .dmi-page.dmi-native .dmi-proof
  ) {
    grid-template-columns: minmax(0, 1fr);
    gap: 17px;
    margin-top: 26px;
    padding-top: 21px;
  }
}

.theme-dark :is(
  .dch-page.dch-native .dch-hero-media,
  .dsv-page.dsv-native .dsv-hero-media,
  .dco-page.dco-native .dco-hero-visual,
  .dck-page.dck-native .dck-hero-photo,
  .dcl-calc.dcl-native .dcl-hero-picture img,
  .dhr-page.dhr-native .dhr-hero-media,
  .dmi-page.dmi-native .dmi-hero-photo
) {
  outline-color: rgba(255, 255, 255, .10);
}

/* End */


/* Start:/bitrix/templates/aspro-lite/css/order-info.min.css?17707243061015*/
.order-info-block{padding:32px 31px 33px 30px;}.order-info-block--margined{margin:33px 0;}.order-info-block .price .line-block__item{margin-top:0;}.order-info-block .icon-svg-block{padding-right:3px;}.order-info-block .text{min-width:205px;}.order-info-block .question-title{margin-bottom:31px;color:var(--white_text_black);}.order-info-block .price + .order-info-btn{margin-top:20px;}.order-info-block ~ .sale-linked{border-top:1px solid #DDD;}@media (max-width:991px){.order-info-block{padding:25px;padding-bottom:5px}.order-info-block .icon-svg-block{display:none}.order-info-block .line-block__item:not(.order-info-btns){margin-top:0;margin-bottom:20px}.order-info-block{padding-bottom:5px}}@media (max-width:767px){.order-info-block>.line-block{flex-direction:column}.order-info-block .price + .order-info-btn{margin-top:0}}@media (max-width:600px){.order-info-block .flex-grow-to-600{flex-grow:1}.order-info-btns .btn{width:100%}}@media (min-width:600px){.order-info-btns .btn.min_width--300{min-width:300px}}
/* End */
/* /local/tools/dc-light-b2b/style.css?178938130722591 */
/* /local/tools/dc-light-b2b/horeca/style.css?178938130722148 */
/* /local/tools/dc-light-b2b/horeca/native-layout.css?17893813072081 */
/* /local/tools/dc-light-b2b/native-family.css?178938500914196 */
/* /bitrix/templates/aspro-lite/css/order-info.min.css?17707243061015 */
