/* ========================================================================
   БЭСТФОН — новый дизайн
   SF Pro Display шрифт + стили нового дизайна + наследие Phoenix
   ======================================================================== */

/* --- SF Pro Display Font Face ---------------------------------------- */
@font-face {
  font-family: "SF Pro Display";
  src: url("fonts/SF-Pro-Display-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("fonts/SF-Pro-Display-RegularItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("fonts/SF-Pro-Display-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("fonts/SF-Pro-Display-MediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("fonts/SF-Pro-Display-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("fonts/SF-Pro-Display-SemiboldItalic.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("fonts/SF-Pro-Display-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("fonts/SF-Pro-Display-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ========================================================================
   НОВЫЙ ДИЗАЙН — импорт из новый_дизайн/css/style.css
   ======================================================================== */

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

h1, h2, h3, h4, h5, h6, p, a, button, input, textarea, select, option, label, legend, fieldset, figure, figcaption {
  margin: 0;
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: var(--site-header-height, 96px);
}

body {
  font-size: 16px;
  line-height: 1.4;
  color: #0b0f19;
  background: #f5f5f7;
}

body, a, button {
  font-family: "SF Pro Display", system-ui, -apple-system, sans-serif;
}

.wrapper {
  max-width: 100%;
  overflow: hidden;
  padding-top: var(--site-header-height, 96px);
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 12px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 16px;
  }
}
@media (min-width: 1440px) {
  .container {
    width: 1300px;
    padding: 0;
  }
}

.title {
  font-family: "SF Pro Display";
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.2%;
  color: #1D1D1F;
}

section {
  padding: 100px 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ========================================================================
   SWIPER — стили для галерей
   ======================================================================== */
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  bottom: 10px;
  left: 0;
  width: 100%;
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
  margin: 0 4px;
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #433654;
}
/* --- Utility: catalog-button --- */
.catalog-button {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  gap: 5px;
  box-sizing: border-box;
  background: #1D1D1F;
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
.catalog-button::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: 1px;
}
.catalog-button--white {
  background: #fff;
  color: #1D1D1F;
}
.catalog-button--arrow-none::before {
  display: none;
}
.catalog-button--map {
  flex-direction: row;
  background: #FF251D;
}
.catalog-button--map::before {
  background: url(img/map-ico.svg) center/contain no-repeat;
  border: none;
  width: 13px;
  height: 16px;
  transform: none;
}
.catalog-button--review {
  flex-direction: row;
}
.catalog-button--review::before {
  background: url(img/review-ico.svg) center/contain no-repeat;
  border: none;
  width: 14px;
  height: 13px;
  transform: none;
}
@media (min-width: 1440px) {
  .catalog-button {
    padding: 10px 19px;
  }
}

.title-card {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.1%;
  color: #1D1D1F;
}

.descr-card {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.1%;
  color: #989898;
  margin: 8px 0 0 0;
}

/* ========================================================================
   HEADER
   ======================================================================== */
:root {
  --site-header-height: 96px;
}
@media (min-width: 1440px) {
  :root {
    --site-header-height: 50px;
  }
}

header .container {
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-template-rows: repeat(2, auto);
}

header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: #F5F5F7;
}

.site-header .container {
  position: relative;
}
.site-header .container:before {
  content: "";
  position: absolute;
  top: 0;
  height: 51px;
  left: 50%;
  transform: translateX(-50%);
  background: #FBFBFD;
  width: 100vw;
  z-index: -1;
}

.site-header .logo {
  display: inline-flex;
  align-items: center;
  width: 110px;
  grid-row: 1/2;
  grid-column: 1/2;
  padding: 16px 0;
}

.site-header .nav-ico {
  appearance: none;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  grid-row: 2/3;
  grid-column: 5/4;
  margin: 17px 0;
}
.site-header .nav-ico__img {
  width: 30px;
  height: 30px;
  display: block;
}

.site-header .catalog-btn {
  grid-row: 2/3;
  grid-column: 1/2;
  font-family: "SF Pro Display";
  font-weight: 400;
  appearance: none;
  border: 0;
  background: #433654;
  color: #fff;
  border-radius: 999px;
  height: 32px;
  padding: 0 13px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 5px;
  cursor: pointer;
  width: 132px;
}
.site-header .catalog-btn .burger {
  width: 9px;
  height: 12px;
  position: relative;
  display: inline-block;
}
.site-header .catalog-btn .burger:before,
.site-header .catalog-btn .burger:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 99px;
}
.site-header .catalog-btn .burger:before {
  top: 1px;
  box-shadow: 0 4px 0 rgba(255, 255, 255, 0.9);
}
.site-header .catalog-btn .burger:after {
  bottom: 1px;
}

.site-header nav.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.08);
  z-index: 20;
}
.site-header nav.site-nav a {
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  white-space: nowrap;
  display: block;
  padding: 10px 8px;
  color: #323232;
}
.site-header nav.site-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.site-header .header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  grid-row: 1/2;
  grid-column: 2/5;
}

.site-header .header__social {
  display: flex;
  align-items: center;
  gap: 5px;
}
.site-header .header__social a {
  width: 16px;
  height: 16px;
}

.site-header .header__contact {
  display: flex;
  gap: 16px;
  align-items: center;
}
.site-header .header__contact .phone-sub {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 10px;
  color: #AEAEB2;
  letter-spacing: -1%;
  line-height: 1;
}
.site-header .header__contact .phone {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: -1%;
  color: #1D1D1F;
  text-decoration: none;
  line-height: 1;
}

/* Phone select dropdown */
.site-header .phone-select {
  position: relative;
  line-height: 1;
}
.site-header .phone-select__trigger {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  height: 30px;
  font-size: 12px;
}
.site-header .phone-select__value {
  pointer-events: none;
}
.site-header .phone-select__chevron {
  width: 5px;
  height: 5px;
  display: inline-block;
  position: relative;
}
.site-header .phone-select__chevron:before {
  content: "";
  position: absolute;
  inset: 0;
  border-right: 1px solid #323232;
  border-bottom: 1px solid #323232;
  transform: rotate(45deg) translate(-1px, -1px);
}
.site-header .phone-select__menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 190px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.1);
  padding: 6px;
  z-index: 30;
}
.site-header .phone-select__option {
  width: 100%;
  text-align: left;
  appearance: none;
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: 10px 10px;
  font: inherit;
  color: #1D1D1F;
  cursor: pointer;
}
.site-header .phone-select__option:hover {
  background: rgba(11, 15, 25, 0.06);
}
.site-header .phone-select[data-open=true] .phone-select__menu {
  display: block;
}

.site-header.nav-open nav.site-nav {
  display: block;
}

/* Tablet header */
@media (min-width: 768px) {
  .site-header .catalog-btn {
    margin: 16px 0;
  }
  .site-header .nav-ico {
    display: none;
  }
  .site-header nav.site-nav {
    display: flex;
    position: static;
    grid-row: 2/3;
    grid-column: -1/-4;
    margin-top: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    justify-content: end;
    gap: 48px;
    align-self: center;
  }
  .site-header nav.site-nav a {
    display: inline;
    padding: 0;
  }
  .phone {
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: inherit;
    white-space: nowrap;
  }
  .phone-sub {
    margin-top: 2px;
  }
}

/* Desktop header */
@media (min-width: 1440px) {
  .site-header .container {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(4, auto);
    gap: 20px;
    justify-content: start;
  }
  .site-header .container:before {
    display: none;
  }
  .site-header .logo {
    grid-row: 1/2;
    grid-column: 1/2;
    padding: 9px 0;
  }
  .site-header .catalog-btn {
    grid-row: 1/2;
    grid-column: 2/3;
    justify-self: start;
    margin: 9px 0;
  }
  .site-header nav.site-nav {
    grid-row: 1/2;
    grid-column: 3/4;
    margin-left: 186px;
    margin-right: 185px;
  }
  .site-header .header-right {
    grid-row: 1/2;
    grid-column: 4/5;
    gap: 24px;
  }
}

/* ========================================================================
   CATALOG MENU
   ======================================================================== */
body.catalog-menu-open {
  overflow: hidden;
}
@media (max-width: 767px) {
  body.catalog-menu-open .site-header {
    z-index: 110;
  }
  body.catalog-menu-open:has(.catalog-menu[data-mobile-view=sub]) .site-header .nav-ico,
  body.catalog-menu-open:has(.catalog-menu[data-mobile-view=sub]) .site-header .catalog-btn {
    display: none;
  }
  body.catalog-menu-open .catalog-menu[data-mobile-view=sub] {
    top: 51px;
  }
}

.catalog-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
@media (max-width: 767px) {
  .catalog-menu {
    inset: auto;
    top: var(--site-header-height, 96px);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
  }
}
.catalog-menu.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.catalog-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(248, 248, 248, 0.88);
  backdrop-filter: blur(10px);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.catalog-menu__panel {
  position: relative;
  z-index: 1;
  background: #fff;
  display: flex;
  flex-direction: column;
  max-height: 100vh;
  overflow: hidden;
}
@media (max-width: 767px) {
  .catalog-menu__panel {
    flex: 1;
    min-height: 0;
    height: auto;
    max-height: none;
    border-radius: 0;
  }
}
@media (min-width: 768px) {
  .catalog-menu__panel {
    margin: 12px auto 0;
    max-width: calc(100% - 24px);
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 40px rgba(2, 6, 23, 0.12);
    height: calc(100vh - 12px);
  }
}
@media (min-width: 1440px) {
  .catalog-menu__panel {
    max-width: 1213px;
    margin: 0px;
  }
}

.catalog-menu__back {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  margin: 30px 16px 10px;
  padding: 0;
  font-family: "SF Pro Display", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #433654;
  cursor: pointer;
  text-align: left;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .catalog-menu__back {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .catalog-menu[data-mobile-view=sub] .catalog-menu__back {
    display: block;
  }
}

.catalog-menu__search {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 16px;
  padding: 0 14px;
  height: 45px;
  border-radius: 16px;
  background: #F8F8F8;
  border: 1px solid #EDEDED;
}
@media (min-width: 768px) {
  .catalog-menu__search {
    margin: 32px 26px 0 40px;
    max-width: none;
  }
}
.catalog-menu__search-ico {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.catalog-menu__search-input {
  appearance: none;
  border: 0;
  outline: none;
  background: transparent;
  flex: 1;
  min-width: 0;
  font-family: "SF Pro Display", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #6E6E6E;
}
.catalog-menu__search-input::placeholder {
  color: #AEAEB2;
}
.catalog-menu__search-hint {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 500;
  color: rgba(11, 15, 25, 0.55);
  white-space: nowrap;
  padding-left: 8px;
}
.catalog-menu__body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .catalog-menu__body {
    flex-direction: row;
    margin-top: 0;
    border-top: 1px solid #EDEDED;
  }
}
.catalog-menu__sidebar {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
@media (max-width: 767px) {
  .catalog-menu__sidebar {
    flex: 1;
    order: 2;
  }
}
@media (min-width: 768px) {
  .catalog-menu__sidebar {
    flex: 0 0 348px;
    max-width: 348px;
    border-right: 3px solid #f5f5f7;
    padding: 0 0px 17px 32px;
  }
}
@media (min-width: 1440px) {
  .catalog-menu__sidebar {
    flex-basis: 320px;
  }
}

.catalog-menu__logo {
  display: none;
  flex-shrink: 0;
  align-items: center;
  padding: 32px 20px 16px 10px;
  line-height: 0;
}
@media (min-width: 768px) {
  .catalog-menu__logo {
    display: inline-flex;
  }
}
@media (min-width: 1440px) {
  .catalog-menu__logo {
    padding-bottom: 20px;
  }
}
.catalog-menu__logo img {
  display: block;
  width: 110px;
  height: auto;
}

.catalog-menu__sidebar-title {
  display: none;
  margin: 0;
  padding: 28px 20px 16px 10px;
  font-family: "SF Pro Display", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1D1D1F;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .catalog-menu__sidebar-title {
    display: block;
  }
}
@media (min-width: 1440px) {
  .catalog-menu__sidebar-title {
    font-size: 24px;
  }
}

.catalog-menu__cats {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0 0 24px;
}
@media (min-width: 768px) {
  .catalog-menu__cats {
    padding: 0 0 24px;
  }
}

.catalog-menu__cat {
  appearance: none;
  border: 0;
  background: transparent;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 37px 10px 10px;
  font-family: "SF Pro Display", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1D1D1F;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}
.catalog-menu__cat:hover, .catalog-menu__cat.is-active {
  background: #F5F5F7;
}
@media (min-width: 1440px) {
  .catalog-menu__cat {
    padding-right: 27px;
  }
}
.catalog-menu__cat-icon {
  flex-shrink: 0;
  inline-size: 18px;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.catalog-menu__cat-icon-img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.catalog-menu__cat-label {
  flex: 1;
  min-width: 0;
  line-height: 1.3;
}
.catalog-menu__cat-count {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #AEAEB2;
  letter-spacing: -0.01em;
  white-space: nowrap;
  padding-left: 8px;
}

/* Catalog menu detail */
.catalog-menu__detail {
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 767px) {
  .catalog-menu__detail {
    order: 1;
    flex: 0 0 auto;
  }
}
@media (min-width: 768px) {
  .catalog-menu__detail {
    flex: 1;
    min-width: 0;
  }
}
@media (max-width: 767px) {
  .catalog-menu[data-mobile-view=list] .catalog-menu__detail .catalog-menu__detail-title,
  .catalog-menu[data-mobile-view=list] .catalog-menu__detail .catalog-menu__sub {
    display: none;
  }
}
@media (max-width: 767px) {
  .catalog-menu[data-mobile-view=sub] .catalog-menu__sidebar {
    display: none;
  }
}
@media (max-width: 767px) {
  .catalog-menu[data-mobile-view=sub] .catalog-menu__detail {
    flex: 1;
  }
  .catalog-menu[data-mobile-view=sub] .catalog-menu__detail .catalog-menu__detail-title {
    display: block;
    margin-left: 16px;
    margin-right: 16px;
  }
  .catalog-menu[data-mobile-view=sub] .catalog-menu__detail .catalog-menu__sub {
    display: grid;
    padding: 0 16px 24px;
  }
}
.catalog-menu__detail-title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 600;
  color: #1D1D1F;
  line-height: 1.2;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .catalog-menu__detail-title {
    margin: 24px 26px 0 40px;
  }
}
.catalog-menu__sub {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .catalog-menu__sub {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 16px;
    align-content: start;
  }
}
@media (min-width: 768px) {
  .catalog-menu__sub {
    padding: 40px 26px 0px 40px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
    align-content: start;
  }
}
@media (min-width: 1440px) {
  .catalog-menu__sub {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.catalog-menu__empty {
  grid-column: 1/-1;
  margin: 0;
  font-size: 14px;
  color: #AEAEB2;
}
@media (max-width: 767px) {
  .catalog-menu__group {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }
}
.catalog-menu__group-title {
  margin: 0 0 24px;
  font-size: 14px;
  font-weight: 600;
  color: #1D1D1F;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .catalog-menu__group-title {
    margin-bottom: 24px;
  }
}
@media (min-width: 1440px) {
  .catalog-menu__group-title {
    font-size: 16px;
  }
}
.catalog-menu__group-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  line-height: 1.1;
}
.catalog-menu__link {
  font-size: 12px;
  font-weight: 400;
  color: #626262;
  text-decoration: none;
  line-height: 1.1;
  transition: color 0.15s ease;
  letter-spacing: -0.01em;
}
.catalog-menu__link:hover {
  color: #433654;
}

/* ========================================================================
   PROMO SECTION
   ======================================================================== */
.promo {
  padding: 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.promo__frame {
  width: 100%;
  height: max(68.5vh, 685px);
  display: block;
  border: 0;
  pointer-events: none;
}
.promo__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.promo__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 10px;
  max-width: 817px;
  width: 390px;
  margin: 0 auto;
}
.promo__title {
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.02%;
  margin: 0;
  margin-top: 179px;
  font-weight: 600;
  color: #1D1D1F;
}
.promo__subtitle {
  margin: 24px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.1%;
  color: #626262;
  padding: 0 31px;
}
.promo__search {
  pointer-events: auto;
  margin: 70px auto 0;
  width: 100%;
  max-width: 500px;
  height: 45px;
  border-radius: 16px;
  background: #F8F8F8;
  border: 1px solid #EDEDED;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
}
.promo__search-icon {
  width: 16px;
  height: 16px;
}
.promo__search-input {
  appearance: none;
  border: 0;
  outline: none;
  background: transparent;
  flex: 1;
  font-size: 14px;
  color: #6E6E6E;
  min-width: 0;
  line-height: 1.2;
  font-weight: 500;
}
.promo__search-example {
  flex: 0 0 auto;
  font-size: 12px;
  color: rgba(11, 15, 25, 0.55);
  padding-left: 10px;
  font-weight: 500;
  white-space: nowrap;
}
.promo__footnote {
  margin-top: 160px;
  margin-bottom: 77px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.4%;
  text-transform: uppercase;
  color: #A1A1A1;
  position: relative;
}
.promo__footnote:after {
  inline-size: 20px;
  aspect-ratio: 1;
  background: url("data:image/svg+xml,%3Csvg width='8' height='5' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.550049 0.549988L3.55005 3.54999L6.55005 0.549988' stroke='%23AEAEB2' stroke-width='1.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") center center/8px 5px no-repeat, #fff;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -39px;
  border: 1px solid #F9FAFB;
  border-radius: 50%;
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.16);
}

/* ========================================================================
   FIND SECTION
   ======================================================================== */
.find {
  background: #F5F5F7;
}
.find__title {
  font-family: "SF Pro Display";
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1D1D1F;
  padding-right: 30%;
}
.find__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.find__header .catalog-button {
  width: 100%;
}
.find__grid {
  margin-top: 32px;
  gap: 20px;
  display: grid;
}
.find__card {
  height: 250px;
  overflow: hidden;
  padding: 16px 16px 0 16px;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  position: relative;
  margin: 0;
}
.find__card img {
  position: absolute;
  top: 85px;
}
.find__card figcaption p {
  margin: 8px 0 0 0;
}
@media (max-width: 767px) {
  .find__card--home, .find__card--watch {
    display: none;
  }
}
.find__card--iphone img {
  right: -90px;
  width: 285px;
}
.find__card--iphone .catalog-button {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 10;
}
.find__card--samsung img {
  right: -120px;
  width: 300px;
}
.find__card--xiaomi img {
  right: -80px;
  width: 265px;
}
.find__card--games {
  height: 388px;
}
.find__card--games img {
  right: 2%;
  width: 400px;
  top: 60px;
  clip-path: inset(0 50% 0 0);
}
.find__card--games::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -14%;
  top: 48px;
  width: 200px;
  height: 400px;
  background-image: url(img/dev-games.png);
  background-repeat: no-repeat;
  background-size: 400px auto;
  background-position: right center;
  pointer-events: none;
}
.find__card--scooter img {
  right: -58px;
  width: 412px;
  top: 0px;
}
.find__card--laptop img {
  right: -23%;
  width: 320px;
  top: 14px;
}
.find__card--airpods img {
  right: -9%;
  width: 330px;
  top: 74px;
}
.find__card--ipad img {
  right: 0%;
  width: 290px;
  top: 97px;
}
.find__card--all {
  padding: 25px;
  height: auto;
  background: #433654;
  color: #fff;
}
.find__card--all .title-card {
  color: #fff;
  font-size: 28px;
  line-height: 1.2;
}
.find__card--all .descr-card {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 16px;
  padding-right: 40%;
}
.find__card--all .catalog-button {
  margin-top: 24px;
}

/* Find responsive */
@media (min-width: 768px) {
  section {
    padding-top: 120px;
  }
  .title {
    font-size: 32px;
  }
  .promo__content {
    width: 100%;
  }
  .promo__title {
    font-size: 50px;
  }
  .find__title {
    padding-right: 0;
    font-size: 32px;
  }
  .find__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .find__header .catalog-button {
    width: auto;
    align-self: center;
  }
  .find__grid {
    margin-top: 50px;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(6, auto);
  }
  .find__card {
    height: auto;
  }
  .find__card img {
    top: 116px;
  }
  .find__card--iphone, .find__card--samsung, .find__card--xiaomi {
    grid-row: 1/2;
    height: 314px;
    padding-right: 20%;
  }
  .find__card--iphone {
    grid-column: 1/2;
  }
  .find__card--iphone img {
    right: -120px;
    width: 240px;
    top: 110px;
  }
  .find__card--samsung {
    grid-column: 2/3;
  }
  .find__card--samsung img {
    right: -180px;
  }
  .find__card--xiaomi {
    grid-column: 3/4;
  }
  .find__card--xiaomi img {
    right: -36px;
    width: 235px;
  }
  .find__card--games {
    grid-row: 2/4;
    grid-column: 1/3;
    height: 388px;
    width: 51.88vw;
  }
  .find__card--games img {
    top: 36px;
    right: 2%;
    width: 430px;
  }
  .find__card--games::after {
    background-size: 430px auto;
    right: -13%;
    top: 38px;
  }
  .find__card--home, .find__card--watch {
    grid-column: 2/4;
    height: 184px;
    width: 41.13vw;
    justify-self: end;
  }
  .find__card--home {
    grid-row: 2/3;
  }
  .find__card--home img {
    width: 200px;
    top: 110px;
    right: -24%;
  }
  .find__card--watch {
    grid-row: 3/4;
  }
  .find__card--watch img {
    width: 260px;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
  }
  .find__card--scooter, .find__card--laptop, .find__card--airpods, .find__card--ipad {
    height: 310px;
    width: 46.51vw;
  }
  .find__card--scooter, .find__card--laptop {
    grid-row: 4/5;
  }
  .find__card--airpods, .find__card--ipad {
    grid-row: 5/6;
  }
  .find__card--airpods img {
    top: 75px;
    right: -21%;
    width: 380px;
  }
  .find__card--scooter, .find__card--airpods {
    grid-column: 1/3;
    justify-self: start;
  }
  .find__card--scooter img {
    top: 0;
    right: -119px;
    width: 512px;
  }
  .find__card--laptop, .find__card--ipad {
    grid-column: 2/4;
    justify-self: end;
  }
  .find__card--laptop img {
    top: 59px;
    right: -36%;
    width: 338px;
  }
  .find__card--ipad img {
    top: 78px;
    right: -12%;
    width: 360px;
  }
  .find__card--all {
    grid-row: 6/7;
    grid-column: 1/-1;
    width: 100%;
    justify-self: start;
  }
  .find__card--all .catalog-button {
    margin-top: 54px;
  }
}

@media (min-width: 1440px) {
  .title {
    font-size: 50px;
  }
  .title-card {
    font-size: 28px;
  }
  .promo__content {
    width: 100%;
    padding: 0;
  }
  .promo__title {
    font-size: 70px;
    margin-top: 197px;
  }
  .promo__frame {
    height: 761px;
  }
  .promo__footnote {
    margin-top: 156px;
  }
  .find__title {
    font-size: 50px;
  }
  .find__grid {
    margin-top: 50px;
    grid-template-columns: repeat(3, 420px);
    grid-template-rows: repeat(6, auto);
  }
  .find__card {
    padding: 32px 28px;
    border-radius: 30px;
  }
  .find__card img {
    top: 189px;
  }
  .find__card--iphone, .find__card--samsung, .find__card--xiaomi {
    height: 600px;
  }
  .find__card--iphone img {
    right: 0px;
    width: 398px;
    top: 173px;
  }
  .find__card--samsung img {
    width: 398px;
    right: 0px;
  }
  .find__card--xiaomi img {
    right: 30px;
    width: 363px;
  }
  .find__card--games {
    height: 640px;
    width: 640px;
  }
  .find__card--games img {
    top: -117px;
    right: -31%;
    width: 924px;
    clip-path: none;
    transform: rotate(-45deg);
  }
  .find__card--games::after {
    display: none;
  }
  .find__card--home, .find__card--watch {
    height: 310px;
    width: 640px;
  }
  .find__card--home img {
    width: 313px;
    top: 45px;
    right: -3%;
  }
  .find__card--watch img {
    width: 484px;
    top: 140px;
  }
  .find__card--scooter, .find__card--laptop, .find__card--airpods, .find__card--all {
    height: 310px;
    width: 640px;
  }
  .find__card--ipad {
    grid-row: 5/7;
    grid-column: -1/-2;
    width: 640px;
    height: 640px;
  }
  .find__card--airpods img {
    right: 0%;
    width: 415px;
    top: 80px;
  }
  .find__card--scooter img {
    top: -162px;
    right: -90px;
    width: 780px;
  }
  .find__card--laptop img {
    top: -8px;
    right: -19%;
    width: 417px;
  }
  .find__card--ipad img {
    top: 235px;
    right: 0%;
    width: 561px;
  }
  .find__card--all .title-card {
    padding-right: 280px;
  }
  .find__card--all .descr-card {
    padding-right: 370px;
  }
  .find__card--all .catalog-button {
    margin-top: 81px;
  }
  .find--catalog .find__card--all {
    display: none;
  }
  .find--catalog .find__card--airpods {
    height: 640px;
  }
  .find--catalog .find__card--airpods img {
    right: -18%;
    width: 785px;
    top: 200px;
  }
}

/* Real Bitrix catalog root categories */
.find--catalog {
  padding: 72px 0 100px;
}
.find--catalog .find__header {
  align-items: flex-start;
}
.find--catalog .find__title {
  max-width: 680px;
  padding-right: 0;
}
.find--catalog .find__grid {
  grid-template-columns: 1fr;
  grid-template-rows: none;
  gap: 20px;
  margin-top: 32px;
}
.find--catalog .find__card--catalog-real {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 250px;
  padding: 20px 16px 0;
  border-radius: 20px;
}
.find--catalog .find__card--catalog-real figcaption {
  position: relative;
  z-index: 2;
}
.find--catalog .find__card--catalog-real .catalog-button {
  position: relative;
  z-index: 3;
  align-self: flex-start;
  margin-top: 12px;
}
.find--catalog .find__card--catalog-real img {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  display: block;
  width: calc(100% + 32px);
  max-width: none;
  height: 165px;
  object-fit: cover;
  margin: 14px -16px 0;
  border-radius: 0 0 20px 20px;
}
.find--catalog .find__card--catalog-real:not(.find__card--with-image) {
  min-height: 156px;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .find--catalog {
    padding: 96px 0 120px;
  }
  .find--catalog .find__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 32px;
    margin-top: 50px;
  }
  .find--catalog .find__card--catalog-real {
    min-height: 240px;
    padding: 28px;
    padding-right: 42%;
    border-radius: 24px;
  }
  .find--catalog .find__card--catalog-real img {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: auto;
    width: 58%;
    height: 100%;
    margin: 0;
    border-radius: 0 24px 24px 0;
    opacity: 0.9;
  }
  .find--catalog .find__card--catalog-real:not(.find__card--with-image) {
    min-height: 240px;
    padding-bottom: 28px;
  }
}

@media (min-width: 1440px) {
  .find--catalog .find__grid {
    grid-template-columns: repeat(2, 640px);
    grid-template-rows: none;
  }
  .find--catalog .find__card--catalog-real {
    width: auto;
    height: 310px;
    min-height: 310px;
    padding: 32px 28px;
    padding-right: 44%;
    border-radius: 30px;
  }
  .find--catalog .find__card--catalog-real img {
    border-radius: 0 30px 30px 0;
  }
}

/* ========================================================================
   COST SECTION
   ======================================================================== */
.cost {
  background: #fff;
}
.cost .title {
  padding-right: 30%;
}
.cost__person {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  background: #F5F5F7;
  padding: 50px 15px 0 15px;
  border-radius: 30px;
  overflow: hidden;
}
.cost__person .title {
  padding-right: 0;
  text-align: center;
  font-size: 20px;
  width: 90%;
}
.cost__person img {
  display: block;
  max-width: 100%;
  margin-bottom: -30px;
}
@media (min-width: 768px) {
  .cost .title {
    padding-right: 0;
  }
  .cost__person {
    position: relative;
    height: 500px;
    padding: 50px 274px 50px 50px;
    border-radius: 16px;
  }
  .cost__person .title {
    font-size: 28px;
    line-height: 1;
    width: 100%;
    letter-spacing: -0.1%;
  }
  .cost__person img {
    position: absolute;
    right: -115px;
    width: 405px;
    margin-bottom: 0;
    bottom: 0;
  }
}
@media (min-width: 1440px) {
  .cost__person {
    padding: 50px 805px 50px 110px;
    border-radius: 30px;
    margin-top: 50px;
  }
  .cost__person img {
    right: 85px;
    width: 529px;
    bottom: -60px;
  }
  .cost__person .title {
    line-height: 1.2;
  }
}

/* ========================================================================
   TRUST SECTION
   ======================================================================== */
.trust {
  background: #F5F5F7;
}
.trust .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.trust__item {
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
.trust__item .descr-card {
  margin-top: 12px;
  line-height: 1.4;
}
.trust__item figure {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.trust__item figure img {
  width: 89px;
}
.trust__item figure figcaption {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.trust__item figure figcaption span {
  font-size: 12px;
  color: #AEAEB2;
  letter-spacing: -0.1%;
}
.trust__item--map .catalog-button {
  margin-top: 16px;
}
.trust__item--review {
  position: relative;
}
.trust__item--review .catalog-button {
  margin-top: 40px;
}
.trust__item--review::after {
  content: "";
  position: absolute;
  bottom: -73px;
  right: -163px;
  width: 297px;
  height: 198px;
  background: url(img/wallet.png) center/contain no-repeat;
}
@media (min-width: 768px) {
  .trust__item {
    padding: 24px;
  }
  .trust__item .title-card {
    font-size: 28px;
  }
  .trust__item .descr-card {
    max-width: 280px;
  }
  .trust__item--map {
    position: relative;
  }
  .trust__item--map .catalog-button {
    position: absolute;
    margin: 0;
    bottom: 24px;
    right: 24px;
  }
  .trust__item--review::after {
    bottom: -115px;
    right: -150px;
    width: 477px;
    height: 298px;
  }
}
@media (min-width: 1440px) {
  .trust .container {
    display: flex;
    gap: 20px;
    flex-direction: row;
  }
  .trust__item {
    padding: 32px 28px;
    width: 100%;
    border-radius: 30px;
  }
  .trust__item figure {
    margin-top: 43px;
  }
  .trust__item--map .catalog-button {
    bottom: 32px;
  }
}

/* ========================================================================
   MAP SECTION
   ======================================================================== */
.map__wrapper {
  overflow: hidden;
  height: 350px;
  border-radius: 30px;
}
.map__wrapper img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  display: block;
}
@media (min-width: 768px) {
  .map__wrapper {
    height: 500px;
  }
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer {
  padding-top: 0;
  margin-top: -70px;
}
@media (min-width: 768px) {
  .footer {
    margin-top: -50px;
    margin-bottom: 109px;
  }
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-radius: 30px;
  background: #FFF;
  padding: 24px;
  position: relative;
}
.footer .container:before {
  content: "";
  position: absolute;
  bottom: -120px;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  height: 124px;
  background: linear-gradient(to top, #F5F5F7 0%, rgba(245, 245, 247, 0) 100%);
  z-index: 4;
}
@media (min-width: 768px) {
  .footer .container:before {
    bottom: -209px;
  }
}
.footer .container:after {
  content: "";
  position: absolute;
  bottom: -79px;
  left: 0;
  right: 0;
  height: 52px;
  background: url(img/logo-bg.svg) center/contain no-repeat;
}
@media (min-width: 768px) {
  .footer .container:after {
    height: 104px;
    bottom: -190px;
  }
}
.footer__descr .footer__logo {
  width: 110px;
  height: 18px;
}
.footer__descr p {
  margin-top: 12px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: #626262;
  line-height: 1;
}
.footer__social {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}
.footer__social a img {
  inline-size: 24px;
  aspect-ratio: 1;
}
.footer__lists {
  display: flex;
  justify-content: space-between;
}
.footer__lists h4 {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: -0.01em;
  color: #1D1D1F;
}
.footer__lists ul {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__lists ul li {
  font-weight: 400;
  font-size: 12px;
  letter-spacing: -0.01em;
  color: #1D1D1F;
  line-height: 1;
}
.footer__lists ul li a {
  text-decoration: none;
  color: inherit;
}
.footer__lists ul li a:hover {
  text-decoration: underline;
}
.footer__list {
  max-width: 49%;
}
@media (max-width: 767px) {
  .footer__list--goods {
    display: none;
  }
}
.footer__bottom {
  display: flex;
  padding-top: 32px;
  gap: 16px;
  flex-direction: column;
  border-top: 1px solid #e5e5e5;
}
.footer__bottom p, .footer__bottom a {
  font-weight: 400;
  font-size: 12px;
  letter-spacing: -0.01em;
  color: #AEAEB2;
  text-decoration: none;
}
@media (min-width: 768px) {
  .footer .container {
    padding: 32px;
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(2, auto);
    gap: 40px;
  }
  .footer__descr {
    width: 171px;
    grid-row: 1/2;
    grid-column: 1/2;
  }
  .footer__lists {
    grid-row: 1/2;
    grid-column: 2/3;
    gap: 70px;
  }
  .footer__bottom {
    grid-row: 2/3;
    grid-column: 1/-1;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 40px;
  }
  .footer__social {
    margin-top: 41px;
  }
}
@media (min-width: 1440px) {
  .footer .container {
    gap: 40px 70px;
    padding: 40px;
  }
  .footer .container:after {
    height: 200px;
    bottom: -240px;
  }
  .footer__descr {
    width: 301px;
    margin-right: auto;
  }
  .footer__descr p {
    margin-top: 15px;
  }
  .footer__lists {
    justify-content: flex-end;
  }
  .footer__social {
    margin-top: 59px;
  }
}

/* ========================================================================
   PAGE: About
   ======================================================================== */
.about-page {
  padding: 20px 0 22px;
  margin: 0 12px;
}
.about-page .container {
  background: #fff;
  border-radius: 16px;
  padding: 22px 27px 0 16px;
}
.about-page .title {
  font-size: 32px;
}
.about-page .descr-card {
  margin-top: 12px;
}
.about-page__descr {
  line-height: 1.4;
  margin-top: 24px;
}
.about-page figure img {
  max-width: 100%;
  margin-top: 22px;
  margin-bottom: -5px;
}
.about-orig {
  padding: 100px 0 25px;
  overflow: visible;
}
.about-orig__header {
  margin-bottom: 24px;
}
.about-orig__header .title {
  line-height: 1.2;
}
.about-orig__header .descr-card {
  margin-top: 24px;
  line-height: 1.6;
}
.about-orig__devices {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 100vw;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 12px 16px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.about-orig__devices::-webkit-scrollbar {
  display: none;
}
.about-orig__card {
  position: relative;
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 310px;
  padding: 24px 16px;
  background: #fff;
  border-radius: 20px;
}
.about-orig__card .card__swiper {
  --swiper-pagination-color: #433654;
  --swiper-pagination-bullet-inactive-color: #D9D9D9;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-size: 4px;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  width: 278px;
  max-width: 100%;
  height: 305px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
}
.about-orig__card .card__swiper .swiper-wrapper {
  height: calc(305px - 36px);
}
.about-orig__card .card__slide-img {
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.about-orig__card .card__slide-img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.about-orig__card .card__title {
  margin: 18px 0 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #323232;
}
.about-orig__card .card__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 18px;
}
.about-orig__card .card__price-txt {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: #6e6e6e;
}
.about-orig__card .card__price {
  margin: 8px 0 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #323232;
}
.about-orig__card .card__price span {
  color: #AEAEB2;
}
.about-orig__card .card__cta {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1d1d1f;
  align-self: flex-end;
  position: relative;
  text-decoration: none;
}
.about-orig__card .card__cta::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 50%;
  left: 50%;
  margin-top: -4px;
  margin-left: -5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.about-orig__card .card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(245, 245, 247, 0.96);
  backdrop-filter: blur(6px);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  color: #1d1d1f;
}
.about-orig__card .card__badge::before {
  content: "";
  display: block;
  width: 4px;
  height: 8px;
  border: solid #1d1d1f;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: -2px;
}
.about-orig__card .card__badge--muted::before {
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 50%;
  background: #AEAEB2;
  transform: none;
  margin-top: 0;
}
.about-orig__card .card__title a {
  color: inherit;
  text-decoration: none;
}
.about-orig__card .card__old-price {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: #AEAEB2;
  text-decoration: line-through;
}
.about-orig__card .card__actions {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-shrink: 0;
}
.about-orig__card .card__qty {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.about-orig__card .card__cta.move2basket {
  display: none;
  background: #433654;
}
.about-orig__card .card__cta.move2basket::after {
  width: 12px;
  height: 7px;
  margin-top: -5px;
  margin-left: -7px;
  border-top: 0;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.about-orig__card.in-basket .card__cta.add2basket,
.about-orig__card .card__cta.add2basket.added {
  display: none;
}
.about-orig__card.in-basket .card__cta.move2basket,
.about-orig__card .card__cta.move2basket.added {
  display: block;
}
.catalog-product-card {
  min-height: 480px;
  display: flex;
  flex-direction: column;
}
.catalog-product-card .card__meta {
  margin-top: auto;
}
.about-help {
  padding: 70px 0;
  background: #fff;
}
.about-help .title {
  padding-right: 30%;
}
.about-help .descr-card {
  margin-top: 12px;
}
.about-help__descr {
  margin-top: 32px;
  line-height: 1.6;
  color: #323232;
}
.about-help__imgs {
  margin-top: 70px;
}
.about-help__swiper {
  width: 100%;
}
.about-help__swiper .swiper-slide {
  width: 133px;
}
.about-help__slide {
  width: 133px;
  border-radius: 10px;
  overflow: hidden;
  background: #f0f0f0;
}
.about-help__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .about-page {
    padding-bottom: 72px;
  }
  .about-page .container {
    padding: 30px 30px 0 30px;
    overflow: hidden;
    height: 593px;
  }
  .about-page figure {
    display: flex;
    height: 100%;
    align-items: stretch;
    position: relative;
  }
  .about-page figure img {
    width: 500px;
    margin-bottom: -65px;
    margin-right: -140px;
    margin-left: auto;
    margin-top: 0;
    object-fit: contain;
  }
  .about-orig__header {
    width: 564px;
  }
  .about-orig__devices {
    margin: 50px 0 52px;
  }
  .about-help {
    --help-col: 179px;
    --help-img-h: 242px;
    --help-scale: 1;
    --help-gap-y: 14px;
    --help-gap-x: 16px;
    padding: 0;
    overflow: hidden;
    margin-bottom: 70px;
  }
  .about-help .title {
    padding-right: 0;
    font-size: 50px;
    line-height: 1.05;
  }
  .about-help .descr-card {
    margin-top: 24px;
  }
  .about-help__descr {
    margin-top: 117px;
  }
  .about-help .container {
    display: flex;
    gap: 106px;
    align-items: center;
  }
  .about-help__imgs {
    margin-top: -105px;
    margin-right: -104px;
    margin-bottom: -109px;
    margin-left: auto;
  }
  .about-help__img {
    width: 100%;
    height: var(--help-img-h);
  }
  .about-help .swiper {
    overflow: visible;
    margin: 0;
  }
  .about-help__slide {
    width: var(--help-col);
    border-radius: 14px;
  }
  .about-help__swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, var(--help-col));
    grid-template-rows: calc(74px * var(--help-scale)) calc(155px * var(--help-scale)) calc(70px * var(--help-scale)) calc(155px * var(--help-scale)) calc(74px * var(--help-scale)) calc(156px * var(--help-scale)) calc(72px * var(--help-scale));
    gap: var(--help-gap-y) var(--help-gap-x);
  }
}
@media (min-width: 1440px) {
  .about-page {
    padding-top: 71px;
  }
  .about-page .container {
    padding: 70px;
  }
  .about-page .title {
    font-size: 50px;
    line-height: 1.05;
  }
  .about-page figure img {
    width: 667px;
    margin-bottom: -115px;
    margin-top: -40px;
    margin-right: -80px;
  }
  .about-orig {
    padding-bottom: 103px;
  }
  .about-orig__header .catalog-button {
    display: inline-flex;
    position: absolute;
    right: 0;
    top: 0;
  }
  .about-orig__devices {
    margin: 70px auto 0;
    width: 100vw;
    max-width: none;
  }
  .about-help {
    margin-bottom: 70px;
    --help-col: 256px;
    --help-img-h: 347px;
    --help-scale: 256/179;
  }
}

/* ========================================================================
   PAGE: Services
   ======================================================================== */
.services-page {
  padding: 20px 0 0px;
  margin: 0 12px;
}
.services-page .container {
  background: #fff;
  border-radius: 16px;
  padding: 23px 16px 16px 16px;
  overflow: hidden;
}
.services-page .descr-card {
  padding-right: 30%;
  line-height: 1.5;
}
.services-page__list {
  margin-top: 27px;
  margin-right: -16px;
  display: flex;
  gap: 6px;
}
.services-page__item {
  inline-size: 67px;
  aspect-ratio: 1;
  background: #f5f5f7;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-page__item img {
  max-width: 32px;
}
.services-page__item--sber {
  background: #00CA30;
}
.services-page__item--ps {
  background: #1d1d1f;
}
section.services-items {
  padding: 32px 0 10px;
}
.services-items__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.services-items__item {
  border-radius: 30px;
  background: #fff;
  padding: 32px 28px;
  height: 268px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .services-items__item:nth-child(n+5) {
    display: none;
  }
}
.services-items__title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}
.services-items .descr-card {
  margin-top: 12px;
  line-height: 1.5;
}
.services-items .catalog-button {
  margin-top: auto;
}
section.map {
  padding-top: 0;
}
@media (min-width: 768px) {
  .services-page .container {
    padding: 30px 0 30px 30px;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    align-items: center;
  }
  .services-page .title {
    font-size: 32px;
  }
  .services-page__list {
    margin-top: 0px;
    grid-row: 1/-1;
    grid-column: 2/3;
    margin-right: -214px;
  }
  .services-items__item {
    width: calc(50% - 10px);
  }
  .services-items__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* ========================================================================
   PAGE: Contacts & Delivery
   ======================================================================== */
.contact_wrapper {
  padding: 20px 12px;
}
.contact_wrapper .contact_header {
  width: 100%;
  border-radius: 30px;
  padding: 50px 70px;
  background-color: #FFFFFF;
}
.contact_wrapper .contact_header p {
  font-weight: 600;
  font-size: 50px;
  color: #1D1D1F;
  margin-bottom: 24px;
}
.contact_wrapper .contact_header span {
  display: block;
  width: 335px;
  font-weight: 400;
  font-size: 16px;
  color: #989898;
}
.contact_wrapper .contact_pred {
  width: 100%;
  border-radius: 30px;
  padding: 183px 110px;
  background-color: #FFFFFF;
  margin-top: 20px;
  background-image: url(img/contact/boxes.png);
  background-repeat: no-repeat;
  background-position: right;
}
.contact_wrapper .contact_pred .contact_pred-text {
  width: 411px;
  text-align: center;
}
.contact_wrapper .contact_maps {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
}
.contact_wrapper .contact_form {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 140px 110px;
  margin-bottom: 190px;
  margin-top: 70px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .contact_wrapper .contact_header {
    padding: 16px;
  }
  .contact_wrapper .contact_header p { font-size: 32px; }
  .contact_wrapper .contact_maps { flex-direction: column; }
  .contact_wrapper .contact_form { flex-direction: column; padding: 30px 8px; }
}

.delivery_page {
  margin-top: 70px;
  margin-bottom: 50px;
  padding: 0 70px;
}
.delivery_page .delivery_header {
  width: 100%;
  border-radius: 30px;
  padding: 50px 70px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.delivery_page .delivery_header .delivery_desc p {
  font-weight: 600;
  font-size: 50px;
  color: #1D1D1F;
  margin-bottom: 24px;
  width: 530px;
}
.delivery_page .delivery_blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 70px;
}
.delivery_page .delivery_blocks .delivery-card {
  background-color: #FFFFFF;
  padding: 28px;
  width: calc(33.333% - 20px);
  border-radius: 12px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .delivery_page { padding: 12px; margin: 0; }
  .delivery_page .delivery_blocks .delivery-card { width: 100%; }
}

/* ========================================================================
   PAGE: Category / Filter
   ======================================================================== */
.category-way {
  margin-top: 20px;
}
.category-way .container {
  display: flex;
  align-items: center;
}
.category-way .container p,
.category-way .container span {
  color: #626262;
  font-weight: 500;
}
.category-way .container p:last-of-type {
  color: #1D1D1F;
}
.category-header {
  margin-top: 24px;
}
.category-header .promo__search {
  max-width: 391px;
  margin: 24px 0 0;
  box-shadow: none;
  background: #fff;
}
.category-list .container {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.category-list__item {
  border-radius: 20px;
  padding: 32px 28px;
  width: 100%;
  height: 160px;
  background: #fff;
  overflow: hidden;
  position: relative;
}
.category-list__item .title { font-size: 28px; }
.category-list__item img {
  position: absolute;
  top: 21%;
  left: 74%;
  width: 66%;
}
@media (min-width: 768px) {
  .category-list__item { max-width: calc(50% - 10px); }
}
@media (min-width: 1440px) {
  .category-list__item { max-width: 420px; }
}

/* Filter */
.category-filter {
  margin-top: 32px;
  padding-bottom: 140px;
}
.category-filter .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "stats" "header" "result" "pagination";
  gap: 10px;
  align-items: start;
}
.category-filter .filter__layout {
  display: contents;
}
.category-filter .filter__stats {
  grid-area: stats;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 19px;
}
.category-filter .filter__header {
  grid-area: header;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  padding: 0 16px 16px;
  margin-top: 24px;
}
.category-filter .filter__result {
  grid-area: result;
  min-width: 0;
  margin-top: 32px;
}
.category-filter .filter__result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}
.category-filter .filter__pagination {
  grid-area: pagination;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 50px 0 0px;
}
@media (min-width: 1440px) {
  .category-filter .container {
    grid-template-areas: "header stats" "header result" "header pagination";
    grid-template-rows: auto auto auto;
    grid-template-columns: 300px minmax(0, 1fr);
  }
  .category-filter .filter__result {
    margin-top: 0;
  }
  .category-filter .filter__result-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .category-filter--search .container {
    grid-template-areas: "result";
    grid-template-columns: minmax(0, 1fr);
  }
  .category-filter--search .filter__result-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ========================================================================
   PAGE: Detail Card
   ======================================================================== */
.detailCard {
  padding: 70px 70px 0;
  margin-top: 0;
  color: #1D1D1F;
  background-color: #F5F5F7;
}
.detailCard * {
  box-sizing: border-box;
}
.detailCard .title {
  max-width: 1400px;
  margin: 0 auto;
}
.detailCard .product-title {
  margin: 0;
  font-family: "SF Pro Display", sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: #1D1D1F;
  line-height: 1.08;
}
.detailCard .product-card {
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(360px, 1fr);
  gap: 40px;
  align-items: start;
  max-width: 1400px;
  margin: 40px auto 0;
  background-color: transparent;
}
.detailCard .product-card .product-gallery {
  display: grid;
  grid-template-columns: 80px minmax(0, 550px);
  gap: 20px;
  min-width: 0;
}
.detailCard .product-card .product-gallery .thumbs {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.detailCard .product-card .product-gallery .thumbs .thumb {
  width: 80px;
  height: 80px;
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 10px;
}
.detailCard .product-card .product-gallery .main-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 550px;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 12px;
}
.detailCard .product-card .product-gallery .main-photo img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
}
.detailCard .product-card .product-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
}
.detailCard .product-card .product-info > .availability {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  margin: 0 0 32px;
  padding: 6px 7px;
  font-family: "SF Pro Display", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #1D1D1F;
  background-color: #FFFFFF;
  border-radius: 8px;
}
.detailCard .product-card .product-info .line {
  border-top: 1px solid #E5E5E5;
  margin-bottom: 32px;
}
.detailCard .product-card .product-info .price {
  margin: 0 0 16px;
  font-family: "SF Pro Display", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #6E6E6E;
}
.detailCard .product-card .product-info .product-cost {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 32px;
}
.detailCard .product-card .product-info .product-cost p {
  margin: 0;
  font-family: "SF Pro Display", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #1D1D1F;
}
.detailCard .product-card .product-info .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  background-color: #1D1D1F;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 12px 20px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s;
}
.detailCard .product-card .product-info .btn-primary:hover {
  background-color: #333;
}
.detailCard .product-card .product-info .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  font-family: "SF Pro Display", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1D1D1F;
  text-align: center;
  text-decoration: none;
  background-color: #FFFFFF;
  border-radius: 100px;
  cursor: pointer;
}
.detailCard .product-card .product-info .product-cost .btn-secondary {
  min-height: auto;
  padding: 0;
  color: #433654;
  text-decoration: underline;
  background: none;
}
.detailCard .product-card .product-info .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 25px;
}
.detailCard .product-card .product-info .actions .btn-primary,
.detailCard .product-card .product-info .actions .btn-secondary {
  flex: 1 1 150px;
}
.detailCard .product-card .product-info .delivery-info {
  margin-top: 7px;
  background-color: #FFFFFF;
  padding: 32px 28px;
  border-radius: 30px;
}
.detailCard .product-card .product-info .delivery-info .delivery-title {
  margin: 0 0 16px;
  font-family: "SF Pro Display", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #1D1D1F;
}
.detailCard .product-card .product-info .delivery-info .delivery-note,
.detailCard .product-card .product-info .delivery-info .price-note {
  margin: 0 0 16px;
  font-family: "SF Pro Display", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #989898;
}
.detailCard .product-card .product-info .delivery-info .price-note {
  margin-bottom: 0;
}
.detailCard .product-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  max-width: 1400px;
  margin: 50px auto 0;
}
.detailCard .product-details .section-title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 600;
  color: #1D1D1F;
}
.detailCard .product-details .specs .specs_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.detailCard .product-details .specs .specs_header a {
  flex-shrink: 0;
  padding: 10px 16px;
  font-family: "SF Pro Display", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1D1D1F;
  text-decoration: none;
  background-color: #FFFFFF;
  border-radius: 100px;
}
.detailCard .product-details .spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.detailCard .product-details .spec-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #1D1D1F;
}
.detailCard .product-details .spec-list li span {
  margin-right: 8px;
  font-weight: 500;
  color: #555;
}
.detailCard .product-details .spec-empty {
  margin: 0;
  color: #6E6E6E;
}
.detailCard .product-details .availability .store,
.detailCard .product-details .availability .catalog-store-amount,
.detailCard .product-details .availability table {
  width: 100%;
  margin-bottom: 15px;
  padding: 16px;
  background-color: #FFFFFF;
  border-radius: 16px;
  border-collapse: separate;
}
.detailCard .product-details .availability table td,
.detailCard .product-details .availability table th {
  padding: 8px 10px;
  border: 0;
  font-size: 14px;
  color: #1D1D1F;
}
.detailCard .product-details .availability .store .availability_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detailCard .product-details .availability .store .availability_header .store-status {
  padding: 10px 16px;
  background-color: #FFFFFF;
  border-radius: 8px;
}
.detailCard .product-details .availability .store .store-name {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
}
.detailCard .product-details .availability .store .store-address,
.detailCard .product-details .availability .store .store-hours {
  margin-bottom: 5px;
  font-size: 14px;
  color: #555;
}
.detailCard .product-details .availability .store .store-status {
  font-size: 14px;
  font-weight: 500;
  color: #1D1D1F;
}
.detailCard .addition-info {
  max-width: 1400px;
  margin: 108px auto 0;
}
.detailCard .addition-info h3 {
  margin: 0 0 16px;
  font-family: "SF Pro Display", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #1D1D1F;
}
.detailCard .addition-info p,
.detailCard .addition-info .detail-text {
  font-family: "SF Pro Display", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: #1D1D1F;
}
.detailCard .spec-list.full {
  max-height: none;
}
@media (max-width: 1200px) {
  .detailCard {
    padding: 56px 40px 0;
  }
  .detailCard .product-card {
    grid-template-columns: minmax(0, 1fr);
  }
  .detailCard .product-card .product-gallery {
    grid-template-columns: 80px minmax(0, 1fr);
  }
  .detailCard .product-details {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }
}
@media (max-width: 767px) {
  .detailCard {
    padding: 32px 16px 0;
  }
  .detailCard .product-title {
    font-size: 28px;
  }
  .detailCard .product-card {
    gap: 24px;
    margin-top: 24px;
  }
  .detailCard .product-card .product-gallery {
    grid-template-columns: minmax(0, 1fr);
  }
  .detailCard .product-card .product-gallery .thumbs {
    order: 2;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .detailCard .product-card .product-gallery .thumbs .thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
  }
  .detailCard .product-card .product-gallery .main-photo {
    min-height: 320px;
    padding: 20px;
  }
  .detailCard .product-card .product-gallery .main-photo img {
    max-height: 300px;
  }
  .detailCard .product-card .product-info .product-cost p {
    font-size: 30px;
  }
  .detailCard .product-card .product-info .actions {
    flex-direction: column;
  }
  .detailCard .product-card .product-info .actions .btn-primary,
  .detailCard .product-card .product-info .actions .btn-secondary {
    width: 100%;
  }
  .detailCard .product-card .product-info .delivery-info {
    padding: 24px 20px;
    border-radius: 20px;
  }
  .detailCard .product-card .product-info .delivery-info .delivery-title {
    font-size: 22px;
  }
  .detailCard .product-details {
    margin-top: 36px;
  }
  .detailCard .product-details .specs .specs_header {
    align-items: flex-start;
    flex-direction: column;
  }
  .detailCard .addition-info {
    margin-top: 56px;
  }
}

/* ========================================================================
   PAGE: Error 404
   ======================================================================== */
.error_text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.error_text p {
  font-weight: 600;
  font-size: 400px;
  line-height: 1.2;
  color: #1D1D1F;
  margin: 0;
  width: 744px;
  height: 480px;
}
.error_text .link_btn {
  margin-bottom: 210px;
}
.error_text .link_btn a {
  border-radius: 100px;
  padding: 10px 16px;
  background-color: #433654;
  color: #FFFFFF;
  text-decoration: none;
}

/* ========================================================================
   НАСЛЕДИЕ PHOENIX (из активного шаблона)
   ======================================================================== */

/* Phoenix social shares */
.public_shares { /* заглушка, если нужно */ }

/* Search top */
.search-top { /* заглушка */ }

/* Phoenix modals */
.phoenix-modal { /* заглушка */ }
.loading { /* заглушка */ }
.loading-top-right { /* заглушка */ }

/* PBank styles (кредит) */
.pbank .pb-sdk-pos-credit { overflow: hidden; }
.PBnkBox{width:500px;margin:0 auto}
.PBnkHead{padding:10px 0 15px 0}
.PBnkForm{padding:10px 0}
@media screen and (max-width:480px){.PBnkBox{width:100%}}
