

/* Start:/local/templates/bonolle/template_styles.css?178255996015593*/
.bonolle-body {
  margin: 0;
  background: #f2f3f5;
}

.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-focus: 0 0 0 3px rgba(39, 191, 193, .22);
  --bonolle-radius: 8px;
  --bonolle-radius-md: 12px;
  --bonolle-radius-lg: 16px;
  --bonolle-shadow-sm: 0 1px 2px rgba(0, 0, 0, .04);
  --bonolle-shadow-md: 0 2px 8px rgba(0, 0, 0, .08);
  --bonolle-container: 1472px;
  --bonolle-bottom-nav-height: 68px;
  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: 14px;
  line-height: 20px;
  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);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
}

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

.bonolle-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--bonolle-text);
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
}

.bonolle-logo__mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: linear-gradient(135deg, #27bfc1, var(--bonolle-primary));
  box-shadow: 0 2px 8px rgba(39, 191, 193, .24);
}

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

.bonolle-logo small {
  display: block;
  margin-top: 5px;
  color: var(--bonolle-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .02em;
}

.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: 14px;
  line-height: 18px;
  white-space: nowrap;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .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: 2px;
  background: currentColor;
}

.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 {
  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: 14px;
  line-height: 18px;
}

.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;
  color: #1f2a3a;
  background: #e7edf8;
}

.bonolle-footer__subscribe {
  padding: 14px 0 12px;
  background: #d4deef;
  border-radius: 34px 34px 0 0;
}

.bonolle-footer__subscribe-row {
  min-height: 44px;
  display: grid;
  grid-template-columns: 72px minmax(220px, auto) minmax(320px, 1fr) minmax(260px, .9fr);
  align-items: center;
  gap: 18px;
}

.bonolle-footer__subscribe-icon {
  width: 60px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #6c8ff0, #dfe7ff);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(83, 111, 187, .22);
}

.bonolle-footer__subscribe strong {
  font-size: 21px;
  line-height: 26px;
}

.bonolle-footer__subscribe-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 10px;
}

.bonolle-footer__subscribe-field input {
  min-width: 0;
  height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, .94);
  color: var(--bonolle-text);
}

.bonolle-footer__subscribe-field button {
  height: 38px;
  border: 0;
  border-radius: 12px;
  background: #9db8ee;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.bonolle-footer__subscribe p {
  margin: 0;
  color: #6d7b91;
  font-size: 11px;
  line-height: 14px;
}

.bonolle-footer__panel {
  padding: 34px 0 28px;
  background: #e9eef8;
  border-radius: 36px 36px 0 0;
}

.bonolle-footer__columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr .95fr 1.45fr;
  gap: 52px;
  align-items: start;
}

.bonolle-footer h3 {
  margin: 0 0 16px;
  color: #101828;
  font-size: 16px;
  line-height: 20px;
}

.bonolle-footer p,
.bonolle-footer a {
  color: #405066;
  font-size: 14px;
  line-height: 20px;
}

.bonolle-footer a {
  display: block;
  margin: 0 0 12px;
}

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

.bonolle-footer__app-feature {
  min-height: 50px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.bonolle-footer__app-feature span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff;
  color: #6d7b91;
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--bonolle-shadow-sm);
}

.bonolle-footer__app-feature p {
  margin: 0;
  color: #101828;
}

.bonolle-footer__stores {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.bonolle-footer__stores span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: #101828;
  font-weight: 700;
  box-shadow: var(--bonolle-shadow-sm);
}

.bonolle-footer__contacts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 48px;
  align-items: start;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid #d8e0ee;
}

.bonolle-footer__contact-block p {
  margin: 0 0 8px;
}

.bonolle-footer__contact-block a {
  display: inline;
  margin: 0;
  color: #5479b8;
  font-weight: 700;
}

.bonolle-footer__socials div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.bonolle-footer__socials a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--bonolle-primary);
  font-size: 11px;
  font-weight: 700;
  box-shadow: var(--bonolle-shadow-sm);
}

.bonolle-footer__payments {
  display: flex;
  gap: 18px;
  align-items: center;
  color: #8d98aa;
  font-size: 18px;
  font-weight: 700;
}

.bonolle-footer__legal {
  margin-top: 26px;
  color: #7c8798;
  font-size: 13px;
  line-height: 19px;
}

.bonolle-footer__legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.bonolle-footer__legal a {
  margin: 0;
  color: #5479b8;
  font-size: 13px;
}

.bonolle-footer__legal p {
  max-width: 720px;
  margin: 0 0 8px;
  color: #7c8798;
  font-size: 13px;
}

.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__subscribe-row {
    grid-template-columns: 58px minmax(190px, auto) minmax(280px, 1fr);
  }

  .bonolle-footer__subscribe-row p {
    grid-column: 2 / -1;
  }

  .bonolle-footer__columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }

  .bonolle-footer__app {
    grid-column: 1 / -1;
  }

  .bonolle-footer__stores {
    grid-template-columns: repeat(3, minmax(140px, 180px));
  }
}

@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__contacts {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bonolle-footer__payments {
    justify-content: flex-start;
  }
}

@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: 8px;
    min-height: 0;
    padding: 12px 0;
  }

  .bonolle-logo {
    order: 1;
    flex: 1 1 auto;
    gap: 0;
    color: var(--bonolle-primary);
    font-size: 22px;
    white-space: nowrap;
  }

  .bonolle-logo__mark {
    display: none;
  }

  .bonolle-catalog-trigger {
    order: 2;
    width: 48px;
    min-width: 48px;
    padding: 0;
    margin-left: auto;
  }

  .bonolle-catalog-trigger__text {
    display: none;
  }

  .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 {
    margin-top: 28px;
    background: #e9eef8;
  }

  .bonolle-footer__subscribe {
    display: none;
  }

  .bonolle-footer__panel {
    display: flex;
    flex-direction: column;
    padding: 28px 0 104px;
    border-radius: 0;
  }

  .bonolle-footer__contacts {
    order: 1;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .bonolle-footer__contact-block {
    padding-bottom: 20px;
  }

  .bonolle-footer__contact-block h3 {
    margin-bottom: 12px;
  }

  .bonolle-footer__contact-block p {
    margin-bottom: 10px;
    color: #26344a;
    font-size: 15px;
    line-height: 22px;
  }

  .bonolle-footer__contact-block a {
    color: #5479b8;
  }

  .bonolle-footer__socials {
    padding: 14px 0 24px;
  }

  .bonolle-footer__socials h3 {
    margin-bottom: 14px;
    font-size: 15px;
  }

  .bonolle-footer__socials div {
    gap: 12px;
  }

  .bonolle-footer__socials a {
    width: 46px;
    height: 46px;
    font-size: 13px;
  }

  .bonolle-footer__payments {
    gap: 22px;
    padding: 6px 0 24px;
    color: #9aa5b6;
    font-size: 18px;
  }

  .bonolle-footer__columns {
    order: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .bonolle-footer__section {
    padding: 18px 0;
    border-top: 1px solid #d8e0ee;
  }

  .bonolle-footer__section h3 {
    position: relative;
    margin: 0 0 14px;
    padding-right: 28px;
    font-size: 18px;
    line-height: 24px;
  }

  .bonolle-footer__section h3::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 2px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #26344a;
    border-bottom: 2px solid #26344a;
    transform: rotate(45deg);
  }

  .bonolle-footer__section a {
    margin-bottom: 13px;
    color: #405066;
    font-size: 16px;
    line-height: 22px;
  }

  .bonolle-footer__app {
    margin: 22px 0 26px;
    padding: 24px;
    border-radius: 28px;
    background: #d5dfef;
  }

  .bonolle-footer__app h3 {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 28px;
  }

  .bonolle-footer__app-feature {
    grid-template-columns: 58px 1fr;
    gap: 16px;
    margin-bottom: 14px;
  }

  .bonolle-footer__app-feature span {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .bonolle-footer__app-feature p {
    font-size: 17px;
    line-height: 23px;
  }

  .bonolle-footer__stores {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .bonolle-footer__stores span {
    min-height: 48px;
    font-size: 16px;
  }

  .bonolle-footer__legal {
    order: 3;
    margin-top: 0;
    color: #7c8798;
    font-size: 14px;
    line-height: 21px;
  }

  .bonolle-footer__legal nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 26px;
  }

  .bonolle-footer__legal nav::before {
    content: "Документы";
    color: #7c8798;
    font-weight: 700;
  }

  .bonolle-footer__legal a {
    font-size: 15px;
    line-height: 21px;
  }

  .bonolle-footer__legal p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 21px;
  }

  .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: 0 -1px 12px rgba(16, 24, 40, .08);
  }

  .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?178255996015593 */
