

/* Start:/local/templates/bonolle/template_styles.css?17825762059831*/
.bonolle-body {
  --bonolle-bg: #f2f3f5;
  margin: 0;
  background: var(--bonolle-bg);
}

.bonolle-page {
  --bonolle-primary: #3b85a8;
  --bonolle-primary-hover: #2f7aa0;
  --bonolle-primary-light: #e8f9f9;
  --bonolle-primary-ultra: #f0fbfb;
  --bonolle-bg: #f2f3f5;
  --bonolle-surface: #ffffff;
  --bonolle-text: #1a1a1a;
  --bonolle-text-soft: #555f6f;
  --bonolle-muted: #888888;
  --bonolle-faint: #999999;
  --bonolle-border: #e6e8eb;
  --bonolle-border-light: #f0f0f0;
  --bonolle-sale: #f91155;
  --bonolle-sale-bg: #fff0f3;
  --bonolle-success: #10c44c;
  --bonolle-success-bg: #e6f9ed;
  --bonolle-warning: #ffc107;
  --bonolle-danger: #e5484d;
  --bonolle-danger-bg: #fff1f1;
  --bonolle-focus: 0 0 0 3px rgba(39, 191, 193, .22);
  --bonolle-radius-sm: 8px;
  --bonolle-radius: var(--bonolle-radius-sm);
  --bonolle-radius-md: 12px;
  --bonolle-radius-lg: 16px;
  --bonolle-radius-pill: 999px;
  --bonolle-radius-circle: 50%;
  --bonolle-radius-icon: 2px;
  --bonolle-shadow-none: none;
  --bonolle-shadow-sm: 0 1px 2px rgba(0, 0, 0, .04);
  --bonolle-shadow-md: 0 2px 8px rgba(0, 0, 0, .08);
  --bonolle-shadow-card: 0 1px 3px rgba(0, 0, 0, .06);
  --bonolle-shadow-small: var(--bonolle-shadow-sm);
  --bonolle-shadow-medium: 0 2px 5px rgba(0, 0, 0, .08);
  --bonolle-shadow-large: 0 8px 20px rgba(0, 0, 0, .18);
  --bonolle-shadow-bottom-nav: 0 -1px 12px rgba(16, 24, 40, .08);
  --bonolle-container: 1472px;
  --bonolle-gap: 12px;
  --bonolle-bottom-nav-height: 68px;
  --bonolle-type-body-size: 14px;
  --bonolle-type-body-line: 20px;
  --bonolle-type-caption-size: 12px;
  --bonolle-type-caption-line: 16px;
  --bonolle-type-button-size: 14px;
  --bonolle-type-button-line: 18px;
  --bonolle-type-chip-size: 14px;
  --bonolle-type-chip-line: 18px;
  --bonolle-type-footer-title-size: 15px;
  --bonolle-type-footer-title-line: 20px;
  min-height: 100vh;
  background: var(--bonolle-bg);
  color: var(--bonolle-text);
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--bonolle-type-body-size);
  line-height: var(--bonolle-type-body-line);
  letter-spacing: 0;
}

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

.bonolle-page :where(a) {
  color: inherit;
  text-decoration: none;
}

.bonolle-page button,
.bonolle-page input {
  font: inherit;
}

.bonolle-page svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bonolle-page :focus-visible {
  outline: none;
  box-shadow: var(--bonolle-focus);
}

.bonolle-container {
  width: min(var(--bonolle-container), calc(100vw - 48px));
  margin: 0 auto;
}

.bonolle-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--bonolle-border-light);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
}

.bonolle-header__main {
  min-height: 72px;
  display: grid;
  grid-template-columns: 148px 118px minmax(260px, 1fr) auto;
  align-items: center;
  gap: var(--bonolle-gap);
}

.bonolle-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  color: var(--bonolle-primary);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.bonolle-logo__mark {
  display: none;
}

.bonolle-logo__text {
  min-width: 0;
}

.bonolle-logo small {
  display: block;
  color: var(--bonolle-muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 13px;
}

.bonolle-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--bonolle-border);
  border-radius: var(--bonolle-radius);
  background: var(--bonolle-surface);
  color: var(--bonolle-text);
  font-weight: 500;
  font-size: var(--bonolle-type-button-size);
  line-height: var(--bonolle-type-button-line);
  white-space: nowrap;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}

.bonolle-button:hover {
  background: #f8fafb;
  border-color: #d8dde3;
}

.bonolle-button--primary {
  border-color: var(--bonolle-primary);
  background: var(--bonolle-primary);
  color: #fff;
}

.bonolle-button--primary:hover {
  border-color: var(--bonolle-primary-hover);
  background: var(--bonolle-primary-hover);
}

.bonolle-catalog-icon {
  display: grid;
  grid-template-columns: repeat(2, 7px);
  grid-template-rows: repeat(2, 7px);
  gap: 3px;
}

.bonolle-catalog-icon i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: var(--bonolle-radius-icon);
  background: currentColor;
}

.bonolle-catalog-trigger {
  justify-self: start;
}

.bonolle-search {
  min-width: 0;
}

.bonolle-search input {
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--bonolle-border);
  border-radius: var(--bonolle-radius-md);
  background: linear-gradient(180deg, #fff, #f7f9fb);
  color: var(--bonolle-text);
}

.bonolle-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bonolle-header-action {
  position: relative;
  min-width: 58px;
  min-height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 5px 8px;
  border-radius: var(--bonolle-radius);
  color: var(--bonolle-muted);
  font-size: 12px;
  line-height: 14px;
}

.bonolle-header-action:hover,
.bonolle-header-action.is-active {
  color: var(--bonolle-primary);
  background: var(--bonolle-primary-ultra);
}

.bonolle-nav {
  background: #fff;
}

.bonolle-nav__row {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--bonolle-text-soft);
  font-size: var(--bonolle-type-chip-size);
  line-height: var(--bonolle-type-chip-line);
}

.bonolle-nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.bonolle-nav__links .is-active {
  color: var(--bonolle-primary);
  font-weight: 500;
}

.bonolle-nav__address {
  color: var(--bonolle-muted);
  white-space: nowrap;
}

.bonolle-nav__address b {
  color: var(--bonolle-primary);
  font-weight: 500;
}

.bonolle-workarea {
  min-height: 420px;
  padding: 18px 0 42px;
}

.bonolle-footer {
  margin-top: 36px;
  padding: 28px 0 34px;
  border-top: 1px solid var(--bonolle-border);
  background: #fff;
}

.bonolle-footer__columns {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.bonolle-footer h3 {
  margin: 0 0 10px;
  color: var(--bonolle-text);
  font-size: 15px;
  line-height: 20px;
}

.bonolle-footer p,
.bonolle-footer a {
  display: block;
  margin: 0 0 7px;
  color: var(--bonolle-muted);
  font-size: 13px;
  line-height: 18px;
}

.bonolle-footer .bonolle-logo {
  display: inline-flex;
  margin-bottom: 10px;
}

.bonolle-bottom-nav {
  display: none;
}

@media (max-width: 1279px) {
  .bonolle-header__main {
    grid-template-columns: 148px 112px minmax(220px, 1fr) auto;
  }

  .bonolle-header-action {
    min-width: 48px;
  }

  .bonolle-header-action span {
    display: none;
  }

  .bonolle-footer__columns {
    gap: 24px;
  }
}

@media (max-width: 1119px) {
  .bonolle-header__main {
    grid-template-columns: 166px 112px minmax(0, 1fr) auto;
    grid-template-areas:
      "logo catalog actions actions"
      "search search search search";
    padding: 12px 0;
  }

  .bonolle-logo {
    grid-area: logo;
  }

  .bonolle-catalog-trigger {
    grid-area: catalog;
  }

  .bonolle-search {
    grid-area: search;
  }

  .bonolle-header-actions {
    grid-area: actions;
    justify-self: end;
  }

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

@media (max-width: 720px) {
  .bonolle-container {
    width: min(100vw - 24px, 520px);
  }

  .bonolle-page {
    padding-bottom: calc(var(--bonolle-bottom-nav-height) + env(safe-area-inset-bottom));
  }

  .bonolle-header {
    position: static;
  }

  .bonolle-header__main {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 0;
    padding: 12px 0;
  }

  .bonolle-logo {
    order: 1;
    flex: 1 1 auto;
    font-size: 22px;
  }

  .bonolle-catalog-trigger {
    order: 2;
    min-width: 104px;
  }

  .bonolle-header-actions {
    order: 3;
    margin-left: 0;
  }

  .bonolle-header-action {
    display: none;
  }

  .bonolle-search {
    order: 4;
    flex: 1 0 100%;
  }

  .bonolle-nav {
    display: none;
  }

  .bonolle-workarea {
    padding-top: 12px;
  }

  .bonolle-footer {
    padding-bottom: calc(34px + var(--bonolle-bottom-nav-height) + env(safe-area-inset-bottom));
  }

  .bonolle-footer__columns {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bonolle-footer__section {
    min-width: 0;
  }

  .bonolle-footer__section a {
    font-size: 14px;
    line-height: 20px;
  }

  .bonolle-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: calc(var(--bonolle-bottom-nav-height) + env(safe-area-inset-bottom));
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--bonolle-border);
    background: #fff;
    box-shadow: var(--bonolle-shadow-bottom-nav);
  }

  .bonolle-bottom-nav__item {
    min-width: 0;
    min-height: 52px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border-radius: var(--bonolle-radius);
    color: var(--bonolle-muted);
    font-size: 11px;
    line-height: 13px;
  }

  .bonolle-bottom-nav__item svg {
    width: 20px;
    height: 20px;
  }

  .bonolle-bottom-nav__item.is-active {
    color: var(--bonolle-primary);
  }
}

/* End */
/* /local/templates/bonolle/template_styles.css?17825762059831 */
