

/* Start:/local/templates/new/components/bitrix/catalog.element/new/style.css?178643827816811*/
:root {
  --color-ink: #252422;
  --color-body: #5a5956;
  --color-muted: #979797;
  --color-light: #b8b8b8;
  --color-line: #edecea;
  --color-line-strong: #dbd9d6;
  --color-accent: #9ea354;
  --color-warning: #f9923e;
  --color-white: #fff;
  --color-page: #f9f8f8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  min-width: 320px;
  margin: 0;
}

body {
  background: var(--color-page);
  color: var(--color-ink);
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

button {
  font: inherit;
}

button:focus:not(:focus-visible) {
  outline: none;
}

.page-shell {
  padding-block: 48px;
}

.kit-panel {
  min-height: 484px;
}

.delivery-layout {
  display: grid;
  grid-template-columns: 560px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.delivery-map-column {
  position: sticky;
  top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}

.delivery-heading {
  display: flex;
  width: fit-content;
  height: 20px;
  align-items: flex-start;
  gap: 12px;
}

.delivery-heading h3 {
  width: auto;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.location-link {
  display: inline-flex;
  width: 81px;
  align-items: center;
  gap: 4px;
  color: var(--color-accent);
  font-size: 13px;
  line-height: 18.2px;
  text-decoration: none;
}

.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.icon--pin {
  background-image: url("/local/templates/new/components/bitrix/catalog.element/new/icons/location-pin.svg");
}

.icon--clock {
  background-image: url("/local/templates/new/components/bitrix/catalog.element/new/icons/clock.svg");
}

.icon--check {
  background-image: url("/local/templates/new/components/bitrix/catalog.element/new/icons/circle-check.svg");
}

.icon--alert {
  background-image: url("/local/templates/new/components/bitrix/catalog.element/new/icons/circle-alert.svg");
}

.status--warning .icon--alert {
  background-image: url("/local/templates/new/components/bitrix/catalog.element/new/icons/circle-alert-warning.svg");
}

.icon--arrow {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
  background-image: url("/local/templates/new/components/bitrix/catalog.element/new/icons/arrow-right.svg");
}

.map-delivery-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.courier-heading {
  height: auto;
  padding-block-start: 16px;
}

.delivery-map {
  position: relative;
  display: block;
  width: 560px;
  height: 350px;
  overflow: hidden;
  background: #f3f3f1;
}

.delivery-map__loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 18px;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.map-loader {
  width: 18px;
  height: 18px;
  border: 2px solid #d7d7d3;
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: map-loader-spin 700ms linear infinite;
}

.delivery-map__canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.delivery-map.is-map-ready .delivery-map__loading,
.delivery-map.has-map-error .delivery-map__loading {
  opacity: 0;
  visibility: hidden;
}

.delivery-map.is-map-ready .delivery-map__canvas {
  opacity: 1;
  pointer-events: auto;
}

@keyframes map-loader-spin {
  to { transform: rotate(1turn); }
}

.map-point {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  background-color: #b4b4b4;
  background-image: url("/local/templates/new/components/bitrix/catalog.element/new/icons/map-pin-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  box-shadow: 0 2px 8px rgba(37, 36, 34, .16);
  cursor: pointer;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.map-point:hover,
.map-point:focus-visible,
.map-point.is-active {
  background-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(158, 163, 84, .22), 0 3px 10px rgba(37, 36, 34, .2);
  transform: translate(-50%, -50%) scale(1.08);
}

.map-point:focus-visible {
  outline: 2px solid var(--color-ink);
  outline-offset: 3px;
}

.map-reset {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid var(--color-line-strong);
  border-radius: 2px;
  background: rgba(255, 255, 255, .96);
  color: var(--color-body);
  box-shadow: 0 2px 8px rgba(37, 36, 34, .12);
  font: inherit;
  font-size: 12px;
  line-height: 18px;
  cursor: pointer;
}

.map-reset[hidden] {
  display: none;
}

.map-reset:hover,
.map-reset:focus-visible {
  border-color: var(--color-accent);
}

.map-error {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  left: 12px;
  margin: 0;
  padding: 8px 10px;
  background: rgba(255, 255, 255, .94);
  color: var(--color-muted);
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

.map-error[hidden] {
  display: none;
}

.delivery-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: var(--color-white);
}

a.delivery-card {
  color: inherit;
  text-decoration: none;
}

.delivery-card::after {
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-line);
  pointer-events: none;
  content: "";
}

.delivery-card__main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.delivery-card h4,
.delivery-card p {
  margin: 0;
}

.delivery-card h4 {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: uppercase;
}

.delivery-card p {
  color: var(--color-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
}

.courier-card {
  width: 560px;
}

.courier-card h4 {
  color: var(--color-ink);
  font-size: 14px;
  line-height: 20px;
}

.courier-card p {
  color: var(--color-ink);
  line-height: 20px;
}

.pickup-list {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-block-start: 36px;
}

.pickup-cards,
.extra-pickups {
  width: 100%;
}

.pickup-card {
  width: 100%;
  scroll-margin-block: 72px;
}

.pickup-card::after {
  border: 1px solid var(--color-line);
}

.pickup-card + .pickup-card::after,
.extra-pickups > .pickup-card:first-child::after {
  top: -1px;
}

.pickup-card:hover::after {
  z-index: 1;
  border: 1px solid var(--color-accent);
}

.pickup-card.is-active::after {
  z-index: 1;
  border: 1px solid var(--color-accent);
}

.pickup-card:focus-visible {
  outline: none;
}

.pickup-card:focus-visible::after {
  z-index: 1;
  border: 1px solid var(--color-accent);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  min-height: 20px;
  align-items: center;
  gap: 16px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  white-space: nowrap;
}

.meta-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.meta-dot {
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  border-radius: 50%;
  background: var(--color-muted);
}

.status--warning { color: var(--color-warning); }
.status--available { color: var(--color-accent); }

.notice-row {
  gap: 8px;
}

.show-more {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 20px;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 600;
  line-height: 19.6px;
  text-align: left;
  cursor: pointer;
  transition: opacity 180ms ease;
}

.show-more:disabled { cursor: wait; }
.show-more.is-leaving { opacity: 0; }

.loading-dots {
  display: none;
  align-items: center;
  gap: 3px;
}

.show-more.is-loading .show-more-label { display: none; }
.show-more.is-loading .loading-dots { display: inline-flex; }

.loading-dots i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  animation: loading-dot 750ms ease-in-out infinite alternate;
}

.loading-dots i:nth-child(2) { animation-delay: 120ms; }
.loading-dots i:nth-child(3) { animation-delay: 240ms; }

.extra-pickups.is-revealing {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 420ms cubic-bezier(.22, 1, .36, 1), opacity 240ms ease;
}

.extra-pickups.is-revealing.is-visible { opacity: 1; }
.extra-pickups.is-revealing .pickup-card { animation: pickup-arrive 360ms both cubic-bezier(.22, 1, .36, 1); }

@keyframes loading-dot {
  from { transform: translateY(2px); opacity: .35; }
  to { transform: translateY(-2px); opacity: 1; }
}

@keyframes pickup-arrive {
  from { transform: translateY(10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.kit-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.kit-intro {
  margin: 0;
  color: var(--color-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}

.kit-list {
  display: grid;
  height: 76px;
  grid-template-columns: 540px minmax(0, 1fr);
  gap: 32px;
  margin: 0;
}

.kit-list__column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.kit-line {
  display: flex;
  height: 20px;
  align-items: baseline;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
}

.kit-line::after {
  min-width: 16px;
  flex: 1;
  margin-inline: 5px;
  border-bottom: 1px dashed var(--color-line-strong);
  content: "";
}

.kit-line dd {
  order: 3;
  width: 150px;
  margin: 0;
  color: var(--color-body);
}

.kit-list__column:first-child .kit-line:nth-child(1) dt { width: 35px; }
.kit-list__column:first-child .kit-line:nth-child(2) dt { width: 55px; }
.kit-list__column:first-child .kit-line:nth-child(3) dt { width: 78px; }
.kit-list__column:nth-child(2) .kit-line:nth-child(1) dt { width: 124px; }
.kit-list__column:nth-child(2) .kit-line:nth-child(2) dt { width: 46px; }

.kit-slider {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: visible;
}

.kit-slider__viewport {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.kit-slider .swiper-wrapper {
  align-items: stretch;
}

.kit-slider .swiper-slide {
  height: 160px;
  background: #ededed;
}

.kit-zoom {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.kit-zoom:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.kit-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.has-lightbox {
  overflow: hidden;
}

.kit-lightbox {
  width: min(663px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100% - 32px);
  padding: 0;
  border: 1px solid var(--color-line-strong);
  background: var(--color-white);
  color: var(--color-ink);
  box-shadow: 0 24px 70px rgba(37, 36, 34, .28);
  overflow: visible;
}

.kit-lightbox[open] {
  animation: kit-lightbox-in 180ms ease-out;
}

.kit-lightbox::backdrop {
  background: rgba(37, 36, 34, .72);
  backdrop-filter: blur(3px);
}

.kit-lightbox__content {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
}

.kit-lightbox__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 130px);
  aspect-ratio: 221 / 160;
  background: #ededed;
  object-fit: contain;
}

.kit-lightbox__caption {
  min-height: 52px;
  margin: 0;
  padding: 16px 20px;
  color: var(--color-body);
  font-size: 14px;
  line-height: 20px;
}

.kit-lightbox__close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0 0 2px;
  border: 1px solid var(--color-line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  color: var(--color-ink);
  box-shadow: 0 2px 8px rgba(37, 36, 34, .12);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.kit-lightbox__close:hover,
.kit-lightbox__close:focus-visible {
  border-color: var(--color-accent);
}

@keyframes kit-lightbox-in {
  from { opacity: 0; transform: translateY(8px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.kit-arrow {
  position: absolute;
  z-index: 3;
  top: 60px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 8px;
  border: 1px solid var(--color-line-strong);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-ink);
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transition: opacity 180ms ease, visibility 180ms ease, border-color 180ms ease;
}

.kit-prev {
  left: -20px;
}

.kit-prev .icon--arrow {
  transform: rotate(180deg);
}

.kit-next {
  right: -20px;
}

.kit-arrow.swiper-button-disabled,
.kit-arrow.swiper-button-lock {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (hover: hover) {
  .kit-arrow:not(.swiper-button-disabled):hover {
    border-color: var(--color-accent);
  }
}

@media (max-width: 1599px) and (min-width: 1280px) {
  .kit-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1279px) and (min-width: 1024px) {
  .kit-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kit-line dd { width: 70px; }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .kit-list { height: auto; grid-template-columns: 1fr; }
  .kit-line dd { width: 80px; }
}

@media (max-width: 1599px) {
  .delivery-panel {
    display: flex;
    flex-direction: column;
  }

  .delivery-layout,
  .delivery-map-column,
  .map-delivery-stack {
    display: contents;
  }

  .pickup-heading {
    position: sticky;
    z-index: 6;
    top: 16px;
    order: 1;
    width: 100%;
    height: auto;
    padding-block-end: 16px;
    background: var(--color-white);
  }

  .pickup-heading::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 16px;
    background: var(--color-white);
    content: "";
  }

  .delivery-heading {
    height: auto;
    flex-wrap: wrap;
  }

  .delivery-map {
    order: 2;
    width: 100%;
    border: 1px solid var(--color-line-strong);
  }

  .pickup-list {
    order: 3;
    width: 100%;
    padding-block: 16px 32px;
  }

  .meta-row {
    height: auto;
    flex-wrap: wrap;
  }

  .courier-heading {
    order: 4;
    width: 100%;
    padding-block: 0 16px;
  }

  .courier-card {
    order: 5;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .page-shell { padding-block: 0; }
  .kit-panel { min-height: 0; }
  .delivery-panel {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .delivery-layout,
  .delivery-map-column,
  .map-delivery-stack { display: contents; }
  .pickup-heading {
    order: 1;
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 4px;
    padding-block-end: 18px;
  }
  .delivery-heading h3 { white-space: normal; }
  .delivery-map { order: 2; width: 100%; height: 350px; }
  .pickup-list {
    order: 3;
    width: 100%;
    gap: 8px;
    padding-block: 17px 15px;
  }
  .courier-heading {
    order: 4;
    flex-direction: column;
    gap: 4px;
    padding-block: 17px 16px;
  }
  .courier-card { order: 5; width: 100%; }
  .delivery-card { padding: 12px; }
  .delivery-card h4 { font-size: 14px; line-height: 18px; }
  .delivery-card p { line-height: 20px; }
  .meta-row { height: auto; gap: 8px; flex-wrap: wrap; font-size: 13px; line-height: 18px; }
  .notice-row { flex-wrap: nowrap; white-space: normal; }
  .kit-panel {
    display: flex;
    height: auto;
    flex-direction: column;
    overflow: hidden;
  }
  .kit-content { gap: 20px; padding-block-start: 16px; }
  .kit-list { display: block; height: 122px; }
  .kit-list__column { gap: 8px; }
  .kit-list__column + .kit-list__column { padding-block-start: 8px; }
  .kit-line { height: 18px; font-size: 13px; line-height: 18px; }
  .kit-list__column:first-child .kit-line:nth-child(1) dt { width: 33px; }
  .kit-list__column:first-child .kit-line:nth-child(2) dt { width: 51px; }
  .kit-list__column:first-child .kit-line:nth-child(3) dt { width: 72px; }
  .kit-list__column:nth-child(2) .kit-line:nth-child(1) dt { width: 115px; }
  .kit-list__column:nth-child(2) .kit-line:nth-child(2) dt { width: 43px; }
  .kit-line dd { width: 150px; }
  .kit-slider { width: calc(100% + 16px); overflow: hidden; }
  .kit-slider__viewport { overflow: visible; }
  .kit-slider .swiper-slide {
    height: auto;
    aspect-ratio: 221 / 160;
  }
  .kit-arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .map-loader,
  .loading-dots i,
  .extra-pickups .pickup-card {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* End */
/* /local/templates/new/components/bitrix/catalog.element/new/style.css?178643827816811 */
